diff --git a/.editorconfig b/.editorconfig
index 1583c600aa..8b92144453 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/.envrc b/.envrc
index 7fd05db3e5..b1ad7237ed 100644
--- a/.envrc
+++ b/.envrc
@@ -1,4 +1,5 @@
-if ! has nix_direnv_version || ! nix_direnv_version 3.0.4; then
- source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.0.4/direnvrc" "sha256-DzlYZ33mWF/Gs8DDeyjr8mnVmQGx7ASYqA5WlxwvBG4="
+set -e
+if ! has nix_direnv_version || ! nix_direnv_version 3.0.6; then
+ source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.0.6/direnvrc" "sha256-RYcUJaRMf8oF5LznDrlCXbkOQrywm0HDv1VjYGaJGdM="
fi
use flake
diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml
index 20657b43dd..55992e0db6 100644
--- a/.github/workflows/cla.yml
+++ b/.github/workflows/cla.yml
@@ -4,6 +4,8 @@ on:
types: [created]
pull_request_target:
types: [opened,closed,synchronize]
+ paths:
+ - '**CP14**'
# explicitly configure permissions, in case your GITHUB_TOKEN workflow permissions are set to read-only in repository settings
permissions:
@@ -17,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "CLA Assistant"
- if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
+ if: ((github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target') && github.actor != 'TheShuEd'
uses: contributor-assistant/github-action@v2.6.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/Content.Benchmarks/MapLoadBenchmark.cs b/Content.Benchmarks/MapLoadBenchmark.cs
index 8c04d9a40d..bc050b59f1 100644
--- a/Content.Benchmarks/MapLoadBenchmark.cs
+++ b/Content.Benchmarks/MapLoadBenchmark.cs
@@ -46,7 +46,7 @@ public class MapLoadBenchmark
PoolManager.Shutdown();
}
- public static readonly string[] MapsSource = { "Empty", "Satlern", "Box", "Bagel", "Dev", "CentComm", "Core", "TestTeg", "Packed", "Omega", "Reach", "Meta", "Marathon", "MeteorArena", "Fland", "Oasis", "Cog" };
+ public static readonly string[] MapsSource = { "Empty", "Satlern", "Box", "Bagel", "Dev", "CentComm", "Core", "TestTeg", "Packed", "Omega", "Reach", "Meta", "Marathon", "MeteorArena", "Fland", "Oasis", "Cog", "Convex"};
[ParamsSource(nameof(MapsSource))]
public string Map;
diff --git a/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs b/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs
index 44c40143d8..04075000f5 100644
--- a/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs
+++ b/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs
@@ -39,6 +39,6 @@ public sealed class CargoBountyConsoleBoundUserInterface : BoundUserInterface
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 0000000000..905cf020ed
--- /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 0000000000..54804be641
--- /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 bb263ff6c4..526ba69129 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 3767b45e4b..c289fb6ed8 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 sealed partial class CargoBountyMenu : FancyWindow
{
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 9b7fd75436..cb07e16a9c 100644
--- a/Content.Client/Changelog/ChangelogWindow.xaml.cs
+++ b/Content.Client/Changelog/ChangelogWindow.xaml.cs
@@ -8,6 +8,8 @@ using JetBrains.Annotations;
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 @@ namespace Content.Client.Changelog
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/Chat/UI/EmotesMenu.xaml b/Content.Client/Chat/UI/EmotesMenu.xaml
index cc4d5bb77e..845b631617 100644
--- a/Content.Client/Chat/UI/EmotesMenu.xaml
+++ b/Content.Client/Chat/UI/EmotesMenu.xaml
@@ -1,4 +1,4 @@
-
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
+
-
+
diff --git a/Content.Client/Chat/UI/EmotesMenu.xaml.cs b/Content.Client/Chat/UI/EmotesMenu.xaml.cs
index f3b7837f21..80daa405a6 100644
--- a/Content.Client/Chat/UI/EmotesMenu.xaml.cs
+++ b/Content.Client/Chat/UI/EmotesMenu.xaml.cs
@@ -50,7 +50,6 @@ public sealed partial class EmotesMenu : RadialMenu
var button = new EmoteMenuButton
{
- StyleClasses = { "RadialMenuButton" },
SetSize = new Vector2(64f, 64f),
ToolTip = Loc.GetString(emote.Name),
ProtoId = emote.ID,
@@ -106,7 +105,7 @@ public sealed partial class EmotesMenu : RadialMenu
}
-public sealed class EmoteMenuButton : RadialMenuTextureButton
+public sealed class EmoteMenuButton : RadialMenuTextureButtonWithSector
{
public ProtoId ProtoId { get; set; }
}
diff --git a/Content.Client/Clickable/ClickMapManager.cs b/Content.Client/Clickable/ClickMapManager.cs
index 6a77c7e054..557ef57ef1 100644
--- a/Content.Client/Clickable/ClickMapManager.cs
+++ b/Content.Client/Clickable/ClickMapManager.cs
@@ -20,7 +20,7 @@ namespace Content.Client.Clickable
"/Textures/Logo",
};
- private const float Threshold = 0.25f;
+ private const float Threshold = 0.1f;
private const int ClickRadius = 2;
[Dependency] private readonly IResourceCache _resourceCache = default!;
diff --git a/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs b/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs
index 44501767dd..d835fb0e22 100644
--- a/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs
+++ b/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs
@@ -30,7 +30,7 @@ namespace Content.Client.Crayon.UI
private void PopulateCrayons()
{
- var crayonDecals = _protoManager.EnumeratePrototypes().Where(x => x.Tags.Contains("crayon"));
+ var crayonDecals = _protoManager.EnumeratePrototypes().Where(x => x.Tags.Contains("CP14crayon")); //CP14 crayon
_menu?.Populate(crayonDecals.ToList());
}
diff --git a/Content.Client/CrewManifest/UI/CrewManifestSection.cs b/Content.Client/CrewManifest/UI/CrewManifestSection.cs
index 29cf850e2b..1e853bf153 100644
--- a/Content.Client/CrewManifest/UI/CrewManifestSection.cs
+++ b/Content.Client/CrewManifest/UI/CrewManifestSection.cs
@@ -22,7 +22,7 @@ public sealed class CrewManifestSection : BoxContainer
AddChild(new Label()
{
StyleClasses = { "LabelBig" },
- Text = Loc.GetString($"department-{section.ID}")
+ Text = Loc.GetString(section.Name)
});
var gridContainer = new GridContainer()
diff --git a/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs b/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs
index 9047624f49..d5cc4ecfa9 100644
--- a/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs
+++ b/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs
@@ -39,6 +39,8 @@ public sealed class CriminalRecordsConsoleBoundUserInterface : BoundUserInterfac
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 77da0ba1b0..d36718cf08 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 7cae290fe1..a35cf84c44 100644
--- a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml.cs
+++ b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml.cs
@@ -13,6 +13,9 @@ using Robust.Shared.Prototypes;
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 sealed partial class CriminalRecordsConsoleWindow : FancyWindow
_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 sealed partial class CriminalRecordsConsoleWindow : FancyWindow
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 sealed partial class CriminalRecordsConsoleWindow : FancyWindow
}
};
+ //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 sealed partial class CriminalRecordsConsoleWindow : FancyWindow
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 sealed partial class CriminalRecordsConsoleWindow : FancyWindow
}
}
+ 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 @@ public sealed partial class CriminalRecordsConsoleWindow : FancyWindow
// 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 @@ public sealed partial class CriminalRecordsConsoleWindow : FancyWindow
// 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;
- StatusOptionButton.SelectId((int) criminalRecord.Status);
- if (criminalRecord.Reason is {} reason)
+ // 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)
{
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 @@ public sealed partial class CriminalRecordsConsoleWindow : FancyWindow
_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 bc52730b0e..5e3de813d6 100644
--- a/Content.Client/Doors/DoorSystem.cs
+++ b/Content.Client/Doors/DoorSystem.cs
@@ -21,112 +21,131 @@ public sealed class DoorSystem : SharedDoorSystem
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/Entry/EntryPoint.cs b/Content.Client/Entry/EntryPoint.cs
index af85ff921f..997cfc0b00 100644
--- a/Content.Client/Entry/EntryPoint.cs
+++ b/Content.Client/Entry/EntryPoint.cs
@@ -1,4 +1,5 @@
using Content.Client._CP14.Discord;
+using Content.Client._CP14.JoinQueue;
using Content.Client.Administration.Managers;
using Content.Client.Changelog;
using Content.Client.Chat.Managers;
@@ -46,6 +47,7 @@ namespace Content.Client.Entry
{
//CP14
[Dependency] private readonly DiscordAuthManager _discordAuth = default!;
+ [Dependency] private readonly JoinQueueManager _joinQueueManager = default!;
//CP14 end
[Dependency] private readonly IBaseClient _baseClient = default!;
[Dependency] private readonly IGameController _gameController = default!;
@@ -167,6 +169,7 @@ namespace Content.Client.Entry
//CP14
_overlayManager.AddOverlay(new CP14BasePostProcessOverlay());
_discordAuth.Initialize();
+ _joinQueueManager.Initialize();
//CP14 end
_overlayManager.AddOverlay(new SingularityOverlay());
_overlayManager.AddOverlay(new RadiationPulseOverlay());
diff --git a/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs b/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs
index 3897b1b949..1b65eac6ed 100644
--- a/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs
+++ b/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs
@@ -51,7 +51,6 @@ public sealed partial class GhostRoleRadioMenu : RadialMenu
var button = new GhostRoleRadioMenuButton()
{
- StyleClasses = { "RadialMenuButton" },
SetSize = new Vector2(64, 64),
ToolTip = Loc.GetString(ghostRoleProto.Name),
ProtoId = ghostRoleProto.ID,
@@ -100,7 +99,7 @@ public sealed partial class GhostRoleRadioMenu : RadialMenu
}
}
-public sealed class GhostRoleRadioMenuButton : RadialMenuTextureButton
+public sealed class GhostRoleRadioMenuButton : RadialMenuTextureButtonWithSector
{
public ProtoId ProtoId { get; set; }
}
diff --git a/Content.Client/Holopad/HolopadSystem.cs b/Content.Client/Holopad/HolopadSystem.cs
index 3bd556f1fc..6aad39fe24 100644
--- a/Content.Client/Holopad/HolopadSystem.cs
+++ b/Content.Client/Holopad/HolopadSystem.cs
@@ -2,45 +2,38 @@ using Content.Shared.Chat.TypingIndicator;
using Content.Shared.Holopad;
using Robust.Client.GameObjects;
using Robust.Client.Graphics;
-using Robust.Client.Player;
using Robust.Shared.Prototypes;
using Robust.Shared.Timing;
using System.Linq;
+using DrawDepth = Content.Shared.DrawDepth.DrawDepth;
namespace Content.Client.Holopad;
public sealed class HolopadSystem : SharedHolopadSystem
{
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
- [Dependency] private readonly IPlayerManager _playerManager = default!;
[Dependency] private readonly IGameTiming _timing = default!;
public override void Initialize()
{
base.Initialize();
- SubscribeLocalEvent(OnComponentInit);
+ SubscribeLocalEvent(OnComponentStartup);
SubscribeLocalEvent(OnShaderRender);
SubscribeAllEvent(OnTypingChanged);
-
- SubscribeNetworkEvent(OnPlayerSpriteStateRequest);
- SubscribeNetworkEvent(OnPlayerSpriteStateMessage);
}
- private void OnComponentInit(EntityUid uid, HolopadHologramComponent component, ComponentInit ev)
+ private void OnComponentStartup(Entity entity, ref ComponentStartup ev)
{
- if (!TryComp(uid, out var sprite))
- return;
-
- UpdateHologramSprite(uid);
+ UpdateHologramSprite(entity, entity.Comp.LinkedEntity);
}
- private void OnShaderRender(EntityUid uid, HolopadHologramComponent component, BeforePostShaderRenderEvent ev)
+ private void OnShaderRender(Entity entity, ref BeforePostShaderRenderEvent ev)
{
if (ev.Sprite.PostShader == null)
return;
- ev.Sprite.PostShader.SetParameter("t", (float)_timing.CurTime.TotalSeconds * component.ScrollRate);
+ UpdateHologramSprite(entity, entity.Comp.LinkedEntity);
}
private void OnTypingChanged(TypingChangedEvent ev, EntitySessionEventArgs args)
@@ -57,100 +50,66 @@ public sealed class HolopadSystem : SharedHolopadSystem
RaiseNetworkEvent(netEv);
}
- private void OnPlayerSpriteStateRequest(PlayerSpriteStateRequest ev)
+ private void UpdateHologramSprite(EntityUid hologram, EntityUid? target)
{
- var targetPlayer = GetEntity(ev.TargetPlayer);
- var player = _playerManager.LocalSession?.AttachedEntity;
-
- // Ignore the request if received by a player who isn't the target
- if (targetPlayer != player)
- return;
-
- if (!TryComp(player, out var playerSprite))
- return;
-
- var spriteLayerData = new List();
-
- if (playerSprite.Visible)
- {
- // Record the RSI paths, state names and shader paramaters of all visible layers
- for (int i = 0; i < playerSprite.AllLayers.Count(); i++)
- {
- if (!playerSprite.TryGetLayer(i, out var layer))
- continue;
-
- if (!layer.Visible ||
- string.IsNullOrEmpty(layer.ActualRsi?.Path.ToString()) ||
- string.IsNullOrEmpty(layer.State.Name))
- continue;
-
- var layerDatum = new PrototypeLayerData();
- layerDatum.RsiPath = layer.ActualRsi.Path.ToString();
- layerDatum.State = layer.State.Name;
-
- if (layer.CopyToShaderParameters != null)
- {
- var key = (string)layer.CopyToShaderParameters.LayerKey;
-
- if (playerSprite.LayerMapTryGet(key, out var otherLayerIdx) &&
- playerSprite.TryGetLayer(otherLayerIdx, out var otherLayer) &&
- otherLayer.Visible)
- {
- layerDatum.MapKeys = new() { key };
-
- layerDatum.CopyToShaderParameters = new PrototypeCopyToShaderParameters()
- {
- LayerKey = key,
- ParameterTexture = layer.CopyToShaderParameters.ParameterTexture,
- ParameterUV = layer.CopyToShaderParameters.ParameterUV
- };
- }
- }
-
- spriteLayerData.Add(layerDatum);
- }
- }
-
- // Return the recorded data to the server
- var evResponse = new PlayerSpriteStateMessage(ev.TargetPlayer, spriteLayerData.ToArray());
- RaiseNetworkEvent(evResponse);
- }
-
- private void OnPlayerSpriteStateMessage(PlayerSpriteStateMessage ev)
- {
- UpdateHologramSprite(GetEntity(ev.SpriteEntity), ev.SpriteLayerData);
- }
-
- private void UpdateHologramSprite(EntityUid uid, PrototypeLayerData[]? layerData = null)
- {
- if (!TryComp(uid, out var hologramSprite))
- return;
-
- if (!TryComp(uid, out var holopadhologram))
+ // Get required components
+ if (!TryComp(hologram, out var hologramSprite) ||
+ !TryComp(hologram, out var holopadhologram))
return;
+ // Remove all sprite layers
for (int i = hologramSprite.AllLayers.Count() - 1; i >= 0; i--)
hologramSprite.RemoveLayer(i);
- if (layerData == null || layerData.Length == 0)
+ if (TryComp(target, out var targetSprite))
{
- layerData = new PrototypeLayerData[1];
- layerData[0] = new PrototypeLayerData()
+ // Use the target's holographic avatar (if available)
+ if (TryComp(target, out var targetAvatar) &&
+ targetAvatar.LayerData != null)
{
- RsiPath = holopadhologram.RsiPath,
- State = holopadhologram.RsiState
- };
+ for (int i = 0; i < targetAvatar.LayerData.Length; i++)
+ {
+ var layer = targetAvatar.LayerData[i];
+ hologramSprite.AddLayer(targetAvatar.LayerData[i], i);
+ }
+ }
+
+ // Otherwise copy the target's current physical appearance
+ else
+ {
+ hologramSprite.CopyFrom(targetSprite);
+ }
}
- for (int i = 0; i < layerData.Length; i++)
+ // There is no target, display a default sprite instead (if available)
+ else
{
- var layer = layerData[i];
- layer.Shader = "unshaded";
+ if (string.IsNullOrEmpty(holopadhologram.RsiPath) || string.IsNullOrEmpty(holopadhologram.RsiState))
+ return;
- hologramSprite.AddLayer(layerData[i], i);
+ var layer = new PrototypeLayerData();
+ layer.RsiPath = holopadhologram.RsiPath;
+ layer.State = holopadhologram.RsiState;
+
+ hologramSprite.AddLayer(layer);
}
- UpdateHologramShader(uid, hologramSprite, holopadhologram);
+ // Override specific values
+ hologramSprite.Color = Color.White;
+ hologramSprite.Offset = holopadhologram.Offset;
+ hologramSprite.DrawDepth = (int)DrawDepth.Mobs;
+ hologramSprite.NoRotation = true;
+ hologramSprite.DirectionOverride = Direction.South;
+ hologramSprite.EnableDirectionOverride = true;
+
+ // Remove shading from all layers (except displacement maps)
+ for (int i = 0; i < hologramSprite.AllLayers.Count(); i++)
+ {
+ if (hologramSprite.TryGetLayer(i, out var layer) && layer.ShaderPrototype != "DisplacedStencilDraw")
+ hologramSprite.LayerSetShader(i, "unshaded");
+ }
+
+ UpdateHologramShader(hologram, hologramSprite, holopadhologram);
}
private void UpdateHologramShader(EntityUid uid, SpriteComponent sprite, HolopadHologramComponent holopadHologram)
diff --git a/Content.Client/IoC/ClientContentIoC.cs b/Content.Client/IoC/ClientContentIoC.cs
index 0756800d8d..ebb893c6a5 100644
--- a/Content.Client/IoC/ClientContentIoC.cs
+++ b/Content.Client/IoC/ClientContentIoC.cs
@@ -1,4 +1,5 @@
using Content.Client._CP14.Discord;
+using Content.Client._CP14.JoinQueue;
using Content.Client.Administration.Managers;
using Content.Client.Changelog;
using Content.Client.Chat.Managers;
@@ -36,6 +37,7 @@ namespace Content.Client.IoC
//CP14
collection.Register();
+ collection.Register();
//CP14 end
collection.Register();
collection.Register();
diff --git a/Content.Client/LateJoin/LateJoinGui.cs b/Content.Client/LateJoin/LateJoinGui.cs
index 13cf281513..7d1921816f 100644
--- a/Content.Client/LateJoin/LateJoinGui.cs
+++ b/Content.Client/LateJoin/LateJoinGui.cs
@@ -170,7 +170,7 @@ namespace Content.Client.LateJoin
foreach (var department in departments)
{
- var departmentName = Loc.GetString($"department-{department.ID}");
+ var departmentName = Loc.GetString(department.Name);
_jobCategories[id] = new Dictionary();
var stationAvailable = _gameTicker.JobsAvailable[id];
var jobsAvailable = new List();
diff --git a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs
index 596a87eaf2..84b9900166 100644
--- a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs
+++ b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs
@@ -840,7 +840,7 @@ namespace Content.Client.Lobby.UI
foreach (var department in departments)
{
- var departmentName = Loc.GetString($"department-{department.ID}");
+ var departmentName = Loc.GetString(department.Name);
if (!_jobCategories.TryGetValue(department.ID, out var category))
{
diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs
index 179a2c25c0..ac23e8216b 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 sealed partial class CrewMonitoringWindow : FancyWindow
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 @@ public sealed partial class CrewMonitoringWindow : FancyWindow
{
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 @@ public sealed partial class CrewMonitoringWindow : FancyWindow
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 @@ public sealed partial class CrewMonitoringWindow : FancyWindow
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 0000000000..5ed1bf4a6c
--- /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 9fbd4b5c37..518a4a1bd4 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 sealed class ContentEyeSystem : SharedContentEyeSystem
{
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 0000000000..f3bff9ef0c
--- /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/Options/UI/Tabs/AudioTab.xaml b/Content.Client/Options/UI/Tabs/AudioTab.xaml
index c374af31c5..5764755bb9 100644
--- a/Content.Client/Options/UI/Tabs/AudioTab.xaml
+++ b/Content.Client/Options/UI/Tabs/AudioTab.xaml
@@ -19,6 +19,7 @@
+
diff --git a/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs b/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs
index 78186d446c..d57f36e74f 100644
--- a/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs
+++ b/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs
@@ -1,3 +1,4 @@
+using Content.Client.Administration.Managers;
using Content.Client.Audio;
using Content.Shared.CCVar;
using Robust.Client.Audio;
@@ -12,8 +13,9 @@ namespace Content.Client.Options.UI.Tabs;
[GenerateTypedNameReferences]
public sealed partial class AudioTab : Control
{
- [Dependency] private readonly IConfigurationManager _cfg = default!;
[Dependency] private readonly IAudioManager _audio = default!;
+ [Dependency] private readonly IClientAdminManager _admin = default!;
+ [Dependency] private readonly IConfigurationManager _cfg = default!;
public AudioTab()
{
@@ -61,10 +63,30 @@ public sealed partial class AudioTab : Control
Control.AddOptionCheckBox(CCVars.RestartSoundsEnabled, RestartSoundsCheckBox);
Control.AddOptionCheckBox(CCVars.EventMusicEnabled, EventMusicCheckBox);
Control.AddOptionCheckBox(CCVars.AdminSoundsEnabled, AdminSoundsCheckBox);
+ Control.AddOptionCheckBox(CCVars.BwoinkSoundEnabled, BwoinkSoundCheckBox);
Control.Initialize();
}
+ protected override void EnteredTree()
+ {
+ base.EnteredTree();
+ _admin.AdminStatusUpdated += UpdateAdminButtonsVisibility;
+ UpdateAdminButtonsVisibility();
+ }
+
+ protected override void ExitedTree()
+ {
+ base.ExitedTree();
+ _admin.AdminStatusUpdated -= UpdateAdminButtonsVisibility;
+ }
+
+
+ private void UpdateAdminButtonsVisibility()
+ {
+ BwoinkSoundCheckBox.Visible = _admin.IsActive();
+ }
+
private void OnMasterVolumeSliderChanged(float value)
{
// TODO: I was thinking of giving OptionsTabControlRow a flag to "set CVar immediately", but I'm deferring that
diff --git a/Content.Client/Overlays/EquipmentHudSystem.cs b/Content.Client/Overlays/EquipmentHudSystem.cs
index 502a1f3627..f3c556961a 100644
--- a/Content.Client/Overlays/EquipmentHudSystem.cs
+++ b/Content.Client/Overlays/EquipmentHudSystem.cs
@@ -56,35 +56,35 @@ public abstract class EquipmentHudSystem : EntitySystem where T : IComponent
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 @@ public abstract class EquipmentHudSystem : EntitySystem where T : IComponent
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 b23209ff20..9fefe93094 100644
--- a/Content.Client/Overlays/ShowHealthBarsSystem.cs
+++ b/Content.Client/Overlays/ShowHealthBarsSystem.cs
@@ -28,7 +28,7 @@ public sealed class ShowHealthBarsSystem : EquipmentHudSystem 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 b4d845e421..3301261bd0 100644
--- a/Content.Client/Overlays/ShowHealthIconsSystem.cs
+++ b/Content.Client/Overlays/ShowHealthIconsSystem.cs
@@ -47,7 +47,7 @@ public sealed class ShowHealthIconsSystem : EquipmentHudSystem 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 cdb9c54fdf..8f8b8e6407 100644
--- a/Content.Client/Overlays/ShowMindShieldIconsSystem.cs
+++ b/Content.Client/Overlays/ShowMindShieldIconsSystem.cs
@@ -15,6 +15,16 @@ public sealed class ShowMindShieldIconsSystem : EquipmentHudSystem(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 63f1583706..7cef7d58b6 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/RCD/RCDMenu.xaml b/Content.Client/RCD/RCDMenu.xaml
index b3d5367a5f..d8ab0ac8f4 100644
--- a/Content.Client/RCD/RCDMenu.xaml
+++ b/Content.Client/RCD/RCDMenu.xaml
@@ -11,37 +11,37 @@
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/Content.Client/RCD/RCDMenu.xaml.cs b/Content.Client/RCD/RCDMenu.xaml.cs
index f0d27d6b1f..7ea9894e41 100644
--- a/Content.Client/RCD/RCDMenu.xaml.cs
+++ b/Content.Client/RCD/RCDMenu.xaml.cs
@@ -74,7 +74,6 @@ public sealed partial class RCDMenu : RadialMenu
var button = new RCDMenuButton()
{
- StyleClasses = { "RadialMenuButton" },
SetSize = new Vector2(64f, 64f),
ToolTip = tooltip,
ProtoId = protoId,
@@ -99,9 +98,7 @@ public sealed partial class RCDMenu : RadialMenu
// is visible in the main radial container (as these all start with Visible = false)
foreach (var child in main.Children)
{
- var castChild = child as RadialMenuTextureButton;
-
- if (castChild is not RadialMenuTextureButton)
+ if (child is not RadialMenuTextureButton castChild)
continue;
if (castChild.TargetLayer == proto.Category)
@@ -169,12 +166,7 @@ public sealed partial class RCDMenu : RadialMenu
}
}
-public sealed class RCDMenuButton : RadialMenuTextureButton
+public sealed class RCDMenuButton : RadialMenuTextureButtonWithSector
{
public ProtoId ProtoId { get; set; }
-
- public RCDMenuButton()
- {
-
- }
}
diff --git a/Content.Client/Radiation/Systems/RadiationSystem.cs b/Content.Client/Radiation/Systems/RadiationSystem.cs
index 929ad6aa4a..f4f109adc7 100644
--- a/Content.Client/Radiation/Systems/RadiationSystem.cs
+++ b/Content.Client/Radiation/Systems/RadiationSystem.cs
@@ -9,7 +9,7 @@ public sealed class RadiationSystem : EntitySystem
{
[Dependency] private readonly IOverlayManager _overlayMan = default!;
- public List? Rays;
+ public List? Rays;
public Dictionary>? ResistanceGrids;
public override void Initialize()
diff --git a/Content.Client/Shuttles/UI/NavScreen.xaml.cs b/Content.Client/Shuttles/UI/NavScreen.xaml.cs
index 7236714ef2..e4727e9366 100644
--- a/Content.Client/Shuttles/UI/NavScreen.xaml.cs
+++ b/Content.Client/Shuttles/UI/NavScreen.xaml.cs
@@ -81,13 +81,19 @@ public sealed partial class NavScreen : BoxContainer
// 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/Silicons/StationAi/StationAiMenu.xaml b/Content.Client/Silicons/StationAi/StationAiMenu.xaml
index d56fc83289..cfa0b93234 100644
--- a/Content.Client/Silicons/StationAi/StationAiMenu.xaml
+++ b/Content.Client/Silicons/StationAi/StationAiMenu.xaml
@@ -1,4 +1,4 @@
-
-
+
diff --git a/Content.Client/Silicons/StationAi/StationAiMenu.xaml.cs b/Content.Client/Silicons/StationAi/StationAiMenu.xaml.cs
index b152f5ead8..a536d911f3 100644
--- a/Content.Client/Silicons/StationAi/StationAiMenu.xaml.cs
+++ b/Content.Client/Silicons/StationAi/StationAiMenu.xaml.cs
@@ -54,7 +54,6 @@ public sealed partial class StationAiMenu : RadialMenu
// TODO: This radial boilerplate is quite annoying
var button = new StationAiMenuButton(action.Event)
{
- StyleClasses = { "RadialMenuButton" },
SetSize = new Vector2(64f, 64f),
ToolTip = action.Tooltip != null ? Loc.GetString(action.Tooltip) : null,
};
@@ -121,7 +120,7 @@ public sealed partial class StationAiMenu : RadialMenu
}
}
-public sealed class StationAiMenuButton(BaseStationAiAction action) : RadialMenuTextureButton
+public sealed class StationAiMenuButton(BaseStationAiAction action) : RadialMenuTextureButtonWithSector
{
public BaseStationAiAction Action = action;
}
diff --git a/Content.Client/UserInterface/Controls/RadialContainer.cs b/Content.Client/UserInterface/Controls/RadialContainer.cs
index be9b8817a0..72555aab5f 100644
--- a/Content.Client/UserInterface/Controls/RadialContainer.cs
+++ b/Content.Client/UserInterface/Controls/RadialContainer.cs
@@ -1,4 +1,3 @@
-using Robust.Client.Graphics;
using Robust.Client.UserInterface.Controls;
using System.Linq;
using System.Numerics;
@@ -8,6 +7,11 @@ namespace Content.Client.UserInterface.Controls;
[Virtual]
public class RadialContainer : LayoutContainer
{
+ ///
+ /// Increment of radius per child element to be rendered.
+ ///
+ private const float RadiusIncrement = 5f;
+
///
/// Specifies the anglular range, in radians, in which child elements will be placed.
/// The first value denotes the angle at which the first element is to be placed, and
@@ -49,10 +53,30 @@ public class RadialContainer : LayoutContainer
public RAlignment RadialAlignment { get; set; } = RAlignment.Clockwise;
///
- /// Determines how far from the radial container's center that its child elements will be placed
+ /// Radial menu radius determines how far from the radial container's center its child elements will be placed.
+ /// To correctly display dynamic amount of elements control actually resizes depending on amount of child buttons,
+ /// but uses this property as base value for final radius calculation.
///
[ViewVariables(VVAccess.ReadWrite)]
- public float Radius { get; set; } = 100f;
+ public float InitialRadius { get; set; } = 100f;
+
+ ///
+ /// Radial menu radius determines how far from the radial container's center its child elements will be placed.
+ /// This is dynamically calculated (based on child button count) radius, result of and
+ /// multiplied by currently visible child button count.
+ ///
+ [ViewVariables(VVAccess.ReadOnly)]
+ public float CalculatedRadius { get; private set; }
+
+ ///
+ /// Determines radial menu button sectors inner radius, is a multiplier of .
+ ///
+ public float InnerRadiusMultiplier { get; set; } = 0.5f;
+
+ ///
+ /// Determines radial menu button sectors outer radius, is a multiplier of .
+ ///
+ public float OuterRadiusMultiplier { get; set; } = 1.5f;
///
/// Sets whether the container should reserve a space on the layout for child which are not currently visible
@@ -67,37 +91,74 @@ public class RadialContainer : LayoutContainer
{
}
-
- protected override void Draw(DrawingHandleScreen handle)
+
+ ///
+ protected override Vector2 ArrangeOverride(Vector2 finalSize)
{
-
- const float baseRadius = 100f;
- const float radiusIncrement = 5f;
-
- var children = ReserveSpaceForHiddenChildren ? Children : Children.Where(x => x.Visible);
+ var children = ReserveSpaceForHiddenChildren
+ ? Children
+ : Children.Where(x => x.Visible);
+
var childCount = children.Count();
-
- // Add padding from the center at higher child counts so they don't overlap.
- Radius = baseRadius + (childCount * radiusIncrement);
+
+ // Add padding from the center at higher child counts so they don't overlap.
+ CalculatedRadius = InitialRadius + (childCount * RadiusIncrement);
+
+ var isAntiClockwise = RadialAlignment == RAlignment.AntiClockwise;
// Determine the size of the arc, accounting for clockwise and anti-clockwise arrangements
var arc = AngularRange.Y - AngularRange.X;
- arc = (arc < 0) ? MathF.Tau + arc : arc;
- arc = (RadialAlignment == RAlignment.AntiClockwise) ? MathF.Tau - arc : arc;
+ arc = arc < 0
+ ? MathF.Tau + arc
+ : arc;
+ arc = isAntiClockwise
+ ? MathF.Tau - arc
+ : arc;
// Account for both circular arrangements and arc-based arrangements
- var childMod = MathHelper.CloseTo(arc, MathF.Tau, 0.01f) ? 0 : 1;
+ var childMod = MathHelper.CloseTo(arc, MathF.Tau, 0.01f)
+ ? 0
+ : 1;
// Determine the separation between child elements
var sepAngle = arc / (childCount - childMod);
- sepAngle *= (RadialAlignment == RAlignment.AntiClockwise) ? -1f : 1f;
+ sepAngle *= isAntiClockwise
+ ? -1f
+ : 1f;
+
+ var controlCenter = finalSize * 0.5f;
// Adjust the positions of all the child elements
- foreach (var (i, child) in children.Select((x, i) => (i, x)))
+ var query = children.Select((x, index) => (index, x));
+ foreach (var (childIndex, child) in query)
{
- var position = new Vector2(Radius * MathF.Sin(AngularRange.X + sepAngle * i) + Width / 2f - child.Width / 2f, -Radius * MathF.Cos(AngularRange.X + sepAngle * i) + Height / 2f - child.Height / 2f);
+ const float angleOffset = MathF.PI * 0.5f;
+
+ var targetAngleOfChild = AngularRange.X + sepAngle * (childIndex + 0.5f) + angleOffset;
+
+ // flooring values for snapping float values to physical grid -
+ // it prevents gaps and overlapping between different button segments
+ var position = new Vector2(
+ MathF.Floor(CalculatedRadius * MathF.Cos(targetAngleOfChild)),
+ MathF.Floor(-CalculatedRadius * MathF.Sin(targetAngleOfChild))
+ ) + controlCenter - child.DesiredSize * 0.5f + Position;
+
SetPosition(child, position);
+
+ // radial menu buttons with sector need to also know in which sector and around which point
+ // they should be rendered, how much space sector should should take etc.
+ if (child is IRadialMenuItemWithSector tb)
+ {
+ tb.AngleSectorFrom = sepAngle * childIndex;
+ tb.AngleSectorTo = sepAngle * (childIndex + 1);
+ tb.AngleOffset = angleOffset;
+ tb.InnerRadius = CalculatedRadius * InnerRadiusMultiplier;
+ tb.OuterRadius = CalculatedRadius * OuterRadiusMultiplier;
+ tb.ParentCenter = controlCenter;
+ }
}
+
+ return base.ArrangeOverride(finalSize);
}
///
@@ -109,4 +170,5 @@ public class RadialContainer : LayoutContainer
Clockwise,
AntiClockwise,
}
+
}
diff --git a/Content.Client/UserInterface/Controls/RadialMenu.cs b/Content.Client/UserInterface/Controls/RadialMenu.cs
index 5f56ad7f86..1b7f07aa2c 100644
--- a/Content.Client/UserInterface/Controls/RadialMenu.cs
+++ b/Content.Client/UserInterface/Controls/RadialMenu.cs
@@ -3,6 +3,9 @@ using Robust.Client.UserInterface.Controls;
using Robust.Client.UserInterface.CustomControls;
using System.Linq;
using System.Numerics;
+using Content.Shared.Input;
+using Robust.Client.Graphics;
+using Robust.Shared.Input;
namespace Content.Client.UserInterface.Controls;
@@ -12,11 +15,16 @@ public class RadialMenu : BaseWindow
///
/// Contextual button used to traverse through previous layers of the radial menu
///
- public TextureButton? ContextualButton { get; set; }
+ public RadialMenuContextualCentralTextureButton ContextualButton { get; }
+
+ ///
+ /// Button that represents outer area of menu (closes menu on outside clicks).
+ ///
+ public RadialMenuOuterAreaButton MenuOuterAreaButton { get; }
///
/// Set a style class to be applied to the contextual button when it is set to move the user back through previous layers of the radial menu
- ///
+ ///
public string? BackButtonStyleClass
{
get
@@ -52,7 +60,7 @@ public class RadialMenu : BaseWindow
}
}
- private List _path = new();
+ private readonly List _path = new();
private string? _backButtonStyleClass;
private string? _closeButtonStyleClass;
@@ -60,8 +68,8 @@ public class RadialMenu : BaseWindow
/// A free floating menu which enables the quick display of one or more radial containers
///
///
- /// Only one radial container is visible at a time (each container forming a separate 'layer' within
- /// the menu), along with a contextual button at the menu center, which will either return the user
+ /// Only one radial container is visible at a time (each container forming a separate 'layer' within
+ /// the menu), along with a contextual button at the menu center, which will either return the user
/// to the previous layer or close the menu if there are no previous layers left to traverse.
/// To create a functional radial menu, simply parent one or more named radial containers to it,
/// and populate the radial containers with RadialMenuButtons. Setting the TargetLayer field of these
@@ -78,23 +86,56 @@ public class RadialMenu : BaseWindow
}
// Auto generate a contextual button for moving back through visited layers
- ContextualButton = new TextureButton()
+ ContextualButton = new RadialMenuContextualCentralTextureButton
{
HorizontalAlignment = HAlignment.Center,
VerticalAlignment = VAlignment.Center,
SetSize = new Vector2(64f, 64f),
};
+ MenuOuterAreaButton = new RadialMenuOuterAreaButton();
ContextualButton.OnButtonUp += _ => ReturnToPreviousLayer();
+ MenuOuterAreaButton.OnButtonUp += _ => Close();
AddChild(ContextualButton);
+ AddChild(MenuOuterAreaButton);
// Hide any further add children, unless its promoted to the active layer
- OnChildAdded += child => child.Visible = (GetCurrentActiveLayer() == child);
+ OnChildAdded += child =>
+ {
+ child.Visible = GetCurrentActiveLayer() == child;
+ SetupContextualButtonData(child);
+ };
+ }
+
+ private void SetupContextualButtonData(Control child)
+ {
+ if (child is RadialContainer { Visible: true } container)
+ {
+ var parentCenter = MinSize * 0.5f;
+ ContextualButton.ParentCenter = parentCenter;
+ MenuOuterAreaButton.ParentCenter = parentCenter;
+ ContextualButton.InnerRadius = container.CalculatedRadius * container.InnerRadiusMultiplier;
+ MenuOuterAreaButton.OuterRadius = container.CalculatedRadius * container.OuterRadiusMultiplier;
+ }
+ }
+
+ ///
+ protected override Vector2 ArrangeOverride(Vector2 finalSize)
+ {
+ var result = base.ArrangeOverride(finalSize);
+
+ var currentLayer = GetCurrentActiveLayer();
+ if (currentLayer != null)
+ {
+ SetupContextualButtonData(currentLayer);
+ }
+
+ return result;
}
private Control? GetCurrentActiveLayer()
{
- var children = Children.Where(x => x != ContextualButton);
+ var children = Children.Where(x => x != ContextualButton && x != MenuOuterAreaButton);
if (!children.Any())
return null;
@@ -116,7 +157,7 @@ public class RadialMenu : BaseWindow
foreach (var child in Children)
{
- if (child == ContextualButton)
+ if (child == ContextualButton || child == MenuOuterAreaButton)
continue;
// Hide layers which are not of interest
@@ -129,6 +170,7 @@ public class RadialMenu : BaseWindow
else
{
child.Visible = true;
+ SetupContextualButtonData(child);
result = true;
}
}
@@ -158,7 +200,7 @@ public class RadialMenu : BaseWindow
// Hide all children except the contextual button
foreach (var child in Children)
{
- if (child != ContextualButton)
+ if (child != ContextualButton && child != MenuOuterAreaButton)
child.Visible = false;
}
@@ -172,49 +214,86 @@ public class RadialMenu : BaseWindow
}
}
+///
+/// Base class for radial menu buttons. Excludes all actions except clicks and alt-clicks
+/// from interactions.
+///
[Virtual]
-public class RadialMenuButton : Button
+public class RadialMenuTextureButtonBase : TextureButton
{
- ///
- /// Upon clicking this button the radial menu will transition to the named layer
- ///
- public string? TargetLayer { get; set; }
-
- ///
- /// A simple button that can move the user to a different layer within a radial menu
- ///
- public RadialMenuButton()
+ ///
+ protected RadialMenuTextureButtonBase()
{
- OnButtonUp += OnClicked;
+ EnableAllKeybinds = true;
}
- private void OnClicked(ButtonEventArgs args)
+ ///
+ protected override void KeyBindUp(GUIBoundKeyEventArgs args)
{
- if (TargetLayer == null || TargetLayer == string.Empty)
- return;
-
- var parent = FindParentMultiLayerContainer(this);
-
- if (parent == null)
- return;
-
- parent.TryToMoveToNewLayer(TargetLayer);
+ if (args.Function == EngineKeyFunctions.UIClick
+ || args.Function == ContentKeyFunctions.AltActivateItemInWorld)
+ base.KeyBindUp(args);
}
+}
- private RadialMenu? FindParentMultiLayerContainer(Control control)
+///
+/// Special button for closing radial menu or going back between radial menu levels.
+/// Is looking like just but considers whole space around
+/// itself (til radial menu buttons) as itself in case of clicking. But this 'effect'
+/// works only if control have parent, and ActiveContainer property is set.
+/// Also considers all space outside of radial menu buttons as itself for clicking.
+///
+public sealed class RadialMenuContextualCentralTextureButton : RadialMenuTextureButtonBase
+{
+ public float InnerRadius { get; set; }
+
+ public Vector2? ParentCenter { get; set; }
+
+ ///
+ protected override bool HasPoint(Vector2 point)
{
- foreach (var ancestor in control.GetSelfAndLogicalAncestors())
+ if (ParentCenter == null)
{
- if (ancestor is RadialMenu)
- return ancestor as RadialMenu;
+ return base.HasPoint(point);
}
- return null;
+ var distSquared = (point + Position - ParentCenter.Value).LengthSquared();
+
+ var innerRadiusSquared = InnerRadius * InnerRadius;
+
+ // comparing to squared values is faster then making sqrt
+ return distSquared < innerRadiusSquared;
+ }
+}
+
+///
+/// Menu button for outer area of radial menu (covers everything 'outside').
+///
+public sealed class RadialMenuOuterAreaButton : RadialMenuTextureButtonBase
+{
+ public float OuterRadius { get; set; }
+
+ public Vector2? ParentCenter { get; set; }
+
+ ///
+ protected override bool HasPoint(Vector2 point)
+ {
+ if (ParentCenter == null)
+ {
+ return base.HasPoint(point);
+ }
+
+ var distSquared = (point + Position - ParentCenter.Value).LengthSquared();
+
+ var outerRadiusSquared = OuterRadius * OuterRadius;
+
+ // comparing to squared values is faster, then making sqrt
+ return distSquared > outerRadiusSquared;
}
}
[Virtual]
-public class RadialMenuTextureButton : TextureButton
+public class RadialMenuTextureButton : RadialMenuTextureButtonBase
{
///
/// Upon clicking this button the radial menu will be moved to the named layer
@@ -226,6 +305,7 @@ public class RadialMenuTextureButton : TextureButton
///
public RadialMenuTextureButton()
{
+ EnableAllKeybinds = true;
OnButtonUp += OnClicked;
}
@@ -246,10 +326,329 @@ public class RadialMenuTextureButton : TextureButton
{
foreach (var ancestor in control.GetSelfAndLogicalAncestors())
{
- if (ancestor is RadialMenu)
- return ancestor as RadialMenu;
+ if (ancestor is RadialMenu menu)
+ return menu;
}
return null;
}
}
+
+public interface IRadialMenuItemWithSector
+{
+ ///
+ /// Angle in radian where button sector should start.
+ ///
+ public float AngleSectorFrom { set; }
+
+ ///
+ /// Angle in radian where button sector should end.
+ ///
+ public float AngleSectorTo { set; }
+
+ ///
+ /// Outer radius for drawing segment and pointer detection.
+ ///
+ public float OuterRadius { set; }
+
+ ///
+ /// Outer radius for drawing segment and pointer detection.
+ ///
+ public float InnerRadius { set; }
+
+ ///
+ /// Offset in radian by which menu button should be rotated.
+ ///
+ public float AngleOffset { set; }
+
+ ///
+ /// Coordinates of center in parent component - button container.
+ ///
+ public Vector2 ParentCenter { set; }
+}
+
+[Virtual]
+public class RadialMenuTextureButtonWithSector : RadialMenuTextureButton, IRadialMenuItemWithSector
+{
+ private Vector2[]? _sectorPointsForDrawing;
+
+ private float _angleSectorFrom;
+ private float _angleSectorTo;
+ private float _outerRadius;
+ private float _innerRadius;
+ private float _angleOffset;
+
+ private bool _isWholeCircle;
+ private Vector2? _parentCenter;
+
+ private Color _backgroundColorSrgb = Color.ToSrgb(new Color(70, 73, 102, 128));
+ private Color _hoverBackgroundColorSrgb = Color.ToSrgb(new Color(87, 91, 127, 128));
+ private Color _borderColorSrgb = Color.ToSrgb(new Color(173, 216, 230, 70));
+ private Color _hoverBorderColorSrgb = Color.ToSrgb(new Color(87, 91, 127, 128));
+
+ ///
+ /// Marker, that control should render border of segment. Is false by default.
+ ///
+ ///
+ /// By default color of border is same as color of background. Use
+ /// and to change it.
+ ///
+ public bool DrawBorder { get; set; } = false;
+
+ ///
+ /// Marker, that control should render background of all sector. Is true by default.
+ ///
+ public bool DrawBackground { get; set; } = true;
+
+ ///
+ /// Marker, that control should render separator lines.
+ /// Separator lines are used to visually separate sector of radial menu items.
+ /// Is true by default
+ ///
+ public bool DrawSeparators { get; set; } = true;
+
+ ///
+ /// Color of background in non-hovered state. Accepts RGB color, works with sRGB for DrawPrimitive internally.
+ ///
+ public Color BackgroundColor
+ {
+ get => Color.FromSrgb(_backgroundColorSrgb);
+ set => _backgroundColorSrgb = Color.ToSrgb(value);
+ }
+
+ ///
+ /// Color of background in hovered state. Accepts RGB color, works with sRGB for DrawPrimitive internally.
+ ///
+ public Color HoverBackgroundColor
+ {
+ get => Color.FromSrgb(_hoverBackgroundColorSrgb);
+ set => _hoverBackgroundColorSrgb = Color.ToSrgb(value);
+ }
+
+ ///
+ /// Color of button border. Accepts RGB color, works with sRGB for DrawPrimitive internally.
+ ///
+ public Color BorderColor
+ {
+ get => Color.FromSrgb(_borderColorSrgb);
+ set => _borderColorSrgb = Color.ToSrgb(value);
+ }
+
+ ///
+ /// Color of button border when button is hovered. Accepts RGB color, works with sRGB for DrawPrimitive internally.
+ ///
+ public Color HoverBorderColor
+ {
+ get => Color.FromSrgb(_hoverBorderColorSrgb);
+ set => _hoverBorderColorSrgb = Color.ToSrgb(value);
+ }
+
+ ///
+ /// Color of separator lines.
+ /// Separator lines are used to visually separate sector of radial menu items.
+ ///
+ public Color SeparatorColor { get; set; } = new Color(128, 128, 128, 128);
+
+ ///
+ float IRadialMenuItemWithSector.AngleSectorFrom
+ {
+ set
+ {
+ _angleSectorFrom = value;
+ _isWholeCircle = IsWholeCircle(value, _angleSectorTo);
+ }
+ }
+
+ ///
+ float IRadialMenuItemWithSector.AngleSectorTo
+ {
+ set
+ {
+ _angleSectorTo = value;
+ _isWholeCircle = IsWholeCircle(_angleSectorFrom, value);
+ }
+ }
+
+ ///
+ float IRadialMenuItemWithSector.OuterRadius { set => _outerRadius = value; }
+
+ ///
+ float IRadialMenuItemWithSector.InnerRadius { set => _innerRadius = value; }
+
+ ///
+ public float AngleOffset { set => _angleOffset = value; }
+
+ ///
+ Vector2 IRadialMenuItemWithSector.ParentCenter { set => _parentCenter = value; }
+
+ ///
+ /// A simple texture button that can move the user to a different layer within a radial menu
+ ///
+ public RadialMenuTextureButtonWithSector()
+ {
+ }
+
+ ///
+ protected override void Draw(DrawingHandleScreen handle)
+ {
+ base.Draw(handle);
+
+ if (_parentCenter == null)
+ {
+ return;
+ }
+
+ // draw sector where space that button occupies actually is
+ var containerCenter = (_parentCenter.Value - Position) * UIScale;
+
+ var angleFrom = _angleSectorFrom + _angleOffset;
+ var angleTo = _angleSectorTo + _angleOffset;
+ if (DrawBackground)
+ {
+ var segmentColor = DrawMode == DrawModeEnum.Hover
+ ? _hoverBackgroundColorSrgb
+ : _backgroundColorSrgb;
+
+ DrawAnnulusSector(handle, containerCenter, _innerRadius * UIScale, _outerRadius * UIScale, angleFrom, angleTo, segmentColor);
+ }
+
+ if (DrawBorder)
+ {
+ var borderColor = DrawMode == DrawModeEnum.Hover
+ ? _hoverBorderColorSrgb
+ : _borderColorSrgb;
+ DrawAnnulusSector(handle, containerCenter, _innerRadius * UIScale, _outerRadius * UIScale, angleFrom, angleTo, borderColor, false);
+ }
+
+ if (!_isWholeCircle && DrawSeparators)
+ {
+ DrawSeparatorLines(handle, containerCenter, _innerRadius * UIScale, _outerRadius * UIScale, angleFrom, angleTo, SeparatorColor);
+ }
+ }
+
+ ///
+ protected override bool HasPoint(Vector2 point)
+ {
+ if (_parentCenter == null)
+ {
+ return base.HasPoint(point);
+ }
+
+ var outerRadiusSquared = _outerRadius * _outerRadius;
+ var innerRadiusSquared = _innerRadius * _innerRadius;
+
+ var distSquared = (point + Position - _parentCenter.Value).LengthSquared();
+ var isInRadius = distSquared < outerRadiusSquared && distSquared > innerRadiusSquared;
+ if (!isInRadius)
+ {
+ return false;
+ }
+
+ // difference from the center of the parent to the `point`
+ var pointFromParent = point + Position - _parentCenter.Value;
+
+ // Flip Y to get from ui coordinates to natural coordinates
+ var angle = MathF.Atan2(-pointFromParent.Y, pointFromParent.X) - _angleOffset;
+ if (angle < 0)
+ {
+ // atan2 range is -pi->pi, while angle sectors are
+ // 0->2pi, so remap the result into that range
+ angle = MathF.PI * 2 + angle;
+ }
+
+ var isInAngle = angle >= _angleSectorFrom && angle < _angleSectorTo;
+ return isInAngle;
+ }
+
+ ///
+ /// Draw segment between two concentrated circles from and to certain angles.
+ ///
+ /// Drawing handle, to which rendering should be delegated.
+ /// Point where circle center should be.
+ /// Radius of internal circle.
+ /// Radius of external circle.
+ /// Angle in radian, from which sector should start.
+ /// Angle in radian, from which sector should start.
+ /// Color for drawing.
+ /// Should figure be filled, or have only border.
+ private void DrawAnnulusSector(
+ DrawingHandleScreen drawingHandleScreen,
+ Vector2 center,
+ float radiusInner,
+ float radiusOuter,
+ float angleSectorFrom,
+ float angleSectorTo,
+ Color color,
+ bool filled = true
+ )
+ {
+ const float minimalSegmentSize = MathF.Tau / 128f;
+
+ var requestedSegmentSize = angleSectorTo - angleSectorFrom;
+ var segmentCount = (int)(requestedSegmentSize / minimalSegmentSize) + 1;
+ var anglePerSegment = requestedSegmentSize / (segmentCount - 1);
+
+ var bufferSize = segmentCount * 2;
+ if (_sectorPointsForDrawing == null || _sectorPointsForDrawing.Length != bufferSize)
+ {
+ _sectorPointsForDrawing ??= new Vector2[bufferSize];
+ }
+
+ for (var i = 0; i < segmentCount; i++)
+ {
+ var angle = angleSectorFrom + anglePerSegment * i;
+
+ // Flip Y to get from ui coordinates to natural coordinates
+ var unitPos = new Vector2(MathF.Cos(angle), -MathF.Sin(angle));
+ var outerPoint = center + unitPos * radiusOuter;
+ var innerPoint = center + unitPos * radiusInner;
+ if (filled)
+ {
+ // to make filled sector we need to create strip from triangles
+ _sectorPointsForDrawing[i * 2] = outerPoint;
+ _sectorPointsForDrawing[i * 2 + 1] = innerPoint;
+ }
+ else
+ {
+ // to make border of sector we need points ordered as sequences on radius
+ _sectorPointsForDrawing[i] = outerPoint;
+ _sectorPointsForDrawing[bufferSize - 1 - i] = innerPoint;
+ }
+ }
+
+ var type = filled
+ ? DrawPrimitiveTopology.TriangleStrip
+ : DrawPrimitiveTopology.LineStrip;
+ drawingHandleScreen.DrawPrimitives(type, _sectorPointsForDrawing, color);
+ }
+
+ private static void DrawSeparatorLines(
+ DrawingHandleScreen drawingHandleScreen,
+ Vector2 center,
+ float radiusInner,
+ float radiusOuter,
+ float angleSectorFrom,
+ float angleSectorTo,
+ Color color
+ )
+ {
+ var fromPoint = new Angle(-angleSectorFrom).RotateVec(Vector2.UnitX);
+ drawingHandleScreen.DrawLine(
+ center + fromPoint * radiusOuter,
+ center + fromPoint * radiusInner,
+ color
+ );
+
+ var toPoint = new Angle(-angleSectorTo).RotateVec(Vector2.UnitX);
+ drawingHandleScreen.DrawLine(
+ center + toPoint * radiusOuter,
+ center + toPoint * radiusInner,
+ color
+ );
+ }
+
+ private static bool IsWholeCircle(float angleSectorFrom, float angleSectorTo)
+ {
+ return new Angle(angleSectorFrom).EqualsApprox(new Angle(angleSectorTo));
+ }
+}
diff --git a/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs b/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs
index 9f75b5cecd..445bcc8601 100644
--- a/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs
+++ b/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs
@@ -45,6 +45,7 @@ public sealed class AHelpUIController: UIController, IOnSystemChanged _aHelpSound = v, true);
+ _config.OnValueChanged(CCVars.BwoinkSoundEnabled, v => _bwoinkSoundEnabled = v, true);
}
public void UnloadButton()
@@ -135,7 +137,7 @@ public sealed class AHelpUIController: UIController, IOnSystemChanged(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/Weapons/Melee/MeleeWeaponSystem.Effects.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs
index 3b800d381e..2883a5fd16 100644
--- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs
+++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs
@@ -160,6 +160,7 @@ public sealed partial class MeleeWeaponSystem
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/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs
index 26ec75f995..dc86580369 100644
--- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs
+++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs
@@ -170,7 +170,7 @@ public sealed partial class MeleeWeaponSystem : SharedMeleeWeaponSystem
var targetCoordinates = xform.Coordinates;
var targetLocalAngle = xform.LocalRotation;
- return Interaction.InRangeUnobstructed(user, target, targetCoordinates, targetLocalAngle, range);
+ return Interaction.InRangeUnobstructed(user, target, targetCoordinates, targetLocalAngle, range, overlapCheck: false);
}
protected override void DoDamageEffect(List targets, EntityUid? user, TransformComponent targetXform)
diff --git a/Content.Client/Wieldable/WieldableSystem.cs b/Content.Client/Wieldable/WieldableSystem.cs
new file mode 100644
index 0000000000..2de837923c
--- /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.Client/_CP14/JoinQueue/JoinQueueManager.cs b/Content.Client/_CP14/JoinQueue/JoinQueueManager.cs
new file mode 100644
index 0000000000..81aac3cace
--- /dev/null
+++ b/Content.Client/_CP14/JoinQueue/JoinQueueManager.cs
@@ -0,0 +1,26 @@
+using Content.Shared._CP14.JoinQueue;
+using Robust.Client.State;
+using Robust.Shared.Network;
+
+namespace Content.Client._CP14.JoinQueue;
+
+public sealed class JoinQueueManager
+{
+ [Dependency] private readonly IClientNetManager _netManager = default!;
+ [Dependency] private readonly IStateManager _stateManager = default!;
+
+ public void Initialize()
+ {
+ _netManager.RegisterNetMessage(OnQueueUpdate);
+ }
+
+ private void OnQueueUpdate(MsgQueueUpdate msg)
+ {
+ if (_stateManager.CurrentState is not QueueState)
+ {
+ _stateManager.RequestStateChange();
+ }
+
+ ((QueueState) _stateManager.CurrentState).OnQueueUpdate(msg);
+ }
+}
diff --git a/Content.Client/_CP14/JoinQueue/QueueGui.xaml b/Content.Client/_CP14/JoinQueue/QueueGui.xaml
new file mode 100644
index 0000000000..3599fdd812
--- /dev/null
+++ b/Content.Client/_CP14/JoinQueue/QueueGui.xaml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Content.Client/_CP14/JoinQueue/QueueGui.xaml.cs b/Content.Client/_CP14/JoinQueue/QueueGui.xaml.cs
new file mode 100644
index 0000000000..520b152bd0
--- /dev/null
+++ b/Content.Client/_CP14/JoinQueue/QueueGui.xaml.cs
@@ -0,0 +1,41 @@
+using Content.Shared.CCVar;
+using Robust.Client.AutoGenerated;
+using Robust.Client.UserInterface;
+using Robust.Client.UserInterface.Controls;
+using Robust.Client.UserInterface.XAML;
+using Robust.Shared.Configuration;
+
+namespace Content.Client._CP14.JoinQueue;
+
+[GenerateTypedNameReferences]
+public sealed partial class QueueGui : Control
+{
+ [Dependency] private readonly IConfigurationManager _cfg = default!;
+
+ public event Action? QuitPressed;
+
+ public QueueGui()
+ {
+ RobustXamlLoader.Load(this);
+ IoCManager.InjectDependencies(this);
+ LayoutContainer.SetAnchorPreset(this, LayoutContainer.LayoutPreset.Wide);
+
+ QuitButton.OnPressed += (_) => QuitPressed?.Invoke();
+
+ // Disable "priority join" button on Steam builds
+ // since it violates Valve's rules about alternative storefronts.
+ PriorityJoinButton.Visible = !_cfg.GetCVar(CCVars.BrandingSteam);
+
+ PriorityJoinButton.OnPressed += (_) =>
+ {
+ var linkPatreon = _cfg.GetCVar(CCVars.InfoLinksPatreon);
+ IoCManager.Resolve().OpenUri(linkPatreon);
+ };
+ }
+
+ public void UpdateInfo(int total, int position)
+ {
+ QueueTotal.Text = total.ToString();
+ QueuePosition.Text = position.ToString();
+ }
+}
diff --git a/Content.Client/_CP14/JoinQueue/QueueState.cs b/Content.Client/_CP14/JoinQueue/QueueState.cs
new file mode 100644
index 0000000000..75a6d17a48
--- /dev/null
+++ b/Content.Client/_CP14/JoinQueue/QueueState.cs
@@ -0,0 +1,53 @@
+using Content.Client._CP14.JoinQueue;
+using Content.Shared._CP14.JoinQueue;
+using Robust.Client.Audio;
+using Robust.Client.Console;
+using Robust.Client.State;
+using Robust.Client.UserInterface;
+using Robust.Shared.Player;
+
+namespace Content.Client._CP14.JoinQueue;
+
+public sealed class QueueState : State
+{
+ [Dependency] private readonly IUserInterfaceManager _userInterfaceManager = default!;
+ [Dependency] private readonly IClientConsoleHost _consoleHost = default!;
+
+ private const string JoinSoundPath = "/Audio/Effects/voteding.ogg";
+
+ private QueueGui? _gui;
+
+ protected override void Startup()
+ {
+ _gui = new QueueGui();
+ _userInterfaceManager.StateRoot.AddChild(_gui);
+
+ _gui.QuitPressed += OnQuitPressed;
+ }
+
+ protected override void Shutdown()
+ {
+ _gui!.QuitPressed -= OnQuitPressed;
+ _gui.Dispose();
+
+ Ding();
+ }
+
+ private void Ding()
+ {
+ if (IoCManager.Resolve().TrySystem(out var audio))
+ {
+ audio.PlayGlobal(JoinSoundPath, Filter.Local(), false);
+ }
+ }
+
+ public void OnQueueUpdate(MsgQueueUpdate msg)
+ {
+ _gui?.UpdateInfo(msg.Total, msg.Position);
+ }
+
+ private void OnQuitPressed()
+ {
+ _consoleHost.ExecuteCommand("quit");
+ }
+}
diff --git a/Content.Client/_CP14/MagicWeakness/CP14ClientMagicWeaknessSystem.cs b/Content.Client/_CP14/MagicWeakness/CP14ClientMagicWeaknessSystem.cs
new file mode 100644
index 0000000000..3a76475d62
--- /dev/null
+++ b/Content.Client/_CP14/MagicWeakness/CP14ClientMagicWeaknessSystem.cs
@@ -0,0 +1,7 @@
+using Content.Shared._CP14.MagicWeakness;
+
+namespace Content.Client._CP14.MagicWeakness;
+
+public class CP14ClientMagicWeaknessSystem : CP14SharedMagicWeaknessSystem
+{
+}
diff --git a/Content.Client/_CP14/Wallpaper/CP14ClientWallpaperSystem.cs b/Content.Client/_CP14/Wallpaper/CP14ClientWallpaperSystem.cs
index 3738271cf5..9b60e39061 100644
--- a/Content.Client/_CP14/Wallpaper/CP14ClientWallpaperSystem.cs
+++ b/Content.Client/_CP14/Wallpaper/CP14ClientWallpaperSystem.cs
@@ -1,5 +1,6 @@
using Content.Client.IconSmoothing;
using Content.Shared._CP14.Wallpaper;
+using Content.Shared.IconSmoothing;
using Robust.Client.GameObjects;
namespace Content.Client._CP14.Wallpaper;
@@ -8,8 +9,8 @@ public sealed class CP14ClientWallpaperSystem : CP14SharedWallpaperSystem
{
public override void Initialize()
{
- SubscribeLocalEvent(OnHandleState, after: new[] { typeof(IconSmoothSystem) });
- SubscribeLocalEvent(OnStartup, after: new[] { typeof(IconSmoothSystem) });
+ SubscribeLocalEvent(OnHandleState, after: new[] { typeof(IconSmoothSystem), typeof(SharedRandomIconSmoothSystem), typeof(ClientRandomIconSmoothSystem) });
+ SubscribeLocalEvent(OnStartup, after: new[] { typeof(IconSmoothSystem), typeof(SharedRandomIconSmoothSystem), typeof(ClientRandomIconSmoothSystem) });
}
private void OnStartup(Entity holder, ref ComponentStartup args)
diff --git a/Content.IntegrationTests/Tests/ContrabandTest.cs b/Content.IntegrationTests/Tests/ContrabandTest.cs
new file mode 100644
index 0000000000..ebd6afa7ef
--- /dev/null
+++ b/Content.IntegrationTests/Tests/ContrabandTest.cs
@@ -0,0 +1,41 @@
+using Content.Shared.Contraband;
+using Robust.Shared.GameObjects;
+using Robust.Shared.Prototypes;
+
+namespace Content.IntegrationTests.Tests;
+
+[TestFixture]
+public sealed class ContrabandTest
+{
+ [Test]
+ public async Task EntityShowDepartmentsAndJobs()
+ {
+ await using var pair = await PoolManager.GetServerClient();
+ var client = pair.Client;
+ var protoMan = client.ResolveDependency();
+ var componentFactory = client.ResolveDependency();
+
+ await client.WaitAssertion(() =>
+ {
+ foreach (var proto in protoMan.EnumeratePrototypes())
+ {
+ if (proto.Abstract || pair.IsTestPrototype(proto))
+ continue;
+
+ if (!proto.TryGetComponent(out var contraband, componentFactory))
+ continue;
+
+ Assert.That(protoMan.TryIndex(contraband.Severity, out var severity, false),
+ @$"{proto.ID} has a ContrabandComponent with a unknown severity.");
+
+ if (!severity.ShowDepartmentsAndJobs)
+ continue;
+
+ Assert.That(contraband.AllowedDepartments.Count + contraband.AllowedJobs.Count, Is.Not.EqualTo(0),
+ @$"{proto.ID} has a ContrabandComponent with ShowDepartmentsAndJobs but no allowed departments or jobs.");
+ }
+ });
+
+ await pair.CleanReturnAsync();
+ }
+}
diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs
index a0b4df8be0..13abf18919 100644
--- a/Content.IntegrationTests/Tests/PostMapInitTest.cs
+++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs
@@ -50,6 +50,7 @@ namespace Content.IntegrationTests.Tests
//CrystallEdge maps
"Comoss",
+ "Factoria",
//CrystallEdge Map replacement end
};
diff --git a/Content.Server/Access/AccessWireAction.cs b/Content.Server/Access/AccessWireAction.cs
index 7676ce489f..b3beb3967b 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 sealed partial class AccessWireAction : ComponentWireAction(wire.Owner))
- {
- comp.Enabled = true;
- EntityManager.Dirty(wire.Owner, comp);
- }
+ comp.Enabled = true;
+ EntityManager.Dirty(wire.Owner, comp);
+
return true;
}
@@ -58,7 +55,7 @@ public sealed partial class AccessWireAction : ComponentWireAction(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 a882209b2d..a0dbc96677 100644
--- a/Content.Server/Access/Systems/AccessOverriderSystem.cs
+++ b/Content.Server/Access/Systems/AccessOverriderSystem.cs
@@ -245,6 +245,10 @@ public sealed class AccessOverriderSystem : SharedAccessOverriderSystem
$"{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.Notification.cs b/Content.Server/Administration/Managers/BanManager.Notification.cs
index e9bfa62884..ff84887f00 100644
--- a/Content.Server/Administration/Managers/BanManager.Notification.cs
+++ b/Content.Server/Administration/Managers/BanManager.Notification.cs
@@ -1,6 +1,4 @@
-using System.Text.Json;
using System.Text.Json.Serialization;
-using Content.Server.Database;
namespace Content.Server.Administration.Managers;
@@ -30,36 +28,15 @@ public sealed partial class BanManager
private TimeSpan _banNotificationRateLimitStart;
private int _banNotificationRateLimitCount;
- private void OnDatabaseNotification(DatabaseNotification notification)
+ private bool OnDatabaseNotificationEarlyFilter()
{
- if (notification.Channel != BanNotificationChannel)
- return;
-
- if (notification.Payload == null)
- {
- _sawmill.Error("Got ban notification with null payload!");
- return;
- }
-
- BanNotificationData data;
- try
- {
- data = JsonSerializer.Deserialize(notification.Payload)
- ?? throw new JsonException("Content is null");
- }
- catch (JsonException e)
- {
- _sawmill.Error($"Got invalid JSON in ban notification: {e}");
- return;
- }
-
if (!CheckBanRateLimit())
{
_sawmill.Verbose("Not processing ban notification due to rate limit");
- return;
+ return false;
}
- _taskManager.RunOnMainThread(() => ProcessBanNotification(data));
+ return true;
}
private async void ProcessBanNotification(BanNotificationData data)
diff --git a/Content.Server/Administration/Managers/BanManager.cs b/Content.Server/Administration/Managers/BanManager.cs
index 2e21710e51..2d76c434e9 100644
--- a/Content.Server/Administration/Managers/BanManager.cs
+++ b/Content.Server/Administration/Managers/BanManager.cs
@@ -53,7 +53,12 @@ public sealed partial class BanManager : IBanManager, IPostInjectInit
{
_netManager.RegisterNetMessage();
- _db.SubscribeToNotifications(OnDatabaseNotification);
+ _db.SubscribeToJsonNotification(
+ _taskManager,
+ _sawmill,
+ BanNotificationChannel,
+ ProcessBanNotification,
+ OnDatabaseNotificationEarlyFilter);
_userDbData.AddOnLoadPlayer(CachePlayerData);
_userDbData.AddOnPlayerDisconnect(ClearPlayerData);
@@ -160,6 +165,8 @@ public sealed partial class BanManager : IBanManager, IPostInjectInit
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/Administration/Managers/MultiServerKickManager.cs b/Content.Server/Administration/Managers/MultiServerKickManager.cs
new file mode 100644
index 0000000000..abc8bb1f2d
--- /dev/null
+++ b/Content.Server/Administration/Managers/MultiServerKickManager.cs
@@ -0,0 +1,114 @@
+using System.Text.Json;
+using System.Text.Json.Serialization;
+using Content.Server.Database;
+using Content.Shared.CCVar;
+using Robust.Server.Player;
+using Robust.Shared.Asynchronous;
+using Robust.Shared.Configuration;
+using Robust.Shared.Enums;
+using Robust.Shared.Network;
+using Robust.Shared.Player;
+
+namespace Content.Server.Administration.Managers;
+
+///
+/// Handles kicking people that connect to multiple servers on the same DB at once.
+///
+///
+public sealed class MultiServerKickManager
+{
+ public const string NotificationChannel = "multi_server_kick";
+
+ [Dependency] private readonly IPlayerManager _playerManager = null!;
+ [Dependency] private readonly IServerDbManager _dbManager = null!;
+ [Dependency] private readonly ILogManager _logManager = null!;
+ [Dependency] private readonly IConfigurationManager _cfg = null!;
+ [Dependency] private readonly IAdminManager _adminManager = null!;
+ [Dependency] private readonly ITaskManager _taskManager = null!;
+ [Dependency] private readonly IServerNetManager _netManager = null!;
+ [Dependency] private readonly ILocalizationManager _loc = null!;
+ [Dependency] private readonly ServerDbEntryManager _serverDbEntry = null!;
+
+ private ISawmill _sawmill = null!;
+ private bool _allowed;
+
+ public void Initialize()
+ {
+ _sawmill = _logManager.GetSawmill("multi_server_kick");
+
+ _playerManager.PlayerStatusChanged += OnPlayerStatusChanged;
+ _cfg.OnValueChanged(CCVars.AdminAllowMultiServerPlay, b => _allowed = b, true);
+
+ _dbManager.SubscribeToJsonNotification(
+ _taskManager,
+ _sawmill,
+ NotificationChannel,
+ OnNotification,
+ OnNotificationEarlyFilter
+ );
+ }
+
+ // ReSharper disable once AsyncVoidMethod
+ private async void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e)
+ {
+ if (_allowed)
+ return;
+
+ if (e.NewStatus != SessionStatus.InGame)
+ return;
+
+ // Send notification to other servers so they can kick this player that just connected.
+ try
+ {
+ await _dbManager.SendNotification(new DatabaseNotification
+ {
+ Channel = NotificationChannel,
+ Payload = JsonSerializer.Serialize(new NotificationData
+ {
+ PlayerId = e.Session.UserId,
+ ServerId = (await _serverDbEntry.ServerEntity).Id,
+ }),
+ });
+ }
+ catch (Exception ex)
+ {
+ _sawmill.Error($"Failed to send notification for multi server kick: {ex}");
+ }
+ }
+
+ private bool OnNotificationEarlyFilter()
+ {
+ if (_allowed)
+ {
+ _sawmill.Verbose("Received notification for player join, but multi server play is allowed on this server. Ignoring");
+ return false;
+ }
+
+ return true;
+ }
+
+ // ReSharper disable once AsyncVoidMethod
+ private async void OnNotification(NotificationData notification)
+ {
+ if (!_playerManager.TryGetSessionById(new NetUserId(notification.PlayerId), out var player))
+ return;
+
+ if (notification.ServerId == (await _serverDbEntry.ServerEntity).Id)
+ return;
+
+ if (_adminManager.IsAdmin(player, includeDeAdmin: true))
+ return;
+
+ _sawmill.Info($"Kicking {player} for connecting to another server. Multi-server play is not allowed.");
+ _netManager.DisconnectChannel(player.Channel, _loc.GetString("multi-server-kick-reason"));
+ }
+
+ private sealed class NotificationData
+ {
+ [JsonPropertyName("player_id")]
+ public Guid PlayerId { get; set; }
+
+ [JsonPropertyName("server_id")]
+ public int ServerId { get; set; }
+ }
+}
diff --git a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs
index 9f81c64dbc..983cf2c8f4 100644
--- a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs
+++ b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs
@@ -116,8 +116,11 @@ public sealed class TechAnomalySystem : EntitySystem
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 0a3ee4d7f7..6d768c1292 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 @@ public sealed class FireAlarmSystem : EntitySystem
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 36ced3887d..48cdaebb97 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 @@ namespace Content.Server.Atmos.Piping.Binary.Components
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 c0b496fae8..3f388617de 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 @@ namespace Content.Server.Atmos.Piping.Trinary.Components
[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 1daa42d7c4..afbfb91249 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 @@ namespace Content.Server.Atmos.Piping.Unary.Components
[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 7e082024a8..65755d62c5 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 @@ namespace Content.Server.Atmos.Piping.Unary.Components
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 5da4ec9fdf..f481443c94 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 @@ namespace Content.Server.Atmos.Piping.Unary.Components
/// thermomachine to heat or cool air.
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float HeatCapacity = 5000;
[DataField, ViewVariables(VVAccess.ReadWrite)]
@@ -21,6 +23,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components
///
/// Tolerance for temperature setpoint hysteresis.
///
+ [GuidebookData]
[DataField, ViewVariables(VVAccess.ReadOnly)]
public float TemperatureTolerance = 2f;
@@ -44,6 +47,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components
/// Ignored if heater.
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float MinTemperature = 73.15f;
///
@@ -51,6 +55,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components
/// Ignored if freezer.
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float MaxTemperature = 593.15f;
///
@@ -63,6 +68,7 @@ namespace Content.Server.Atmos.Piping.Unary.Components
/// 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 fcf3ddf969..25b15f0ed5 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 @@ namespace Content.Server.Atmos.Piping.Unary.Components
/// 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 @@ namespace Content.Server.Atmos.Piping.Unary.Components
[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 @@ namespace Content.Server.Atmos.Piping.Unary.Components
/// Max pressure of the target gas (NOT relative to source).
///
[DataField]
+ [GuidebookData]
public float MaxPressure = Atmospherics.MaxOutputPressure;
///
@@ -172,5 +175,12 @@ namespace Content.Server.Atmos.Piping.Unary.Components
InternalPressureBound = data.InternalPressureBound;
PressureLockoutOverride = data.PressureLockoutOverride;
}
+
+ #region GuidebookData
+
+ [GuidebookData]
+ public float DefaultExternalBound => Atmospherics.OneAtmosphere;
+
+ #endregion
}
}
diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs
index 584928def7..292b6d94f8 100644
--- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs
+++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs
@@ -109,7 +109,15 @@ public sealed class GasCanisterSystem : EntitySystem
var item = canister.GasTankSlot.Item;
_slots.TryEjectToHands(uid, canister.GasTankSlot, args.Actor);
- _adminLogger.Add(LogType.CanisterTankEjected, LogImpact.Medium, $"Player {ToPrettyString(args.Actor):player} ejected tank {ToPrettyString(item):tank} from {ToPrettyString(uid):canister}");
+
+ if (canister.ReleaseValve)
+ {
+ _adminLogger.Add(LogType.CanisterTankEjected, LogImpact.High, $"Player {ToPrettyString(args.Actor):player} ejected tank {ToPrettyString(item):tank} from {ToPrettyString(uid):canister} while the valve was open, releasing [{GetContainedGasesString((uid, canister))}] to atmosphere");
+ }
+ else
+ {
+ _adminLogger.Add(LogType.CanisterTankEjected, LogImpact.Medium, $"Player {ToPrettyString(args.Actor):player} ejected tank {ToPrettyString(item):tank} from {ToPrettyString(uid):canister}");
+ }
}
private void OnCanisterChangeReleasePressure(EntityUid uid, GasCanisterComponent canister, GasCanisterChangeReleasePressureMessage args)
@@ -124,24 +132,24 @@ public sealed class GasCanisterSystem : EntitySystem
private void OnCanisterChangeReleaseValve(EntityUid uid, GasCanisterComponent canister, GasCanisterChangeReleaseValveMessage args)
{
- var impact = LogImpact.High;
// filling a jetpack with plasma is less important than filling a room with it
- impact = canister.GasTankSlot.HasItem ? LogImpact.Medium : LogImpact.High;
+ var hasItem = canister.GasTankSlot.HasItem;
+ var impact = hasItem ? LogImpact.Medium : LogImpact.High;
- var containedGasDict = new Dictionary();
- var containedGasArray = Enum.GetValues(typeof(Gas));
-
- for (int i = 0; i < containedGasArray.Length; i++)
- {
- containedGasDict.Add((Gas)i, canister.Air[i]);
- }
-
- _adminLogger.Add(LogType.CanisterValve, impact, $"{ToPrettyString(args.Actor):player} set the valve on {ToPrettyString(uid):canister} to {args.Valve:valveState} while it contained [{string.Join(", ", containedGasDict)}]");
+ _adminLogger.Add(
+ LogType.CanisterValve,
+ impact,
+ $"{ToPrettyString(args.Actor):player} {(args.Valve ? "opened" : "closed")} the valve on {ToPrettyString(uid):canister} to {(hasItem ? "inserted tank" : "environment")} while it contained [{GetContainedGasesString((uid, canister))}]");
canister.ReleaseValve = args.Valve;
DirtyUI(uid, canister);
}
+ private static string GetContainedGasesString(Entity canister)
+ {
+ return string.Join(", ", canister.Comp.Air);
+ }
+
private void OnCanisterUpdated(EntityUid uid, GasCanisterComponent canister, ref AtmosDeviceUpdateEvent args)
{
_atmos.React(canister.Air, canister);
diff --git a/Content.Server/Atmos/Portable/PortableScrubberComponent.cs b/Content.Server/Atmos/Portable/PortableScrubberComponent.cs
index ae9a5da963..b228091806 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 @@ namespace Content.Server.Atmos.Portable
///
[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 e490ab3ea0..d13826e4e9 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 2cc8085e72..b2d6889408 100644
--- a/Content.Server/Bed/BedSystem.cs
+++ b/Content.Server/Bed/BedSystem.cs
@@ -20,6 +20,7 @@ namespace Content.Server.Bed
{
[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 @@ namespace Content.Server.Bed
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 a7735787cb..c650438b28 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 373e8e243b..7f74fe269d 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;
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 JetBrains.Annotations;
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 @@ public sealed partial class CargoSystem
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 @@ public sealed partial class CargoSystem
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 @@ public sealed partial class CargoSystem
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 sealed partial class CargoSystem
}
[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 sealed partial class CargoSystem
}
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 e4bd951513..9dbd2b88dc 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.Components;
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 @@ namespace Content.Server.Cargo.Systems
SubscribeLocalEvent(OnInit);
SubscribeLocalEvent(OnInteractUsing);
SubscribeLocalEvent(OnOrderBalanceUpdated);
+ SubscribeLocalEvent(OnEmagged);
Reset();
}
@@ -75,6 +77,17 @@ namespace Content.Server.Cargo.Systems
_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 @@ namespace Content.Server.Cargo.Systems
{
_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 @@ namespace Content.Server.Cargo.Systems
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 @@ namespace Content.Server.Cargo.Systems
$"{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 @@ namespace Content.Server.Cargo.Systems
}
- 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 65f9274001..d8aac56515 100644
--- a/Content.Server/Cloning/CloningSystem.cs
+++ b/Content.Server/Cloning/CloningSystem.cs
@@ -60,6 +60,7 @@ namespace Content.Server.Cloning
[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 @@ namespace Content.Server.Cloning
///
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 @@ namespace Content.Server.Cloning
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 @@ namespace Content.Server.Cloning
}
_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 6c320edb23..abcd93f328 100644
--- a/Content.Server/Communications/CommunicationsConsoleSystem.cs
+++ b/Content.Server/Communications/CommunicationsConsoleSystem.cs
@@ -16,7 +16,6 @@ using Content.Shared.Chat;
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 @@ namespace Content.Server.Communications
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/Connection/ConnectionManager.cs b/Content.Server/Connection/ConnectionManager.cs
index bc0f06de98..9258d3ae4e 100644
--- a/Content.Server/Connection/ConnectionManager.cs
+++ b/Content.Server/Connection/ConnectionManager.cs
@@ -42,6 +42,8 @@ namespace Content.Server.Connection
/// How long the bypass should last for.
void AddTemporaryConnectBypass(NetUserId user, TimeSpan duration);
+ Task HavePrivilegedJoin(NetUserId userId); //CP14 Join Queue
+
void Update();
}
@@ -363,5 +365,17 @@ namespace Content.Server.Connection
await _db.AssignUserIdAsync(name, assigned);
return assigned;
}
+
+ //CP14 Join Queue
+ public async Task HavePrivilegedJoin(NetUserId userId)
+ {
+ var adminBypass = _cfg.GetCVar(CCVars.AdminBypassMaxPlayers) && await _db.GetAdminDataForAsync(userId) != null;
+ //var havePriorityJoin = _sponsors
+ var wasInGame = EntitySystem.TryGet(out var ticker) &&
+ ticker.PlayerGameStatuses.TryGetValue(userId, out var status) &&
+ status == PlayerGameStatus.JoinedGame;
+ return adminBypass || wasInGame;
+ }
+ //CP14 Join Queue end
}
}
diff --git a/Content.Server/Construction/Commands/FixRotationsCommand.cs b/Content.Server/Construction/Commands/FixRotationsCommand.cs
index 1a42d4bf38..3232f12ed8 100644
--- a/Content.Server/Construction/Commands/FixRotationsCommand.cs
+++ b/Content.Server/Construction/Commands/FixRotationsCommand.cs
@@ -89,6 +89,8 @@ public sealed class FixRotationsCommand : IConsoleCommand
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/Crayon/CrayonSystem.cs b/Content.Server/Crayon/CrayonSystem.cs
index 4257c436c2..817a380706 100644
--- a/Content.Server/Crayon/CrayonSystem.cs
+++ b/Content.Server/Crayon/CrayonSystem.cs
@@ -106,7 +106,7 @@ public sealed class CrayonSystem : SharedCrayonSystem
private void OnCrayonBoundUI(EntityUid uid, CrayonComponent component, CrayonSelectMessage args)
{
// Check if the selected state is valid
- if (!_prototypeManager.TryIndex(args.State, out var prototype) || !prototype.Tags.Contains("crayon"))
+ if (!_prototypeManager.TryIndex(args.State, out var prototype) || !prototype.Tags.Contains("CP14crayon")) //CP14 crayon
return;
component.SelectedState = args.State;
@@ -130,7 +130,7 @@ public sealed class CrayonSystem : SharedCrayonSystem
component.Charges = component.Capacity;
// Get the first one from the catalog and set it as default
- var decal = _prototypeManager.EnumeratePrototypes().FirstOrDefault(x => x.Tags.Contains("crayon"));
+ var decal = _prototypeManager.EnumeratePrototypes().FirstOrDefault(x => x.Tags.Contains("CP14crayon")); //CP14 crayon
component.SelectedState = decal?.ID ?? string.Empty;
Dirty(uid, component);
}
diff --git a/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs b/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs
index ca1d45e644..72d66c7638 100644
--- a/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs
+++ b/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs
@@ -13,6 +13,8 @@ using Robust.Server.GameObjects;
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 sealed class CriminalRecordsConsoleSystem : SharedCriminalRecordsConsoleS
subs.Event(OnChangeStatus);
subs.Event(OnAddHistory);
subs.Event(OnDeleteHistory);
+ subs.Event(OnStatusFilterPressed);
});
}
@@ -57,6 +60,11 @@ public sealed class CriminalRecordsConsoleSystem : SharedCriminalRecordsConsoleS
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 @@ public sealed class CriminalRecordsConsoleSystem : SharedCriminalRecordsConsoleS
}
// 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 @@ public sealed class CriminalRecordsConsoleSystem : SharedCriminalRecordsConsoleS
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 @@ public sealed class CriminalRecordsConsoleSystem : SharedCriminalRecordsConsoleS
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 bc61c5d141..8dfe665541 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 sealed class DamageForceSaySystem : EntitySystem
}
}
- 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 @@ public sealed class DamageForceSaySystem : EntitySystem
_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 @@ public sealed class DamageForceSaySystem : EntitySystem
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 c1a52447b7..ccbaf276cd 100644
--- a/Content.Server/Database/ServerDbBase.cs
+++ b/Content.Server/Database/ServerDbBase.cs
@@ -1112,7 +1112,7 @@ INSERT INTO player_round (players_id, rounds_id) VALUES ({players[player]}, {id}
.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 @@ INSERT INTO player_round (players_id, rounds_id) VALUES ({players[player]}, {id}
return;
}
- dbPlayer.LastReadRules = date.UtcDateTime;
+ dbPlayer.LastReadRules = date?.UtcDateTime;
await db.DbContext.SaveChangesAsync();
}
@@ -1801,6 +1801,8 @@ INSERT INTO player_round (players_id, rounds_id) VALUES ({players[player]}, {id}
#endregion
+ public abstract Task SendNotification(DatabaseNotification notification);
+
// SQLite returns DateTime as Kind=Unspecified, Npgsql actually knows for sure it's Kind=Utc.
// Normalize DateTimes here so they're always Utc. Thanks.
protected abstract DateTime NormalizeDatabaseTime(DateTime time);
diff --git a/Content.Server/Database/ServerDbManager.cs b/Content.Server/Database/ServerDbManager.cs
index 9fee2c021b..e3cfb66c7f 100644
--- a/Content.Server/Database/ServerDbManager.cs
+++ b/Content.Server/Database/ServerDbManager.cs
@@ -282,7 +282,7 @@ namespace Content.Server.Database
#region Rules
Task GetLastReadRules(NetUserId player);
- Task SetLastReadRules(NetUserId player, DateTimeOffset time);
+ Task SetLastReadRules(NetUserId player, DateTimeOffset? time);
#endregion
@@ -350,6 +350,15 @@ namespace Content.Server.Database
/// The notification to trigger
void InjectTestNotification(DatabaseNotification notification);
+ ///
+ /// Send a notification to all other servers connected to the same database.
+ ///
+ ///
+ /// The local server will receive the sent notification itself again.
+ ///
+ /// The notification to send.
+ Task SendNotification(DatabaseNotification notification);
+
#endregion
}
@@ -821,7 +830,7 @@ namespace Content.Server.Database
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));
@@ -1045,6 +1054,12 @@ namespace Content.Server.Database
HandleDatabaseNotification(notification);
}
+ public Task SendNotification(DatabaseNotification notification)
+ {
+ DbWriteOpsMetric.Inc();
+ return RunDbCommand(() => _db.SendNotification(notification));
+ }
+
private async void HandleDatabaseNotification(DatabaseNotification notification)
{
lock (_notificationHandlers)
diff --git a/Content.Server/Database/ServerDbManagerExt.cs b/Content.Server/Database/ServerDbManagerExt.cs
new file mode 100644
index 0000000000..fad7a7234e
--- /dev/null
+++ b/Content.Server/Database/ServerDbManagerExt.cs
@@ -0,0 +1,76 @@
+using System.Text.Json;
+using Robust.Shared.Asynchronous;
+
+namespace Content.Server.Database;
+
+public static class ServerDbManagerExt
+{
+ ///
+ /// Subscribe to a database notification on a specific channel, formatted as JSON.
+ ///
+ /// The database manager to subscribe on.
+ /// The task manager used to run the main callback on the main thread.
+ /// Sawmill to log any errors to.
+ ///
+ /// The notification channel to listen on. Only notifications on this channel will be handled.
+ ///
+ ///
+ /// The action to run on the notification data.
+ /// This runs on the main thread.
+ ///
+ ///
+ /// An early filter callback that runs before the JSON message is deserialized.
+ /// Return false to not handle the notification.
+ /// This does not run on the main thread.
+ ///
+ ///
+ /// A filter callback that runs after the JSON message is deserialized.
+ /// Return false to not handle the notification.
+ /// This does not run on the main thread.
+ ///
+ /// The type of JSON data to deserialize.
+ public static void SubscribeToJsonNotification(
+ this IServerDbManager dbManager,
+ ITaskManager taskManager,
+ ISawmill sawmill,
+ string channel,
+ Action action,
+ Func? earlyFilter = null,
+ Func? filter = null)
+ {
+ dbManager.SubscribeToNotifications(notification =>
+ {
+ if (notification.Channel != channel)
+ return;
+
+ if (notification.Payload == null)
+ {
+ sawmill.Error($"Got {channel} notification with null payload!");
+ return;
+ }
+
+ if (earlyFilter != null && !earlyFilter())
+ return;
+
+ TData data;
+ try
+ {
+ data = JsonSerializer.Deserialize(notification.Payload)
+ ?? throw new JsonException("Content is null");
+ }
+ catch (JsonException e)
+ {
+ sawmill.Error($"Got invalid JSON in {channel} notification: {e}");
+ return;
+ }
+
+ if (filter != null && !filter(data))
+ return;
+
+ taskManager.RunOnMainThread(() =>
+ {
+ action(data);
+ });
+ });
+ }
+}
diff --git a/Content.Server/Database/ServerDbPostgres.Notifications.cs b/Content.Server/Database/ServerDbPostgres.Notifications.cs
index 69cf2c7d77..91db2d100f 100644
--- a/Content.Server/Database/ServerDbPostgres.Notifications.cs
+++ b/Content.Server/Database/ServerDbPostgres.Notifications.cs
@@ -2,6 +2,7 @@
using System.Threading;
using System.Threading.Tasks;
using Content.Server.Administration.Managers;
+using Microsoft.EntityFrameworkCore;
using Npgsql;
namespace Content.Server.Database;
@@ -17,6 +18,7 @@ public sealed partial class ServerDbPostgres
private static readonly string[] NotificationChannels =
[
BanManager.BanNotificationChannel,
+ MultiServerKickManager.NotificationChannel,
];
private static readonly TimeSpan ReconnectWaitIncrease = TimeSpan.FromSeconds(10);
@@ -111,6 +113,14 @@ public sealed partial class ServerDbPostgres
});
}
+ public override async Task SendNotification(DatabaseNotification notification)
+ {
+ await using var db = await GetDbImpl();
+
+ await db.PgDbContext.Database.ExecuteSqlAsync(
+ $"SELECT pg_notify({notification.Channel}, {notification.Payload})");
+ }
+
public override void Shutdown()
{
_notificationTokenSource.Cancel();
diff --git a/Content.Server/Database/ServerDbSqlite.cs b/Content.Server/Database/ServerDbSqlite.cs
index 6ec90c3332..c3109ec6e6 100644
--- a/Content.Server/Database/ServerDbSqlite.cs
+++ b/Content.Server/Database/ServerDbSqlite.cs
@@ -537,6 +537,12 @@ namespace Content.Server.Database
return await base.AddAdminMessage(message);
}
+ public override Task SendNotification(DatabaseNotification notification)
+ {
+ // Notifications not implemented on SQLite.
+ return Task.CompletedTask;
+ }
+
protected override DateTime NormalizeDatabaseTime(DateTime time)
{
DebugTools.Assert(time.Kind == DateTimeKind.Unspecified);
diff --git a/Content.Server/EntityEffects/Effects/Electrocute.cs b/Content.Server/EntityEffects/Effects/Electrocute.cs
index f6a5f1a2da..d13c6f0419 100644
--- a/Content.Server/EntityEffects/Effects/Electrocute.cs
+++ b/Content.Server/EntityEffects/Effects/Electrocute.cs
@@ -6,7 +6,7 @@ namespace Content.Server.EntityEffects.Effects;
public sealed partial class Electrocute : EntityEffect
{
- [DataField] public int ElectrocuteTime = 2;
+ [DataField] public float ElectrocuteTime = 2; //CP14 - float
[DataField] public int ElectrocuteDamageScale = 5;
diff --git a/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs b/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs
index 689757d044..24c58898c6 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 sealed partial class ExplosionReactionEffect : EntityEffect
ExplosionType,
intensity,
IntensitySlope,
- MaxIntensity);
+ MaxIntensity,
+ TileBreakScale);
}
}
diff --git a/Content.Server/Entry/EntryPoint.cs b/Content.Server/Entry/EntryPoint.cs
index ab78636603..ae23c8f6fd 100644
--- a/Content.Server/Entry/EntryPoint.cs
+++ b/Content.Server/Entry/EntryPoint.cs
@@ -1,4 +1,5 @@
using Content.Server._CP14.Discord;
+using Content.Server._CP14.JoinQueue;
using Content.Server.Acz;
using Content.Server.Administration;
using Content.Server.Administration.Logs;
@@ -104,6 +105,7 @@ namespace Content.Server.Entry
//CP14
IoCManager.Resolve().Initialize();
+ IoCManager.Resolve().Initialize();
//CP14 end
IoCManager.Resolve().Initialize();
@@ -157,6 +159,7 @@ namespace Content.Server.Entry
IoCManager.Resolve().GetEntitySystem().PostInitialize();
IoCManager.Resolve().Initialize();
IoCManager.Resolve().PostInit();
+ IoCManager.Resolve().Initialize();
}
}
diff --git a/Content.Server/Fax/FaxSystem.cs b/Content.Server/Fax/FaxSystem.cs
index a43d0171e6..b73c101e3f 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 @@ public sealed class FaxSystem : EntitySystem
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 @@ public sealed class FaxSystem : EntitySystem
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 @@ public sealed class FaxSystem : EntitySystem
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 sealed class FaxSystem : EntitySystem
{ 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/GameTicking/GameTicker.Player.cs b/Content.Server/GameTicking/GameTicker.Player.cs
index c11c5ab4f0..9fb034a517 100644
--- a/Content.Server/GameTicking/GameTicker.Player.cs
+++ b/Content.Server/GameTicking/GameTicker.Player.cs
@@ -57,7 +57,7 @@ namespace Content.Server.GameTicking
// Make the player actually join the game.
// timer time must be > tick length
- //Timer.Spawn(0, () => _playerManager.JoinGame(args.Session)); //CP14 Discord AuthManager
+ //Timer.Spawn(0, () => _playerManager.JoinGame(args.Session)); //CP14 Discord AuthManager | Moved to DiscordAuthManager & JoinQueueManager
var record = await _db.GetPlayerRecordByUserId(args.Session.UserId);
var firstConnection = record != null &&
diff --git a/Content.Server/GameTicking/GameTicker.StatusShell.cs b/Content.Server/GameTicking/GameTicker.StatusShell.cs
index 4d84f78291..a4077a9928 100644
--- a/Content.Server/GameTicking/GameTicker.StatusShell.cs
+++ b/Content.Server/GameTicking/GameTicker.StatusShell.cs
@@ -1,5 +1,6 @@
using System.Linq;
using System.Text.Json.Nodes;
+using Content.Server._CP14.JoinQueue;
using Content.Shared.CCVar;
using Content.Shared.GameTicking;
using Robust.Server.ServerStatus;
@@ -29,6 +30,11 @@ namespace Content.Server.GameTicking
///
[Dependency] private readonly SharedGameTicker _gameTicker = default!;
+ ///
+ /// For getting actual players count
+ ///
+ [Dependency] private readonly JoinQueueManager _joinQueue = default!;
+ //CP14 - JoinQueue
private void InitializeStatusShell()
{
IoCManager.Resolve().OnStatusRequest += GetStatusResponse;
@@ -44,9 +50,7 @@ namespace Content.Server.GameTicking
jObject["name"] = _baseServer.ServerName;
jObject["map"] = _gameMapManager.GetSelectedMap()?.MapName;
jObject["round_id"] = _gameTicker.RoundId;
- jObject["players"] = _cfg.GetCVar(CCVars.AdminsCountInReportedPlayerCount)
- ? _playerManager.PlayerCount
- : _playerManager.PlayerCount - _adminManager.ActiveAdmins.Count();
+ jObject["players"] = _joinQueue.ActualPlayersCount; //CP14 - JoinQueue
jObject["soft_max_players"] = _cfg.GetCVar(CCVars.SoftMaxPlayers);
jObject["panic_bunker"] = _cfg.GetCVar(CCVars.PanicBunkerEnabled);
jObject["run_level"] = (int) _runLevel;
diff --git a/Content.Server/Holopad/HolopadSystem.cs b/Content.Server/Holopad/HolopadSystem.cs
index c5e6c15b51..3e99137a2d 100644
--- a/Content.Server/Holopad/HolopadSystem.cs
+++ b/Content.Server/Holopad/HolopadSystem.cs
@@ -15,6 +15,7 @@ using Content.Shared.Telephone;
using Content.Shared.UserInterface;
using Content.Shared.Verbs;
using Robust.Server.GameObjects;
+using Robust.Server.GameStates;
using Robust.Shared.Containers;
using Robust.Shared.Timing;
using Robust.Shared.Utility;
@@ -35,22 +36,15 @@ public sealed class HolopadSystem : SharedHolopadSystem
[Dependency] private readonly ChatSystem _chatSystem = default!;
[Dependency] private readonly PopupSystem _popupSystem = default!;
[Dependency] private readonly IGameTiming _timing = default!;
+ [Dependency] private readonly PvsOverrideSystem _pvs = default!;
private float _updateTimer = 1.0f;
-
private const float UpdateTime = 1.0f;
- private const float MinTimeBetweenSyncRequests = 0.5f;
- private TimeSpan _minTimeSpanBetweenSyncRequests;
-
- private HashSet _pendingRequestsForSpriteState = new();
- private HashSet _recentlyUpdatedHolograms = new();
public override void Initialize()
{
base.Initialize();
- _minTimeSpanBetweenSyncRequests = TimeSpan.FromSeconds(MinTimeBetweenSyncRequests);
-
// Holopad UI and bound user interface messages
SubscribeLocalEvent(OnUIOpen);
SubscribeLocalEvent(OnHolopadStartNewCall);
@@ -68,7 +62,6 @@ public sealed class HolopadSystem : SharedHolopadSystem
// Networked events
SubscribeNetworkEvent(OnTypingChanged);
- SubscribeNetworkEvent(OnPlayerSpriteStateMessage);
// Component start/shutdown events
SubscribeLocalEvent(OnHolopadInit);
@@ -268,16 +261,11 @@ public sealed class HolopadSystem : SharedHolopadSystem
if (source.Comp.Hologram == null)
GenerateHologram(source);
- // Receiver holopad holograms have to be generated now instead of waiting for their own event
- // to fire because holographic avatars get synced immediately
if (TryComp(args.Receiver, out var receivingHolopad) && receivingHolopad.Hologram == null)
GenerateHologram((args.Receiver, receivingHolopad));
- if (source.Comp.User != null)
- {
- // Re-link the user to refresh the sprite data
- LinkHolopadToUser(source, source.Comp.User.Value);
- }
+ // Re-link the user to refresh the sprite data
+ LinkHolopadToUser(source, source.Comp.User);
}
private void OnHoloCallEnded(Entity entity, ref TelephoneCallEndedEvent args)
@@ -323,22 +311,6 @@ public sealed class HolopadSystem : SharedHolopadSystem
}
}
- private void OnPlayerSpriteStateMessage(PlayerSpriteStateMessage ev, EntitySessionEventArgs args)
- {
- var uid = args.SenderSession.AttachedEntity;
-
- if (!Exists(uid))
- return;
-
- if (!_pendingRequestsForSpriteState.Remove(uid.Value))
- return;
-
- if (!TryComp(uid, out var holopadUser))
- return;
-
- SyncHolopadUserWithLinkedHolograms((uid.Value, holopadUser), ev.SpriteLayerData);
- }
-
#endregion
#region: Component start/shutdown events
@@ -485,8 +457,6 @@ public sealed class HolopadSystem : SharedHolopadSystem
}
}
}
-
- _recentlyUpdatedHolograms.Clear();
}
public void UpdateUIState(Entity entity, TelephoneComponent? telephone = null)
@@ -555,10 +525,16 @@ public sealed class HolopadSystem : SharedHolopadSystem
QueueDel(hologram);
}
- private void LinkHolopadToUser(Entity entity, EntityUid user)
+ private void LinkHolopadToUser(Entity entity, EntityUid? user)
{
+ if (user == null)
+ {
+ UnlinkHolopadFromUser(entity, null);
+ return;
+ }
+
if (!TryComp(user, out var holopadUser))
- holopadUser = AddComp(user);
+ holopadUser = AddComp(user.Value);
if (user != entity.Comp.User?.Owner)
{
@@ -567,51 +543,44 @@ public sealed class HolopadSystem : SharedHolopadSystem
// Assigns the new user in their place
holopadUser.LinkedHolopads.Add(entity);
- entity.Comp.User = (user, holopadUser);
+ entity.Comp.User = (user.Value, holopadUser);
}
- if (TryComp(user, out var avatar))
- {
- SyncHolopadUserWithLinkedHolograms((user, holopadUser), avatar.LayerData);
- return;
- }
-
- // We have no apriori sprite data for the hologram, request
- // the current appearance of the user from the client
- RequestHolopadUserSpriteUpdate((user, holopadUser));
+ // Add the new user to PVS and sync their appearance with any
+ // holopads connected to the one they are using
+ _pvs.AddGlobalOverride(user.Value);
+ SyncHolopadHologramAppearanceWithTarget(entity, entity.Comp.User);
}
private void UnlinkHolopadFromUser(Entity entity, Entity? user)
{
- if (user == null)
- return;
-
entity.Comp.User = null;
+ SyncHolopadHologramAppearanceWithTarget(entity, null);
- foreach (var linkedHolopad in GetLinkedHolopads(entity))
- {
- if (linkedHolopad.Comp.Hologram != null)
- {
- _appearanceSystem.SetData(linkedHolopad.Comp.Hologram.Value.Owner, TypingIndicatorVisuals.IsTyping, false);
-
- // Send message with no sprite data to the client
- // This will set the holgram sprite to a generic icon
- var ev = new PlayerSpriteStateMessage(GetNetEntity(linkedHolopad.Comp.Hologram.Value));
- RaiseNetworkEvent(ev);
- }
- }
-
- if (!HasComp(user))
+ if (user == null)
return;
user.Value.Comp.LinkedHolopads.Remove(entity);
- if (!user.Value.Comp.LinkedHolopads.Any())
+ if (!user.Value.Comp.LinkedHolopads.Any() &&
+ user.Value.Comp.LifeStage < ComponentLifeStage.Stopping)
{
- _pendingRequestsForSpriteState.Remove(user.Value);
+ _pvs.RemoveGlobalOverride(user.Value);
+ RemComp(user.Value);
+ }
+ }
+ private void SyncHolopadHologramAppearanceWithTarget(Entity entity, Entity? user)
+ {
+ foreach (var linkedHolopad in GetLinkedHolopads(entity))
+ {
+ if (linkedHolopad.Comp.Hologram == null)
+ continue;
- if (user.Value.Comp.LifeStage < ComponentLifeStage.Stopping)
- RemComp(user.Value);
+ if (user == null)
+ _appearanceSystem.SetData(linkedHolopad.Comp.Hologram.Value.Owner, TypingIndicatorVisuals.IsTyping, false);
+
+ linkedHolopad.Comp.Hologram.Value.Comp.LinkedEntity = user;
+ Dirty(linkedHolopad.Comp.Hologram.Value);
}
}
@@ -646,31 +615,6 @@ public sealed class HolopadSystem : SharedHolopadSystem
Dirty(entity);
}
- private void RequestHolopadUserSpriteUpdate(Entity user)
- {
- if (!_pendingRequestsForSpriteState.Add(user))
- return;
-
- var ev = new PlayerSpriteStateRequest(GetNetEntity(user));
- RaiseNetworkEvent(ev);
- }
-
- private void SyncHolopadUserWithLinkedHolograms(Entity entity, PrototypeLayerData[]? spriteLayerData)
- {
- foreach (var linkedHolopad in entity.Comp.LinkedHolopads)
- {
- foreach (var receivingHolopad in GetLinkedHolopads(linkedHolopad))
- {
- if (receivingHolopad.Comp.Hologram == null || !_recentlyUpdatedHolograms.Add(receivingHolopad.Comp.Hologram.Value))
- continue;
-
- var netHologram = GetNetEntity(receivingHolopad.Comp.Hologram.Value);
- var ev = new PlayerSpriteStateMessage(netHologram, spriteLayerData);
- RaiseNetworkEvent(ev);
- }
- }
- }
-
private void ActivateProjector(Entity entity, EntityUid user)
{
if (!TryComp(entity, out var receiverTelephone))
diff --git a/Content.Server/Implants/ImplantedSystem.cs b/Content.Server/Implants/ImplantedSystem.cs
index 5d27e64711..16b2c79d25 100644
--- a/Content.Server/Implants/ImplantedSystem.cs
+++ b/Content.Server/Implants/ImplantedSystem.cs
@@ -1,4 +1,5 @@
-using Content.Shared.Implants.Components;
+using Content.Server.Body.Components;
+using Content.Shared.Implants.Components;
using Robust.Shared.Containers;
namespace Content.Server.Implants;
@@ -9,6 +10,7 @@ public sealed partial class ImplanterSystem
{
SubscribeLocalEvent(OnImplantedInit);
SubscribeLocalEvent(OnShutdown);
+ SubscribeLocalEvent(OnGibbed);
}
private void OnImplantedInit(EntityUid uid, ImplantedComponent component, ComponentInit args)
@@ -22,4 +24,10 @@ public sealed partial class ImplanterSystem
//If the entity is deleted, get rid of the implants
_container.CleanContainer(component.ImplantContainer);
}
+
+ private void OnGibbed(Entity ent, ref BeingGibbedEvent args)
+ {
+ //If the entity is gibbed, get rid of the implants
+ _container.CleanContainer(ent.Comp.ImplantContainer);
+ }
}
diff --git a/Content.Server/Implants/ImplanterSystem.cs b/Content.Server/Implants/ImplanterSystem.cs
index e441574213..5efd5dc6fb 100644
--- a/Content.Server/Implants/ImplanterSystem.cs
+++ b/Content.Server/Implants/ImplanterSystem.cs
@@ -58,17 +58,6 @@ public sealed partial class ImplanterSystem : SharedImplanterSystem
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 @@ public sealed partial class ImplanterSystem : SharedImplanterSystem
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 0000000000..d9ba229057
--- /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 f4d9e57bd4..224d7f7d9a 100644
--- a/Content.Server/Info/RulesManager.cs
+++ b/Content.Server/Info/RulesManager.cs
@@ -34,7 +34,7 @@ public sealed class RulesManager
{
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/IoC/ServerContentIoC.cs b/Content.Server/IoC/ServerContentIoC.cs
index 95cba8c1e3..a823442972 100644
--- a/Content.Server/IoC/ServerContentIoC.cs
+++ b/Content.Server/IoC/ServerContentIoC.cs
@@ -1,4 +1,5 @@
using Content.Server._CP14.Discord;
+using Content.Server._CP14.JoinQueue;
using Content.Server.Administration;
using Content.Server.Administration.Logs;
using Content.Server.Administration.Managers;
@@ -39,6 +40,7 @@ namespace Content.Server.IoC
{
//CP14
IoCManager.Register();
+ IoCManager.Register();
//CP14 end
IoCManager.Register();
IoCManager.Register();
@@ -79,6 +81,7 @@ namespace Content.Server.IoC
IoCManager.Register();
IoCManager.Register();
IoCManager.Register();
+ IoCManager.Register();
}
}
}
diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs
index 18f246dcef..ba82e65aa7 100644
--- a/Content.Server/Lathe/LatheSystem.cs
+++ b/Content.Server/Lathe/LatheSystem.cs
@@ -16,6 +16,7 @@ using Content.Shared.Chemistry.Reagent;
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 @@ namespace Content.Server.Lathe
[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 @@ namespace Content.Server.Lathe
{
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/Medical/HealingSystem.cs b/Content.Server/Medical/HealingSystem.cs
index cf5869d1cb..74bce0eee6 100644
--- a/Content.Server/Medical/HealingSystem.cs
+++ b/Content.Server/Medical/HealingSystem.cs
@@ -72,7 +72,10 @@ public sealed class HealingSystem : EntitySystem
_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/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs
index 51974d7036..b697a42d51 100644
--- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs
+++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs
@@ -22,6 +22,7 @@ using Content.Shared.Mobs.Systems;
using Content.Shared.Verbs;
using Robust.Shared.Containers;
using Robust.Shared.Map;
+using Robust.Shared.Prototypes;
using Robust.Shared.Random;
using Robust.Shared.Timing;
@@ -42,6 +43,7 @@ public sealed class SuitSensorSystem : EntitySystem
[Dependency] private readonly SharedInteractionSystem _interactionSystem = default!;
[Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!;
[Dependency] private readonly ActionBlockerSystem _actionBlocker = default!;
+ [Dependency] private readonly IPrototypeManager _proto = default!;
public override void Initialize()
{
@@ -369,7 +371,7 @@ public sealed class SuitSensorSystem : EntitySystem
userJobIcon = card.Comp.JobIcon;
foreach (var department in card.Comp.JobDepartments)
- userJobDepartments.Add(Loc.GetString($"department-{department}"));
+ userJobDepartments.Add(Loc.GetString(_proto.Index(department).Name));
}
// get health mob state
diff --git a/Content.Server/Mining/MiningSystem.cs b/Content.Server/Mining/MiningSystem.cs
index 18e96e5769..6b1b0fed4d 100644
--- a/Content.Server/Mining/MiningSystem.cs
+++ b/Content.Server/Mining/MiningSystem.cs
@@ -35,7 +35,7 @@ public sealed class MiningSystem : EntitySystem
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 0000000000..b3809fe794
--- /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 2cc735194f..bac9cfcf40 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 sealed partial class MedibotInjectOperator : HTNOperator
if (!_entMan.TryGetComponent(owner, out var botComp))
return HTNOperatorStatus.Failed;
-
- if (!_entMan.TryGetComponent(target, out var damage))
+ if (!_medibot.CheckInjectable((owner, botComp), target) || !_medibot.TryInject((owner, botComp), target))
return HTNOperatorStatus.Failed;
- if (!_solutionContainer.TryGetInjectableSolution(target, out var injectable, out _))
- 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 a71091ad97..f351d582c6 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 dd4ff6c65f..6d8cb9dfe5 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 141e99055c..e1a117f4bd 100644
--- a/Content.Server/Nuke/NukeComponent.cs
+++ b/Content.Server/Nuke/NukeComponent.cs
@@ -25,6 +25,13 @@ namespace Content.Server.Nuke
[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 0a62287505..84118931b1 100644
--- a/Content.Server/Nuke/NukeSystem.cs
+++ b/Content.Server/Nuke/NukeSystem.cs
@@ -522,6 +522,9 @@ public sealed class NukeSystem : EntitySystem
_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 6e9856a61d..8f4c5f4150 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 sealed class FatExtractorSystem : EntitySystem
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 sealed class FatExtractorSystem : EntitySystem
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 26fa5ca3cc..48fb946135 100644
--- a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs
+++ b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs
@@ -24,6 +24,7 @@ namespace Content.Server.Nutrition.EntitySystems
{
[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 @@ namespace Content.Server.Nutrition.EntitySystems
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 @@ namespace Content.Server.Nutrition.EntitySystems
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 4ef8891333..860b7b219a 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 @@ namespace Content.Server.Power.Components
/// 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 a0f74df6a1..fcef03903b 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 @@ namespace Content.Server.Power.Components
[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 cf23288fcd..30f8335c49 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 @@ namespace Content.Server.Power.Components
{
[ViewVariables(VVAccess.ReadWrite)]
[DataField("supplyRate")]
+ [GuidebookData]
public float MaxSupply { get => 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 14dddbb43e..29c1431179 100644
--- a/Content.Server/Power/EntitySystems/ApcSystem.cs
+++ b/Content.Server/Power/EntitySystems/ApcSystem.cs
@@ -4,7 +4,6 @@ using Content.Server.Power.Components;
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 sealed class ApcSystem : EntitySystem
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 sealed class ApcSystem : EntitySystem
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/PowerSink/PowerSinkSystem.cs b/Content.Server/PowerSink/PowerSinkSystem.cs
index 298e35db46..b8bdcd91f1 100644
--- a/Content.Server/PowerSink/PowerSinkSystem.cs
+++ b/Content.Server/PowerSink/PowerSinkSystem.cs
@@ -128,7 +128,7 @@ namespace Content.Server.PowerSink
_chat.DispatchStationAnnouncement(
station.Value,
- Loc.GetString("powersink-immiment-explosion-announcement"),
+ Loc.GetString("powersink-imminent-explosion-announcement"),
playDefaultSound: true,
colorOverride: Color.Yellow
);
diff --git a/Content.Server/Procedural/DungeonSystem.Rooms.cs b/Content.Server/Procedural/DungeonSystem.Rooms.cs
index f83cce66fd..a66f8d51b6 100644
--- a/Content.Server/Procedural/DungeonSystem.Rooms.cs
+++ b/Content.Server/Procedural/DungeonSystem.Rooms.cs
@@ -98,20 +98,6 @@ public sealed partial class DungeonSystem
return roomRotation;
}
- private static Box2 GetRotatedBox(Vector2 point1, Vector2 point2, double angle)
- {
- if (angle == 0)
- return new Box2(point1, point2);
- if (Math.Abs(angle - Math.PI / 2) < 1E-5)
- return new Box2(point2.X, point1.Y, point1.X, point2.Y);
- if (Math.Abs(angle - Math.PI) < 1E-5)
- return new Box2(point2, point1);
- if (Math.Abs(angle + Math.PI / 2) < 1E-5)
- return new Box2(point1.X, point2.Y, point2.X, point1.Y);
-
- throw new NotImplementedException();
- }
-
public void SpawnRoom(
EntityUid gridUid,
MapGridComponent grid,
@@ -130,32 +116,6 @@ public sealed partial class DungeonSystem
var finalRoomRotation = roomTransform.Rotation();
- //if (clearExisting) //CP14 disable default clearExisting
- //{
- // var point1 = Vector2.Transform(-room.Size / 2, roomTransform);
- // var point2 = Vector2.Transform(room.Size / 2, roomTransform);
-//
- // var gridBounds = GetRotatedBox(point1, point2, finalRoomRotation);
-//
- // entitySet.Clear();
- // // Polygon skin moment
- // gridBounds = gridBounds.Enlarged(-0.05f);
- // _lookup.GetLocalEntitiesIntersecting(gridUid, gridBounds, entitySet, LookupFlags.Uncontained);
-//
- // foreach (var templateEnt in entitySet)
- // {
- // Del(templateEnt);
- // }
-//
- // if (TryComp(gridUid, out DecalGridComponent? decalGrid))
- // {
- // foreach (var decal in _decals.GetDecalsIntersecting(gridUid, gridBounds, decalGrid))
- // {
- // _decals.RemoveDecal(gridUid, decal.Index, decalGrid);
- // }
- // }
- //}
-
var roomCenter = (room.Offset + room.Size / 2f) * grid.TileSize;
var tileOffset = -roomCenter + grid.TileSizeHalfVector;
_tiles.Clear();
@@ -182,7 +142,6 @@ public sealed partial class DungeonSystem
_tiles.Add((rounded, tileRef.Tile));
- //CP14 clearExisting variant
if (clearExisting)
{
var anchored = _maps.GetAnchoredEntities((gridUid, grid), rounded);
@@ -191,7 +150,6 @@ public sealed partial class DungeonSystem
QueueDel(ent);
}
}
- //CP14 clearExisting variant end
}
}
diff --git a/Content.Server/Projectiles/ProjectileSystem.cs b/Content.Server/Projectiles/ProjectileSystem.cs
index 5cbc56b8fb..57601c3e9f 100644
--- a/Content.Server/Projectiles/ProjectileSystem.cs
+++ b/Content.Server/Projectiles/ProjectileSystem.cs
@@ -1,9 +1,11 @@
using Content.Server.Administration.Logs;
+using Content.Server.Destructible;
using Content.Server.Effects;
using Content.Server.Weapons.Ranged.Systems;
using Content.Shared.Camera;
using Content.Shared.Damage;
using Content.Shared.Database;
+using Content.Shared.FixedPoint;
using Content.Shared.Projectiles;
using Robust.Shared.Physics.Events;
using Robust.Shared.Player;
@@ -15,6 +17,7 @@ public sealed class ProjectileSystem : SharedProjectileSystem
[Dependency] private readonly IAdminLogManager _adminLogger = default!;
[Dependency] private readonly ColorFlashEffectSystem _color = default!;
[Dependency] private readonly DamageableSystem _damageableSystem = default!;
+ [Dependency] private readonly DestructibleSystem _destructibleSystem = default!;
[Dependency] private readonly GunSystem _guns = default!;
[Dependency] private readonly SharedCameraRecoilSystem _sharedCameraRecoil = default!;
@@ -28,7 +31,7 @@ public sealed class ProjectileSystem : SharedProjectileSystem
{
// This is so entities that shouldn't get a collision are ignored.
if (args.OurFixtureId != ProjectileFixture || !args.OtherFixture.Hard
- || component.DamagedEntity || component is { Weapon: null, OnlyCollideWhenShot: true })
+ || component.ProjectileSpent || component is { Weapon: null, OnlyCollideWhenShot: true })
return;
var target = args.OtherEntity;
@@ -45,7 +48,13 @@ public sealed class ProjectileSystem : SharedProjectileSystem
RaiseLocalEvent(uid, ref ev);
var otherName = ToPrettyString(target);
- var modifiedDamage = _damageableSystem.TryChangeDamage(target, ev.Damage, component.IgnoreResistances, origin: component.Shooter);
+ var damageRequired = _destructibleSystem.DestroyedAt(target);
+ if (TryComp(target, out var damageableComponent))
+ {
+ damageRequired -= damageableComponent.TotalDamage;
+ damageRequired = FixedPoint2.Max(damageRequired, FixedPoint2.Zero);
+ }
+ var modifiedDamage = _damageableSystem.TryChangeDamage(target, ev.Damage, component.IgnoreResistances, damageable: damageableComponent, origin: component.Shooter);
var deleted = Deleted(target);
if (modifiedDamage is not null && EntityManager.EntityExists(component.Shooter))
@@ -60,6 +69,46 @@ public sealed class ProjectileSystem : SharedProjectileSystem
$"Projectile {ToPrettyString(uid):projectile} shot by {ToPrettyString(component.Shooter!.Value):user} hit {otherName:target} and dealt {modifiedDamage.GetTotal():damage} damage");
}
+ // If penetration is to be considered, we need to do some checks to see if the projectile should stop.
+ if (modifiedDamage is not null && component.PenetrationThreshold != 0)
+ {
+ // If a damage type is required, stop the bullet if the hit entity doesn't have that type.
+ if (component.PenetrationDamageTypeRequirement != null)
+ {
+ var stopPenetration = false;
+ foreach (var requiredDamageType in component.PenetrationDamageTypeRequirement)
+ {
+ if (!modifiedDamage.DamageDict.Keys.Contains(requiredDamageType))
+ {
+ stopPenetration = true;
+ break;
+ }
+ }
+ if (stopPenetration)
+ component.ProjectileSpent = true;
+ }
+
+ // If the object won't be destroyed, it "tanks" the penetration hit.
+ if (modifiedDamage.GetTotal() < damageRequired)
+ {
+ component.ProjectileSpent = true;
+ }
+
+ if (!component.ProjectileSpent)
+ {
+ component.PenetrationAmount += damageRequired;
+ // The projectile has dealt enough damage to be spent.
+ if (component.PenetrationAmount >= component.PenetrationThreshold)
+ {
+ component.ProjectileSpent = true;
+ }
+ }
+ }
+ else
+ {
+ component.ProjectileSpent = true;
+ }
+
if (!deleted)
{
_guns.PlayImpactSound(target, modifiedDamage, component.SoundHit, component.ForceSound);
@@ -68,9 +117,7 @@ public sealed class ProjectileSystem : SharedProjectileSystem
_sharedCameraRecoil.KickCamera(target, args.OurBody.LinearVelocity.Normalized());
}
- component.DamagedEntity = true;
-
- if (component.DeleteOnCollide)
+ if (component.DeleteOnCollide && component.ProjectileSpent)
QueueDel(uid);
if (component.ImpactEffect != null && TryComp(uid, out TransformComponent? xform))
diff --git a/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs b/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs
index a5f74e09e9..4436090565 100644
--- a/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs
+++ b/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs
@@ -5,6 +5,7 @@ using Content.Shared.Administration;
using Content.Shared.Radiation.Events;
using Content.Shared.Radiation.Systems;
using Robust.Shared.Console;
+using Robust.Shared.Debugging;
using Robust.Shared.Enums;
using Robust.Shared.Map.Components;
using Robust.Shared.Player;
@@ -42,12 +43,12 @@ public partial class RadiationSystem
///
private void UpdateDebugOverlay(EntityEventArgs ev)
{
- var sessions = _debugSessions.ToArray();
- foreach (var session in sessions)
+ foreach (var session in _debugSessions)
{
if (session.Status != SessionStatus.InGame)
_debugSessions.Remove(session);
- RaiseNetworkEvent(ev, session.Channel);
+ else
+ RaiseNetworkEvent(ev, session);
}
}
@@ -70,13 +71,16 @@ public partial class RadiationSystem
UpdateDebugOverlay(ev);
}
- private void UpdateGridcastDebugOverlay(double elapsedTime, int totalSources,
- int totalReceivers, List rays)
+ private void UpdateGridcastDebugOverlay(
+ double elapsedTime,
+ int totalSources,
+ int totalReceivers,
+ List? rays)
{
if (_debugSessions.Count == 0)
return;
- var ev = new OnRadiationOverlayUpdateEvent(elapsedTime, totalSources, totalReceivers, rays);
+ var ev = new OnRadiationOverlayUpdateEvent(elapsedTime, totalSources, totalReceivers, rays ?? new());
UpdateDebugOverlay(ev);
}
}
diff --git a/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs b/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs
index ccee7cf227..15e1c35256 100644
--- a/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs
+++ b/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs
@@ -1,12 +1,9 @@
-using System.Linq;
using System.Numerics;
using Content.Server.Radiation.Components;
using Content.Server.Radiation.Events;
using Content.Shared.Radiation.Components;
using Content.Shared.Radiation.Systems;
-using Content.Shared.Stacks;
using Robust.Shared.Collections;
-using Robust.Shared.Containers;
using Robust.Shared.Map.Components;
using Robust.Shared.Timing;
using Robust.Shared.Utility;
@@ -16,68 +13,86 @@ namespace Content.Server.Radiation.Systems;
// main algorithm that fire radiation rays to target
public partial class RadiationSystem
{
- [Dependency] private readonly SharedStackSystem _stack = default!;
- [Dependency] private readonly SharedContainerSystem _container = default!;
+ private List> _grids = new();
- private EntityQuery _radiationBlockingContainers;
+ private readonly record struct SourceData(
+ float Intensity,
+ Entity Entity,
+ Vector2 WorldPosition)
+ {
+ public EntityUid? GridUid => Entity.Comp2.GridUid;
+ public float Slope => Entity.Comp1.Slope;
+ public TransformComponent Transform => Entity.Comp2;
+ }
private void UpdateGridcast()
{
// should we save debug information into rays?
// if there is no debug sessions connected - just ignore it
- var saveVisitedTiles = _debugSessions.Count > 0;
+ var debug = _debugSessions.Count > 0;
var stopwatch = new Stopwatch();
stopwatch.Start();
+ _sources.Clear();
+ _sources.EnsureCapacity(EntityManager.Count());
+
var sources = EntityQueryEnumerator();
var destinations = EntityQueryEnumerator();
- var resistanceQuery = GetEntityQuery();
- var transformQuery = GetEntityQuery();
- var gridQuery = GetEntityQuery();
- var stackQuery = GetEntityQuery();
- _radiationBlockingContainers = GetEntityQuery();
-
- // precalculate world positions for each source
- // so we won't need to calc this in cycle over and over again
- var sourcesData = new ValueList<(EntityUid, RadiationSourceComponent, TransformComponent, Vector2)>();
- while (sources.MoveNext(out var uid, out var source, out var sourceTrs))
+ while (sources.MoveNext(out var uid, out var source, out var xform))
{
if (!source.Enabled)
continue;
- var worldPos = _transform.GetWorldPosition(sourceTrs, transformQuery);
- var data = (uid, source, sourceTrs, worldPos);
- sourcesData.Add(data);
+ var worldPos = _transform.GetWorldPosition(xform);
+
+ // Intensity is scaled by stack size.
+ var intensity = source.Intensity * _stack.GetCount(uid);
+
+ // Apply rad modifier if the source is enclosed within a radiation blocking container
+ // Note that this also applies to receivers, and it doesn't bother to check if the container sits between them.
+ // I.e., a source & receiver in the same blocking container will get double-blocked, when no blocking should be applied.
+ intensity = GetAdjustedRadiationIntensity(uid, intensity);
+
+ _sources.Add(new(intensity, (uid, source, xform), worldPos));
}
- // trace all rays from rad source to rad receivers
- var rays = new List();
+ var debugRays = debug ? new List() : null;
var receiversTotalRads = new ValueList<(Entity, float)>();
+
+ // TODO RADIATION Parallelize
+ // Would need to give receiversTotalRads a fixed size.
+ // Also the _grids list needs to be local to a job. (or better yet cached in SourceData)
+ // And I guess disable parallelization when debugging to make populating the debug List easier.
+ // Or just make it threadsafe?
while (destinations.MoveNext(out var destUid, out var dest, out var destTrs))
{
- var destWorld = _transform.GetWorldPosition(destTrs, transformQuery);
+ var destWorld = _transform.GetWorldPosition(destTrs);
var rads = 0f;
- foreach (var (uid, source, sourceTrs, sourceWorld) in sourcesData)
+ foreach (var source in _sources)
{
- stackQuery.TryGetComponent(uid, out var stack);
- var intensity = source.Intensity * _stack.GetCount(uid, stack);
-
// send ray towards destination entity
- var ray = Irradiate(uid, sourceTrs, sourceWorld,
- destUid, destTrs, destWorld,
- intensity, source.Slope, saveVisitedTiles, resistanceQuery, transformQuery, gridQuery);
- if (ray == null)
+ if (Irradiate(source, destUid, destTrs, destWorld, debug) is not {} ray)
continue;
- // save ray for debug
- rays.Add(ray);
-
// add rads to total rad exposure
if (ray.ReachedDestination)
rads += ray.Rads;
+
+ if (!debug)
+ continue;
+
+ debugRays!.Add(new DebugRadiationRay(
+ ray.MapId,
+ GetNetEntity(ray.SourceUid),
+ ray.Source,
+ GetNetEntity(ray.DestinationUid),
+ ray.Destination,
+ ray.Rads,
+ ray.Blockers ?? new())
+ );
}
// Apply modifier if the destination entity is hidden within a radiation blocking container
@@ -88,9 +103,9 @@ public partial class RadiationSystem
// update information for debug overlay
var elapsedTime = stopwatch.Elapsed.TotalMilliseconds;
- var totalSources = sourcesData.Count;
+ var totalSources = _sources.Count;
var totalReceivers = receiversTotalRads.Count;
- UpdateGridcastDebugOverlay(elapsedTime, totalSources, totalReceivers, rays);
+ UpdateGridcastDebugOverlay(elapsedTime, totalSources, totalReceivers, debugRays);
// send rads to each entity
foreach (var (receiver, rads) in receiversTotalRads)
@@ -108,19 +123,20 @@ public partial class RadiationSystem
RaiseLocalEvent(new RadiationSystemUpdatedEvent());
}
- private RadiationRay? Irradiate(EntityUid sourceUid, TransformComponent sourceTrs, Vector2 sourceWorld,
- EntityUid destUid, TransformComponent destTrs, Vector2 destWorld,
- float incomingRads, float slope, bool saveVisitedTiles,
- EntityQuery resistanceQuery,
- EntityQuery transformQuery, EntityQuery gridQuery)
+ private RadiationRay? Irradiate(SourceData source,
+ EntityUid destUid,
+ TransformComponent destTrs,
+ Vector2 destWorld,
+ bool saveVisitedTiles)
{
// lets first check that source and destination on the same map
- if (sourceTrs.MapID != destTrs.MapID)
+ if (source.Transform.MapID != destTrs.MapID)
return null;
- var mapId = sourceTrs.MapID;
+
+ var mapId = destTrs.MapID;
// get direction from rad source to destination and its distance
- var dir = destWorld - sourceWorld;
+ var dir = destWorld - source.WorldPosition;
var dist = dir.Length();
// check if receiver is too far away
@@ -128,41 +144,42 @@ public partial class RadiationSystem
return null;
// will it even reach destination considering distance penalty
- var rads = incomingRads - slope * dist;
-
- // Apply rad modifier if the source is enclosed within a radiation blocking container
- rads = GetAdjustedRadiationIntensity(sourceUid, rads);
-
- if (rads <= MinIntensity)
+ var rads = source.Intensity - source.Slope * dist;
+ if (rads < MinIntensity)
return null;
// create a new radiation ray from source to destination
// at first we assume that it doesn't hit any radiation blockers
// and has only distance penalty
- var ray = new RadiationRay(mapId, GetNetEntity(sourceUid), sourceWorld, GetNetEntity(destUid), destWorld, rads);
+ var ray = new RadiationRay(mapId, source.Entity, source.WorldPosition, destUid, destWorld, rads);
// if source and destination on the same grid it's possible that
// between them can be another grid (ie. shuttle in center of donut station)
// however we can do simplification and ignore that case
- if (GridcastSimplifiedSameGrid && sourceTrs.GridUid != null && sourceTrs.GridUid == destTrs.GridUid)
+ if (GridcastSimplifiedSameGrid && destTrs.GridUid is {} gridUid && source.GridUid == gridUid)
{
- if (!gridQuery.TryGetComponent(sourceTrs.GridUid.Value, out var gridComponent))
+ if (!_gridQuery.TryGetComponent(gridUid, out var gridComponent))
return ray;
- return Gridcast((sourceTrs.GridUid.Value, gridComponent), ray, saveVisitedTiles, resistanceQuery, sourceTrs, destTrs, transformQuery.GetComponent(sourceTrs.GridUid.Value));
+ return Gridcast((gridUid, gridComponent, Transform(gridUid)), ref ray, saveVisitedTiles, source.Transform, destTrs);
}
// lets check how many grids are between source and destination
// do a box intersection test between target and destination
// it's not very precise, but really cheap
- var box = Box2.FromTwoPoints(sourceWorld, destWorld);
- var grids = new List>();
- _mapManager.FindGridsIntersecting(mapId, box, ref grids, true);
+
+ // TODO RADIATION
+ // Consider caching this in SourceData?
+ // I.e., make the lookup for grids as large as the sources's max distance and store the result in SourceData.
+ // Avoids having to do a lookup per source*receiver.
+ var box = Box2.FromTwoPoints(source.WorldPosition, destWorld);
+ _grids.Clear();
+ _mapManager.FindGridsIntersecting(mapId, box, ref _grids, true);
// gridcast through each grid and try to hit some radiation blockers
// the ray will be updated with each grid that has some blockers
- foreach (var grid in grids)
+ foreach (var grid in _grids)
{
- ray = Gridcast(grid, ray, saveVisitedTiles, resistanceQuery, sourceTrs, destTrs, transformQuery.GetComponent(grid));
+ ray = Gridcast((grid.Owner, grid.Comp, Transform(grid)), ref ray, saveVisitedTiles, source.Transform, destTrs);
// looks like last grid blocked all radiation
// we can return right now
@@ -170,20 +187,23 @@ public partial class RadiationSystem
return ray;
}
+ _grids.Clear();
+
return ray;
}
- private RadiationRay Gridcast(Entity grid, RadiationRay ray, bool saveVisitedTiles,
- EntityQuery resistanceQuery,
+ private RadiationRay Gridcast(
+ Entity grid,
+ ref RadiationRay ray,
+ bool saveVisitedTiles,
TransformComponent sourceTrs,
- TransformComponent destTrs,
- TransformComponent gridTrs)
+ TransformComponent destTrs)
{
- var blockers = new List<(Vector2i, float)>();
+ var blockers = saveVisitedTiles ? new List<(Vector2i, float)>() : null;
// if grid doesn't have resistance map just apply distance penalty
var gridUid = grid.Owner;
- if (!resistanceQuery.TryGetComponent(gridUid, out var resistance))
+ if (!_resistanceQuery.TryGetComponent(gridUid, out var resistance))
return ray;
var resistanceMap = resistance.ResistancePerTile;
@@ -195,19 +215,19 @@ public partial class RadiationSystem
Vector2 srcLocal = sourceTrs.ParentUid == grid.Owner
? sourceTrs.LocalPosition
- : Vector2.Transform(ray.Source, gridTrs.InvLocalMatrix);
+ : Vector2.Transform(ray.Source, grid.Comp2.InvLocalMatrix);
Vector2 dstLocal = destTrs.ParentUid == grid.Owner
? destTrs.LocalPosition
- : Vector2.Transform(ray.Destination, gridTrs.InvLocalMatrix);
+ : Vector2.Transform(ray.Destination, grid.Comp2.InvLocalMatrix);
Vector2i sourceGrid = new(
- (int) Math.Floor(srcLocal.X / grid.Comp.TileSize),
- (int) Math.Floor(srcLocal.Y / grid.Comp.TileSize));
+ (int) Math.Floor(srcLocal.X / grid.Comp1.TileSize),
+ (int) Math.Floor(srcLocal.Y / grid.Comp1.TileSize));
Vector2i destGrid = new(
- (int) Math.Floor(dstLocal.X / grid.Comp.TileSize),
- (int) Math.Floor(dstLocal.Y / grid.Comp.TileSize));
+ (int) Math.Floor(dstLocal.X / grid.Comp1.TileSize),
+ (int) Math.Floor(dstLocal.Y / grid.Comp1.TileSize));
// iterate tiles in grid line from source to destination
var line = new GridLineEnumerator(sourceGrid, destGrid);
@@ -220,7 +240,7 @@ public partial class RadiationSystem
// save data for debug
if (saveVisitedTiles)
- blockers.Add((point, ray.Rads));
+ blockers!.Add((point, ray.Rads));
// no intensity left after blocker
if (ray.Rads <= MinIntensity)
@@ -230,21 +250,45 @@ public partial class RadiationSystem
}
}
+ if (!saveVisitedTiles || blockers!.Count <= 0)
+ return ray;
+
// save data for debug if needed
- if (saveVisitedTiles && blockers.Count > 0)
- ray.Blockers.Add(GetNetEntity(gridUid), blockers);
+ ray.Blockers ??= new();
+ ray.Blockers.Add(GetNetEntity(gridUid), blockers);
return ray;
}
private float GetAdjustedRadiationIntensity(EntityUid uid, float rads)
{
- var radblockingComps = new List();
- if (_container.TryFindComponentsOnEntityContainerOrParent(uid, _radiationBlockingContainers, radblockingComps))
+ var child = uid;
+ var xform = Transform(uid);
+ var parent = xform.ParentUid;
+
+ while (parent.IsValid())
{
- rads -= radblockingComps.Sum(x => x.RadResistance);
+ var parentXform = Transform(parent);
+ var childMeta = MetaData(child);
+
+ if ((childMeta.Flags & MetaDataFlags.InContainer) != MetaDataFlags.InContainer)
+ {
+ child = parent;
+ parent = parentXform.ParentUid;
+ continue;
+ }
+
+ if (_blockerQuery.TryComp(xform.ParentUid, out var blocker))
+ {
+ rads -= blocker.RadResistance;
+ if (rads < 0)
+ return 0;
+ }
+
+ child = parent;
+ parent = parentXform.ParentUid;
}
- return float.Max(rads, 0);
+ return rads;
}
}
diff --git a/Content.Server/Radiation/Systems/RadiationSystem.cs b/Content.Server/Radiation/Systems/RadiationSystem.cs
index e184c022f2..3ba393959c 100644
--- a/Content.Server/Radiation/Systems/RadiationSystem.cs
+++ b/Content.Server/Radiation/Systems/RadiationSystem.cs
@@ -1,8 +1,10 @@
using Content.Server.Radiation.Components;
using Content.Shared.Radiation.Components;
using Content.Shared.Radiation.Events;
+using Content.Shared.Stacks;
using Robust.Shared.Configuration;
using Robust.Shared.Map;
+using Robust.Shared.Map.Components;
namespace Content.Server.Radiation.Systems;
@@ -11,14 +13,26 @@ public sealed partial class RadiationSystem : EntitySystem
[Dependency] private readonly IMapManager _mapManager = default!;
[Dependency] private readonly IConfigurationManager _cfg = default!;
[Dependency] private readonly SharedTransformSystem _transform = default!;
+ [Dependency] private readonly SharedStackSystem _stack = default!;
+
+ private EntityQuery _blockerQuery;
+ private EntityQuery _resistanceQuery;
+ private EntityQuery _gridQuery;
+ private EntityQuery _stackQuery;
private float _accumulator;
+ private List _sources = new();
public override void Initialize()
{
base.Initialize();
SubscribeCvars();
InitRadBlocking();
+
+ _blockerQuery = GetEntityQuery();
+ _resistanceQuery = GetEntityQuery();
+ _gridQuery = GetEntityQuery();
+ _stackQuery = GetEntityQuery();
}
public override void Update(float frameTime)
diff --git a/Content.Server/Remotes/DoorRemoteSystem.cs b/Content.Server/Remotes/DoorRemoteSystem.cs
index de327bd084..27df5ef34d 100644
--- a/Content.Server/Remotes/DoorRemoteSystem.cs
+++ b/Content.Server/Remotes/DoorRemoteSystem.cs
@@ -1,13 +1,13 @@
using Content.Server.Administration.Logs;
-using Content.Shared.Interaction;
-using Content.Shared.Doors.Components;
-using Content.Shared.Access.Components;
using Content.Server.Doors.Systems;
using Content.Server.Power.EntitySystems;
+using Content.Shared.Access.Components;
using Content.Shared.Database;
+using Content.Shared.Doors.Components;
using Content.Shared.Examine;
-using Content.Shared.Remotes.EntitySystems;
+using Content.Shared.Interaction;
using Content.Shared.Remotes.Components;
+using Content.Shared.Remotes.EntitySystems;
namespace Content.Shared.Remotes
{
@@ -17,6 +17,7 @@ namespace Content.Shared.Remotes
[Dependency] private readonly AirlockSystem _airlock = default!;
[Dependency] private readonly DoorSystem _doorSystem = default!;
[Dependency] private readonly ExamineSystemShared _examine = default!;
+
public override void Initialize()
{
base.Initialize();
@@ -31,9 +32,12 @@ namespace Content.Shared.Remotes
if (args.Handled
|| args.Target == null
|| !TryComp(args.Target, out var doorComp) // If it isn't a door we don't use it
- // Only able to control doors if they are within your vision and within your max range.
- // Not affected by mobs or machines anymore.
- || !_examine.InRangeUnOccluded(args.User, args.Target.Value, SharedInteractionSystem.MaxRaycastRange, null))
+ // Only able to control doors if they are within your vision and within your max range.
+ // Not affected by mobs or machines anymore.
+ || !_examine.InRangeUnOccluded(args.User,
+ args.Target.Value,
+ SharedInteractionSystem.MaxRaycastRange,
+ null))
{
return;
@@ -50,7 +54,8 @@ namespace Content.Shared.Remotes
if (TryComp(args.Target, out var accessComponent)
&& !_doorSystem.HasAccess(args.Target.Value, args.Used, doorComp, accessComponent))
{
- _doorSystem.Deny(args.Target.Value, doorComp, args.User);
+ if (isAirlock)
+ _doorSystem.Deny(args.Target.Value, doorComp, args.User);
Popup.PopupEntity(Loc.GetString("door-remote-denied"), args.User, args.User);
return;
}
@@ -59,7 +64,9 @@ namespace Content.Shared.Remotes
{
case OperatingMode.OpenClose:
if (_doorSystem.TryToggleDoor(args.Target.Value, doorComp, args.Used))
- _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)}: {doorComp.State}");
+ _adminLogger.Add(LogType.Action,
+ LogImpact.Medium,
+ $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)}: {doorComp.State}");
break;
case OperatingMode.ToggleBolts:
if (TryComp(args.Target, out var boltsComp))
@@ -67,17 +74,22 @@ namespace Content.Shared.Remotes
if (!boltsComp.BoltWireCut)
{
_doorSystem.SetBoltsDown((args.Target.Value, boltsComp), !boltsComp.BoltsDown, args.Used);
- _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)} to {(boltsComp.BoltsDown ? "" : "un")}bolt it");
+ _adminLogger.Add(LogType.Action,
+ LogImpact.Medium,
+ $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)} to {(boltsComp.BoltsDown ? "" : "un")}bolt it");
}
}
+
break;
case OperatingMode.ToggleEmergencyAccess:
if (airlockComp != null)
{
_airlock.SetEmergencyAccess((args.Target.Value, airlockComp), !airlockComp.EmergencyAccess);
- _adminLogger.Add(LogType.Action, LogImpact.Medium,
+ _adminLogger.Add(LogType.Action,
+ LogImpact.Medium,
$"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)} to set emergency access {(airlockComp.EmergencyAccess ? "on" : "off")}");
}
+
break;
default:
throw new InvalidOperationException(
diff --git a/Content.Server/Research/Systems/ResearchSystem.Console.cs b/Content.Server/Research/Systems/ResearchSystem.Console.cs
index 127b80a631..c227aee7f0 100644
--- a/Content.Server/Research/Systems/ResearchSystem.Console.cs
+++ b/Content.Server/Research/Systems/ResearchSystem.Console.cs
@@ -3,6 +3,7 @@ using Content.Server.Research.Components;
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 @@ public sealed partial class ResearchSystem
SubscribeLocalEvent(OnPointsChanged);
SubscribeLocalEvent(OnConsoleRegistrationChanged);
SubscribeLocalEvent(OnConsoleDatabaseModified);
+ SubscribeLocalEvent(OnEmagged);
}
private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component, ConsoleUnlockTechnologyMessage args)
@@ -39,7 +43,7 @@ public sealed partial class ResearchSystem
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 @@ public sealed partial class ResearchSystem
);
_radio.SendRadioMessage(uid, message, component.AnnouncementChannel, uid, escapeMarkup: false);
}
-
+
SyncClientWithServer(uid);
UpdateConsoleInterface(uid, component);
}
@@ -100,4 +104,15 @@ public sealed partial class ResearchSystem
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 6b83a61d28..1eb9aabed6 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 @@ public sealed partial class RevenantSystem
_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 b4ba140044..4d2a8912e8 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;
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 @@ public sealed partial class BorgSystem
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 109c183f04..f5ead80bdd 100644
--- a/Content.Server/Silicons/Laws/SiliconLawSystem.cs
+++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs
@@ -6,7 +6,6 @@ using Content.Server.Roles;
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.Mind.Components;
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.Containers;
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 sealed class SiliconLawSystem : SharedSiliconLawSystem
SubscribeLocalEvent(OnIonStormLaws);
SubscribeLocalEvent(OnLawProviderMindAdded);
SubscribeLocalEvent(OnLawProviderMindRemoved);
- SubscribeLocalEvent(OnEmagLawsAdded);
+ SubscribeLocalEvent(OnEmagLawsAdded);
}
private void OnMapInit(EntityUid uid, SiliconLawBoundComponent component, MapInitEvent args)
@@ -135,7 +132,7 @@ public sealed class SiliconLawSystem : SharedSiliconLawSystem
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 @@ public sealed class SiliconLawSystem : SharedSiliconLawSystem
}
}
- 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 @@ public sealed class SiliconLawSystem : SharedSiliconLawSystem
// 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 @@ public sealed class SiliconLawSystem : SharedSiliconLawSystem
});
}
- 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/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs
index c20a6a4644..c2ea6dd1ac 100644
--- a/Content.Server/VendingMachines/VendingMachineSystem.cs
+++ b/Content.Server/VendingMachines/VendingMachineSystem.cs
@@ -39,6 +39,7 @@ namespace Content.Server.VendingMachines
[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 @@ namespace Content.Server.VendingMachines
SubscribeLocalEvent(OnPowerChanged);
SubscribeLocalEvent(OnBreak);
- SubscribeLocalEvent(OnEmagged);
SubscribeLocalEvent(OnDamageChanged);
SubscribeLocalEvent(OnVendingPrice);
SubscribeLocalEvent(OnEmpPulse);
@@ -123,12 +123,6 @@ namespace Content.Server.VendingMachines
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 @@ namespace Content.Server.VendingMachines
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 @@ namespace Content.Server.VendingMachines
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/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs
index ec462ae23e..3c8314041f 100644
--- a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs
+++ b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs
@@ -78,7 +78,7 @@ public sealed class MeleeWeaponSystem : SharedMeleeWeaponSystem
// Could also check the arc though future effort + if they're aimbotting it's not really going to make a difference.
// (This runs lagcomp internally and is what clickattacks use)
- if (!Interaction.InRangeUnobstructed(ignore, targetUid, range + 0.1f))
+ if (!Interaction.InRangeUnobstructed(ignore, targetUid, range + 0.1f, overlapCheck: false))
return false;
// TODO: Check arc though due to the aforementioned aimbot + damage split comments it's less important.
@@ -193,7 +193,7 @@ public sealed class MeleeWeaponSystem : SharedMeleeWeaponSystem
if (session is { } pSession)
{
(targetCoordinates, targetLocalAngle) = _lag.GetCoordinatesAngle(target, pSession);
- return Interaction.InRangeUnobstructed(user, target, targetCoordinates, targetLocalAngle, range);
+ return Interaction.InRangeUnobstructed(user, target, targetCoordinates, targetLocalAngle, range, overlapCheck: false);
}
return Interaction.InRangeUnobstructed(user, target, range);
diff --git a/Content.Server/Wieldable/WieldableSystem.cs b/Content.Server/Wieldable/WieldableSystem.cs
new file mode 100644
index 0000000000..35f75276a8
--- /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.Server/_CP14/Cargo/CP14CargoSystem.cs b/Content.Server/_CP14/Cargo/CP14CargoSystem.cs
index 479a6a546b..01667c7265 100644
--- a/Content.Server/_CP14/Cargo/CP14CargoSystem.cs
+++ b/Content.Server/_CP14/Cargo/CP14CargoSystem.cs
@@ -147,14 +147,14 @@ public sealed partial class CP14CargoSystem : CP14SharedCargoSystem
if (buyPos.Special)
availableSpecialBuyPositions.Add(buyPos);
else
- station.Comp.CurrentBuyPositions.Add(buyPos, buyPos.Price.Next(_random)/10*10);
+ station.Comp.CurrentBuyPositions.Add(buyPos, buyPos.Price);
}
foreach (var sellPos in station.Comp.AvailableSellPosition)
{
if (sellPos.Special)
availableSpecialSellPositions.Add(sellPos);
else
- station.Comp.CurrentSellPositions.Add(sellPos, sellPos.Price.Next(_random)/10*10);
+ station.Comp.CurrentSellPositions.Add(sellPos, sellPos.Price);
}
//Random and select special positions
@@ -168,14 +168,14 @@ public sealed partial class CP14CargoSystem : CP14SharedCargoSystem
{
if (station.Comp.CurrentSpecialBuyPositions.Count >= currentSpecialBuyPositions)
break;
- station.Comp.CurrentSpecialBuyPositions.Add(buyPos, buyPos.Price.Next(_random)/10*10);
+ station.Comp.CurrentSpecialBuyPositions.Add(buyPos, buyPos.Price);
}
foreach (var sellPos in availableSpecialSellPositions)
{
if (station.Comp.CurrentSpecialSellPositions.Count >= currentSpecialSellPositions)
break;
- station.Comp.CurrentSpecialSellPositions.Add(sellPos, sellPos.Price.Next(_random)/10*10);
+ station.Comp.CurrentSpecialSellPositions.Add(sellPos, sellPos.Price);
}
}
diff --git a/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.Destruction.cs b/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.Destruction.cs
new file mode 100644
index 0000000000..91995a4a8e
--- /dev/null
+++ b/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.Destruction.cs
@@ -0,0 +1,47 @@
+using Content.Shared._CP14.Demiplane.Components;
+using Robust.Shared.Audio;
+
+namespace Content.Server._CP14.Demiplane;
+
+public sealed partial class CP14DemiplaneSystem
+{
+ private void InitDestruction()
+ {
+ SubscribeLocalEvent(OnDestructionStarted);
+ }
+
+ private void OnDestructionStarted(Entity ent, ref ComponentAdd args)
+ {
+ ent.Comp.EndTime = _timing.CurTime + ent.Comp.TimeToDestruction;
+ ent.Comp.SelectedSong = new SoundPathSpecifier(_audio.GetSound(ent.Comp.Sound));
+ }
+
+ private void UpdateDestruction(float frameTime)
+ {
+ var query = EntityQueryEnumerator();
+ while (query.MoveNext(out var uid, out var destruction, out var demiplane))
+ {
+ var remaining = destruction.EndTime - _timing.CurTime;
+
+ if (destruction.SelectedSong is null)
+ continue;
+
+ var audioLength = _audio.GetAudioLength(destruction.SelectedSong.Path.ToString());
+
+ if (destruction.Stream is null && remaining < audioLength)
+ {
+ var audio = _audio.PlayPvs(destruction.Sound, uid);
+ destruction.Stream = audio?.Entity;
+ _audio.SetMapAudio(audio);
+ Dirty(uid, destruction);
+ DemiplaneAnnounce(uid, Loc.GetString("cp14-demiplane-countdown", ("duration", audioLength.Minutes)));
+ }
+
+ if (remaining <= TimeSpan.Zero)
+ {
+ _audio.Stop(destruction.Stream);
+ DeleteDemiplane((uid, demiplane));
+ }
+ }
+ }
+}
diff --git a/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.Echoes.cs b/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.Echoes.cs
index c93e70f2e4..e0b759542c 100644
--- a/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.Echoes.cs
+++ b/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.Echoes.cs
@@ -5,8 +5,6 @@ namespace Content.Server._CP14.Demiplane;
public sealed partial class CP14DemiplaneSystem
{
- [Dependency] private readonly ChatSystem _chat = default!;
-
private void InitEchoes()
{
SubscribeLocalEvent(OnSpeak);
diff --git a/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.Generation.cs b/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.Generation.cs
index 2b1c36869a..6eb11bb04e 100644
--- a/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.Generation.cs
+++ b/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.Generation.cs
@@ -31,7 +31,7 @@ public sealed partial class CP14DemiplaneSystem
private void InitGeneration()
{
SubscribeLocalEvent(GeneratorMapInit);
- SubscribeLocalEvent(GeneratorUsedInHand);
+ SubscribeLocalEvent(GeneratorUsedInHand);
SubscribeLocalEvent>(OnVerbExamine);
}
@@ -137,18 +137,20 @@ public sealed partial class CP14DemiplaneSystem
_expeditionQueue.EnqueueJob(job);
}
- private void GeneratorUsedInHand(Entity generator, ref UseInHandEvent args)
+ private void UseGenerator(Entity generator, EntityUid? user = null)
{
//block the opening of demiplanes after the end of a round
if (_gameTicker.RunLevel != GameRunLevel.InRound)
{
- _popup.PopupEntity(Loc.GetString("cp14-demiplan-cannot-open-end-round"), generator, args.User);
+ if (user is not null)
+ _popup.PopupEntity(Loc.GetString("cp14-demiplan-cannot-open-end-round"), generator, user.Value);
return;
}
//We cant open demiplane in another demiplane or if parent is not Map
- if (_demiplaneQuery.HasComp(Transform(generator).MapUid) || !HasComp(_transform.GetParentUid(args.User)))
+ if (_demiplaneQuery.HasComp(Transform(generator).MapUid))
{
- _popup.PopupEntity(Loc.GetString("cp14-demiplan-cannot-open", ("name", MetaData(generator).EntityName)), generator, args.User);
+ if (user is not null)
+ _popup.PopupEntity(Loc.GetString("cp14-demiplan-cannot-open", ("name", MetaData(generator).EntityName)), generator, user.Value);
return;
}
@@ -177,22 +179,29 @@ public sealed partial class CP14DemiplaneSystem
//Admin log needed
EnsureComp(demiplane.Value);
- //Ура, щиткод и магические переменные!
- var tempRift = EntityManager.Spawn("CP14DemiplaneTimedRadiusPassway");
- var tempRift2 = EntityManager.Spawn("CP14DemiplanRiftCore");
- _transform.SetCoordinates(tempRift, Transform(args.User).Coordinates);
- _transform.SetCoordinates(tempRift2, Transform(args.User).Coordinates);
-
- var connection = EnsureComp(tempRift);
- var connection2 = EnsureComp(tempRift2);
- AddDemiplaneRandomExitPoint(demiplane.Value, (tempRift, connection));
- AddDemiplaneRandomExitPoint(demiplane.Value, (tempRift2, connection2));
+ //Rifts spawning
+ foreach (var rift in generator.Comp.AutoRifts)
+ {
+ var spawnedRift = EntityManager.Spawn(rift);
+ _transform.SetCoordinates(spawnedRift, Transform(generator).Coordinates);
+ _transform.AttachToGridOrMap(spawnedRift);
+ var connection = EnsureComp(spawnedRift);
+ AddDemiplaneRandomExitPoint(demiplane.Value, (spawnedRift, connection));
+ }
#if !DEBUG
QueueDel(generator); //wtf its crash debug build!
#endif
}
+ private void GeneratorUsedInHand(Entity ent, ref UseInHandEvent args)
+ {
+ if (!TryComp(ent, out var generator))
+ return;
+
+ UseGenerator((ent, generator), args.User);
+ }
+
private void GeneratorMapInit(Entity generator, ref MapInitEvent args)
{
//Location generation
@@ -239,26 +248,13 @@ public sealed partial class CP14DemiplaneSystem
foreach (var modifier in _proto.EnumeratePrototypes())
{
var passed = true;
- //Tag blacklist filter
- foreach (var configTag in selectedConfig.Tags)
- {
- if (modifier.BlacklistTags.Count != 0 && modifier.BlacklistTags.Contains(configTag))
- {
- passed = false;
- break;
- }
- }
- //Tag required filter
+ //Random prob filter
if (passed)
{
- foreach (var reqTag in modifier.RequiredTags)
+ if (!_random.Prob(modifier.GenerationProb))
{
- if (!selectedConfig.Tags.Contains(reqTag))
- {
- passed = false;
- break;
- }
+ passed = false;
}
}
@@ -297,12 +293,26 @@ public sealed partial class CP14DemiplaneSystem
}
}
- //Random prob filter
- if (passed)
+ //Tag blacklist filter
+ foreach (var configTag in selectedConfig.Tags)
{
- if (!_random.Prob(modifier.GenerationProb))
+ if (modifier.BlacklistTags.Count != 0 && modifier.BlacklistTags.Contains(configTag))
{
passed = false;
+ break;
+ }
+ }
+
+ //Tag required filter
+ if (passed)
+ {
+ foreach (var reqTag in modifier.RequiredTags)
+ {
+ if (!selectedConfig.Tags.Contains(reqTag))
+ {
+ passed = false;
+ break;
+ }
}
}
@@ -358,6 +368,9 @@ public sealed partial class CP14DemiplaneSystem
//Scenario generation
//ETC generation
+
+ if (HasComp(generator))
+ UseGenerator(generator);
}
diff --git a/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.cs b/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.cs
index e64cb94ce7..19d619df45 100644
--- a/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.cs
+++ b/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.cs
@@ -1,13 +1,18 @@
using Content.Server._CP14.Demiplane.Components;
using Content.Server._CP14.RoundStatistic;
+using Content.Server.Chat.Managers;
+using Content.Server.Chat.Systems;
using Content.Server.Flash;
using Content.Server.Procedural;
using Content.Shared._CP14.Demiplane;
using Content.Shared._CP14.Demiplane.Components;
+using Content.Shared.Chat;
using Content.Shared.Popups;
using Robust.Server.Audio;
using Robust.Shared.Audio;
using Robust.Shared.Map;
+using Robust.Shared.Map.Components;
+using Robust.Shared.Player;
using Robust.Shared.Prototypes;
using Robust.Shared.Random;
using Robust.Shared.Timing;
@@ -29,6 +34,8 @@ public sealed partial class CP14DemiplaneSystem : CP14SharedDemiplaneSystem
[Dependency] private readonly IGameTiming _timing = default!;
[Dependency] private readonly SharedPopupSystem _popup = default!;
[Dependency] private readonly CP14RoundStatTrackerSystem _statistic = default!;
+ [Dependency] private readonly ChatSystem _chat = default!;
+ [Dependency] private readonly IChatManager _chatManager = default!;
private EntityQuery _demiplaneQuery;
@@ -42,6 +49,7 @@ public sealed partial class CP14DemiplaneSystem : CP14SharedDemiplaneSystem
InitConnections();
InitStabilization();
InitEchoes();
+ InitDestruction();
SubscribeLocalEvent(OnDemiplanShutdown);
SubscribeLocalEvent(OnSpawnOutOfDemiplane);
@@ -75,6 +83,7 @@ public sealed partial class CP14DemiplaneSystem : CP14SharedDemiplaneSystem
UpdateGeneration(frameTime);
UpdateStabilization(frameTime);
+ UpdateDestruction(frameTime);
}
///
@@ -161,4 +170,19 @@ public sealed partial class CP14DemiplaneSystem : CP14SharedDemiplaneSystem
RemoveDemiplaneRandomEntryPoint(demiplane, entry);
}
}
+
+ private void DemiplaneAnnounce(EntityUid mapUid, string text)
+ {
+ var mapId = Comp(mapUid).MapId;
+
+ _chatManager.ChatMessageToManyFiltered(
+ Filter.BroadcastMap(mapId),
+ ChatChannel.Radio,
+ text,
+ text,
+ _mapManager.GetMapEntityId(mapId),
+ false,
+ true,
+ null);
+ }
}
diff --git a/Content.Server/_CP14/Demiplane/Components/CP14DemiplaneAutoOpenComponent.cs b/Content.Server/_CP14/Demiplane/Components/CP14DemiplaneAutoOpenComponent.cs
new file mode 100644
index 0000000000..eef2f5ca79
--- /dev/null
+++ b/Content.Server/_CP14/Demiplane/Components/CP14DemiplaneAutoOpenComponent.cs
@@ -0,0 +1,9 @@
+namespace Content.Server._CP14.Demiplane.Components;
+
+///
+/// Open demiplane automatically on MapInit
+///
+[RegisterComponent, Access(typeof(CP14DemiplaneSystem))]
+public sealed partial class CP14DemiplaneAutoOpenComponent : Component
+{
+}
diff --git a/Content.Server/_CP14/Demiplane/Components/CP14DemiplaneGeneratorDataComponent.cs b/Content.Server/_CP14/Demiplane/Components/CP14DemiplaneGeneratorDataComponent.cs
index 87bea077ba..1853f47bcd 100644
--- a/Content.Server/_CP14/Demiplane/Components/CP14DemiplaneGeneratorDataComponent.cs
+++ b/Content.Server/_CP14/Demiplane/Components/CP14DemiplaneGeneratorDataComponent.cs
@@ -27,4 +27,7 @@ public sealed partial class CP14DemiplaneGeneratorDataComponent : Component
[DataField]
public ProtoId Statistic = "DemiplaneOpen";
+
+ [DataField]
+ public List AutoRifts = new() { "CP14DemiplaneTimedRadiusPassway", "CP14DemiplanRiftCore" };
}
diff --git a/Content.Server/_CP14/Demiplane/Components/CP14DemiplaneUsingOpenComponent.cs b/Content.Server/_CP14/Demiplane/Components/CP14DemiplaneUsingOpenComponent.cs
new file mode 100644
index 0000000000..0059a4c5cd
--- /dev/null
+++ b/Content.Server/_CP14/Demiplane/Components/CP14DemiplaneUsingOpenComponent.cs
@@ -0,0 +1,9 @@
+namespace Content.Server._CP14.Demiplane.Components;
+
+///
+/// Open demiplane from using in hand
+///
+[RegisterComponent, Access(typeof(CP14DemiplaneSystem))]
+public sealed partial class CP14DemiplaneUsingOpenComponent : Component
+{
+}
diff --git a/Content.Server/_CP14/Demiplane/Jobs/CP14SpawnRandomDemiplaneJob.cs b/Content.Server/_CP14/Demiplane/Jobs/CP14SpawnRandomDemiplaneJob.cs
index f1b9030df6..2d49f26655 100644
--- a/Content.Server/_CP14/Demiplane/Jobs/CP14SpawnRandomDemiplaneJob.cs
+++ b/Content.Server/_CP14/Demiplane/Jobs/CP14SpawnRandomDemiplaneJob.cs
@@ -95,18 +95,14 @@ public sealed class CP14SpawnRandomDemiplaneJob : Job
if (!_prototypeManager.TryIndex(modifier, out var indexedModifier))
continue;
- dungeonConfig.Layers.AddRange(indexedModifier.Layers);
- _entManager.AddComponents(DemiplaneMapUid, indexedModifier.Components);
+ if (indexedModifier.Layers != null)
+ dungeonConfig.Layers.AddRange(indexedModifier.Layers);
+ if (indexedModifier.Components != null)
+ _entManager.AddComponents(DemiplaneMapUid, indexedModifier.Components);
_sawmill.Debug($"Added modifier: {_seed} - {modifier.Id}");
}
- //Enter and exits
- if (_prototypeManager.TryIndex("DemiplaneConnections", out var indexedConnections))
- {
- dungeonConfig.Layers.AddRange(indexedConnections.Layers);
- }
-
//Setup gravity
var gravity = _entManager.EnsureComponent(grid);
gravity.Enabled = true;
diff --git a/Content.Server/_CP14/DeviceLinking/CP14PressurePlateSystem.cs b/Content.Server/_CP14/DeviceLinking/CP14PressurePlateSystem.cs
new file mode 100644
index 0000000000..b6d082f836
--- /dev/null
+++ b/Content.Server/_CP14/DeviceLinking/CP14PressurePlateSystem.cs
@@ -0,0 +1,99 @@
+using Content.Server.DeviceLinking.Systems;
+using Content.Server.Storage.Components;
+using Content.Shared._CP14.DeviceLinking;
+using Content.Shared.Placeable;
+using Robust.Shared.Audio.Systems;
+using Robust.Shared.Containers;
+using Robust.Shared.Physics.Components;
+
+namespace Content.Server._CP14.DeviceLinking;
+
+public sealed class CP14PressurePlateSystem : EntitySystem
+{
+ [Dependency] private readonly SharedAppearanceSystem _appearance = default!;
+ [Dependency] private readonly SharedAudioSystem _audio = default!;
+ [Dependency] private readonly DeviceLinkSystem _signal = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+ SubscribeLocalEvent(OnInit);
+ SubscribeLocalEvent(OnItemPlaced);
+ SubscribeLocalEvent(OnItemRemoved);
+ }
+
+ private void OnInit(Entity plate, ref ComponentInit args)
+ {
+ _signal.EnsureSourcePorts(plate, plate.Comp.PressedPort, plate.Comp.ReleasedPort);
+ _appearance.SetData(plate, PressurePlateVisuals.Pressed, false);
+ }
+
+ private void OnItemRemoved(Entity plate, ref ItemRemovedEvent args)
+ {
+ UpdateState(plate);
+ }
+
+ private void OnItemPlaced(Entity plate, ref ItemPlacedEvent args)
+ {
+ UpdateState(plate);
+ }
+
+ private void UpdateState(Entity plate)
+ {
+ if (!TryComp(plate, out var itemPlacer))
+ return;
+ var totalMass = 0f;
+
+ foreach (var ent in itemPlacer.PlacedEntities)
+ {
+ totalMass += GetEntWeightRecursive(ent);
+ }
+ var pressed = totalMass >= plate.Comp.WeightRequired;
+ if (pressed == plate.Comp.IsPressed)
+ return;
+
+ plate.Comp.IsPressed = pressed;
+ _signal.SendSignal(plate, plate.Comp.StatusPort, pressed);
+ _signal.InvokePort(plate, pressed ? plate.Comp.PressedPort : plate.Comp.ReleasedPort);
+
+ _appearance.SetData(plate, PressurePlateVisuals.Pressed, pressed);
+ _audio.PlayPvs(pressed ? plate.Comp.PressedSound : plate.Comp.ReleasedSound, plate);
+ }
+
+ ///
+ /// Recursively calculates the weight of the object, and all its contents, and the contents and its contents...
+ ///
+ public float GetEntWeightRecursive(EntityUid uid)
+ {
+ var totalMass = 0f;
+ if (Deleted(uid)) return 0f;
+
+ if (TryComp(uid, out var physics))
+ {
+ totalMass += physics.Mass;
+ }
+
+ //Containers
+ if (TryComp(uid, out var entityStorage))
+ {
+ var storage = entityStorage.Contents;
+ foreach (var ent in storage.ContainedEntities)
+ {
+ totalMass += GetEntWeightRecursive(ent);
+ }
+ }
+ //Inventory
+ if (TryComp(uid, out var containerManager))
+ {
+ foreach (var container in containerManager.Containers)
+ {
+ var storage = container.Value.ContainedEntities;
+ foreach (var ent in storage)
+ {
+ totalMass += GetEntWeightRecursive(ent);
+ }
+ }
+ }
+ return totalMass;
+ }
+}
diff --git a/Content.Server/_CP14/DeviceLinking/Components/CP14PressurePlateComponent.cs b/Content.Server/_CP14/DeviceLinking/Components/CP14PressurePlateComponent.cs
new file mode 100644
index 0000000000..2cf48fd223
--- /dev/null
+++ b/Content.Server/_CP14/DeviceLinking/Components/CP14PressurePlateComponent.cs
@@ -0,0 +1,39 @@
+using Content.Shared.DeviceLinking;
+using Robust.Shared.Audio;
+using Robust.Shared.Prototypes;
+
+namespace Content.Server._CP14.DeviceLinking.Components;
+
+///
+/// This component allows the facility to register the weight of objects above it and provide signals to devices
+///
+[RegisterComponent, Access(typeof(CP14PressurePlateSystem))]
+public sealed partial class CP14PressurePlateComponent : Component
+{
+ [DataField]
+ public bool IsPressed;
+
+ ///
+ /// The required weight of an object that happens to be above the slab to activate.
+ ///
+ [DataField]
+ public float WeightRequired = 100f;
+
+ [DataField]
+ public float CurrentWeight;
+
+ [DataField]
+ public ProtoId PressedPort = "CP14Pressed";
+
+ [DataField]
+ public ProtoId StatusPort = "Status";
+
+ [DataField]
+ public ProtoId ReleasedPort = "CP14Released";
+
+ [DataField]
+ public SoundSpecifier PressedSound = new SoundPathSpecifier("/Audio/Machines/button.ogg");
+
+ [DataField]
+ public SoundSpecifier ReleasedSound = new SoundPathSpecifier("/Audio/Machines/button.ogg");
+}
diff --git a/Content.Server/_CP14/Discord/DiscordAuthManager.cs b/Content.Server/_CP14/Discord/DiscordAuthManager.cs
index 9d203354a9..52ab1e5a1f 100644
--- a/Content.Server/_CP14/Discord/DiscordAuthManager.cs
+++ b/Content.Server/_CP14/Discord/DiscordAuthManager.cs
@@ -42,12 +42,6 @@ public sealed class DiscordAuthManager
_netMgr.RegisterNetMessage(OnAuthCheck);
_playerMgr.PlayerStatusChanged += OnPlayerStatusChanged;
- PlayerVerified += OnPlayerVerified;
- }
-
- private void OnPlayerVerified(object? obj, ICommonSession session)
- {
- Timer.Spawn(0, () => _playerMgr.JoinGame(session));
}
private async void OnAuthCheck(MsgDiscordAuthCheck msg)
diff --git a/Content.Server/_CP14/JoinQueue/JoinQueueManager.cs b/Content.Server/_CP14/JoinQueue/JoinQueueManager.cs
new file mode 100644
index 0000000000..97a2f407ca
--- /dev/null
+++ b/Content.Server/_CP14/JoinQueue/JoinQueueManager.cs
@@ -0,0 +1,173 @@
+using System.Linq;
+using Content.Server._CP14.Discord;
+using Content.Server.Connection;
+using Content.Shared._CP14.JoinQueue;
+using Content.Shared.CCVar;
+using Prometheus;
+using Robust.Server.Player;
+using Robust.Shared.Configuration;
+using Robust.Shared.Enums;
+using Robust.Shared.Network;
+using Robust.Shared.Player;
+using Robust.Shared.Timing;
+
+namespace Content.Server._CP14.JoinQueue;
+
+///
+/// Manages new player connections when the server is full and queues them up, granting access when a slot becomes free
+///
+public sealed class JoinQueueManager
+{
+ private static readonly Gauge QueueCount = Metrics.CreateGauge(
+ "join_queue_count",
+ "Amount of players in queue.");
+
+ private static readonly Counter QueueBypassCount = Metrics.CreateCounter(
+ "join_queue_bypass_count",
+ "Amount of players who bypassed queue by privileges.");
+
+ private static readonly Histogram QueueTimings = Metrics.CreateHistogram(
+ "join_queue_timings",
+ "Timings of players in queue",
+ new HistogramConfiguration()
+ {
+ LabelNames = new[] {"type"},
+ Buckets = Histogram.ExponentialBuckets(1, 2, 14),
+ });
+
+ [Dependency] private readonly IPlayerManager _playerManager = default!;
+ [Dependency] private readonly IConnectionManager _connectionManager = default!;
+ [Dependency] private readonly IConfigurationManager _cfg = default!;
+ [Dependency] private readonly IServerNetManager _netManager = default!;
+ [Dependency] private readonly DiscordAuthManager _discordAuthManager = default!;
+ //[Dependency] private readonly SponsorsManager _sponsors = default!;
+ private ISawmill _sawmill = default!;
+
+ ///
+ /// Queue of active player sessions
+ ///
+ private readonly List _queue = new(); // Real Queue class can't delete disconnected users
+
+ private bool _isEnabled = false;
+
+ public int PlayerInQueueCount => _queue.Count;
+ public int ActualPlayersCount => _playerManager.PlayerCount - PlayerInQueueCount; // Now it's only real value with actual players count that in game
+
+ public void Initialize()
+ {
+ _netManager.RegisterNetMessage();
+
+ _cfg.OnValueChanged(CCVars.QueueEnabled, OnQueueCVarChanged, true);
+ _playerManager.PlayerStatusChanged += OnPlayerStatusChanged;
+ _discordAuthManager.PlayerVerified += OnPlayerVerified;
+ _sawmill = Logger.GetSawmill("queue");
+ }
+
+ private void OnQueueCVarChanged(bool value)
+ {
+ _isEnabled = value;
+
+ if (!value)
+ {
+ foreach (var session in _queue)
+ {
+ session.Channel.Disconnect("Queue was disabled");
+ }
+ }
+ }
+
+ private async void OnPlayerVerified(object? sender, ICommonSession session)
+ {
+ if (!_isEnabled)
+ {
+ SendToGame(session);
+ return;
+ }
+
+ var isPrivileged = await _connectionManager.HavePrivilegedJoin(session.UserId);
+ var currentOnline = _playerManager.PlayerCount - 1; // Do not count current session in general online, because we are still deciding her fate
+ var haveFreeSlot = currentOnline < _cfg.GetCVar(CCVars.SoftMaxPlayers);
+ if (isPrivileged || haveFreeSlot)
+ {
+ SendToGame(session);
+
+ if (isPrivileged && !haveFreeSlot)
+ {
+ QueueBypassCount.Inc();
+ _sawmill.Info($"{session.Name} bypassed soft slots by privileges");
+ }
+
+ return;
+ }
+
+ _queue.Add(session);
+ ProcessQueue(false, session.ConnectedTime);
+ }
+
+ private async void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e)
+ {
+ if (e.NewStatus == SessionStatus.Disconnected)
+ {
+ var wasInQueue = _queue.Remove(e.Session);
+
+ if (!wasInQueue && e.OldStatus != SessionStatus.InGame) // Process queue only if player disconnected from InGame or from queue
+ return;
+
+ ProcessQueue(true, e.Session.ConnectedTime);
+
+ if (wasInQueue)
+ QueueTimings.WithLabels("Unwaited").Observe((DateTime.UtcNow - e.Session.ConnectedTime).TotalSeconds);
+ }
+ }
+
+ ///
+ /// If possible, takes the first player in the queue and sends him into the game
+ ///
+ /// Is method called on disconnect event
+ /// Session connected time for histogram metrics
+ private void ProcessQueue(bool isDisconnect, DateTime connectedTime)
+ {
+ var players = ActualPlayersCount;
+ if (isDisconnect)
+ players--; // Decrease currently disconnected session but that has not yet been deleted
+
+ var haveFreeSlot = players < _cfg.GetCVar(CCVars.SoftMaxPlayers);
+ var queueContains = _queue.Count > 0;
+ if (haveFreeSlot && queueContains)
+ {
+ var session = _queue.First();
+ _queue.Remove(session);
+
+ SendToGame(session);
+
+ QueueTimings.WithLabels("Waited").Observe((DateTime.UtcNow - connectedTime).TotalSeconds);
+ }
+
+ SendUpdateMessages();
+ QueueCount.Set(_queue.Count);
+ }
+
+ ///
+ /// Sends messages to all players in the queue with the current state of the queue
+ ///
+ private void SendUpdateMessages()
+ {
+ for (var i = 0; i < _queue.Count; i++)
+ {
+ _queue[i].Channel.SendMessage(new MsgQueueUpdate
+ {
+ Total = _queue.Count,
+ Position = i + 1,
+ });
+ }
+ }
+
+ ///
+ /// Letting player's session into game, change player state
+ ///
+ /// Player session that will be sent to game
+ private void SendToGame(ICommonSession s)
+ {
+ Timer.Spawn(0, () => _playerManager.JoinGame(s));
+ }
+}
diff --git a/Content.Server/_CP14/MagicSpell/CP14AreaEntityEffectComponent.cs b/Content.Server/_CP14/MagicSpell/CP14AreaEntityEffectComponent.cs
index 0e5959d85d..12bc2a5648 100644
--- a/Content.Server/_CP14/MagicSpell/CP14AreaEntityEffectComponent.cs
+++ b/Content.Server/_CP14/MagicSpell/CP14AreaEntityEffectComponent.cs
@@ -1,11 +1,10 @@
using Content.Shared._CP14.MagicSpell.Spells;
using Content.Shared.Whitelist;
-using Robust.Shared.Prototypes;
namespace Content.Server._CP14.MagicSpell;
///
-///
+/// Component that allows an entity to apply effects to other entities in an area.
///
[RegisterComponent]
public sealed partial class CP14AreaEntityEffectComponent : Component
diff --git a/Content.Server/_CP14/MagicSpell/CP14MagicSystem.cs b/Content.Server/_CP14/MagicSpell/CP14MagicSystem.cs
index fd4d598323..b0f4182c94 100644
--- a/Content.Server/_CP14/MagicSpell/CP14MagicSystem.cs
+++ b/Content.Server/_CP14/MagicSpell/CP14MagicSystem.cs
@@ -1,13 +1,17 @@
using Content.Server._CP14.MagicEnergy;
+using Content.Server.Atmos.Components;
using Content.Server.Chat.Systems;
using Content.Shared._CP14.MagicEnergy.Components;
using Content.Shared._CP14.MagicSpell;
using Content.Shared._CP14.MagicSpell.Components;
using Content.Shared._CP14.MagicSpell.Events;
using Content.Shared._CP14.MagicSpell.Spells;
-using Content.Shared.EntityEffects;
+using Content.Shared.Projectiles;
+using Content.Shared.Throwing;
+using Content.Shared.Weapons.Melee.Events;
using Content.Shared.Whitelist;
using Robust.Server.GameObjects;
+using Robust.Shared.Random;
namespace Content.Server._CP14.MagicSpell;
@@ -18,12 +22,17 @@ public sealed partial class CP14MagicSystem : CP14SharedMagicSystem
[Dependency] private readonly CP14MagicEnergySystem _magicEnergy = default!;
[Dependency] private readonly EntityLookupSystem _lookup = default!;
[Dependency] private readonly EntityWhitelistSystem _whitelist = default!;
+ [Dependency] private readonly IRobustRandom _random = default!;
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent(OnAoEMapInit);
+
+ SubscribeLocalEvent(OnMeleeHit);
+ SubscribeLocalEvent(OnProjectileHit);
+
SubscribeLocalEvent(OnSpellSpoken);
SubscribeLocalEvent(OnSpawnMagicVisualEffect);
@@ -32,6 +41,37 @@ public sealed partial class CP14MagicSystem : CP14SharedMagicSystem
SubscribeLocalEvent(OnManaConsume);
}
+ private void OnProjectileHit(Entity ent, ref ThrowDoHitEvent args)
+ {
+ if (!_random.Prob(ent.Comp.Prob))
+ return;
+
+ if (ent.Comp.Whitelist is not null && !_whitelist.IsValid(ent.Comp.Whitelist, args.Target))
+ return;
+
+ foreach (var effect in ent.Comp.Effects)
+ {
+ effect.Effect(EntityManager, new CP14SpellEffectBaseArgs(args.Thrown, ent, args.Target, Transform(args.Target).Coordinates));
+ }
+ }
+
+ private void OnMeleeHit(Entity ent, ref MeleeHitEvent args)
+ {
+ if (!_random.Prob(ent.Comp.Prob))
+ return;
+
+ foreach (var entity in args.HitEntities)
+ {
+ if (ent.Comp.Whitelist is not null && !_whitelist.IsValid(ent.Comp.Whitelist, entity))
+ continue;
+
+ foreach (var effect in ent.Comp.Effects)
+ {
+ effect.Effect(EntityManager, new CP14SpellEffectBaseArgs(args.User, ent, entity, Transform(entity).Coordinates));
+ }
+ }
+ }
+
private void OnAoEMapInit(Entity ent, ref MapInitEvent args)
{
var entitiesAround = _lookup.GetEntitiesInRange(ent, ent.Comp.Range, LookupFlags.Uncontained);
diff --git a/Content.Server/_CP14/MagicSpell/CP14SpellEffectOnHitComponent.cs b/Content.Server/_CP14/MagicSpell/CP14SpellEffectOnHitComponent.cs
new file mode 100644
index 0000000000..9b281dec58
--- /dev/null
+++ b/Content.Server/_CP14/MagicSpell/CP14SpellEffectOnHitComponent.cs
@@ -0,0 +1,20 @@
+using Content.Shared._CP14.MagicSpell.Spells;
+using Content.Shared.Whitelist;
+
+namespace Content.Server._CP14.MagicSpell;
+
+///
+/// Component that allows an meleeWeapon to apply effects to other entities on melee attacks.
+///
+[RegisterComponent]
+public sealed partial class CP14SpellEffectOnHitComponent : Component
+{
+ [DataField(required: true, serverOnly: true)]
+ public List Effects = new();
+
+ [DataField]
+ public EntityWhitelist? Whitelist;
+
+ [DataField]
+ public float Prob = 1f;
+}
diff --git a/Content.Server/_CP14/MagicWeakness/CP14MagicWeaknessSystem.cs b/Content.Server/_CP14/MagicWeakness/CP14MagicWeaknessSystem.cs
new file mode 100644
index 0000000000..81a6ceecc1
--- /dev/null
+++ b/Content.Server/_CP14/MagicWeakness/CP14MagicWeaknessSystem.cs
@@ -0,0 +1,28 @@
+using Content.Server.Explosion.EntitySystems;
+using Content.Shared._CP14.MagicEnergy;
+using Content.Shared._CP14.MagicWeakness;
+
+namespace Content.Server._CP14.MagicWeakness;
+
+public class CP14MagicWeaknessSystem : CP14SharedMagicWeaknessSystem
+{
+ [Dependency] private readonly TriggerSystem _trigger = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnMagicEnergyBurnOutTrigger);
+ SubscribeLocalEvent(OnMagicEnergyOverloadTrigger);
+ }
+
+ private void OnMagicEnergyOverloadTrigger(Entity ent, ref CP14MagicEnergyOverloadEvent args)
+ {
+ _trigger.Trigger(ent);
+ }
+
+ private void OnMagicEnergyBurnOutTrigger(Entity ent, ref CP14MagicEnergyBurnOutEvent args)
+ {
+ _trigger.Trigger(ent);
+ }
+}
diff --git a/Content.Server/_CP14/ModularCraft/CP14ModularCraftSystem.cs b/Content.Server/_CP14/ModularCraft/CP14ModularCraftSystem.cs
index 3bd0c7fa95..eeae4b4adc 100644
--- a/Content.Server/_CP14/ModularCraft/CP14ModularCraftSystem.cs
+++ b/Content.Server/_CP14/ModularCraft/CP14ModularCraftSystem.cs
@@ -119,16 +119,19 @@ public sealed class CP14ModularCraftSystem : CP14SharedModularCraftSystem
if (!_proto.TryIndex(partProto, out var partIndexed))
continue;
- if (partIndexed.TargetSlot is null)
+ if (partIndexed.Slots.Count == 0)
continue;
- if (!start.Comp.FreeSlots.Contains(partIndexed.TargetSlot.Value))
- continue;
-
- if (TryAddPartToSlot(start, part, partProto, partIndexed.TargetSlot.Value))
+ foreach (var slot in partIndexed.Slots)
{
- QueueDel(part);
- return true;
+ if (!start.Comp.FreeSlots.Contains(slot))
+ continue;
+
+ if (TryAddPartToSlot(start, part, partProto, slot))
+ {
+ QueueDel(part);
+ return true;
+ }
}
}
@@ -141,13 +144,18 @@ public sealed class CP14ModularCraftSystem : CP14SharedModularCraftSystem
if (!_proto.TryIndex(partProto, out var partIndexed))
return false;
- if (partIndexed.TargetSlot is null)
+ if (partIndexed.Slots.Count == 0)
return false;
- if (!start.Comp.FreeSlots.Contains(partIndexed.TargetSlot.Value))
- return false;
+ foreach (var slot in partIndexed.Slots)
+ {
+ if (!start.Comp.FreeSlots.Contains(slot))
+ continue;
- return TryAddPartToSlot(start, null, partProto, partIndexed.TargetSlot.Value);
+ return TryAddPartToSlot(start, null, partProto, slot);
+ }
+
+ return false;
}
private bool TryAddPartToSlot(Entity start,
diff --git a/Content.Server/_CP14/ModularCraft/Modifiers/EditArmor.cs b/Content.Server/_CP14/ModularCraft/Modifiers/EditArmor.cs
new file mode 100644
index 0000000000..a6888bfa0f
--- /dev/null
+++ b/Content.Server/_CP14/ModularCraft/Modifiers/EditArmor.cs
@@ -0,0 +1,22 @@
+using Content.Shared._CP14.ModularCraft;
+using Content.Shared._CP14.ModularCraft.Components;
+using Content.Shared.Armor;
+using Content.Shared.Damage;
+
+namespace Content.Server._CP14.ModularCraft.Modifiers;
+
+public sealed partial class EditArmor : CP14ModularCraftModifier
+{
+ [DataField(required: true)]
+ public DamageModifierSet Modifiers = new();
+
+ public override void Effect(EntityManager entManager, Entity start, Entity? part)
+ {
+ if (!entManager.TryGetComponent(start, out var armor))
+ return;
+
+ var armorSystem = entManager.System();
+
+ armorSystem.EditArmorCoefficients(start, Modifiers, armor);
+ }
+}
diff --git a/Content.Server/_CP14/ModularCraft/Modifiers/EditClothingSpeed.cs b/Content.Server/_CP14/ModularCraft/Modifiers/EditClothingSpeed.cs
new file mode 100644
index 0000000000..6fdc67d07e
--- /dev/null
+++ b/Content.Server/_CP14/ModularCraft/Modifiers/EditClothingSpeed.cs
@@ -0,0 +1,26 @@
+using Content.Shared._CP14.ModularCraft;
+using Content.Shared._CP14.ModularCraft.Components;
+using Content.Shared.Armor;
+using Content.Shared.Clothing;
+using Content.Shared.Damage;
+
+namespace Content.Server._CP14.ModularCraft.Modifiers;
+
+public sealed partial class EditClothingSpeed : CP14ModularCraftModifier
+{
+ [DataField]
+ public float WalkModifier = 1f;
+
+ [DataField]
+ public float SprintModifier = 1f;
+
+ public override void Effect(EntityManager entManager, Entity start, Entity? part)
+ {
+ if (!entManager.TryGetComponent(start, out var speed))
+ return;
+
+ var speedModifierSystem = entManager.System();
+
+ speedModifierSystem.EditSpeedModifiers(start, WalkModifier, SprintModifier, speed);
+ }
+}
diff --git a/Content.Server/_CP14/ModularCraft/Modifiers/EditManacostModify.cs b/Content.Server/_CP14/ModularCraft/Modifiers/EditManacostModify.cs
new file mode 100644
index 0000000000..7864826922
--- /dev/null
+++ b/Content.Server/_CP14/ModularCraft/Modifiers/EditManacostModify.cs
@@ -0,0 +1,40 @@
+using Content.Shared._CP14.ModularCraft;
+using Content.Shared._CP14.ModularCraft.Components;
+using Content.Shared._CP14.MagicManacostModify;
+using Content.Shared._CP14.MagicRitual.Prototypes;
+using Content.Shared.FixedPoint;
+using Robust.Shared.Prototypes;
+
+namespace Content.Server._CP14.ModularCraft.Modifiers;
+
+public sealed partial class EditManacostModify : CP14ModularCraftModifier
+{
+ [DataField]
+ public Dictionary, FixedPoint2> Modifiers = new();
+
+ [DataField]
+ public FixedPoint2 GlobalModifier = 1f;
+
+ public override void Effect(EntityManager entManager, Entity start, Entity? part)
+ {
+ if (!entManager.TryGetComponent(start, out var manacostModifyComp))
+ return;
+
+ foreach (var (magicType, modifier) in Modifiers)
+ {
+ if (manacostModifyComp.Modifiers.ContainsKey(magicType))
+ {
+ if (modifier >= 1f)
+ manacostModifyComp.Modifiers[magicType] += modifier - 1f;
+ else
+ manacostModifyComp.Modifiers[magicType] -= 1f - modifier;
+ }
+ else
+ {
+ manacostModifyComp.Modifiers[magicType] = modifier;
+ }
+ }
+
+ manacostModifyComp.GlobalModifier += GlobalModifier;
+ }
+}
diff --git a/Content.Server/_CP14/Passport/CP14PassportComponent.cs b/Content.Server/_CP14/Passport/CP14PassportComponent.cs
new file mode 100644
index 0000000000..e69083395b
--- /dev/null
+++ b/Content.Server/_CP14/Passport/CP14PassportComponent.cs
@@ -0,0 +1,9 @@
+namespace Content.Server._CP14.Passport;
+
+///
+/// Generates a paper text confirming the identity of the player and stamps it.
+///
+[RegisterComponent]
+public sealed partial class CP14PassportComponent : Component
+{
+}
diff --git a/Content.Server/_CP14/Passport/CP14PassportSystem.cs b/Content.Server/_CP14/Passport/CP14PassportSystem.cs
new file mode 100644
index 0000000000..80ab0fcc4f
--- /dev/null
+++ b/Content.Server/_CP14/Passport/CP14PassportSystem.cs
@@ -0,0 +1,63 @@
+using System.Text;
+using Content.Shared.GameTicking;
+using Content.Shared.Inventory;
+using Content.Shared.Paper;
+using Content.Shared.Roles;
+using Robust.Shared.Prototypes;
+using Robust.Shared.Random;
+
+namespace Content.Server._CP14.Passport;
+
+public sealed partial class CP14PassportSystem : EntitySystem
+{
+ [Dependency] private readonly IPrototypeManager _proto = default!;
+ [Dependency] private readonly PaperSystem _paper = default!;
+ [Dependency] private readonly IRobustRandom _random = default!;
+ [Dependency] private readonly InventorySystem _inventory = default!;
+
+ public readonly EntProtoId PassportProto = "CP14Passport";
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnPlayerSpawning);
+ }
+
+ private void OnPlayerSpawning(PlayerSpawnCompleteEvent ev)
+ {
+ var passport = Spawn(PassportProto, Transform(ev.Mob).Coordinates);
+
+ if (!TryComp(passport, out var paper))
+ return;
+
+ var text = GeneratePassportText(ev);
+ _paper.SetContent((passport, paper), text);
+ _paper.TryStamp((passport, paper),
+ new StampDisplayInfo
+ {
+ StampedColor = Color.FromHex("#0a332a"),
+ StampedName = Loc.GetString("cp14-passport-stamp")
+ },
+ "");
+ _inventory.TryEquip(ev.Mob, passport, "pocket1");
+ }
+
+ private string GeneratePassportText(PlayerSpawnCompleteEvent ev)
+ {
+ var sb = new StringBuilder();
+
+ //Name
+ sb.AppendLine(Loc.GetString("cp14-passport-name", ("name", ev.Profile.Name)));
+ //Species
+ if (_proto.TryIndex(ev.Profile.Species, out var indexedSpecies))
+ sb.AppendLine(Loc.GetString("cp14-passport-species", ("species", Loc.GetString(indexedSpecies.Name))));
+ //Birthday
+ var birthday = $"{_random.Next(40)}.{_random.Next(12)}.{225 - ev.Profile.Age}";
+ sb.AppendLine(Loc.GetString("cp14-passport-birth-date", ("birthday", birthday)));
+ //Job
+ if (ev.JobId is not null && _proto.TryIndex(ev.JobId, out var indexedJob))
+ sb.AppendLine(Loc.GetString("cp14-passport-job", ("job", Loc.GetString(indexedJob.Name))));
+
+ return sb.ToString();
+ }
+}
diff --git a/Content.Server/_CP14/UniqueLoot/CP14UniqueLootSpawnerComponent.cs b/Content.Server/_CP14/UniqueLoot/CP14UniqueLootSpawnerComponent.cs
new file mode 100644
index 0000000000..8607f09051
--- /dev/null
+++ b/Content.Server/_CP14/UniqueLoot/CP14UniqueLootSpawnerComponent.cs
@@ -0,0 +1,14 @@
+using Content.Shared.Tag;
+using Robust.Shared.Prototypes;
+
+namespace Content.Server._CP14.UniqueLoot;
+
+[RegisterComponent]
+public sealed partial class CP14UniqueLootSpawnerComponent : Component
+{
+ ///
+ /// Used to filter which types of unique loot can be generated. You can leave null to disable filtering.
+ ///
+ [DataField]
+ public ProtoId? Tag;
+}
diff --git a/Content.Server/_CP14/UniqueLoot/CP14UniqueLootSystem.cs b/Content.Server/_CP14/UniqueLoot/CP14UniqueLootSystem.cs
new file mode 100644
index 0000000000..ee85bc7cd8
--- /dev/null
+++ b/Content.Server/_CP14/UniqueLoot/CP14UniqueLootSystem.cs
@@ -0,0 +1,79 @@
+using Content.Server.GameTicking.Events;
+using Content.Shared._CP14.UniqueLoot;
+using Content.Shared.GameTicking;
+using Robust.Shared.Prototypes;
+using Robust.Shared.Random;
+
+namespace Content.Server._CP14.UniqueLoot;
+
+public sealed partial class CP14UniqueLootSystem : EntitySystem
+{
+ [Dependency] private readonly IPrototypeManager _proto = default!;
+ [Dependency] private readonly IRobustRandom _random = default!;
+
+ private Dictionary, int> _uniqueLootCount = new();
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnRoundStart);
+ SubscribeLocalEvent(OnCleanup);
+
+ SubscribeLocalEvent(OnMapInit);
+ }
+
+ private void OnMapInit(Entity ent, ref MapInitEvent args)
+ {
+ var loot = GetNextUniqueLoot();
+
+ if (loot == null)
+ return;
+
+ if (!Deleted(ent))
+ SpawnAtPosition(loot, Transform(ent).Coordinates);
+
+ if (!TerminatingOrDeleted(ent) && Exists(ent))
+ QueueDel(ent);
+ }
+
+ private void OnRoundStart(RoundStartingEvent ev)
+ {
+ RefreshUniqueLoot();
+ }
+
+ private void OnCleanup(RoundRestartCleanupEvent ev)
+ {
+ _uniqueLootCount.Clear();
+ }
+
+ private void RefreshUniqueLoot()
+ {
+ _uniqueLootCount.Clear();
+
+ foreach (var loot in _proto.EnumeratePrototypes())
+ {
+ _uniqueLootCount[loot.ID] = loot.Count;
+ }
+ }
+
+ public EntProtoId? GetNextUniqueLoot()
+ {
+ if (_uniqueLootCount.Count == 0)
+ return null;
+
+ var selectedLoot = _random.Pick(_uniqueLootCount);
+
+ //TODO: Tag filtering
+
+ if (selectedLoot.Value > 1)
+ _uniqueLootCount[selectedLoot.Key] -= 1;
+ else
+ _uniqueLootCount.Remove(selectedLoot.Key);
+
+ if (!_proto.TryIndex(selectedLoot.Key, out var indexedLoot))
+ return null;
+
+ return indexedLoot.Entity;
+ }
+}
diff --git a/Content.Shared/Access/Components/AccessReaderComponent.cs b/Content.Shared/Access/Components/AccessReaderComponent.cs
index 903ceab186..0219fd2b1a 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/Components/IdCardComponent.cs b/Content.Shared/Access/Components/IdCardComponent.cs
index e80ced6464..3b8322671b 100644
--- a/Content.Shared/Access/Components/IdCardComponent.cs
+++ b/Content.Shared/Access/Components/IdCardComponent.cs
@@ -22,6 +22,8 @@ public sealed partial class IdCardComponent : Component
[Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWrite)]
public LocId? JobTitle;
+ [DataField]
+ [AutoNetworkedField]
private string? _jobTitle;
[Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWriteExecute)]
diff --git a/Content.Shared/Access/Systems/AccessReaderSystem.cs b/Content.Shared/Access/Systems/AccessReaderSystem.cs
index 0b1d508cc2..84de549b66 100644
--- a/Content.Shared/Access/Systems/AccessReaderSystem.cs
+++ b/Content.Shared/Access/Systems/AccessReaderSystem.cs
@@ -2,7 +2,6 @@ using System.Diagnostics.CodeAnalysis;
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 @@ public sealed class AccessReaderSystem : EntitySystem
{
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 sealed class AccessReaderSystem : EntitySystem
return true;
}
}
+
return true;
}
diff --git a/Content.Shared/Access/Systems/SharedAccessOverriderSystem.cs b/Content.Shared/Access/Systems/SharedAccessOverriderSystem.cs
index 36c74ed0dd..7c6233298a 100644
--- a/Content.Shared/Access/Systems/SharedAccessOverriderSystem.cs
+++ b/Content.Shared/Access/Systems/SharedAccessOverriderSystem.cs
@@ -45,3 +45,6 @@ namespace Content.Shared.Access.Systems
}
}
}
+
+[ByRefEvent]
+public record struct OnAccessOverriderAccessUpdatedEvent(EntityUid UserUid, bool Handled = false);
diff --git a/Content.Shared/Armor/SharedArmorSystem.cs b/Content.Shared/Armor/SharedArmorSystem.cs
index 010ee5e65b..55cb39397d 100644
--- a/Content.Shared/Armor/SharedArmorSystem.cs
+++ b/Content.Shared/Armor/SharedArmorSystem.cs
@@ -79,4 +79,30 @@ public abstract class SharedArmorSystem : EntitySystem
return msg;
}
+
+ //CP14 public armor edit API
+ public void EditArmorCoefficients(EntityUid uid, DamageModifierSet modifiers, ArmorComponent? armor = null)
+ {
+ if (!Resolve(uid, ref armor))
+ return;
+
+ //Merge old and new coefficients
+ foreach (var (armorType, coefficient) in modifiers.Coefficients)
+ {
+ if (armor.Modifiers.Coefficients.ContainsKey(armorType))
+ armor.Modifiers.Coefficients[armorType] += coefficient;
+ else
+ armor.Modifiers.Coefficients[armorType] = coefficient;
+ }
+
+ //Merge old and new flat reductions
+ foreach (var (armorType, reduction) in modifiers.FlatReduction)
+ {
+ if (armor.Modifiers.FlatReduction.ContainsKey(armorType))
+ armor.Modifiers.FlatReduction[armorType] += reduction;
+ else
+ armor.Modifiers.FlatReduction[armorType] = reduction;
+ }
+ }
+ //CP14 public armor edit API end
}
diff --git a/Content.Shared/Atmos/Components/GasPressurePumpComponent.cs b/Content.Shared/Atmos/Components/GasPressurePumpComponent.cs
index ca6b4d4e22..850a2a7a29 100644
--- a/Content.Shared/Atmos/Components/GasPressurePumpComponent.cs
+++ b/Content.Shared/Atmos/Components/GasPressurePumpComponent.cs
@@ -1,3 +1,4 @@
+using Content.Shared.Guidebook;
using Robust.Shared.GameStates;
namespace Content.Shared.Atmos.Components;
@@ -21,5 +22,6 @@ public sealed partial class GasPressurePumpComponent : Component
/// Max pressure of the target gas (NOT relative to source).
///
[DataField]
+ [GuidebookData]
public float MaxTargetPressure = Atmospherics.MaxOutputPressure;
}
diff --git a/Content.Shared/Atmos/GasMixture.cs b/Content.Shared/Atmos/GasMixture.cs
index 0f1efba976..deca8faaed 100644
--- a/Content.Shared/Atmos/GasMixture.cs
+++ b/Content.Shared/Atmos/GasMixture.cs
@@ -1,4 +1,5 @@
-using System.Diagnostics.CodeAnalysis;
+using System.Collections;
+using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Runtime.CompilerServices;
using Content.Shared.Atmos.EntitySystems;
@@ -13,12 +14,12 @@ namespace Content.Shared.Atmos
///
[Serializable]
[DataDefinition]
- public sealed partial class GasMixture : IEquatable, ISerializationHooks
+ public sealed partial class GasMixture : IEquatable, ISerializationHooks, IEnumerable<(Gas gas, float moles)>
{
public static GasMixture SpaceGas => new() {Volume = Atmospherics.CellVolume, Temperature = Atmospherics.TCMB, Immutable = true};
// No access, to ensure immutable mixtures are never accidentally mutated.
- [Access(typeof(SharedAtmosphereSystem), typeof(SharedAtmosDebugOverlaySystem), Other = AccessPermissions.None)]
+ [Access(typeof(SharedAtmosphereSystem), typeof(SharedAtmosDebugOverlaySystem), typeof(GasEnumerator), Other = AccessPermissions.None)]
[DataField]
public float[] Moles = new float[Atmospherics.AdjustedNumberOfGases];
@@ -249,6 +250,16 @@ namespace Content.Shared.Atmos
return new GasMixtureStringRepresentation(TotalMoles, Temperature, Pressure, molesPerGas);
}
+ GasEnumerator GetEnumerator()
+ {
+ return new GasEnumerator(this);
+ }
+
+ IEnumerator<(Gas gas, float moles)> IEnumerable<(Gas gas, float moles)>.GetEnumerator()
+ {
+ return GetEnumerator();
+ }
+
public override bool Equals(object? obj)
{
if (obj is GasMixture mix)
@@ -289,6 +300,11 @@ namespace Content.Shared.Atmos
return hashCode.ToHashCode();
}
+ IEnumerator IEnumerable.GetEnumerator()
+ {
+ return GetEnumerator();
+ }
+
public GasMixture Clone()
{
if (Immutable)
@@ -302,5 +318,28 @@ namespace Content.Shared.Atmos
};
return newMixture;
}
+
+ public struct GasEnumerator(GasMixture mixture) : IEnumerator<(Gas gas, float moles)>
+ {
+ private int _idx = -1;
+
+ public void Dispose()
+ {
+ // Nada.
+ }
+
+ public bool MoveNext()
+ {
+ return ++_idx < Atmospherics.TotalNumberOfGases;
+ }
+
+ public void Reset()
+ {
+ _idx = -1;
+ }
+
+ public (Gas gas, float moles) Current => ((Gas)_idx, mixture.Moles[_idx]);
+ object? IEnumerator.Current => Current;
+ }
}
}
diff --git a/Content.Shared/Bed/Sleep/SleepingComponent.cs b/Content.Shared/Bed/Sleep/SleepingComponent.cs
index cbea0a0516..dbabb8bb9f 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 6a04bfe42d..27a38c5849 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.Sound.Components;
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 sealed partial class SleepingSystem : EntitySystem
SubscribeLocalEvent(OnInit);
SubscribeLocalEvent(OnUnbuckleAttempt);
SubscribeLocalEvent(OnEmoteAttempt);
+
+ SubscribeLocalEvent(OnChangeForceSay, after: new []{typeof(PainNumbnessSystem)});
}
private void OnUnbuckleAttempt(Entity ent, ref UnbuckleAttemptEvent args)
@@ -320,6 +324,11 @@ public sealed partial class SleepingSystem : EntitySystem
{
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 7754a6cbb8..f05eb3376e 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.
///
@@ -176,4 +182,11 @@ public sealed partial class CCVars
public static readonly CVarDef BanHardwareIds =
CVarDef.Create("ban.hardware_ids", true, CVar.SERVERONLY);
+
+ ///
+ /// If true, players are allowed to connect to multiple game servers at once.
+ /// If false, they will be kicked from the first when connecting to another.
+ ///
+ public static readonly CVarDef AdminAllowMultiServerPlay =
+ CVarDef.Create("admin.allow_multi_server_play", true, CVar.SERVERONLY);
}
diff --git a/Content.Shared/CCVar/CCVars.Sounds.cs b/Content.Shared/CCVar/CCVars.Sounds.cs
index 73d9d3852f..5e2a825183 100644
--- a/Content.Shared/CCVar/CCVars.Sounds.cs
+++ b/Content.Shared/CCVar/CCVars.Sounds.cs
@@ -21,6 +21,9 @@ public sealed partial class CCVars
public static readonly CVarDef AdminSoundsEnabled =
CVarDef.Create("audio.admin_sounds_enabled", true, CVar.ARCHIVE | CVar.CLIENTONLY);
+ public static readonly CVarDef BwoinkSoundEnabled =
+ CVarDef.Create("audio.bwoink_sound_enabled", true, CVar.ARCHIVE | CVar.CLIENTONLY);
+
public static readonly CVarDef AdminChatSoundPath =
CVarDef.Create("audio.admin_chat_sound_path",
"/Audio/Items/pop.ogg",
diff --git a/Content.Shared/Camera/GetEyeOffsetEvent.cs b/Content.Shared/Camera/GetEyeOffsetEvent.cs
index de9c7c9e17..0e3c00110a 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 0000000000..482b755db8
--- /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 a2ce0e77e2..a497016c46 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 @@ public abstract class SharedCameraRecoilSystem : EntitySystem
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 0000000000..eb46bc1944
--- /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 bf82a08127..8c78312be1 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 88d587c145..d588b62eb3 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/Clothing/ClothingSpeedModifierSystem.cs b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs
index 56758654ed..8673e856a1 100644
--- a/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs
+++ b/Content.Shared/Clothing/ClothingSpeedModifierSystem.cs
@@ -116,4 +116,20 @@ public sealed class ClothingSpeedModifierSystem : EntitySystem
_movementSpeed.RefreshMovementSpeedModifiers(container.Owner);
}
}
+
+ //CP14 - Public API for edit component
+ public void EditSpeedModifiers(EntityUid uid, float walkModifier, float sprintModifier, ClothingSpeedModifierComponent? component = null)
+ {
+ if (!Resolve(uid, ref component))
+ return;
+
+ component.WalkModifier += walkModifier;
+ component.SprintModifier += sprintModifier;
+
+ if (_container.TryGetContainingContainer((uid, null, null), out var container))
+ {
+ _movementSpeed.RefreshMovementSpeedModifiers(container.Owner);
+ }
+ }
+ //CP14 - Public API for edit component end
}
diff --git a/Content.Shared/Clothing/Components/MaskComponent.cs b/Content.Shared/Clothing/Components/MaskComponent.cs
index 41b2b797f5..47f2fd3079 100644
--- a/Content.Shared/Clothing/Components/MaskComponent.cs
+++ b/Content.Shared/Clothing/Components/MaskComponent.cs
@@ -20,8 +20,11 @@ public sealed partial class MaskComponent : Component
[DataField, AutoNetworkedField]
public bool IsToggled;
+ ///
+ /// Equipped prefix to use after the mask was pulled down.
+ ///
[DataField, AutoNetworkedField]
- public string EquippedPrefix = "toggled";
+ public string EquippedPrefix = "up";
///
/// When will function normally, otherwise will not react to events
diff --git a/Content.Shared/Contraband/ContrabandComponent.cs b/Content.Shared/Contraband/ContrabandComponent.cs
index a4ce652f2f..f758d91f0c 100644
--- a/Content.Shared/Contraband/ContrabandComponent.cs
+++ b/Content.Shared/Contraband/ContrabandComponent.cs
@@ -24,5 +24,13 @@ public sealed partial class ContrabandComponent : Component
///
[DataField]
[AutoNetworkedField]
- public HashSet>? AllowedDepartments = ["Security"];
+ public HashSet> AllowedDepartments = new();
+
+ ///
+ /// Which jobs is this item restricted to?
+ /// If empty, no jobs are allowed to use this beyond the allowed departments.
+ ///
+ [DataField]
+ [AutoNetworkedField]
+ public HashSet> AllowedJobs = new();
}
diff --git a/Content.Shared/Contraband/ContrabandSeverityPrototype.cs b/Content.Shared/Contraband/ContrabandSeverityPrototype.cs
index c1ab4b8292..094275a6fd 100644
--- a/Content.Shared/Contraband/ContrabandSeverityPrototype.cs
+++ b/Content.Shared/Contraband/ContrabandSeverityPrototype.cs
@@ -19,8 +19,8 @@ public sealed partial class ContrabandSeverityPrototype : IPrototype
public LocId ExamineText;
///
- /// When examining the contraband, should this take into account the viewer's departments?
+ /// When examining the contraband, should this take into account the viewer's departments and job?
///
[DataField]
- public bool ShowDepartments;
+ public bool ShowDepartmentsAndJobs;
}
diff --git a/Content.Shared/Contraband/ContrabandSystem.cs b/Content.Shared/Contraband/ContrabandSystem.cs
index e6931f2860..ff18a08cef 100644
--- a/Content.Shared/Contraband/ContrabandSystem.cs
+++ b/Content.Shared/Contraband/ContrabandSystem.cs
@@ -40,6 +40,7 @@ public sealed class ContrabandSystem : EntitySystem
contraband.Severity = other.Severity;
contraband.AllowedDepartments = other.AllowedDepartments;
+ contraband.AllowedJobs = other.AllowedJobs;
Dirty(uid, contraband);
}
@@ -54,11 +55,14 @@ public sealed class ContrabandSystem : EntitySystem
using (args.PushGroup(nameof(ContrabandComponent)))
{
+ var localizedDepartments = ent.Comp.AllowedDepartments.Select(p => Loc.GetString("contraband-department-plural", ("department", Loc.GetString(_proto.Index(p).Name))));
+ var localizedJobs = ent.Comp.AllowedJobs.Select(p => Loc.GetString("contraband-job-plural", ("job", _proto.Index(p).LocalizedName)));
+
var severity = _proto.Index(ent.Comp.Severity);
- if (severity.ShowDepartments && ent.Comp is { AllowedDepartments: not null })
+ if (severity.ShowDepartmentsAndJobs)
{
- // TODO shouldn't department prototypes have a localized name instead of just using the ID for this?
- var list = ContentLocalizationManager.FormatList(ent.Comp.AllowedDepartments.Select(p => Loc.GetString($"department-{p.Id}")).ToList());
+ //creating a combined list of jobs and departments for the restricted text
+ var list = ContentLocalizationManager.FormatList(localizedDepartments.Concat(localizedJobs).ToList());
// department restricted text
args.PushMarkup(Loc.GetString("contraband-examine-text-Restricted-department", ("departments", list)));
@@ -69,23 +73,30 @@ public sealed class ContrabandSystem : EntitySystem
}
// text based on ID card
- List>? departments = null;
+ List> departments = new();
+ var jobId = "";
+
if (_id.TryFindIdCard(args.Examiner, out var id))
{
departments = id.Comp.JobDepartments;
+ if (id.Comp.LocalizedJobTitle is not null)
+ {
+ jobId = id.Comp.LocalizedJobTitle;
+ }
}
- // either its fully restricted, you have no departments, or your departments dont intersect with the restricted departments
- if (ent.Comp.AllowedDepartments is null
- || departments is null
- || !departments.Intersect(ent.Comp.AllowedDepartments).Any())
+ // for the jobs we compare the localized string in case you use an agent ID or custom job name that is not a prototype
+ if (departments.Intersect(ent.Comp.AllowedDepartments).Any()
+ || localizedJobs.Contains(jobId))
{
- args.PushMarkup(Loc.GetString("contraband-examine-text-avoid-carrying-around"));
- return;
+ // you are allowed to use this!
+ args.PushMarkup(Loc.GetString("contraband-examine-text-in-the-clear"));
+ }
+ else
+ {
+ // straight to jail!
+ args.PushMarkup(Loc.GetString("contraband-examine-text-avoid-carrying-around"));
}
-
- // otherwise fine to use :tm:
- args.PushMarkup(Loc.GetString("contraband-examine-text-in-the-clear"));
}
}
}
diff --git a/Content.Shared/CriminalRecords/Components/CriminalRecordsConsoleComponent.cs b/Content.Shared/CriminalRecords/Components/CriminalRecordsConsoleComponent.cs
index 70e927e3cb..3a35b807c0 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 287de36ac7..b8ad9ede15 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 sealed class CriminalRecordDeleteHistory : BoundUserInterfaceMessage
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 0000000000..9e35f6ce73
--- /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 163cc7cbf4..e184f4beb9 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/Decals/DecalGridChunkCollectionTypeSerializer.cs b/Content.Shared/Decals/DecalGridChunkCollectionTypeSerializer.cs
index 85364fe5f4..ae4c89c970 100644
--- a/Content.Shared/Decals/DecalGridChunkCollectionTypeSerializer.cs
+++ b/Content.Shared/Decals/DecalGridChunkCollectionTypeSerializer.cs
@@ -32,6 +32,8 @@ namespace Content.Shared.Decals
node.TryGetValue(new ValueDataNode("version"), out var versionNode);
var version = ((ValueDataNode?) versionNode)?.AsInt() ?? 1;
Dictionary dictionary;
+ uint nextIndex = 0;
+ var ids = new HashSet();
// TODO: Dump this when we don't need support anymore.
if (version > 1)
@@ -53,22 +55,31 @@ namespace Content.Shared.Decals
var chunkOrigin = SharedMapSystem.GetChunkIndices(coords, SharedDecalSystem.ChunkSize);
var chunk = dictionary.GetOrNew(chunkOrigin);
var decal = new Decal(coords, data.Id, data.Color, data.Angle, data.ZIndex, data.Cleanable);
- chunk.Decals.Add(dUid, decal);
+
+ nextIndex = Math.Max(nextIndex, dUid);
+
+ // Re-used ID somehow
+ // This will bump all IDs by up to 1 but will ensure the map is still readable.
+ if (!ids.Add(dUid))
+ {
+ dUid = nextIndex++;
+ ids.Add(dUid);
+ }
+
+ chunk.Decals[dUid] = decal;
}
}
}
else
{
dictionary = serializationManager.Read>(node, hookCtx, context, notNullableOverride: true);
- }
- uint nextIndex = 0;
-
- foreach (var decals in dictionary.Values)
- {
- foreach (var uid in decals.Decals.Keys)
+ foreach (var decals in dictionary.Values)
{
- nextIndex = Math.Max(uid, nextIndex);
+ foreach (var uid in decals.Decals.Keys)
+ {
+ nextIndex = Math.Max(uid, nextIndex);
+ }
}
}
diff --git a/Content.Shared/Disposal/SharedDisposalUnitSystem.cs b/Content.Shared/Disposal/SharedDisposalUnitSystem.cs
index 9fdb4a6a80..a650ef72f8 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 @@ public abstract class SharedDisposalUnitSystem : EntitySystem
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 3f7d6c3f70..cc9278dfe7 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 @@ namespace Content.Shared.Doors.Components
/// 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 ef9d28e4ef..f2dcd443e9 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 abstract partial class SharedDoorSystem : EntitySystem
SubscribeLocalEvent(OnWeldAttempt);
SubscribeLocalEvent(OnWeldChanged);
SubscribeLocalEvent(OnPryTimeModifier);
-
- SubscribeLocalEvent(OnAttemptEmag);
SubscribeLocalEvent(OnEmagged);
}
@@ -118,31 +117,24 @@ public abstract partial class SharedDoorSystem : EntitySystem
_activeDoors.Remove(door);
}
- private void OnAttemptEmag(EntityUid uid, DoorComponent door, ref OnAttemptEmagEvent args)
- {
- 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;
- }
- }
-
private void OnEmagged(EntityUid uid, DoorComponent door, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Access))
+ return;
+
+ if (!TryComp(uid, out var airlock))
+ return;
+
+ if (IsBolted(uid) || !airlock.Powered)
+ return;
+
+ if (door.State != DoorState.Closed)
+ return;
+
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 d0d2daf5d9..4a93b5f0ea 100644
--- a/Content.Shared/DrawDepth/DrawDepth.cs
+++ b/Content.Shared/DrawDepth/DrawDepth.cs
@@ -9,32 +9,42 @@ namespace Content.Shared.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 235cf0c744..23d3b90eed 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 337f1a8e56..152fdca8e3 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 3a556b4706..9626f17719 100644
--- a/Content.Shared/Emag/Systems/EmagSystem.cs
+++ b/Content.Shared/Emag/Systems/EmagSystem.cs
@@ -6,8 +6,9 @@ using Content.Shared.Emag.Components;
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);
- }
-
- ///
- /// Tries to use the emag on a target entity
- ///
- public bool TryUseEmag(EntityUid uid, EntityUid user, EntityUid target, EmagComponent? comp = null)
- {
- if (!Resolve(uid, ref comp, false))
- return false;
-
- if (_tag.HasTag(target, comp.EmagImmuneTag))
- return false;
-
- TryComp(uid, out var charges);
- if (_charges.IsEmpty(uid, charges))
- {
- _popup.PopupClient(Loc.GetString("emag-no-charges"), user, user);
- return false;
- }
-
- var handled = DoEmagEffect(user, target);
- if (!handled)
- return false;
-
- _popup.PopupClient(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}");
-
- if (charges != null)
- _charges.UseCharge(uid, charges);
- return true;
+ args.Handled = TryEmagEffect((uid, comp), args.User, target);
}
///
/// Does the emag effect on a specified entity
///
- public bool DoEmagEffect(EntityUid user, EntityUid target)
+ public bool TryEmagEffect(Entity ent, EntityUid user, EntityUid target)
{
- // prevent emagging twice
- if (HasComp(target))
+ if (!Resolve(ent, ref ent.Comp, false))
return false;
- var onAttemptEmagEvent = new OnAttemptEmagEvent(user);
- RaiseLocalEvent(target, ref onAttemptEmagEvent);
-
- // prevent emagging if attempt fails
- if (onAttemptEmagEvent.Handled)
+ if (_tag.HasTag(target, ent.Comp.EmagImmuneTag))
return false;
- var emaggedEvent = new GotEmaggedEvent(user);
+ TryComp(ent, out var charges);
+ if (_charges.IsEmpty(ent, charges))
+ {
+ _popup.PopupClient(Loc.GetString("emag-no-charges"), user, user);
+ return false;
+ }
+
+ var emaggedEvent = new GotEmaggedEvent(user, ent.Comp.EmagType);
RaiseLocalEvent(target, ref emaggedEvent);
- if (emaggedEvent.Handled && !emaggedEvent.Repeatable)
- EnsureComp(target);
+ if (!emaggedEvent.Handled)
+ return false;
+
+ _popup.PopupPredicted(Loc.GetString("emag-success", ("target", Identity.Entity(target, EntityManager))), user, user, PopupType.Medium);
+
+ _audio.PlayPredicted(ent.Comp.EmagSound, ent, ent);
+
+ _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;
}
+
+ ///
+ /// Checks whether an entity has the EmaggedComponent with a set flag.
+ ///
+ /// 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)
+ {
+ if (!TryComp(target, out var comp))
+ return false;
+
+ if ((comp.EmagType & flag) == flag)
+ return true;
+
+ return false;
+ }
+
+ ///
+ /// 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;
+
+ 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 161c878e27..2407ba5949 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 9e8e0fa744..a0e02cf2e1 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/Holopad/HolographicAvatarComponent.cs b/Content.Shared/Holopad/HolographicAvatarComponent.cs
index be7f5bcb91..cff71f4fb2 100644
--- a/Content.Shared/Holopad/HolographicAvatarComponent.cs
+++ b/Content.Shared/Holopad/HolographicAvatarComponent.cs
@@ -2,12 +2,12 @@ using Robust.Shared.GameStates;
namespace Content.Shared.Holopad;
-[RegisterComponent, NetworkedComponent]
+[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class HolographicAvatarComponent : Component
{
///
/// The prototype sprite layer data for the hologram
///
- [DataField]
+ [DataField, AutoNetworkedField]
public PrototypeLayerData[] LayerData;
}
diff --git a/Content.Shared/Holopad/HolopadHologramComponent.cs b/Content.Shared/Holopad/HolopadHologramComponent.cs
index a75ae27623..0b650d9b3d 100644
--- a/Content.Shared/Holopad/HolopadHologramComponent.cs
+++ b/Content.Shared/Holopad/HolopadHologramComponent.cs
@@ -1,4 +1,5 @@
using Robust.Shared.GameStates;
+using Robust.Shared.Serialization;
using System.Numerics;
namespace Content.Shared.Holopad;
@@ -6,7 +7,7 @@ namespace Content.Shared.Holopad;
///
/// Holds data pertaining to holopad holograms
///
-[RegisterComponent, NetworkedComponent]
+[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class HolopadHologramComponent : Component
{
///
@@ -64,8 +65,8 @@ public sealed partial class HolopadHologramComponent : Component
public Vector2 Offset = new Vector2();
///
- /// A user that are linked to this hologram
+ /// An entity that is linked to this hologram
///
- [ViewVariables]
- public Entity? LinkedHolopad;
+ [ViewVariables, AutoNetworkedField]
+ public EntityUid? LinkedEntity = null;
}
diff --git a/Content.Shared/Holopad/HolopadUserComponent.cs b/Content.Shared/Holopad/HolopadUserComponent.cs
index 9ff20c2e7b..c9c2a8828b 100644
--- a/Content.Shared/Holopad/HolopadUserComponent.cs
+++ b/Content.Shared/Holopad/HolopadUserComponent.cs
@@ -20,29 +20,6 @@ public sealed partial class HolopadUserComponent : Component
public HashSet> LinkedHolopads = new();
}
-///
-/// A networked event raised when the visual state of a hologram is being updated
-///
-[Serializable, NetSerializable]
-public sealed class HolopadHologramVisualsUpdateEvent : EntityEventArgs
-{
- ///
- /// The hologram being updated
- ///
- public readonly NetEntity Hologram;
-
- ///
- /// The target the hologram is copying
- ///
- public readonly NetEntity? Target;
-
- public HolopadHologramVisualsUpdateEvent(NetEntity hologram, NetEntity? target = null)
- {
- Hologram = hologram;
- Target = target;
- }
-}
-
///
/// A networked event raised when the visual state of a hologram is being updated
///
@@ -65,40 +42,3 @@ public sealed class HolopadUserTypingChangedEvent : EntityEventArgs
IsTyping = isTyping;
}
}
-
-///
-/// A networked event raised by the server to request the current visual state of a target player entity
-///
-[Serializable, NetSerializable]
-public sealed class PlayerSpriteStateRequest : EntityEventArgs
-{
- ///
- /// The player entity in question
- ///
- public readonly NetEntity TargetPlayer;
-
- public PlayerSpriteStateRequest(NetEntity targetPlayer)
- {
- TargetPlayer = targetPlayer;
- }
-}
-
-///
-/// The client's response to a
-///
-[Serializable, NetSerializable]
-public sealed class PlayerSpriteStateMessage : EntityEventArgs
-{
- public readonly NetEntity SpriteEntity;
-
- ///
- /// Data needed to reconstruct the player's sprite component layers
- ///
- public readonly PrototypeLayerData[]? SpriteLayerData;
-
- public PlayerSpriteStateMessage(NetEntity spriteEntity, PrototypeLayerData[]? spriteLayerData = null)
- {
- SpriteEntity = spriteEntity;
- SpriteLayerData = spriteLayerData;
- }
-}
diff --git a/Content.Shared/Implants/Components/RadioImplantComponent.cs b/Content.Shared/Implants/Components/RadioImplantComponent.cs
new file mode 100644
index 0000000000..e0e7f55646
--- /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 44803e721c..6f394fb932 100644
--- a/Content.Shared/Implants/SharedImplanterSystem.cs
+++ b/Content.Shared/Implants/SharedImplanterSystem.cs
@@ -52,7 +52,14 @@ public abstract class SharedImplanterSystem : EntitySystem
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 abstract class SharedImplanterSystem : EntitySystem
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/Implants/SharedSubdermalImplantSystem.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs
index 94203de615..bb166b3c5c 100644
--- a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs
+++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs
@@ -1,4 +1,3 @@
-using System.Linq;
using Content.Shared.Actions;
using Content.Shared.Implants.Components;
using Content.Shared.Interaction;
@@ -8,6 +7,7 @@ using Content.Shared.Tag;
using JetBrains.Annotations;
using Robust.Shared.Containers;
using Robust.Shared.Network;
+using System.Linq;
namespace Content.Shared.Implants;
@@ -17,6 +17,7 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem
[Dependency] private readonly SharedActionsSystem _actionsSystem = default!;
[Dependency] private readonly SharedContainerSystem _container = default!;
[Dependency] private readonly TagSystem _tag = default!;
+ [Dependency] private readonly SharedTransformSystem _transformSystem = default!;
public const string BaseStorageId = "storagebase";
@@ -75,16 +76,11 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem
if (!_container.TryGetContainer(uid, BaseStorageId, out var storageImplant))
return;
- var entCoords = Transform(component.ImplantedEntity.Value).Coordinates;
-
var containedEntites = storageImplant.ContainedEntities.ToArray();
foreach (var entity in containedEntites)
{
- if (Terminating(entity))
- continue;
-
- _container.RemoveEntity(storageImplant.Owner, entity, force: true, destination: entCoords);
+ _transformSystem.DropNextTo(entity, uid);
}
}
diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs
index 2926e1d1b3..a88f673cac 100644
--- a/Content.Shared/Interaction/SharedInteractionSystem.cs
+++ b/Content.Shared/Interaction/SharedInteractionSystem.cs
@@ -667,7 +667,8 @@ namespace Content.Shared.Interaction
float range = InteractionRange,
CollisionGroup collisionMask = InRangeUnobstructedMask,
Ignored? predicate = null,
- bool popup = false)
+ bool popup = false,
+ bool overlapCheck = true)
{
if (!Resolve(other, ref other.Comp))
return false;
@@ -687,7 +688,8 @@ namespace Content.Shared.Interaction
range,
collisionMask,
predicate,
- popup);
+ popup,
+ overlapCheck);
}
///
@@ -717,6 +719,7 @@ namespace Content.Shared.Interaction
///
/// True if the two points are within a given range without being obstructed.
///
+ /// If true, if the broadphase query returns an overlap (0f distance) this function will early out true with no raycast made.
public bool InRangeUnobstructed(
Entity origin,
Entity other,
@@ -725,7 +728,8 @@ namespace Content.Shared.Interaction
float range = InteractionRange,
CollisionGroup collisionMask = InRangeUnobstructedMask,
Ignored? predicate = null,
- bool popup = false)
+ bool popup = false,
+ bool overlapCheck = true)
{
Ignored combinedPredicate = e => e == origin.Owner || (predicate?.Invoke(e) ?? false);
var inRange = true;
@@ -768,7 +772,7 @@ namespace Content.Shared.Interaction
inRange = false;
}
// Overlap, early out and no raycast.
- else if (distance.Equals(0f))
+ else if (overlapCheck && distance.Equals(0f))
{
return true;
}
diff --git a/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs b/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs
index 4f486fe695..e39fb056b4 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 6d6f7c37ef..a2e7c4055f 100644
--- a/Content.Shared/Inventory/InventorySystem.Relay.cs
+++ b/Content.Shared/Inventory/InventorySystem.Relay.cs
@@ -63,14 +63,14 @@ public partial class InventorySystem
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 dd251ed18b..7328787f25 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 abstract class SharedLatheSystem : EntitySystem
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 8754de5058..6dc6cbfe0b 100644
--- a/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs
+++ b/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs
@@ -2,6 +2,7 @@ using Content.Shared.Actions;
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 @@ public sealed class UnpoweredFlashlightSystem : EntitySystem
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 d12e3e5352..0c7b8e318d 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 4c6f14b050..99051233a6 100644
--- a/Content.Shared/Lock/LockSystem.cs
+++ b/Content.Shared/Lock/LockSystem.cs
@@ -30,6 +30,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!;
@@ -313,7 +314,10 @@ public sealed class LockSystem : EntitySystem
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);
@@ -325,7 +329,7 @@ public sealed class LockSystem : EntitySystem
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/Materials/SharedMaterialReclaimerSystem.cs b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs
index d143f50948..8eb541ee59 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 @@ public abstract class SharedMaterialReclaimerSystem : EntitySystem
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 abstract class SharedMaterialReclaimerSystem : EntitySystem
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 f6ce235ff7..891129a2dd 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 @@ public abstract partial class SharedCryoPodSystem: EntitySystem
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 0000000000..788de804f4
--- /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 0000000000..106f43367e
--- /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 0000000000..8887025e3a
--- /dev/null
+++ b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs
@@ -0,0 +1,36 @@
+using Content.Shared.Actions;
+using Content.Shared.Implants;
+using Content.Shared.Implants.Components;
+using Content.Shared.Mindshield.Components;
+
+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);
+ }
+ ///
+ /// 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);
+ }
+}
diff --git a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs
new file mode 100644
index 0000000000..0a7c974200
--- /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 0000000000..e729314d39
--- /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 eeaecc24d8..a059c18dd8 100644
--- a/Content.Shared/Mobs/Systems/MobThresholdSystem.cs
+++ b/Content.Shared/Mobs/Systems/MobThresholdSystem.cs
@@ -4,6 +4,7 @@ using Content.Shared.Alert;
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 @@ public sealed class MobThresholdSystem : EntitySystem
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 0000000000..3f5a12874b
--- /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 0000000000..e0884222f2
--- /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/Components/SpeedModifiedOnWieldComponent.cs b/Content.Shared/Movement/Components/SpeedModifiedOnWieldComponent.cs
new file mode 100644
index 0000000000..01b02e60e6
--- /dev/null
+++ b/Content.Shared/Movement/Components/SpeedModifiedOnWieldComponent.cs
@@ -0,0 +1,23 @@
+using Content.Shared.Wieldable;
+using Robust.Shared.GameStates;
+
+namespace Content.Shared.Movement.Components;
+
+///
+/// Modifies the speed when an entity with this component is wielded.
+///
+[RegisterComponent, NetworkedComponent, Access(typeof(SharedWieldableSystem)), AutoGenerateComponentState]
+public sealed partial class SpeedModifiedOnWieldComponent : Component
+{
+ ///
+ /// How much the wielder's sprint speed is modified when the component owner is wielded.
+ ///
+ [DataField, AutoNetworkedField]
+ public float SprintModifier = 1f;
+
+ ///
+ /// How much the wielder's walk speed is modified when the component owner is wielded.
+ ///
+ [DataField, AutoNetworkedField]
+ public float WalkModifier = 1f;
+}
diff --git a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs
index faade44c85..71bc65a79e 100644
--- a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs
+++ b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs
@@ -140,11 +140,29 @@ public abstract class SharedContentEyeSystem : EntitySystem
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 0bc5dce55b..b79c4dd9ef 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 ae3e85cbe4..630ce12d53 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 ae0bacaf5f..3be2ae52e1 100644
--- a/Content.Shared/Ninja/Systems/EmagProviderSystem.cs
+++ b/Content.Shared/Ninja/Systems/EmagProviderSystem.cs
@@ -5,6 +5,7 @@ using Content.Shared.Interaction;
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 @@ public sealed class EmagProviderSystem : EntitySystem
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 @@ public sealed class EmagProviderSystem : EntitySystem
}
///
-/// 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 7f6b889125..4710960183 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 abstract class SharedPinpointerSystem : EntitySystem
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/Projectiles/ProjectileComponent.cs b/Content.Shared/Projectiles/ProjectileComponent.cs
index 8349252df2..9eee3767a6 100644
--- a/Content.Shared/Projectiles/ProjectileComponent.cs
+++ b/Content.Shared/Projectiles/ProjectileComponent.cs
@@ -1,4 +1,5 @@
using Content.Shared.Damage;
+using Content.Shared.FixedPoint;
using Robust.Shared.Audio;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
@@ -75,8 +76,26 @@ public sealed partial class ProjectileComponent : Component
public bool OnlyCollideWhenShot = false;
///
- /// Whether this projectile has already damaged an entity.
+ /// If true, the projectile has hit enough targets and should no longer interact with further collisions pending deletion.
///
[DataField]
- public bool DamagedEntity;
+ public bool ProjectileSpent;
+
+ ///
+ /// When a projectile has this threshold set, it will continue to penetrate entities until the damage dealt reaches this threshold.
+ ///
+ [DataField]
+ public FixedPoint2 PenetrationThreshold = FixedPoint2.Zero;
+
+ ///
+ /// If set, the projectile will not penetrate objects that lack the ability to take these damage types.
+ ///
+ [DataField]
+ public List? PenetrationDamageTypeRequirement;
+
+ ///
+ /// Tracks the amount of damage dealt for penetration purposes.
+ ///
+ [DataField]
+ public FixedPoint2 PenetrationAmount = FixedPoint2.Zero;
}
diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs
index bdb8d2c434..1854de660f 100644
--- a/Content.Shared/Projectiles/SharedProjectileSystem.cs
+++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs
@@ -79,7 +79,7 @@ public abstract partial class SharedProjectileSystem : EntitySystem
{
projectile.Shooter = null;
projectile.Weapon = null;
- projectile.DamagedEntity = false;
+ projectile.ProjectileSpent = false;
}
// Land it just coz uhhh yeah
diff --git a/Content.Shared/Radiation/Events/OnIrradiatedEvent.cs b/Content.Shared/Radiation/Events/OnIrradiatedEvent.cs
index ee35304e2a..3112e1eb47 100644
--- a/Content.Shared/Radiation/Events/OnIrradiatedEvent.cs
+++ b/Content.Shared/Radiation/Events/OnIrradiatedEvent.cs
@@ -4,17 +4,11 @@
/// Raised on entity when it was irradiated
/// by some radiation source.
///
-public sealed class OnIrradiatedEvent : EntityEventArgs
+public readonly record struct OnIrradiatedEvent(float FrameTime, float RadsPerSecond)
{
- public readonly float FrameTime;
+ public readonly float FrameTime = FrameTime;
- public readonly float RadsPerSecond;
+ public readonly float RadsPerSecond = RadsPerSecond;
public float TotalRads => RadsPerSecond * FrameTime;
-
- public OnIrradiatedEvent(float frameTime, float radsPerSecond)
- {
- FrameTime = frameTime;
- RadsPerSecond = radsPerSecond;
- }
}
diff --git a/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs b/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs
index a93ca4c616..e42d13ffb7 100644
--- a/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs
+++ b/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs
@@ -13,36 +13,33 @@ namespace Content.Shared.Radiation.Events;
/// Will be sent only to clients that activated radiation view using console command.
///
[Serializable, NetSerializable]
-public sealed class OnRadiationOverlayUpdateEvent : EntityEventArgs
+public sealed class OnRadiationOverlayUpdateEvent(
+ double elapsedTimeMs,
+ int sourcesCount,
+ int receiversCount,
+ List rays)
+ : EntityEventArgs
{
///
/// Total time in milliseconds that server took to do radiation processing.
/// Exclude time of entities reacting to .
///
- public readonly double ElapsedTimeMs;
+ public readonly double ElapsedTimeMs = elapsedTimeMs;
///
/// Total count of entities with on all maps.
///
- public readonly int SourcesCount;
+ public readonly int SourcesCount = sourcesCount;
///
/// Total count of entities with radiation receiver on all maps.
///
- public readonly int ReceiversCount;
+ public readonly int ReceiversCount = receiversCount;
///
/// All radiation rays that was processed by radiation system.
///
- public readonly List Rays;
-
- public OnRadiationOverlayUpdateEvent(double elapsedTimeMs, int sourcesCount, int receiversCount, List rays)
- {
- ElapsedTimeMs = elapsedTimeMs;
- SourcesCount = sourcesCount;
- ReceiversCount = receiversCount;
- Rays = rays;
- }
+ public readonly List Rays = rays;
}
///
diff --git a/Content.Shared/Radiation/RadiationRay.cs b/Content.Shared/Radiation/RadiationRay.cs
index ca8ab5af66..9f8b959694 100644
--- a/Content.Shared/Radiation/RadiationRay.cs
+++ b/Content.Shared/Radiation/RadiationRay.cs
@@ -9,33 +9,38 @@ namespace Content.Shared.Radiation.Systems;
/// Ray emitted by radiation source towards radiation receiver.
/// Contains all information about encountered radiation blockers.
///
-[Serializable, NetSerializable]
-public sealed class RadiationRay
+public struct RadiationRay(
+ MapId mapId,
+ EntityUid sourceUid,
+ Vector2 source,
+ EntityUid destinationUid,
+ Vector2 destination,
+ float rads)
{
///
/// Map on which source and receiver are placed.
///
- public MapId MapId;
+ public MapId MapId = mapId;
///
/// Uid of entity with .
///
- public NetEntity SourceUid;
+ public EntityUid SourceUid = sourceUid;
///
/// World coordinates of radiation source.
///
- public Vector2 Source;
+ public Vector2 Source = source;
///
/// Uid of entity with radiation receiver component.
///
- public NetEntity DestinationUid;
+ public EntityUid DestinationUid = destinationUid;
///
/// World coordinates of radiation receiver.
///
- public Vector2 Destination;
+ public Vector2 Destination = destination;
///
/// How many rads intensity reached radiation receiver.
///
- public float Rads;
+ public float Rads = rads;
///
/// Has rad ray reached destination or lost all intensity after blockers?
@@ -43,23 +48,27 @@ public sealed class RadiationRay
public bool ReachedDestination => Rads > 0;
///
- /// All blockers visited by gridcast. Key is uid of grid. Values are pairs
+ /// All blockers visited by gridcast, used for debug overlays. Key is uid of grid. Values are pairs
/// of tile indices and floats with updated radiation value.
///
///
/// Last tile may have negative value if ray has lost all intensity.
/// Grid traversal order isn't guaranteed.
///
- public Dictionary> Blockers = new();
+ public Dictionary>? Blockers;
- public RadiationRay(MapId mapId, NetEntity sourceUid, Vector2 source,
- NetEntity destinationUid, Vector2 destination, float rads)
- {
- MapId = mapId;
- SourceUid = sourceUid;
- Source = source;
- DestinationUid = destinationUid;
- Destination = destination;
- Rads = rads;
- }
+}
+
+// Variant of RadiationRay that uses NetEntities.
+[Serializable, NetSerializable]
+public readonly record struct DebugRadiationRay(
+ MapId MapId,
+ NetEntity SourceUid,
+ Vector2 Source,
+ NetEntity DestinationUid,
+ Vector2 Destination,
+ float Rads,
+ Dictionary> Blockers)
+{
+ public bool ReachedDestination => Rads > 0;
}
diff --git a/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs b/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs
index e75a18f011..f096cfcb42 100644
--- a/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs
+++ b/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs
@@ -40,13 +40,16 @@ public sealed partial class RoleTimeRequirement : JobRequirement
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 sealed partial class RoleTimeRequirement : JobRequirement
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 sealed partial class RoleTimeRequirement : JobRequirement
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 73775aaf91..0253cf12bc 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 3ab73149c0..407e586eb1 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;
- _audio.PlayPredicted(comp.SparkSound, uid, args.UserUid);
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
+ if (!TryComp(uid, out var medibot))
+ return;
foreach (var (state, treatment) in comp.Replacements)
{
@@ -34,6 +54,25 @@ public sealed class MedibotSystem : EntitySystem
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 sealed class MedibotSystem : EntitySystem
{
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 a30e7c8980..c3a8c22808 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 @@ public abstract partial class SharedSiliconLawSystem : EntitySystem
!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 ee6dc89bb8..331c1fa4dd 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 abstract class SharedSingularityGeneratorSystem : EntitySystem
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/Components/SharedEntityStorageComponent.cs b/Content.Shared/Storage/Components/SharedEntityStorageComponent.cs
index e47639d758..b02c97db71 100644
--- a/Content.Shared/Storage/Components/SharedEntityStorageComponent.cs
+++ b/Content.Shared/Storage/Components/SharedEntityStorageComponent.cs
@@ -92,7 +92,7 @@ public abstract partial class SharedEntityStorageComponent : Component
/// Whether or not the container is sealed and traps air inside of it
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
- public bool Airtight = false; //CP14 false default: no atmos on MapGrid
+ public bool Airtight = true;
///
/// Whether or not the entitystorage is open or closed
diff --git a/Content.Shared/Traits/Assorted/PainNumbnessComponent.cs b/Content.Shared/Traits/Assorted/PainNumbnessComponent.cs
new file mode 100644
index 0000000000..9ae72c6286
--- /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 0000000000..3ded13300d
--- /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 94562ce8d1..c4f3eede2d 100644
--- a/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs
+++ b/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs
@@ -2,6 +2,7 @@ using Content.Shared.Emag.Components;
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 abstract partial class SharedVendingMachineSystem : EntitySystem
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 abstract partial class SharedVendingMachineSystem : EntitySystem
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 b322bbe51b..ffa78ba42a 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/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs
index 3a109f34ba..d580729f74 100644
--- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs
+++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs
@@ -736,7 +736,13 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem
if (res.Count != 0)
{
- resSet.Add(res[0].HitEntity);
+ // If there's exact distance overlap, we simply have to deal with all overlapping objects to avoid selecting randomly.
+ var resChecked = res.Where(x => x.Distance.Equals(res[0].Distance));
+ foreach (var r in resChecked)
+ {
+ if (Interaction.InRangeUnobstructed(ignore, r.HitEntity, range + 0.1f, overlapCheck: false))
+ resSet.Add(r.HitEntity);
+ }
}
}
diff --git a/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs
index 2016459b9d..d5016c90e7 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 522319ccbd..bd2e9d4dd1 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 62e63501ee..35a15178d8 100644
--- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs
+++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs
@@ -508,7 +508,7 @@ public abstract partial class SharedGunSystem : EntitySystem
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 5c9bda8e3c..e6e166023d 100644
--- a/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs
+++ b/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs
@@ -2,7 +2,7 @@ using Content.Shared.Damage;
namespace Content.Shared.Wieldable.Components;
-[RegisterComponent/*, Access(typeof(WieldableSystem))*/] //CP14 Public access
+[RegisterComponent/*, Access(typeof(SharedWieldableSystem))*/] //CP14 public access
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 5dc6abbbbe..c146940b7a 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 89%
rename from Content.Shared/Wieldable/WieldableSystem.cs
rename to Content.Shared/Wieldable/SharedWieldableSystem.cs
index 200a50d28f..110c941dac 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,8 @@ using Content.Shared.IdentityManagement;
using Content.Shared.Interaction.Events;
using Content.Shared.Inventory.VirtualItem;
using Content.Shared.Item;
+using Content.Shared.Movement.Components;
+using Content.Shared.Movement.Systems;
using Content.Shared.Popups;
using Content.Shared.Timing;
using Content.Shared.Verbs;
@@ -23,8 +26,9 @@ using Robust.Shared.Timing;
namespace Content.Shared.Wieldable;
-public sealed class WieldableSystem : EntitySystem
+public abstract class SharedWieldableSystem : EntitySystem
{
+ [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!;
[Dependency] private readonly IGameTiming _timing = default!;
[Dependency] private readonly INetManager _netManager = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
@@ -54,6 +58,9 @@ public sealed class WieldableSystem : EntitySystem
SubscribeLocalEvent(OnGunUnwielded);
SubscribeLocalEvent(OnGunRefreshModifiers);
SubscribeLocalEvent(OnExamine);
+ SubscribeLocalEvent(OnSpeedModifierWielded);
+ SubscribeLocalEvent(OnSpeedModifierUnwielded);
+ SubscribeLocalEvent>(OnRefreshSpeedWielded);
SubscribeLocalEvent(OnGetMeleeDamage);
}
@@ -117,9 +124,29 @@ public sealed class WieldableSystem : EntitySystem
}
}
+ private void OnSpeedModifierWielded(EntityUid uid, SpeedModifiedOnWieldComponent component, ItemWieldedEvent args)
+ {
+ if (args.User != null)
+ _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User);
+ }
+
+ private void OnSpeedModifierUnwielded(EntityUid uid, SpeedModifiedOnWieldComponent component, ItemUnwieldedEvent args)
+ {
+ if (args.User != null)
+ _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User);
+ }
+
+ private void OnRefreshSpeedWielded(EntityUid uid, SpeedModifiedOnWieldComponent component, ref HeldRelayedEvent args)
+ {
+ if (TryComp(uid, out var wield) && wield.Wielded)
+ {
+ args.Args.ModifySpeed(component.WalkModifier, component.SprintModifier);
+ }
+ }
+
private void OnExamineRequires(Entity entity, ref ExaminedEvent args)
{
- if(entity.Comp.WieldRequiresExamineMessage != null)
+ if (entity.Comp.WieldRequiresExamineMessage != null)
args.PushText(Loc.GetString(entity.Comp.WieldRequiresExamineMessage));
}
diff --git a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs
index da253ba80a..2d7d86822f 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 @@ public abstract class SharedArtifactCrusherSystem : EntitySystem
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/Content.Shared/_CP14/Cargo/Prototype/CP14StoreBuyPositionPrototype.cs b/Content.Shared/_CP14/Cargo/Prototype/CP14StoreBuyPositionPrototype.cs
index 87967289a0..f71a36beab 100644
--- a/Content.Shared/_CP14/Cargo/Prototype/CP14StoreBuyPositionPrototype.cs
+++ b/Content.Shared/_CP14/Cargo/Prototype/CP14StoreBuyPositionPrototype.cs
@@ -15,7 +15,7 @@ public sealed partial class CP14StoreBuyPositionPrototype : IPrototype
public string ID { get; private set; } = default!;
[DataField(required: true)]
- public MinMax Price = new();
+ public int Price = 100;
[DataField(required: true)]
public LocId Name = string.Empty;
diff --git a/Content.Shared/_CP14/Cargo/Prototype/CP14StoreSellPositionPrototype.cs b/Content.Shared/_CP14/Cargo/Prototype/CP14StoreSellPositionPrototype.cs
index 76fbf19ef4..d3a036bee0 100644
--- a/Content.Shared/_CP14/Cargo/Prototype/CP14StoreSellPositionPrototype.cs
+++ b/Content.Shared/_CP14/Cargo/Prototype/CP14StoreSellPositionPrototype.cs
@@ -15,7 +15,7 @@ public sealed partial class CP14StoreSellPositionPrototype : IPrototype
public string ID { get; private set; } = default!;
[DataField(required: true)]
- public MinMax Price = new();
+ public int Price = 100;
[DataField(required: true)]
public LocId Name = string.Empty;
diff --git a/Content.Shared/_CP14/Demiplane/Components/CP14DemiplaneTimedDestructionComponent.cs b/Content.Shared/_CP14/Demiplane/Components/CP14DemiplaneTimedDestructionComponent.cs
new file mode 100644
index 0000000000..9495598efc
--- /dev/null
+++ b/Content.Shared/_CP14/Demiplane/Components/CP14DemiplaneTimedDestructionComponent.cs
@@ -0,0 +1,37 @@
+using Robust.Shared.Audio;
+
+namespace Content.Shared._CP14.Demiplane.Components;
+
+///
+/// Destroy demiplane after time
+///
+[RegisterComponent, AutoGenerateComponentState, AutoGenerateComponentPause, Access(typeof(CP14SharedDemiplaneSystem))]
+public sealed partial class CP14DemiplaneTimedDestructionComponent : Component
+{
+ [DataField]
+ public TimeSpan TimeToDestruction = TimeSpan.FromSeconds(150f);
+
+ [DataField, AutoPausedField]
+ public TimeSpan EndTime = TimeSpan.Zero;
+
+ ///
+ /// Countdown audio stream.
+ ///
+ [DataField, AutoNetworkedField]
+ public EntityUid? Stream = null;
+
+ ///
+ /// Sound that plays when the demiplane start to collapse.
+ ///
+ [DataField]
+ public SoundSpecifier Sound = new SoundCollectionSpecifier("ExpeditionEnd")
+ {
+ Params = AudioParams.Default.WithVolume(-5),
+ };
+
+ ///
+ /// Song selected on MapInit so we can predict the audio countdown properly.
+ ///
+ [DataField]
+ public SoundPathSpecifier? SelectedSong;
+}
diff --git a/Content.Shared/_CP14/Demiplane/Prototypes/CP14DemiplaneModifierPrototype.cs b/Content.Shared/_CP14/Demiplane/Prototypes/CP14DemiplaneModifierPrototype.cs
index 02cb7f5196..41b136bcc8 100644
--- a/Content.Shared/_CP14/Demiplane/Prototypes/CP14DemiplaneModifierPrototype.cs
+++ b/Content.Shared/_CP14/Demiplane/Prototypes/CP14DemiplaneModifierPrototype.cs
@@ -15,13 +15,13 @@ public sealed partial class CP14DemiplaneModifierPrototype : IPrototype
///
/// Modifier Tier. Can be generated only in demiplane keys with the corresponding tier
///
- [DataField(required: true)]
+ [DataField]
public List Tiers = new();
///
/// Each modifier belongs to specific categories. Used by the generator to determine what to generate
///
- [DataField(required: true)]
+ [DataField]
public Dictionary, float> Categories = new();
///
@@ -48,13 +48,13 @@ public sealed partial class CP14DemiplaneModifierPrototype : IPrototype
/// Generation layers that will be added to the location generation after the main layers.
///
[DataField]
- public List Layers = new();
+ public List? Layers;
///
/// Components that will be added to the map
///
[DataField]
- public ComponentRegistry Components = new();
+ public ComponentRegistry? Components;
///
/// Modifier cannot be applied to locations with the following tags. Leave empty for disable
diff --git a/Content.Shared/_CP14/DeviceLinking/CP14SharedPressurePlateSignal.cs b/Content.Shared/_CP14/DeviceLinking/CP14SharedPressurePlateSignal.cs
new file mode 100644
index 0000000000..370a200851
--- /dev/null
+++ b/Content.Shared/_CP14/DeviceLinking/CP14SharedPressurePlateSignal.cs
@@ -0,0 +1,9 @@
+using Robust.Shared.Serialization;
+
+namespace Content.Shared._CP14.DeviceLinking;
+
+[Serializable, NetSerializable]
+public enum PressurePlateVisuals : byte
+{
+ Pressed,
+}
diff --git a/Content.Shared/_CP14/JoinQueue/MsgQueueUpdate.cs b/Content.Shared/_CP14/JoinQueue/MsgQueueUpdate.cs
new file mode 100644
index 0000000000..ba4c53d00b
--- /dev/null
+++ b/Content.Shared/_CP14/JoinQueue/MsgQueueUpdate.cs
@@ -0,0 +1,36 @@
+using Lidgren.Network;
+using Robust.Shared.Network;
+using Robust.Shared.Serialization;
+
+namespace Content.Shared._CP14.JoinQueue;
+
+///
+/// Sent from server to client with queue state for player
+/// Also initiates queue state on client
+///
+public sealed class MsgQueueUpdate : NetMessage
+{
+ public override MsgGroups MsgGroup => MsgGroups.Command;
+
+ ///
+ /// Total players in queue
+ ///
+ public int Total { get; set; }
+
+ ///
+ /// Player current position in queue (starts from 1)
+ ///
+ public int Position { get; set; }
+
+ public override void ReadFromBuffer(NetIncomingMessage buffer, IRobustSerializer serializer)
+ {
+ Total = buffer.ReadInt32();
+ Position = buffer.ReadInt32();
+ }
+
+ public override void WriteToBuffer(NetOutgoingMessage buffer, IRobustSerializer serializer)
+ {
+ buffer.Write(Total);
+ buffer.Write(Position);
+ }
+}
diff --git a/Content.Shared/_CP14/MagicManacostModify/CP14MagicManacostModifyComponent.cs b/Content.Shared/_CP14/MagicManacostModify/CP14MagicManacostModifyComponent.cs
index 688957520e..26c325c8bb 100644
--- a/Content.Shared/_CP14/MagicManacostModify/CP14MagicManacostModifyComponent.cs
+++ b/Content.Shared/_CP14/MagicManacostModify/CP14MagicManacostModifyComponent.cs
@@ -7,7 +7,7 @@ namespace Content.Shared._CP14.MagicManacostModify;
///
/// Changes the manacost of spells for the bearer
///
-[RegisterComponent, Access(typeof(CP14MagicManacostModifySystem))]
+[RegisterComponent]
public sealed partial class CP14MagicManacostModifyComponent : Component
{
[DataField]
diff --git a/Content.Shared/_CP14/MagicSpell/CP14SharedMagicSystem.DelayedActions.cs b/Content.Shared/_CP14/MagicSpell/CP14SharedMagicSystem.DelayedActions.cs
index fc78bd9250..8ea464d606 100644
--- a/Content.Shared/_CP14/MagicSpell/CP14SharedMagicSystem.DelayedActions.cs
+++ b/Content.Shared/_CP14/MagicSpell/CP14SharedMagicSystem.DelayedActions.cs
@@ -19,19 +19,19 @@ public abstract partial class CP14SharedMagicSystem
SubscribeLocalEvent(OnDelayedEntityTargetDoAfter);
}
- private bool TryStartDelayedAction(ICP14DelayedMagicEffect delayedEffect, DoAfterEvent doAfter, Entity action, EntityUid performer)
+ private bool TryStartDelayedAction(ICP14DelayedMagicEffect delayedEffect, DoAfterEvent doAfter, Entity action, EntityUid? target, EntityUid performer)
{
if (_doAfter.IsRunning(action.Comp.ActiveDoAfter))
return false;
var fromItem = action.Comp.SpellStorage is not null;
- var doAfterEventArgs = new DoAfterArgs(EntityManager, performer, MathF.Max(delayedEffect.CastDelay, 0.3f), doAfter, action, used: action.Comp.SpellStorage)
+ var doAfterEventArgs = new DoAfterArgs(EntityManager, performer, MathF.Max(delayedEffect.CastDelay, 0.3f), doAfter, action, used: action.Comp.SpellStorage, target: target)
{
BreakOnMove = delayedEffect.BreakOnMove,
BreakOnDamage = delayedEffect.BreakOnDamage,
Hidden = delayedEffect.Hidden,
- DistanceThreshold = 100f,
+ DistanceThreshold = delayedEffect.DistanceThreshold,
CancelDuplicate = true,
BlockDuplicate = true,
BreakOnDropItem = fromItem,
@@ -61,17 +61,22 @@ public abstract partial class CP14SharedMagicSystem
if (!CanCastSpell(action, performer))
return;
+ // event may return an empty entity with id = 0, which causes bugs
+ var _target = target;
+ if (_target is not null && _target.Value.Id == 0)
+ _target = null;
+
if (_doAfter.IsRunning(action.Comp.ActiveDoAfter))
_doAfter.Cancel(action.Comp.ActiveDoAfter);
else
{
- if (TryStartDelayedAction(delayedEffect, doAfter, action, performer))
+ if (TryStartDelayedAction(delayedEffect, doAfter, action, _target, performer))
{
var evStart = new CP14StartCastMagicEffectEvent(performer);
RaiseLocalEvent(action, ref evStart);
var spellArgs =
- new CP14SpellEffectBaseArgs(performer, action.Comp.SpellStorage, target, worldTarget);
+ new CP14SpellEffectBaseArgs(performer, action.Comp.SpellStorage, _target, worldTarget);
CastTelegraphy(action, spellArgs);
}
diff --git a/Content.Shared/_CP14/MagicSpell/CP14SharedMagicSystem.InstantActions.cs b/Content.Shared/_CP14/MagicSpell/CP14SharedMagicSystem.InstantActions.cs
new file mode 100644
index 0000000000..acaba35e04
--- /dev/null
+++ b/Content.Shared/_CP14/MagicSpell/CP14SharedMagicSystem.InstantActions.cs
@@ -0,0 +1,69 @@
+using Content.Shared._CP14.MagicSpell.Components;
+using Content.Shared._CP14.MagicSpell.Events;
+using Content.Shared._CP14.MagicSpell.Spells;
+
+namespace Content.Shared._CP14.MagicSpell;
+
+public abstract partial class CP14SharedMagicSystem
+{
+ private void InitializeInstantActions()
+ {
+ SubscribeLocalEvent(OnMagicInstantAction);
+ SubscribeLocalEvent(OnMagicEntityWorldTargetAction);
+ SubscribeLocalEvent(OnMagicEntityTargetAction);
+ }
+
+ private void OnMagicInstantAction(CP14InstantActionEvent args)
+ {
+ if (args.Handled)
+ return;
+
+ if (!TryComp(args.Action, out var magicEffect))
+ return;
+
+ if (!CanCastSpell((args.Action, magicEffect), args.Performer))
+ return;
+
+ var spellArgs =
+ new CP14SpellEffectBaseArgs(args.Performer, magicEffect.SpellStorage, args.Performer, Transform(args.Performer).Coordinates);
+
+ CastSpell((args.Action, magicEffect), spellArgs);
+ _action.CP14StartCustomDelay(args.Action, args.Cooldown);
+ }
+
+ private void OnMagicEntityWorldTargetAction(CP14EntityWorldTargetActionEvent args)
+ {
+ if (args.Handled)
+ return;
+
+ if (!TryComp(args.Action, out var magicEffect))
+ return;
+
+ if (!CanCastSpell((args.Action, magicEffect), args.Performer))
+ return;
+
+ var spellArgs =
+ new CP14SpellEffectBaseArgs(args.Performer, magicEffect.SpellStorage, args.Entity, args.Coords);
+
+ CastSpell((args.Action, magicEffect), spellArgs);
+ _action.CP14StartCustomDelay(args.Action, args.Cooldown);
+ }
+
+ private void OnMagicEntityTargetAction(CP14EntityTargetActionEvent args)
+ {
+ if (args.Handled)
+ return;
+
+ if (!TryComp(args.Action, out var magicEffect))
+ return;
+
+ if (!CanCastSpell((args.Action, magicEffect), args.Performer))
+ return;
+
+ var spellArgs =
+ new CP14SpellEffectBaseArgs(args.Performer, magicEffect.SpellStorage, args.Target, Transform(args.Target).Coordinates);
+
+ CastSpell((args.Action, magicEffect), spellArgs);
+ _action.CP14StartCustomDelay(args.Action, args.Cooldown);
+ }
+}
diff --git a/Content.Shared/_CP14/MagicSpell/CP14SharedMagicSystem.ToggleableActions.cs b/Content.Shared/_CP14/MagicSpell/CP14SharedMagicSystem.ToggleableActions.cs
index a5353cc473..9c6aeca2d2 100644
--- a/Content.Shared/_CP14/MagicSpell/CP14SharedMagicSystem.ToggleableActions.cs
+++ b/Content.Shared/_CP14/MagicSpell/CP14SharedMagicSystem.ToggleableActions.cs
@@ -10,9 +10,9 @@ public abstract partial class CP14SharedMagicSystem
{
private void InitializeToggleableActions()
{
- SubscribeLocalEvent(OnInstantAction);
- SubscribeLocalEvent(OnEntityWorldTargetAction);
- SubscribeLocalEvent(OnEntityTargetAction);
+ SubscribeLocalEvent(OnToggleableInstantAction);
+ SubscribeLocalEvent(OnToggleableEntityWorldTargetAction);
+ SubscribeLocalEvent(OnToggleableEntityTargetAction);
SubscribeLocalEvent(OnToggleableInstantActionDoAfterEvent);
SubscribeLocalEvent(OnToggleableEntityWorldTargetActionDoAfterEvent);
@@ -67,17 +67,22 @@ public abstract partial class CP14SharedMagicSystem
if (_doAfter.IsRunning(action.Comp.ActiveDoAfter))
return;
+ // event may return an empty entity with id = 0, which causes bugs
+ var _target = entityTarget;
+ if (_target is not null && _target.Value.Id == 0)
+ _target = null;
+
var evStart = new CP14StartCastMagicEffectEvent(performer);
RaiseLocalEvent(action, ref evStart);
var fromItem = action.Comp.SpellStorage is not null;
- var doAfterEventArgs = new DoAfterArgs(EntityManager, performer, toggleable.CastTime, doAfter, action, used: action.Comp.SpellStorage)
+ var doAfterEventArgs = new DoAfterArgs(EntityManager, performer, toggleable.CastTime, doAfter, action, used: action.Comp.SpellStorage, target: _target)
{
BreakOnMove = toggleable.BreakOnMove,
BreakOnDamage = toggleable.BreakOnDamage,
Hidden = toggleable.Hidden,
- DistanceThreshold = 100f,
+ DistanceThreshold = toggleable.DistanceThreshold,
CancelDuplicate = true,
BlockDuplicate = true,
BreakOnDropItem = fromItem,
@@ -92,7 +97,7 @@ public abstract partial class CP14SharedMagicSystem
toggled.DoAfterId = doAfterId;
toggled.Cooldown = toggleable.Cooldown;
- toggled.EntityTarget = entityTarget;
+ toggled.EntityTarget = _target;
toggled.WorldTarget = worldTarget;
action.Comp.ActiveDoAfter = doAfterId;
@@ -123,7 +128,7 @@ public abstract partial class CP14SharedMagicSystem
///
/// Instant action used from hotkey event
///
- private void OnInstantAction(CP14ToggleableInstantActionEvent args)
+ private void OnToggleableInstantAction(CP14ToggleableInstantActionEvent args)
{
if (args.Handled)
return;
@@ -143,7 +148,7 @@ public abstract partial class CP14SharedMagicSystem
///
/// Target action used from hotkey event
///
- private void OnEntityWorldTargetAction(CP14ToggleableEntityWorldTargetActionEvent args)
+ private void OnToggleableEntityWorldTargetAction(CP14ToggleableEntityWorldTargetActionEvent args)
{
if (args.Handled)
return;
@@ -166,7 +171,7 @@ public abstract partial class CP14SharedMagicSystem
///
/// Entity target action used from hotkey event
///
- private void OnEntityTargetAction(CP14ToggleableEntityTargetActionEvent args)
+ private void OnToggleableEntityTargetAction(CP14ToggleableEntityTargetActionEvent args)
{
if (args.Handled)
return;
diff --git a/Content.Shared/_CP14/MagicSpell/CP14SharedMagicSystem.cs b/Content.Shared/_CP14/MagicSpell/CP14SharedMagicSystem.cs
index 9064f18faa..b486ef67d5 100644
--- a/Content.Shared/_CP14/MagicSpell/CP14SharedMagicSystem.cs
+++ b/Content.Shared/_CP14/MagicSpell/CP14SharedMagicSystem.cs
@@ -43,6 +43,7 @@ public abstract partial class CP14SharedMagicSystem : EntitySystem
base.Initialize();
InitializeDelayedActions();
InitializeToggleableActions();
+ InitializeInstantActions();
InitializeChecks();
InitializeSlowdown();
@@ -52,9 +53,27 @@ public abstract partial class CP14SharedMagicSystem : EntitySystem
SubscribeLocalEvent(OnMagicEffectInit);
SubscribeLocalEvent(OnMagicEffectShutdown);
+ SubscribeLocalEvent(OnStartCast);
+ SubscribeLocalEvent(OnEndCast);
+
SubscribeLocalEvent(OnStaminaConsume);
}
+ private void OnStartCast(Entity ent, ref CP14StartCastMagicEffectEvent args)
+ {
+ var caster = EnsureComp(args.Performer);
+
+ caster.CastedSpells.Add(ent);
+ }
+
+ private void OnEndCast(Entity ent, ref CP14EndCastMagicEffectEvent args)
+ {
+ if (TryComp(args.Performer, out var caster))
+ {
+ caster.CastedSpells.Remove(ent);
+ }
+ }
+
public override void Update(float frameTime)
{
base.Update(frameTime);
diff --git a/Content.Shared/_CP14/MagicSpell/Components/CP14MagicCasterComponent.cs b/Content.Shared/_CP14/MagicSpell/Components/CP14MagicCasterComponent.cs
new file mode 100644
index 0000000000..bb73fec3d1
--- /dev/null
+++ b/Content.Shared/_CP14/MagicSpell/Components/CP14MagicCasterComponent.cs
@@ -0,0 +1,11 @@
+namespace Content.Shared._CP14.MagicSpell.Components;
+
+///
+///
+///
+[RegisterComponent, Access(typeof(CP14SharedMagicSystem))]
+public sealed partial class CP14MagicCasterComponent : Component
+{
+ [DataField]
+ public List CastedSpells = new();
+}
diff --git a/Content.Shared/_CP14/MagicSpell/Events/CP14ActionsEvents.cs b/Content.Shared/_CP14/MagicSpell/Events/CP14ActionsEvents.cs
new file mode 100644
index 0000000000..5bc14516f5
--- /dev/null
+++ b/Content.Shared/_CP14/MagicSpell/Events/CP14ActionsEvents.cs
@@ -0,0 +1,27 @@
+using Content.Shared.Actions;
+
+namespace Content.Shared._CP14.MagicSpell.Events;
+
+public interface ICP14MagicEffect
+{
+ public TimeSpan Cooldown { get; }
+}
+
+public sealed partial class CP14EntityWorldTargetActionEvent : EntityWorldTargetActionEvent, ICP14MagicEffect
+{
+ [DataField]
+ public TimeSpan Cooldown { get; private set; } = TimeSpan.FromSeconds(1f);
+}
+
+public sealed partial class CP14EntityTargetActionEvent : EntityTargetActionEvent, ICP14MagicEffect
+{
+ [DataField]
+ public TimeSpan Cooldown { get; private set; } = TimeSpan.FromSeconds(1f);
+}
+
+public sealed partial class CP14InstantActionEvent : InstantActionEvent, ICP14MagicEffect
+{
+ [DataField]
+ public TimeSpan Cooldown { get; private set; } = TimeSpan.FromSeconds(1f);
+}
+
diff --git a/Content.Shared/_CP14/MagicSpell/Events/CP14DelayedActionEvents.cs b/Content.Shared/_CP14/MagicSpell/Events/CP14DelayedActionEvents.cs
index e1a8590eaf..496d572a3e 100644
--- a/Content.Shared/_CP14/MagicSpell/Events/CP14DelayedActionEvents.cs
+++ b/Content.Shared/_CP14/MagicSpell/Events/CP14DelayedActionEvents.cs
@@ -15,9 +15,9 @@ public interface ICP14DelayedMagicEffect
public bool BreakOnDamage { get; }
- public bool Hidden{ get; }
+ public float DistanceThreshold { get; }
- public float EntityDistance { get; }
+ public bool Hidden{ get; }
}
public sealed partial class CP14DelayedEntityWorldTargetActionEvent : EntityWorldTargetActionEvent,
@@ -36,10 +36,10 @@ public sealed partial class CP14DelayedEntityWorldTargetActionEvent : EntityWorl
public bool BreakOnDamage { get; private set; } = true;
[DataField]
- public bool Hidden { get; private set; } = false;
+ public float DistanceThreshold { get; private set; } = 100f;
[DataField]
- public float EntityDistance { get; private set; } = 100f;
+ public bool Hidden { get; private set; } = false;
}
//Entity Target
@@ -59,10 +59,10 @@ public sealed partial class CP14DelayedEntityTargetActionEvent : EntityTargetAct
public bool BreakOnDamage { get; private set; } = true;
[DataField]
- public bool Hidden { get; private set; } = false;
+ public float DistanceThreshold { get; private set; } = 100f;
[DataField]
- public float EntityDistance { get; private set; } = 100f;
+ public bool Hidden { get; private set; } = false;
}
public sealed partial class CP14DelayedInstantActionEvent : InstantActionEvent, ICP14DelayedMagicEffect
@@ -80,10 +80,10 @@ public sealed partial class CP14DelayedInstantActionEvent : InstantActionEvent,
public bool BreakOnDamage { get; private set; } = true;
[DataField]
- public bool Hidden { get; private set; } = false;
+ public float DistanceThreshold { get; private set; } = 100f;
[DataField]
- public float EntityDistance { get; private set; } = 100f;
+ public bool Hidden { get; private set; } = false;
}
[Serializable, NetSerializable]
diff --git a/Content.Shared/_CP14/MagicSpell/Events/CP14ToggleableActionEvents.cs b/Content.Shared/_CP14/MagicSpell/Events/CP14ToggleableActionEvents.cs
index 1d3db4b69d..2105e6f6f4 100644
--- a/Content.Shared/_CP14/MagicSpell/Events/CP14ToggleableActionEvents.cs
+++ b/Content.Shared/_CP14/MagicSpell/Events/CP14ToggleableActionEvents.cs
@@ -17,9 +17,9 @@ public interface ICP14ToggleableMagicEffect
public bool BreakOnDamage { get; }
- public bool Hidden{ get; }
+ public float DistanceThreshold { get; }
- public float EntityDistance { get; }
+ public bool Hidden{ get; }
}
public sealed partial class CP14ToggleableInstantActionEvent : InstantActionEvent, ICP14ToggleableMagicEffect
@@ -40,10 +40,10 @@ public sealed partial class CP14ToggleableInstantActionEvent : InstantActionEven
public bool BreakOnDamage { get; private set; } = true;
[DataField]
- public bool Hidden { get; private set; } = false;
+ public float DistanceThreshold { get; private set; } = 100f;
[DataField]
- public float EntityDistance { get; private set; } = 100f;
+ public bool Hidden { get; private set; } = false;
}
public sealed partial class CP14ToggleableEntityWorldTargetActionEvent : EntityWorldTargetActionEvent, ICP14ToggleableMagicEffect
@@ -64,10 +64,10 @@ public sealed partial class CP14ToggleableEntityWorldTargetActionEvent : EntityW
public bool BreakOnDamage { get; private set; } = true;
[DataField]
- public bool Hidden { get; private set; } = false;
+ public float DistanceThreshold { get; private set; } = 100f;
[DataField]
- public float EntityDistance { get; private set; } = 100f;
+ public bool Hidden { get; private set; } = false;
}
public sealed partial class CP14ToggleableEntityTargetActionEvent : EntityTargetActionEvent, ICP14ToggleableMagicEffect
@@ -88,10 +88,10 @@ public sealed partial class CP14ToggleableEntityTargetActionEvent : EntityTarget
public bool BreakOnDamage { get; private set; } = true;
[DataField]
- public bool Hidden { get; private set; } = false;
+ public float DistanceThreshold { get; private set; } = 100f;
[DataField]
- public float EntityDistance { get; private set; } = 100f;
+ public bool Hidden { get; private set; } = false;
}
[Serializable, NetSerializable]
diff --git a/Content.Shared/_CP14/MagicSpell/Spells/C14SpellInterruptSpell.cs b/Content.Shared/_CP14/MagicSpell/Spells/C14SpellInterruptSpell.cs
new file mode 100644
index 0000000000..d8ab0f5567
--- /dev/null
+++ b/Content.Shared/_CP14/MagicSpell/Spells/C14SpellInterruptSpell.cs
@@ -0,0 +1,39 @@
+using Content.Shared._CP14.MagicSpell.Components;
+using Content.Shared.Electrocution;
+
+namespace Content.Shared._CP14.MagicSpell.Spells;
+
+public sealed partial class CP14SpellInterruptSpell : CP14SpellEffect
+{
+ [DataField]
+ public TimeSpan Duration = TimeSpan.FromSeconds(5);
+
+ [DataField]
+ public int Damage = 10;
+
+ public override void Effect(EntityManager entManager, CP14SpellEffectBaseArgs args)
+ {
+ if (args.Target is null)
+ return;
+
+ if (!entManager.TryGetComponent(args.Target.Value, out var caster))
+ return;
+
+ var interrupt = false;
+ foreach (var spell in caster.CastedSpells)
+ {
+ if (entManager.HasComponent(spell))
+ {
+ interrupt = true;
+ break;
+ }
+ }
+
+ if (!interrupt)
+ return;
+
+ var electrocutionSystem = entManager.System();
+
+ electrocutionSystem.TryDoElectrocution(args.Target.Value, args.User, Damage, Duration, true, ignoreInsulation: true );
+ }
+}
diff --git a/Content.Shared/_CP14/MagicWeakness/CP14MagicUnsafeDamageComponent.cs b/Content.Shared/_CP14/MagicWeakness/CP14MagicUnsafeDamageComponent.cs
index 88ca27ccf4..d777481cd5 100644
--- a/Content.Shared/_CP14/MagicWeakness/CP14MagicUnsafeDamageComponent.cs
+++ b/Content.Shared/_CP14/MagicWeakness/CP14MagicUnsafeDamageComponent.cs
@@ -8,7 +8,7 @@ namespace Content.Shared._CP14.MagicWeakness;
/// imposes damage on excessive use of magic
///
[RegisterComponent, NetworkedComponent]
-[Access(typeof(CP14MagicWeaknessSystem))]
+[Access(typeof(CP14SharedMagicWeaknessSystem))]
public sealed partial class CP14MagicUnsafeDamageComponent : Component
{
[DataField]
diff --git a/Content.Shared/_CP14/MagicWeakness/CP14MagicUnsafeSleepComponent.cs b/Content.Shared/_CP14/MagicWeakness/CP14MagicUnsafeSleepComponent.cs
index 214bcab11f..eac89558ce 100644
--- a/Content.Shared/_CP14/MagicWeakness/CP14MagicUnsafeSleepComponent.cs
+++ b/Content.Shared/_CP14/MagicWeakness/CP14MagicUnsafeSleepComponent.cs
@@ -7,7 +7,7 @@ namespace Content.Shared._CP14.MagicWeakness;
/// imposes debuffs on excessive use of magic
///
[RegisterComponent, NetworkedComponent]
-[Access(typeof(CP14MagicWeaknessSystem))]
+[Access(typeof(CP14SharedMagicWeaknessSystem))]
public sealed partial class CP14MagicUnsafeSleepComponent : Component
{
[DataField]
diff --git a/Content.Shared/_CP14/MagicWeakness/CP14MagicUnsafeTriggerComponent.cs b/Content.Shared/_CP14/MagicWeakness/CP14MagicUnsafeTriggerComponent.cs
new file mode 100644
index 0000000000..ce9e49f952
--- /dev/null
+++ b/Content.Shared/_CP14/MagicWeakness/CP14MagicUnsafeTriggerComponent.cs
@@ -0,0 +1,12 @@
+using Robust.Shared.GameStates;
+
+namespace Content.Shared._CP14.MagicWeakness;
+
+///
+/// trigger entity on unsafe magic energy damage
+///
+[RegisterComponent, NetworkedComponent]
+[Access(typeof(CP14SharedMagicWeaknessSystem))]
+public sealed partial class CP14MagicUnsafeTriggerComponent : Component
+{
+}
diff --git a/Content.Shared/_CP14/MagicWeakness/CP14MagicWeaknessSystem.cs b/Content.Shared/_CP14/MagicWeakness/CP14SharedMagicWeaknessSystem.cs
similarity index 98%
rename from Content.Shared/_CP14/MagicWeakness/CP14MagicWeaknessSystem.cs
rename to Content.Shared/_CP14/MagicWeakness/CP14SharedMagicWeaknessSystem.cs
index 86bb5cf63a..dc02376a1e 100644
--- a/Content.Shared/_CP14/MagicWeakness/CP14MagicWeaknessSystem.cs
+++ b/Content.Shared/_CP14/MagicWeakness/CP14SharedMagicWeaknessSystem.cs
@@ -7,7 +7,7 @@ using Content.Shared.StatusEffect;
namespace Content.Shared._CP14.MagicWeakness;
-public partial class CP14MagicWeaknessSystem : EntitySystem
+public abstract class CP14SharedMagicWeaknessSystem : EntitySystem
{
[ValidatePrototypeId]
private const string StatusEffectKey = "ForcedSleep";
diff --git a/Content.Shared/_CP14/MeleeWeapon/EntitySystems/CP14SharpeningSystem.cs b/Content.Shared/_CP14/MeleeWeapon/EntitySystems/CP14SharpeningSystem.cs
index 6a7ed9ed67..c7b4c0616d 100644
--- a/Content.Shared/_CP14/MeleeWeapon/EntitySystems/CP14SharpeningSystem.cs
+++ b/Content.Shared/_CP14/MeleeWeapon/EntitySystems/CP14SharpeningSystem.cs
@@ -25,7 +25,7 @@ public sealed class CP14SharpeningSystem : EntitySystem
{
base.Initialize();
- SubscribeLocalEvent(OnGetMeleeDamage, after: new[] { typeof(WieldableSystem) });
+ SubscribeLocalEvent(OnGetMeleeDamage, after: new[] { typeof(SharedWieldableSystem) });
SubscribeLocalEvent(OnExamined);
SubscribeLocalEvent(OnMeleeHit);
diff --git a/Content.Shared/_CP14/ModularCraft/Prototypes/CP14ModularCraftPartPrototype.cs b/Content.Shared/_CP14/ModularCraft/Prototypes/CP14ModularCraftPartPrototype.cs
index 8d91214999..38fad3dfa7 100644
--- a/Content.Shared/_CP14/ModularCraft/Prototypes/CP14ModularCraftPartPrototype.cs
+++ b/Content.Shared/_CP14/ModularCraft/Prototypes/CP14ModularCraftPartPrototype.cs
@@ -10,7 +10,7 @@ public sealed partial class CP14ModularCraftPartPrototype : IPrototype
public string ID { get; private set; } = default!;
[DataField]
- public ProtoId? TargetSlot;
+ public List> Slots = new();
///
/// An entity that can drop out of the final modular item when destroyed.
@@ -20,7 +20,7 @@ public sealed partial class CP14ModularCraftPartPrototype : IPrototype
public EntProtoId? SourcePart;
[DataField]
- public float DestroyProb = 0.0f;
+ public float DestroyProb;
[DataField(serverOnly: true)]
public List Modifiers = new();
diff --git a/Content.Shared/_CP14/ModularCraft/Prototypes/CP14ModularCraftSlotPrototype.cs b/Content.Shared/_CP14/ModularCraft/Prototypes/CP14ModularCraftSlotPrototype.cs
index 5777819360..11be3592e8 100644
--- a/Content.Shared/_CP14/ModularCraft/Prototypes/CP14ModularCraftSlotPrototype.cs
+++ b/Content.Shared/_CP14/ModularCraft/Prototypes/CP14ModularCraftSlotPrototype.cs
@@ -1,4 +1,5 @@
using Robust.Shared.Prototypes;
+using Robust.Shared.Utility;
namespace Content.Shared._CP14.ModularCraft.Prototypes;
@@ -10,4 +11,7 @@ public sealed partial class CP14ModularCraftSlotPrototype : IPrototype
[DataField(required: true)]
public LocId Name = string.Empty;
+
+ [DataField]
+ public SpriteSpecifier? IconDisplacement { get; private set; }
}
diff --git a/Content.Shared/_CP14/UniqueLoot/CP14UniqueLootPrototype.cs b/Content.Shared/_CP14/UniqueLoot/CP14UniqueLootPrototype.cs
new file mode 100644
index 0000000000..06d1ff2d3d
--- /dev/null
+++ b/Content.Shared/_CP14/UniqueLoot/CP14UniqueLootPrototype.cs
@@ -0,0 +1,32 @@
+using Content.Shared.Tag;
+using Robust.Shared.Prototypes;
+
+namespace Content.Shared._CP14.UniqueLoot;
+
+///
+/// Defines a unique loot that can only be generated a specified number of times per round.
+///
+[Prototype("uniqueLoot")]
+public sealed partial class CP14UniqueLootPrototype : IPrototype
+{
+ [IdDataField]
+ public string ID { get; private set; } = default!;
+
+ ///
+ /// ProtoId of the entity to spawn.
+ ///
+ [DataField(required: true)]
+ public EntProtoId Entity { get; private set; }
+
+ ///
+ /// Count of how many times this loot can be generated per round.
+ ///
+ [DataField]
+ public int Count { get; private set; } = 1;
+
+ ///
+ /// Used for categorizing unique loot. Used in spawners to determine which loot to spawn.
+ ///
+ [DataField]
+ public HashSet> Tags { get; private set; } = new();
+}
diff --git a/Content.Shared/_CP14/Wallpaper/CP14SharedWallpaperSystem.cs b/Content.Shared/_CP14/Wallpaper/CP14SharedWallpaperSystem.cs
index 5a51ddfed3..ff6de32d0b 100644
--- a/Content.Shared/_CP14/Wallpaper/CP14SharedWallpaperSystem.cs
+++ b/Content.Shared/_CP14/Wallpaper/CP14SharedWallpaperSystem.cs
@@ -99,6 +99,9 @@ public partial class CP14SharedWallpaperSystem : EntitySystem
if (TryComp(args.Used, out var remover))
{
+ if (holder.Comp.Layers.Count == 0)
+ return;
+
var doAfterArgs = new DoAfterArgs(EntityManager, args.User, remover.Delay, new CP14WallpaperRemoveLayersDoAfterEvent(), holder, holder, args.Used)
{
BreakOnDamage = true,
diff --git a/Content.Shared/_CP14/Wallpaper/CP14WallpaperComponent.cs b/Content.Shared/_CP14/Wallpaper/CP14WallpaperComponent.cs
index 4c1667c90f..d694a109ee 100644
--- a/Content.Shared/_CP14/Wallpaper/CP14WallpaperComponent.cs
+++ b/Content.Shared/_CP14/Wallpaper/CP14WallpaperComponent.cs
@@ -6,7 +6,6 @@ namespace Content.Shared._CP14.Wallpaper;
[RegisterComponent, Access(typeof(CP14SharedWallpaperSystem))]
public sealed partial class CP14WallpaperComponent : Component
{
-
[DataField]
public float Delay = 1f;
diff --git a/Content.Shared/_CP14/Workbench/Requirements/TagResource.cs b/Content.Shared/_CP14/Workbench/Requirements/TagResource.cs
new file mode 100644
index 0000000000..f1fdec48ad
--- /dev/null
+++ b/Content.Shared/_CP14/Workbench/Requirements/TagResource.cs
@@ -0,0 +1,77 @@
+/*
+ * This file is sublicensed under MIT License
+ * https://github.com/space-wizards/space-station-14/blob/master/LICENSE.TXT
+ */
+
+using Content.Shared.Tag;
+using Robust.Shared.Prototypes;
+using Robust.Shared.Utility;
+
+namespace Content.Shared._CP14.Workbench.Requirements;
+
+public sealed partial class TagResource : CP14WorkbenchCraftRequirement
+{
+ [DataField(required: true)]
+ public ProtoId Tag;
+
+ [DataField]
+ public int Count = 1;
+
+ [DataField(required: true)]
+ public LocId? Title;
+
+ [DataField(required: true)]
+ public SpriteSpecifier? Texture;
+
+ public override bool CheckRequirement(EntityManager entManager, IPrototypeManager protoManager, HashSet placedEntities, EntityUid user)
+ {
+ var tagSystem = entManager.System();
+
+ var count = 0;
+ foreach (var ent in placedEntities)
+ {
+ if (!tagSystem.HasTag(ent, Tag))
+ continue;
+
+ count++;
+ }
+
+ if (count < Count)
+ return false;
+
+ return true;
+ }
+
+ public override void PostCraft(EntityManager entManager, HashSet placedEntities, EntityUid user)
+ {
+ var tagSystem = entManager.System();
+
+ var requiredCount = Count;
+ foreach (var placedEntity in placedEntities)
+ {
+ if (!tagSystem.HasTag(placedEntity, Tag))
+ continue;
+
+ requiredCount--;
+ entManager.DeleteEntity(placedEntity);
+ }
+ }
+
+ public override string GetRequirementTitle(IPrototypeManager protoManager)
+ {
+ if (Title is null)
+ return "Error tag name";
+
+ return $"{Loc.GetString(Title)} x{Count}";
+ }
+
+ public override EntityPrototype? GetRequirementEntityView(IPrototypeManager protoManager)
+ {
+ return null;
+ }
+
+ public override SpriteSpecifier? GetRequirementTexture(IPrototypeManager protoManager)
+ {
+ return Texture;
+ }
+}
diff --git a/Content.Tests/Shared/Atmos/GasMixtureTest.cs b/Content.Tests/Shared/Atmos/GasMixtureTest.cs
new file mode 100644
index 0000000000..5068d48581
--- /dev/null
+++ b/Content.Tests/Shared/Atmos/GasMixtureTest.cs
@@ -0,0 +1,30 @@
+using Content.Shared.Atmos;
+using NUnit.Framework;
+
+namespace Content.Tests.Shared.Atmos;
+
+[TestFixture, TestOf(typeof(GasMixture))]
+[Parallelizable(ParallelScope.All)]
+public sealed class GasMixtureTest
+{
+ [Test]
+ public void TestEnumerate()
+ {
+ var mixture = new GasMixture();
+ mixture.SetMoles(Gas.Oxygen, 20);
+ mixture.SetMoles(Gas.Nitrogen, 10);
+ mixture.SetMoles(Gas.Plasma, 80);
+
+ var expectedList = new (Gas, float)[Atmospherics.TotalNumberOfGases];
+ for (var i = 0; i < Atmospherics.TotalNumberOfGases; i++)
+ {
+ expectedList[i].Item1 = (Gas)i;
+ }
+
+ expectedList[(int)Gas.Oxygen].Item2 = 20f;
+ expectedList[(int)Gas.Nitrogen].Item2 = 10f;
+ expectedList[(int)Gas.Plasma].Item2 = 80f;
+
+ Assert.That(mixture, Is.EquivalentTo(expectedList));
+ }
+}
diff --git a/Resources/Audio/Weapons/Guns/Empty/empty.ogg b/Resources/Audio/Weapons/Guns/Empty/empty.ogg
index 817d72e0ed..920b49ed08 100644
Binary files a/Resources/Audio/Weapons/Guns/Empty/empty.ogg and b/Resources/Audio/Weapons/Guns/Empty/empty.ogg differ
diff --git a/Resources/Audio/Weapons/Guns/sources.json b/Resources/Audio/Weapons/Guns/sources.json
index 5169aadb3a..cc9a3e5c0b 100644
--- a/Resources/Audio/Weapons/Guns/sources.json
+++ b/Resources/Audio/Weapons/Guns/sources.json
@@ -12,7 +12,7 @@
"sfrifle_cock.ogg": "https://github.com/discordia-space/CEV-Eris/blob/01f7518e0f8177734a6579aba2bbf76024aa96c4/sound/weapons/guns/interact/sfrifle_cock.ogg"
},
"Empty": {
- "empty.ogg": "https://github.com/discordia-space/CEV-Eris/blob/fbde37a8647a82587d363da999a94cf02c2e128c/sound/weapons/guns/misc/gun_empty.ogg",
+ "empty.ogg": "https://github.com/tgstation/tgstation/commit/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0",
"lmg_empty.ogg": "https://github.com/vgstation-coders/vgstation13/blob/217aa33a41e891e144ceec710fbe1877df747adb/sound/weapons/empty.ogg"
},
"EmptyAlarm": {
@@ -59,4 +59,4 @@
"sfrifle_magout.ogg": "https://github.com/discordia-space/CEV-Eris/blob/01f7518e0f8177734a6579aba2bbf76024aa96c4/sound/weapons/guns/interact/sfrifle_magout.ogg",
"smg_magout.ogg": "https://github.com/discordia-space/CEV-Eris/blob/01f7518e0f8177734a6579aba2bbf76024aa96c4/sound/weapons/guns/interact/smg_magout.ogg"
}
-}
\ No newline at end of file
+}
diff --git a/Resources/Audio/_CP14/Effects/attributions.yml b/Resources/Audio/_CP14/Effects/attributions.yml
index 5a9ea4029c..b7757b5298 100644
--- a/Resources/Audio/_CP14/Effects/attributions.yml
+++ b/Resources/Audio/_CP14/Effects/attributions.yml
@@ -57,3 +57,8 @@
license: "CC-BY-4.0"
copyright: 'Created by MIXnikita'
source: "https://github.com/crystallpunk-14/crystall-punk-14"
+
+- files: ["demiplane_heartbeat.ogg"]
+ license: "CC-BY-4.0"
+ copyright: 'by SpaceLife on Freesound.org'
+ source: "https://freesound.org/people/SpaceLife/sounds/545938/"
diff --git a/Resources/Audio/_CP14/Effects/demiplane_heartbeat.ogg b/Resources/Audio/_CP14/Effects/demiplane_heartbeat.ogg
new file mode 100644
index 0000000000..892f568c6b
Binary files /dev/null and b/Resources/Audio/_CP14/Effects/demiplane_heartbeat.ogg differ
diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml
index b8694a8d67..440a5d567a 100644
--- a/Resources/Changelog/Admin.yml
+++ b/Resources/Changelog/Admin.yml
@@ -721,5 +721,21 @@ Entries:
id: 89
time: '2025-01-15T21:10:54.0000000+00:00'
url: https://github.com/space-wizards/space-station-14/pull/34406
+- author: c4llv07e
+ changes:
+ - message: Added an option to disable the bwoink sound!
+ type: Add
+ id: 90
+ time: '2025-01-17T07:24:50.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33782
+- author: PJB3005
+ changes:
+ - message: Introduced an option to automatically disconnect players from their current
+ server if they join another one within the same server community. Admins are
+ always exempt.
+ type: Add
+ id: 91
+ time: '2025-01-21T23:23:47.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34563
Name: Admin
Order: 1
diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml
index bed04aa9ff..d9d4a87fbb 100644
--- a/Resources/Changelog/Changelog.yml
+++ b/Resources/Changelog/Changelog.yml
@@ -1,498 +1,4 @@
Entries:
-- author: slarticodefast
- changes:
- - message: Revenants or other mobs without hands can no longer spill jugs.
- type: Fix
- id: 7321
- time: '2024-09-09T11:02:15.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31438
-- author: PJB3005
- changes:
- - message: The emergency shuttle will now wait at the station longer if it couldn't
- dock at evac.
- type: Tweak
- id: 7322
- time: '2024-09-09T18:10:28.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31496
-- author: Boaz1111
- changes:
- - message: Pacifists can now use grapple guns.
- type: Tweak
- id: 7323
- time: '2024-09-09T19:15:32.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32014
-- author: lzk228
- changes:
- - message: All bots are available for disguise with the Chameleon Ppotlight
- type: Tweak
- id: 7324
- time: '2024-09-09T19:18:01.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32006
-- author: DieselMohawk
- changes:
- - message: Added Security Trooper Uniform
- type: Add
- id: 7325
- time: '2024-09-09T19:19:16.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31997
-- author: qwerltaz
- changes:
- - message: Dragon ghost role now spawns outside the station.
- type: Tweak
- - message: Dragon ghost role now spawns where advertised!
- type: Fix
- id: 7326
- time: '2024-09-09T19:22:41.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31890
-- author: yuitop
- changes:
- - message: Fixed some cases when surveillance camera's red light not turning off
- when needed
- type: Fix
- id: 7327
- time: '2024-09-09T19:23:57.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31831
-- author: Blackern5000
- changes:
- - message: Normal and reinforced windows have been made directly upgradable using
- rods, plasma, uranium, or plasteel.
- type: Add
- - message: Reinforced plasma and uranium windows have been made tougher.
- type: Tweak
- - message: Windows have been made to correctly display their damage visuals.
- type: Fix
- - message: Reinforced plasma windows have been given the correct amount of hp and
- no longer have 12x the amount they should.
- type: Fix
- id: 7328
- time: '2024-09-09T19:26:10.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31978
-- author: Cojoke-dot
- changes:
- - message: Nuclear bombs now require the Nuclear Authentification Disk to toggle
- anchor.
- type: Tweak
- id: 7329
- time: '2024-09-09T19:30:26.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/29565
-- author: Hreno
- changes:
- - message: Display agents' jobs in the Round End Summary window.
- type: Add
- id: 7330
- time: '2024-09-09T19:31:53.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31652
-- author: deltanedas
- changes:
- - message: Adjusted the costs and production times of all electronics so they're
- more consistent with eachother.
- type: Tweak
- id: 7331
- time: '2024-09-09T19:34:18.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31524
-- author: Winkarst-cpu
- changes:
- - message: Now fire axe (the flaming one), and an advanced circular saw are Syndicate
- contraband.
- type: Fix
- - message: Now encryption keys are restricted according to their department.
- type: Fix
- - message: Now ERT, Deathsquad and Central Command Official items are restricted
- to the Central Command.
- type: Fix
- - message: Now acolyte armor, a thieving beacon and the thief's undetermined toolbox
- are minor contraband.
- type: Fix
- - message: Now bladed flatcaps are not a contraband (stealth item).
- type: Fix
- - message: Now mercenary clothes, magazines, speedloaders and cartridges are contraband.
- type: Fix
- - message: Now cleanades are restricted to the Service.
- type: Fix
- - message: Now metal foam grenades are restricted to the Engineering.
- type: Fix
- - message: Now flash, smoke, and tear gas grenades are restricted to the Security.
- type: Fix
- - message: Now combat gloves are restricted to Security and Cargo.
- type: Fix
- - message: The Central Command restricted contraband group and department were added.
- type: Add
- id: 7332
- time: '2024-09-09T19:36:25.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31606
-- author: themias
- changes:
- - message: Unpublished news article progress is automatically saved
- type: Tweak
- id: 7333
- time: '2024-09-09T19:38:49.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31491
-- author: metalgearsloth
- changes:
- - message: Fix spawn prefs.
- type: Fix
- id: 7334
- time: '2024-09-09T19:39:16.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31892
-- author: lzk228
- changes:
- - message: The captain now have special late join message.
- type: Tweak
- id: 7335
- time: '2024-09-09T19:57:37.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31991
-- author: Thinbug0
- changes:
- - message: Teal gloves can now be found at the ClothesMate!
- type: Add
- id: 7336
- time: '2024-09-09T21:47:53.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31865
-- author: chillyconmor
- changes:
- - message: Space Ninjas now have a new intro song.
- type: Add
- id: 7337
- time: '2024-09-09T22:12:25.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31055
-- author: DieselMohawk
- changes:
- - message: Made Trooper Uniform accessible for Security Officers in loadouts
- type: Fix
- id: 7338
- time: '2024-09-09T23:59:31.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32019
-- author: IProduceWidgets
- changes:
- - message: Visitors now can have the correct Id cards and PDA!
- type: Fix
- - message: ghost roles should now attempt to tell you what your antag status is
- in a popup when you join the raffle.
- type: Tweak
- - message: ERT chaplains should now be able to use bibles.
- type: Fix
- - message: Many new unknown shuttle events to make them more unique.
- type: Add
- - message: Syndicate escape pods will once again appear.
- type: Fix
- - message: Unknown Shuttle events will be much rarer.
- type: Tweak
- id: 7339
- time: '2024-09-10T06:40:00.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/28098
-- author: ScarKy0
- changes:
- - message: Renamed Circuit Boards to be Law Boards instead.
- type: Tweak
- id: 7340
- time: '2024-09-10T10:27:42.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31914
-- author: ScarKy0
- changes:
- - message: Arrival Screens now show time again.
- type: Fix
- id: 7341
- time: '2024-09-10T19:08:22.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32037
-- author: themias
- changes:
- - message: The Justice Helm can now only be crafted using a security helmet.
- type: Fix
- id: 7342
- time: '2024-09-10T19:08:37.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32042
-- author: TurboTrackerss14
- changes:
- - message: Gas tank explosions ("max caps") have a reduced range on WizDen servers
- until they can be reworked into a proper game mechanic.
- type: Remove
- id: 7343
- time: '2024-09-10T22:05:12.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31437
-- author: Boaz1111
- changes:
- - message: Researching Advanced Atmospherics now requires Atmospherics to be researched.
- type: Tweak
- id: 7344
- time: '2024-09-10T22:19:17.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32048
-- author: DiposableCrewmember42
- changes:
- - message: Fixed Revenant ability cost checks. Revenants can no longer spam abilities
- without Essence.
- type: Fix
- id: 7345
- time: '2024-09-10T23:07:07.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32050
-- author: ArtisticRoomba
- changes:
- - message: The salvage magnet circuitboard has been added to QM's locker. It can
- also be made at the circuit imprinter roundstart. NOW GET BACK TO WORK!!!
- type: Tweak
- id: 7346
- time: '2024-09-10T23:25:22.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31996
-- author: Lank
- changes:
- - message: Several antagonist shuttle events have been removed.
- type: Remove
- id: 7347
- time: '2024-09-10T23:26:59.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32052
-- author: Vermidia
- changes:
- - message: Borgs and other creatures that shouldn't get hurt stepping on things
- no longer get hurt stepping on things.
- type: Fix
- - message: Honkbots slip again
- type: Fix
- id: 7348
- time: '2024-09-11T02:12:08.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31011
-- author: EmoGarbage404
- changes:
- - message: The mining asteroid now generates small structures full of treasure and
- equipment. Keep an eye open for them, nestled within the rock.
- type: Add
- id: 7349
- time: '2024-09-11T03:33:42.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31638
-- 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.
@@ -3922,3 +3428,483 @@
id: 7820
time: '2025-01-16T12:25:08.0000000+00:00'
url: https://github.com/space-wizards/space-station-14/pull/33690
+- author: Southbridge
+ changes:
+ - message: More Ionstorm law elements have been added
+ type: Add
+ id: 7821
+ time: '2025-01-16T20:49:47.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34197
+- author: southbridge-fur
+ changes:
+ - message: Pride-O-Mats now have scarves instead of cloaks
+ type: Tweak
+ id: 7822
+ time: '2025-01-17T11:35:03.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34448
+- author: Toby222
+ changes:
+ - message: Update nix flake to use current nixpkgs release
+ type: Fix
+ id: 7823
+ time: '2025-01-17T17:26:04.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34480
+- author: ArtisticRoomba, miamioni
+ changes:
+ - message: The Space Lizard plushie can now be worn on top of your head.
+ type: Add
+ id: 7824
+ time: '2025-01-18T09:02:40.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33809
+- author: Spacemann
+ changes:
+ - message: Station cameras can now be destroyed by bullets.
+ type: Add
+ id: 7825
+ time: '2025-01-18T13:41:29.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34500
+- author: Winkarst-cpu
+ changes:
+ - message: Some masks can now be seen when pulled down.
+ type: Add
+ id: 7826
+ time: '2025-01-18T16:58:52.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33451
+- author: Minemoder
+ changes:
+ - message: The chemical locker now has a 10u vial of plasma.
+ type: Add
+ id: 7827
+ time: '2025-01-18T18:27:46.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33871
+- author: Nox38
+ changes:
+ - message: Seclites now start with a medium-capacity power cell.
+ type: Tweak
+ - message: Seclite power draw (wattage) has been reduced to 0.5.
+ type: Tweak
+ id: 7828
+ time: '2025-01-18T22:56:42.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34469
+- author: K-Dynamic
+ changes:
+ - message: Empty guns have a louder dry fire sound (i.e. when the chamber or power
+ cell is empty).
+ type: Tweak
+ id: 7829
+ time: '2025-01-19T01:46:55.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34447
+- author: WarPigeon
+ changes:
+ - message: The debriefing room in CentComm is now open to heads of staff for end
+ of round roleplay.
+ type: Tweak
+ id: 7830
+ time: '2025-01-19T05:32:34.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34475
+- author: Winkarst-cpu
+ changes:
+ - message: Now items from the storage implant drop on the floor upon gibbing of
+ the owner.
+ type: Tweak
+ id: 7831
+ time: '2025-01-19T19:48:58.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33493
+- author: ArtisticRoomba
+ changes:
+ - message: Voxes can now honk, weh, and hew if forced to by a reagent.
+ type: Fix
+ - message: Arachnids and Moths can now honk if forced to by a reagent.
+ type: Fix
+ id: 7832
+ time: '2025-01-20T00:21:25.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33777
+- author: K-Dynamic
+ changes:
+ - message: Welding gas masks are now toggleable like other breathing masks.
+ type: Fix
+ id: 7833
+ time: '2025-01-20T00:32:45.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32691
+- author: ElectroJr
+ changes:
+ - message: Fixed some visual overlays not being removed when the effect should stop.
+ type: Fix
+ id: 7834
+ time: '2025-01-20T01:24:40.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34527
+- author: Compilatron144
+ changes:
+ - message: Raised Plasma Station's population limit
+ type: Tweak
+ id: 7835
+ time: '2025-01-21T04:56:47.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34549
+- author: sporkyz
+ changes:
+ - message: Galoshes are now restricted to janitor.
+ type: Tweak
+ - message: Double barrel shotguns, basic armor vests, beanbag/flare shotgun shells,
+ and bandoliers are now allowed for Bartenders, not just Security.
+ type: Tweak
+ - message: Lawyers now have access to the Security headset they spawn with, as well
+ as the encryption key inside.
+ type: Fix
+ - message: Sawn-off shotguns are now properly considered contraband instead of being
+ unrestricted.
+ type: Fix
+ id: 7836
+ time: '2025-01-21T09:51:27.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33385
+- author: K-Dynamic
+ changes:
+ - message: Electrified doors and windoors now visibly spark when touched.
+ type: Tweak
+ - message: New tips have been added about opening electrified doors by throwing
+ your PDA or ID, and resetting doors that are electrified by AI.
+ type: Add
+ id: 7837
+ time: '2025-01-21T10:39:16.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34502
+- author: Nimfar11
+ changes:
+ - message: Adds Blueprint double emergency tank.
+ type: Add
+ id: 7838
+ time: '2025-01-21T16:08:21.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34232
+- author: sowelipililimute
+ changes:
+ - message: Chefs now have access to cloth boxes in their locker, kitchen supplies
+ crate, etc. for moths
+ type: Add
+ id: 7839
+ time: '2025-01-22T23:54:03.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34403
+- author: Emisse
+ changes:
+ - message: Lecter sprites have been updated.
+ type: Tweak
+ id: 7840
+ time: '2025-01-23T06:02:50.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34589
+- author: Ian321
+ changes:
+ - message: Job specific contraband descriptions are now grammatically sound.
+ type: Fix
+ id: 7841
+ time: '2025-01-23T10:08:41.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34559
+- author: Fildrance, SaphireLattice, eoineoineoin
+ changes:
+ - message: Radial menu UIs have been updated for readability.
+ type: Tweak
+ id: 7842
+ time: '2025-01-23T12:16:59.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32653
+- author: K-Dynamic
+ changes:
+ - message: The Drozd SMG can now fire in full-auto, burst or semi-auto
+ type: Tweak
+ id: 7843
+ time: '2025-01-23T13:01:20.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34604
+- author: Ian321
+ changes:
+ - message: Restricted contraband now gets displayed correctly.
+ type: Fix
+ id: 7844
+ time: '2025-01-23T14:01:45.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34558
+- author: TheShuEd, LeveFUN
+ changes:
+ - message: You can now put c4 on your head
+ type: Add
+ id: 7845
+ time: '2025-01-23T21:11:31.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34076
+- author: WarPigeon
+ changes:
+ - message: Uranium is now slightly radioactive.
+ type: Add
+ id: 7846
+ time: '2025-01-23T21:39:00.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34436
+- author: JustinWinningham
+ changes:
+ - message: Renamed sexy clown and mime mask.
+ type: Tweak
+ id: 7847
+ time: '2025-01-24T03:56:33.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34258
+- author: Velken
+ changes:
+ - message: Moved Cyborg Charger Circuit Board from Auto Lathe to Circuit Imprinter.
+ type: Tweak
+ id: 7848
+ time: '2025-01-24T04:30:47.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34612
+- author: Errant
+ changes:
+ - message: Cyborgs now start with positronic brains.
+ type: Tweak
+ 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
diff --git a/Resources/ConfigPresets/WizardsDen/vulture.toml b/Resources/ConfigPresets/WizardsDen/vulture.toml
index 2bd16b61b8..95aecb284a 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/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml
index 3083adcbea..8925d52859 100644
--- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml
+++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml
@@ -43,6 +43,7 @@ see_own_notes = true
deadmin_on_join = true
new_player_threshold = 600
alert.min_players_sharing_connection = 2
+allow_multi_server_play = false
[atmos]
max_explosion_range = 5
diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt
index 025024b23e..cbd4e77d55 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, 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, 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, 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, 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, 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, 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/_CP14/demiplane/demiplane.ftl b/Resources/Locale/en-US/_CP14/demiplane/demiplane.ftl
index 595630ca8f..8b76b39390 100644
--- a/Resources/Locale/en-US/_CP14/demiplane/demiplane.ftl
+++ b/Resources/Locale/en-US/_CP14/demiplane/demiplane.ftl
@@ -9,4 +9,6 @@ cp14-round-end-monolith-recharged = Contact with the other worlds is being re-es
cp14-round-end = The demiplane link crystal was completely discharged. The connection to the other worlds has been severed. The "interesting" part of the story is over here....
-cp14-demiplane-echoes = Echoes of voices
\ No newline at end of file
+cp14-demiplane-echoes = Echoes of voices
+
+cp14-demiplane-countdown = The Demiplane is beginning to collapse! You have {$duration} minutes to escape!
\ No newline at end of file
diff --git a/Resources/Locale/en-US/_CP14/demiplane/locations.ftl b/Resources/Locale/en-US/_CP14/demiplane/locations.ftl
index 2e9df055be..354a24f454 100644
--- a/Resources/Locale/en-US/_CP14/demiplane/locations.ftl
+++ b/Resources/Locale/en-US/_CP14/demiplane/locations.ftl
@@ -2,4 +2,5 @@ cp14-demiplane-location-cave = Dark caves
cp14-demiplane-location-cave-grass = Overgrown caves
cp14-demiplane-location-grassland-island = Green Island
cp14-demiplane-location-ice-cave = Ice caves
-cp14-demiplane-location-snow-island = Snowy island
\ No newline at end of file
+cp14-demiplane-location-snow-island = Snowy island
+cp14-demiplane-location-leaf-maze = Leaf maze
\ No newline at end of file
diff --git a/Resources/Locale/en-US/_CP14/demiplane/modifiers.ftl b/Resources/Locale/en-US/_CP14/demiplane/modifiers.ftl
index 2f2a96d3e9..0939d675a8 100644
--- a/Resources/Locale/en-US/_CP14/demiplane/modifiers.ftl
+++ b/Resources/Locale/en-US/_CP14/demiplane/modifiers.ftl
@@ -12,9 +12,12 @@ cp14-modifier-explosive = explosive mines
cp14-modifier-ruins = ancient ruins
cp14-modifier-xeno = xenomorphs
cp14-modifier-zombie = swarms of undead
+cp14-modifier-skeleton = sentient skeletons
cp14-modifier-dyno = prehistoric fauna
cp14-modifier-mole = predatory moles
cp14-modifier-rabbits = rabbits
cp14-modifier-boars = wild boars
cp14-modifier-chasm = bottomless chasms
-cp14-modifier-air-lily = air lilies
\ No newline at end of file
+cp14-modifier-air-lily = air lilies
+cp14-modifier-time-limit-10 = temporary disintegration (10 minutes)
+cp14-modifier-shadow-kudzu = spreading darkness
\ No newline at end of file
diff --git a/Resources/Locale/en-US/_CP14/events/events.ftl b/Resources/Locale/en-US/_CP14/events/events.ftl
index 4d462c1c73..9399d96285 100644
--- a/Resources/Locale/en-US/_CP14/events/events.ftl
+++ b/Resources/Locale/en-US/_CP14/events/events.ftl
@@ -1 +1,2 @@
-cp14-event-announcement-demiplane-outbreak = A sense of danger pierces the air... Something from other worlds is invading your town.
\ No newline at end of file
+cp14-event-announcement-demiplane-outbreak = A sense of danger pierces the air... Something from other worlds is invading your town.
+cp14-event-announcement-unstable-demiplane = Tension is building... an wild demiplane has opened somewhere in the settlement. Close it down before the monsters come out.
\ No newline at end of file
diff --git a/Resources/Locale/en-US/_CP14/job/department.ftl b/Resources/Locale/en-US/_CP14/job/department.ftl
index fc56d2694a..bc604e6f8c 100644
--- a/Resources/Locale/en-US/_CP14/job/department.ftl
+++ b/Resources/Locale/en-US/_CP14/job/department.ftl
@@ -4,7 +4,7 @@ department-CP14Mercenary-desc = Free people trying to make money in this crazy w
department-CP14Command = Command
department-CP14Command-desc = Persons responsible for carrying out the task assigned from the empire, and managing everything that happens in the settlement.
-department-CP14Bank = Bank
+department-CP14Bank = Trade guild
department-CP14Bank-desc = Persons closely connected with the economy and commerce working in a bank.
department-CP14Guard = Guards
diff --git a/Resources/Locale/en-US/_CP14/job/job.ftl b/Resources/Locale/en-US/_CP14/job/job.ftl
index d5dd79c4c3..6c54b58ad2 100644
--- a/Resources/Locale/en-US/_CP14/job/job.ftl
+++ b/Resources/Locale/en-US/_CP14/job/job.ftl
@@ -6,25 +6,24 @@ cp14-job-desc-guard-commander = The most dangerous person in the neighborhood. M
cp14-job-name-guard = Guard
cp14-job-desc-guard = A fighting unit of the Empire, sworn to protect its people. Watch for safety, and defend others from possible dangers.
-# Bank
+# Trade guild
cp14-job-name-commandant = Commandant
cp14-job-desc-commandant = Control the economy of the settlement by trading with the Empire. Manage stocks and finances by directing resources to the laboring hands.
-cp14-job-name-banker = Banker
-cp14-job-desc-banker = Make deals, store entrusted valuables, issue interest-bearing deposits, and do any other economic work that will enrich your bank.
+cp14-job-name-merchant = Merchant
+cp14-job-desc-merchant = You have the ability to buy and sell almost anything in your hands! Use it to enrich yourself and your trade guild.
# Mercenary
cp14-job-name-guildmaster = Guildmaster
-cp14-job-desc-guildmaster = Provide adventurers and artisans with work, and make sure they get enough profit for it.
-
-cp14-job-name-apprentice = Apprentice
-cp14-job-desc-apprentice = A peaceful citizen of the empire, just beginning to learn the subtleties of various sciences. Choose a specialisation in equipment, and try to help others in their work, in exchange for a salary and invaluable experience.
+cp14-job-desc-guildmaster = Protect the lives of your adventurers, provide them with everything they need, and make sure they do their job.
cp14-job-name-adventurer = Adventurer
cp14-job-desc-adventurer = A hunter for thrills, riches and fame, constantly risking his life. Fulfill the most dangerous orders, earning a living by mining resources or killing monsters.
+# Artisans
+
cp14-job-name-alchemist = Alchemist
cp14-job-desc-alchemist = A scientist of sorts, exploring the nature of substances. Create poisons and medicines from numerous natural plants and ingredients and earn money by selling them to people in need.
@@ -32,4 +31,7 @@ cp14-job-name-innkeeper = Innkeeper [Early WIP]
cp14-job-desc-innkeeper = Anywhere in Sylate there will be people looking to drink and relax. And you can capitalize on that desire! Find a way to provide people with good rest, food and drink.
cp14-job-name-blacksmith = Blacksmith
-cp14-job-desc-blacksmith = Create and improve equipment for everyone in need! You have the power of metal and fire in your hands, and only you know how to use them carefully to create masterpieces.
\ No newline at end of file
+cp14-job-desc-blacksmith = Create and improve equipment for everyone in need! You have the power of metal and fire in your hands, and only you know how to use them carefully to create masterpieces.
+
+cp14-job-name-apprentice = Apprentice
+cp14-job-desc-apprentice = A peaceful citizen of the empire, just beginning to learn the subtleties of various sciences. Choose a specialisation in equipment, and try to help others in their work, in exchange for a salary and invaluable experience.
\ No newline at end of file
diff --git a/Resources/Locale/en-US/_CP14/job/supervisors.ftl b/Resources/Locale/en-US/_CP14/job/supervisors.ftl
index a34fb0b90a..66759f5825 100644
--- a/Resources/Locale/en-US/_CP14/job/supervisors.ftl
+++ b/Resources/Locale/en-US/_CP14/job/supervisors.ftl
@@ -2,4 +2,5 @@ cp14-job-supervisors-empire = Empire and its authority
cp14-job-supervisors-command = all authority figures
cp14-job-supervisors-commandant = commandant
-cp14-job-supervisors-guard-commander = guard commander
\ No newline at end of file
+cp14-job-supervisors-guard-commander = guard commander
+cp14-job-supervisors-guildmaster = guildmaster
\ No newline at end of file
diff --git a/Resources/Locale/en-US/_CP14/loadouts/loadout.ftl b/Resources/Locale/en-US/_CP14/loadouts/loadout.ftl
index 367aa8e994..a91bd27996 100644
--- a/Resources/Locale/en-US/_CP14/loadouts/loadout.ftl
+++ b/Resources/Locale/en-US/_CP14/loadouts/loadout.ftl
@@ -1,5 +1,6 @@
# General
+cp14-loadout-general-outer = Outer Clothes
cp14-loadout-general-cloak = Cloak
cp14-loadout-general-eyes = Goggles
cp14-loadout-general-gloves = Gloves
@@ -12,6 +13,7 @@ cp14-loadout-general-back = Back
cp14-loadout-general-trinkets = Trinkets
cp14-loadout-general-spells = Spells
cp14-loadout-general-keys = Keys
+
# Apprentice
cp14-loadout-apprentice-bundle = Apprentice bundle
@@ -21,6 +23,7 @@ cp14-loadout-apprentice-bundle = Apprentice bundle
cp14-loadout-alchemist-head = Alchemist's head
cp14-loadout-alchemist-cloak = Alchemist's cloak
cp14-loadout-alchemist-eyes = Alchemical goggles
+
# Blacksmith
cp14-loadout-blacksmith-cloak = Blacksmith's cloak
@@ -37,18 +40,20 @@ cp14-loadout-guard-pants = Guard's pants
cp14-loadout-guard-shirt = Guard's shirt
cp14-loadout-guard-spells = Guard's spells
-# Bank
+# Trade guild
-cp14-loadout-bank-head = Bank employee hat
cp14-loadout-commandant-head = Commandant's hat
cp14-loadout-commandant-cloak = Commandant's cloak
-cp14-loadout-banker-outer = Banker's waistcoat
-cp14-loadout-bank-shirt = Bank Employee shirt
-cp14-loadout-bank-pants = Bank Employee pants
-cp14-loadout-bank-shoes = Bank Employee shoes
+
+cp14-loadout-merchant-head = Merchant's hat
+cp14-loadout-merchant-outer = Merchant's waistcoat
+cp14-loadout-merchant-shirt = Merchant's shirt
+cp14-loadout-merchant-pants = Merchant's pants
+cp14-loadout-merchant-shoes = Merchant's shoes
# Guildmaster
+cp14-loadout-guildmaster-outer = Guildmaster outer clothes
cp14-loadout-guildmaster-cloak = Guildmaster cloak
cp14-loadout-guildmaster-shirt = Guildmaster shirt
cp14-loadout-guildmaster-pants = Guildmaster pants
diff --git a/Resources/Locale/en-US/_CP14/machineLinking/transmitter_ports.ftl b/Resources/Locale/en-US/_CP14/machineLinking/transmitter_ports.ftl
new file mode 100644
index 0000000000..428c3e64b7
--- /dev/null
+++ b/Resources/Locale/en-US/_CP14/machineLinking/transmitter_ports.ftl
@@ -0,0 +1,5 @@
+cp14-signal-port-name-pressed = Pressed
+cp14-signal-port-description-pressed = This node is activated when the device is pressed.
+
+cp14-signal-port-name-released = Released
+cp14-signal-port-description-released = This node is activated when the device is released.
\ No newline at end of file
diff --git a/Resources/Locale/en-US/_CP14/magicSpells/speech.ftl b/Resources/Locale/en-US/_CP14/magicSpells/speech.ftl
index 20c3db8510..86f8001477 100644
--- a/Resources/Locale/en-US/_CP14/magicSpells/speech.ftl
+++ b/Resources/Locale/en-US/_CP14/magicSpells/speech.ftl
@@ -1 +1,2 @@
+cp14-kick-emote-start = kicks in...
cp14-kick-emote = makes a strong kick
\ No newline at end of file
diff --git a/Resources/Locale/en-US/_CP14/modularCraft/slots.ftl b/Resources/Locale/en-US/_CP14/modularCraft/slots.ftl
index abd18efdc1..3deaaed820 100644
--- a/Resources/Locale/en-US/_CP14/modularCraft/slots.ftl
+++ b/Resources/Locale/en-US/_CP14/modularCraft/slots.ftl
@@ -1,2 +1,3 @@
cp14-modular-slot-blade = blade
-cp14-modular-slot-garde = garde
\ No newline at end of file
+cp14-modular-slot-garde = garde
+cp14-modular-slot-blade-inlay = blade inlay
\ No newline at end of file
diff --git a/Resources/Locale/en-US/_CP14/passport/passport.ftl b/Resources/Locale/en-US/_CP14/passport/passport.ftl
new file mode 100644
index 0000000000..264f0c69f4
--- /dev/null
+++ b/Resources/Locale/en-US/_CP14/passport/passport.ftl
@@ -0,0 +1,6 @@
+cp14-passport-name = Name: {$name}
+cp14-passport-species = Race: {$species}
+cp14-passport-birth-date = Date of Birth: {$birthday}
+cp14-passport-job = Job: {$job}
+
+cp14-passport-stamp = Passport approved
\ No newline at end of file
diff --git a/Resources/Locale/en-US/_CP14/recipe/title.ftl b/Resources/Locale/en-US/_CP14/recipe/title.ftl
new file mode 100644
index 0000000000..521dc40e6d
--- /dev/null
+++ b/Resources/Locale/en-US/_CP14/recipe/title.ftl
@@ -0,0 +1 @@
+cp14-recipe-title-meat = various pieces of raw meat
diff --git a/Resources/Locale/en-US/_CP14/travelingStoreship/positions_sell.ftl b/Resources/Locale/en-US/_CP14/travelingStoreship/positions_sell.ftl
index 8b5c27927c..a10b224289 100644
--- a/Resources/Locale/en-US/_CP14/travelingStoreship/positions_sell.ftl
+++ b/Resources/Locale/en-US/_CP14/travelingStoreship/positions_sell.ftl
@@ -1,16 +1,37 @@
cp14-store-sell-hint = To sell {$name}, load the desired goods onto the selling pallets. Our people in town will sort it out, pick up the goods and leave the money in the trade box on the ship.
-cp14-store-sell-goldbar-name = 10 gold bars
-cp14-store-sell-goldbar-desc = The mining and processing of gold ore is heavily sponsored by the empire, which uses gold as currency and material for jewelry.
-
-cp14-store-sell-ironbar-name = 10 iron bars
-cp14-store-sell-ironbar-desc = Iron is an indispensable material in the manufacture of... almost anything that has any longevity in this world. And surely the Empire could use an extra shipment.
-
-cp14-store-sell-copperbar-name = 10 copper bars
-cp14-store-sell-copperbar-desc = Although copper is used mainly as a coin material, it is also often enjoyed by blacksmiths in various alloys.
-
cp14-store-sell-wood-name = 30 wooden planks
cp14-store-sell-wood-desc = Do you really think anyone needs planks from a faraway island? Well, you're right, we hope your settlement has something to keep you warm in the winter.
cp14-store-sell-glass-name = 10 glass
-cp14-store-sell-glass-desc = A fine material prized in the Empire for its versatility. The windows of palaces, the lenses of craftsmen, and even the mirrors of mages all require glass. Your labors are sure to find a use for it!
\ No newline at end of file
+cp14-store-sell-glass-desc = A fine material prized in the Empire for its versatility. The windows of palaces, the lenses of craftsmen, and even the mirrors of mages all require glass. Your labors are sure to find a use for it!
+
+cp14-store-sell-alchemical-herbals-name = 10 alchemical herbals
+cp14-store-sell-alchemical-herbals-desc = TODO
+
+# Metalls
+
+cp14-store-sell-copperbar-name = 10 copper bars
+cp14-store-sell-copperbar-desc = Although copper is used mainly as a coin material, it is also often enjoyed by blacksmiths in various alloys.
+
+cp14-store-sell-ironbar-name = 10 iron bars
+cp14-store-sell-ironbar-desc = Iron is an indispensable material in the manufacture of... almost anything that has any longevity in this world. And surely the Empire could use an extra shipment.
+
+cp14-store-sell-goldbar-name = 10 gold bars
+cp14-store-sell-goldbar-desc = The mining and processing of gold ore is heavily sponsored by the empire, which uses gold as currency and material for jewelry.
+
+cp14-store-sell-mithrilbar-name = 10 mithril bars
+cp14-store-sell-mithrilbar-desc = TODO
+
+
+cp14-store-sell-copperore-name = 10 copper ore
+cp14-store-sell-copperore-desc = TODO
+
+cp14-store-sell-ironore-name = 10 iron ore
+cp14-store-sell-ironore-desc = TODO
+
+cp14-store-sell-goldore-name = 10 gold ore
+cp14-store-sell-goldore-desc = TODO
+
+cp14-store-sell-mithrilore-name = 10 mithril ore
+cp14-store-sell-mithrilore-desc = TODO
\ No newline at end of file
diff --git a/Resources/Locale/en-US/administration/multi-server-kick.ftl b/Resources/Locale/en-US/administration/multi-server-kick.ftl
new file mode 100644
index 0000000000..2aa3c4ed35
--- /dev/null
+++ b/Resources/Locale/en-US/administration/multi-server-kick.ftl
@@ -0,0 +1 @@
+multi-server-kick-reason = Connected to different server in this community.
diff --git a/Resources/Locale/en-US/advertisements/vending/theater.ftl b/Resources/Locale/en-US/advertisements/vending/theater.ftl
index 437a3aa7d8..6784301f56 100644
--- a/Resources/Locale/en-US/advertisements/vending/theater.ftl
+++ b/Resources/Locale/en-US/advertisements/vending/theater.ftl
@@ -2,5 +2,5 @@
advertisement-theater-2 = Suited and booted!
advertisement-theater-3 = It's show time!
advertisement-theater-4 = Why leave style up to fate? Use AutoDrobe!
-advertisement-theater-5 = All wacky outfits and clothes, from gladitor robes to who knows what!
+advertisement-theater-5 = All wacky outfits and clothes, from gladiator robes to who knows what!
advertisement-theater-6 = The clown will appreciate your outfit!
diff --git a/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl b/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl
index 4314cbf449..d7a7025927 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 b7f5d6a2fa..9d17dea629 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/contraband/contraband-severity.ftl b/Resources/Locale/en-US/contraband/contraband-severity.ftl
index 303cb7c1d5..68bb11930a 100644
--- a/Resources/Locale/en-US/contraband/contraband-severity.ftl
+++ b/Resources/Locale/en-US/contraband/contraband-severity.ftl
@@ -7,3 +7,6 @@ contraband-examine-text-Syndicate = [color=crimson]This item is highly illegal S
contraband-examine-text-avoid-carrying-around = [color=red][italic]You probably want to avoid visibly carrying this around without a good reason.[/italic][/color]
contraband-examine-text-in-the-clear = [color=green][italic]You should be in the clear to visibly carry this around.[/italic][/color]
+
+contraband-department-plural = {$department}
+contraband-job-plural = {MAKEPLURAL($job)}
diff --git a/Resources/Locale/en-US/criminal-records/criminal-records.ftl b/Resources/Locale/en-US/criminal-records/criminal-records.ftl
index 2a7c09912f..5c39a8a2ab 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-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-not-wanted = {$officer} cleared the wanted status of {$name} ($job).
+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 a436035114..83934a181e 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/devices/device-network.ftl b/Resources/Locale/en-US/devices/device-network.ftl
index 9ae101a1e8..dd473866dc 100644
--- a/Resources/Locale/en-US/devices/device-network.ftl
+++ b/Resources/Locale/en-US/devices/device-network.ftl
@@ -33,7 +33,7 @@ device-address-prefix-freezer = FZR-
device-address-prefix-volume-pump = VPP-
device-address-prefix-smes = SMS-
-#PDAs and terminals
+# PDAs and terminals
device-address-prefix-console = CLS-
device-address-prefix-fire-alarm = FIR-
device-address-prefix-air-alarm = AIR-
@@ -42,7 +42,7 @@ device-address-prefix-sensor-monitor = MON-
device-address-examine-message = The device's address is {$address}.
-#Device net ID names
+# Device net ID names
device-net-id-private = Private
device-net-id-wired = Wired
device-net-id-wireless = Wireless
diff --git a/Resources/Locale/en-US/emag/emag.ftl b/Resources/Locale/en-US/emag/emag.ftl
index b4679870b5..e91bacbc65 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/escape-menu/ui/options-menu.ftl b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl
index bcc5a994b8..c13dbb516f 100644
--- a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl
+++ b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl
@@ -37,6 +37,7 @@ ui-options-lobby-music = Lobby & Round-end Music
ui-options-restart-sounds = Round Restart Sounds
ui-options-event-music = Event Music
ui-options-admin-sounds = Play Admin Sounds
+ui-options-bwoink-sound = Play AHelp Notification Sound
ui-options-volume-label = Volume
## Graphics menu
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 06f8aeb565..dcb061a692 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/game-ticking/game-rules/gamerule-admin.ftl b/Resources/Locale/en-US/game-ticking/game-rules/gamerule-admin.ftl
index 3b31fe4663..c7a7affa08 100644
--- a/Resources/Locale/en-US/game-ticking/game-rules/gamerule-admin.ftl
+++ b/Resources/Locale/en-US/game-ticking/game-rules/gamerule-admin.ftl
@@ -1,4 +1,4 @@
-#When an admin adds a game rule
+# When an admin adds a game rule
add-gamerule-admin = Game rule({$rule}) added - {$admin}
list-gamerule-admin-header = | Time | Rule added
list-gamerule-admin-no-rules = No game rules have been added.
diff --git a/Resources/Locale/en-US/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl
index 52ac5a09fb..530881abd1 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 073757f53c..813ed3e7a9 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 9f678c1802..81f59df622 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 686fcb93cb..37265b875c 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 1deb39db09..20ad23dcb2 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 b645220119..79be6d371b 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 da3221e4f8..9d8d9d839a 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/powersink/powersink.ftl b/Resources/Locale/en-US/powersink/powersink.ftl
index 92e87dd90f..90598af390 100644
--- a/Resources/Locale/en-US/powersink/powersink.ftl
+++ b/Resources/Locale/en-US/powersink/powersink.ftl
@@ -1,2 +1,2 @@
powersink-examine-drain-amount = The power sink is draining [color={$markupDrainColor}]{$amount} kW[/color].
-powersink-immiment-explosion-announcement = System scans have detected a rogue power consuming device is becoming unstable. Staff are advised to locate and disconnect this device immediately before the station is damaged.
+powersink-imminent-explosion-announcement = System scans have detected a rogue power consuming device is becoming unstable. Staff are advised to locate and disconnect this device immediately before the station is damaged.
diff --git a/Resources/Locale/en-US/revenant/revenant.ftl b/Resources/Locale/en-US/revenant/revenant.ftl
index f4ea6d79ff..1d6bae7b34 100644
--- a/Resources/Locale/en-US/revenant/revenant.ftl
+++ b/Resources/Locale/en-US/revenant/revenant.ftl
@@ -16,7 +16,7 @@ revenant-soul-yield-low = {CAPITALIZE(THE($target))} has a below average soul.
revenant-soul-begin-harvest = {CAPITALIZE(THE($target))} suddenly rises slightly into the air, {POSS-ADJ($target)} skin turning an ashy gray.
revenant-soul-finish-harvest = {CAPITALIZE(THE($target))} slumps onto the ground!
-#UI
+# UI
revenant-user-interface-title = Ability Shop
revenant-user-interface-essence-amount = [color=plum]{$amount}[/color] Stolen Essence
diff --git a/Resources/Locale/en-US/shuttles/console.ftl b/Resources/Locale/en-US/shuttles/console.ftl
index 5b8be6ff02..0ed364b933 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 c8f07c1b2f..0000000000
--- 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/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl
index 82c80dab1f..59cecca312 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 6a69ab8bc6..6d3baa2c0d 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 9e133d52eb..3c4b7029a0 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/tips.ftl b/Resources/Locale/en-US/tips.ftl
index 154ac8e18b..dcadd15b1b 100644
--- a/Resources/Locale/en-US/tips.ftl
+++ b/Resources/Locale/en-US/tips.ftl
@@ -133,3 +133,5 @@ tips-dataset-132 = By right clicking on a player, and then clicking the heart ic
tips-dataset-133 = Monkeys and kobolds have a rare chance to be sentient. Ook!
tips-dataset-134 = You can tell if an area with firelocks up is spaced by looking to see if the firelocks have lights beside them.
tips-dataset-135 = Instead of picking it up, you can alt-click food to eat it. This also works for mice and other creatures without hands.
+tips-dataset-136 = If you're trapped behind an electrified door, disable the APC or throw your ID at the door to avoid getting shocked!
+tips-dataset-137 = If the AI electrifies a door and you have insulated gloves, snip and mend the power wire to reset their electrification!
diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl
index 7f4dcfe2ec..f4e5736db5 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/Locale/en-US/weapons/melee/melee.ftl b/Resources/Locale/en-US/weapons/melee/melee.ftl
index 871d142504..d3318ea244 100644
--- a/Resources/Locale/en-US/weapons/melee/melee.ftl
+++ b/Resources/Locale/en-US/weapons/melee/melee.ftl
@@ -3,5 +3,5 @@ melee-inject-failed-hardsuit = Your {$weapon} cannot inject through hardsuits!
melee-balloon-pop = {CAPITALIZE(THE($balloon))} popped!
-#BatteryComponent
+# BatteryComponent
melee-battery-examine = It has enough charge for [color={$color}]{$count}[/color] hits.
diff --git a/Resources/Locale/ru-RU/_CP14/_PROTO/entities/entities.ftl b/Resources/Locale/ru-RU/_CP14/_PROTO/entities/entities.ftl
index d16fce0c29..9d17470020 100644
--- a/Resources/Locale/ru-RU/_CP14/_PROTO/entities/entities.ftl
+++ b/Resources/Locale/ru-RU/_CP14/_PROTO/entities/entities.ftl
@@ -80,6 +80,10 @@ ent-CP14WoodenClosetGuardCommanderFilled = { ent-CP14WoodenCloset }
.desc = { ent-CP14WoodenCloset.desc }
.suffix = Командир стражи, заполненный
+ent-CP14WoodenClosetGuildmasterFilled = { ent-CP14WoodenCloset }
+ .desc = { ent-CP14WoodenCloset.desc }
+ .suffix = Гильдмастер, заполненный
+
ent-CP14WoodenCabinetAlchemist = { ent-CP14WoodenCabinet }
.desc = { ent-CP14WoodenCabinet.desc }
.suffix = Алхимик, заполненный
@@ -104,6 +108,10 @@ ent-CP14WoodenCabinetGuardCommander = { ent-CP14WoodenCabinet }
.desc = { ent-CP14WoodenCabinet.desc }
.suffix = Командир стражи, заполненный
+ent-CP14WoodenCabinetGuildmaster = { ent-CP14WoodenCabinet }
+ .desc = { ent-CP14WoodenCabinet.desc }
+ .suffix = Гильдмастер, заполненный
+
ent-CP14BaseFlammableSpreadingStrong = { ent-CP14BaseFlammableSpreading }
.desc = { ent-CP14BaseFlammableSpreading.desc }
@@ -134,19 +142,16 @@ ent-CP14BaseSpellScrollEarth = { ent-CP14BaseSpellScroll }
ent-CP14BaseSpellScrollFire = { ent-CP14BaseSpellScroll }
.desc = { ent-CP14BaseSpellScroll.desc }
-ent-CP14BaseSpellScrollGate = { ent-CP14BaseSpellScroll }
- .desc = { ent-CP14BaseSpellScroll.desc }
-
ent-CP14BaseSpellScrollHealing = { ent-CP14BaseSpellScroll }
.desc = { ent-CP14BaseSpellScroll.desc }
-ent-CP14BaseSpellScrollLightDarkness = { ent-CP14BaseSpellScroll }
+ent-CP14BaseSpellScrollLight = { ent-CP14BaseSpellScroll }
.desc = { ent-CP14BaseSpellScroll.desc }
ent-CP14BaseSpellScrollMeta = { ent-CP14BaseSpellScroll }
.desc = { ent-CP14BaseSpellScroll.desc }
-ent-CP14BaseSpellScrollMovement = { ent-CP14BaseSpellScroll }
+ent-CP14BaseSpellScrollDarkness = { ent-CP14BaseSpellScroll }
.desc = { ent-CP14BaseSpellScroll.desc }
ent-CP14BaseSpellScrollNecromancy = { ent-CP14BaseSpellScroll }
@@ -155,6 +160,45 @@ ent-CP14BaseSpellScrollNecromancy = { ent-CP14BaseSpellScroll }
ent-CP14BaseSpellScrollWater = { ent-CP14BaseSpellScroll }
.desc = { ent-CP14BaseSpellScroll.desc }
+ent-CP14ActionSpellDemiplaneInfiltration = Проникновение в демиплан
+ .desc = Вы проникаете в выбранный ваши демиплан.
+
+ent-CP14RuneDemiplaneInfiltration = { ent-CP14BaseMagicRune }
+ .desc = { ent-CP14BaseMagicRune.desc }
+
+ent-CP14SpellScrollDemiplaneInfiltration = свиток заклинания проникновения в демиплан
+ .desc = { ent-CP14BaseSpellScrollDarkness.desc }
+
+ent-CP14ActionSpellMonolithWarp = Телепорт к монолиту
+ .desc = Вы открываете пространственный разлом, который телепортирует всех существ вокруг к кристаллу связи с демипланами.
+
+ent-CP14SpellScrollMonolithWarp = свиток заклинания телепорта к монолиту
+ .desc = { ent-CP14BaseSpellScrollDarkness.desc }
+
+ent-CP14ActionSpellShadowGrab = Теневой захват
+ .desc = Вы вызываете призрачную руку, которая притягивает к вам предмет или сущность.
+
+ent-CP14ImpactEffectShadowGrab = { ent-CP14BaseMagicImpact }
+ .desc = { ent-CP14BaseMagicImpact.desc }
+
+ent-CP14SpellScrollShadowGrab = свиток заклинания теневого захвата
+ .desc = { ent-CP14BaseSpellScrollDarkness.desc }
+
+ent-CP14ActionSpellShadowStep = Теневой шаг
+ .desc = Шаг сквозь прореху реальности, позволяющий быстро преодолеть небольшое расстояние.
+
+ent-CP14ImpactEffectShadowStep = { ent-CP14BaseMagicImpact }
+ .desc = { ent-CP14BaseMagicImpact.desc }
+
+ent-CP14SpellScrollShadowStep = свиток заклинания теневого шага
+ .desc = { ent-CP14BaseSpellScrollDarkness.desc }
+
+ent-CP14ActionMoleSpellSubterraneanLeap = Подземный прыжок
+ .desc = Сделайте подземный прыжок, быстро приближаясь к жертве.
+
+ent-CP14ImpactEffectDigging = { ent-CP14BaseMagicImpact }
+ .desc = { ent-CP14BaseMagicImpact.desc }
+
ent-CP14ActionSpellEarthWall = Земляная стена
.desc = Поднимает из недр прочную стену земли.
@@ -208,18 +252,9 @@ ent-CP14TelegraphyFireRune = { ent-CP14BaseMagicImpact }
ent-CP14AreaEntityEffectFireRune = { ent-CP14BaseMagicImpact }
.desc = { ent-CP14BaseMagicImpact.desc }
-ent-CP14SpellScrollFireRune = fire rune spell scroll
+ent-CP14SpellScrollFireRune = свиток заклинаний руны огня
.desc = { ent-CP14BaseSpellScrollFire.desc }
-ent-CP14ActionSpellShadowStep = Теневой шаг
- .desc = Шаг сквозь прореху реальности, позволяющий быстро преодолеть небольшое расстояние.
-
-ent-CP14ImpactEffectShadowStep = { ent-CP14BaseMagicImpact }
- .desc = { ent-CP14BaseMagicImpact.desc }
-
-ent-CP14SpellScrollShadowStep = свиток заклинания теневого шага
- .desc = { ent-CP14BaseSpellScrollGate.desc }
-
ent-CP14ActionSpellCureBurn = Лечение ожогов
.desc = Вы излечиваете кожные повреждения, вызванные крайне высокой или низкой температурой.
@@ -284,7 +319,7 @@ ent-CP14SphereOfLight = сфера света
.desc = Сгусток яркого света в форме сферы.
ent-CP14SpellScrollSphereOfLight = свиток заклинания сферы света
- .desc = { ent-CP14BaseSpellScrollLightDarkness.desc }
+ .desc = { ent-CP14BaseSpellScrollLight.desc }
ent-CP14ActionSpellFlashLight = Вспышка света
.desc = Создает вспышку яркого, ослепительного света.
@@ -296,13 +331,22 @@ ent-CP14ImpactEffectFlashLight = { ent-CP14BaseMagicImpact }
.desc = { ent-CP14BaseMagicImpact.desc }
ent-CP14SpellScrollFlashLight = свиток заклинания ослепляющей вспышки
- .desc = { ent-CP14BaseSpellScrollLightDarkness.desc }
+ .desc = { ent-CP14BaseSpellScrollLight.desc }
+
+ent-CP14RuneSignalLightRed = { ent-CP14BaseMagicRune }
+ .desc = { ent-CP14BaseMagicRune.desc }
+
+ent-CP14RuneSignalLightYellow = { ent-CP14BaseMagicRune }
+ .desc = { ent-CP14BaseMagicRune.desc }
+
+ent-CP14RuneSignalLightBlue = { ent-CP14BaseMagicRune }
+ .desc = { ent-CP14BaseMagicRune.desc }
ent-CP14ActionSpellManaConsume = Поглощение маны
.desc = Вы поглощаете небольшое количество маны у цели.
ent-CP14ActionSpellManaConsumeElf = Аккуратное поглощение маны
- .desc = Вы поглощаете небольшое количество маны у цели аккуратно и без потерь.
+ .desc = Вы поглощаете ману с огромной скоростью, не нанося при этом урона владельцу маны.
ent-CP14RuneManaConsume = { ent-CP14BaseMagicRune }
.desc = { ent-CP14BaseMagicRune.desc }
@@ -322,15 +366,6 @@ ent-CP14ImpactEffectManaGift = { ent-CP14BaseMagicImpact }
ent-CP14SpellScrollManaGift = свиток заклинания передачи маны
.desc = { ent-CP14BaseSpellScrollMeta.desc }
-ent-CP14ActionSpellShadowGrab = Теневой захват
- .desc = Вы вызываете призрачную руку, которая притягивает к вам предмет или сущность.
-
-ent-CP14ImpactEffectShadowGrab = { ent-CP14BaseMagicImpact }
- .desc = { ent-CP14BaseMagicImpact.desc }
-
-ent-CP14SpellScrollShadowGrab = свиток заклинания теневого захвата
- .desc = { ent-CP14BaseSpellScrollMovement.desc }
-
ent-CP14ActionSpellResurrection = Воскрешение
.desc = Вы пытаетесь вернуть душу обратно в искалеченное тело.
@@ -343,12 +378,27 @@ ent-CP14ImpactEffectResurrection = { ent-CP14BaseMagicImpact }
ent-CP14SpellScrollResurrection = свиток заклинания воскрешения
.desc = { ent-CP14BaseSpellScrollNecromancy.desc }
+ent-CP14ActionSpellKick = Пинок
+ .desc = Вы наносите эпический удар ногой по выбранному объекту, отталкивая его от себя.
+
ent-CP14ActionSpellSprint = Спринт
.desc = Затрачивая много выносливости, вы значительно ускоряетесь в движении.
ent-CP14ActionSpellSprintGoblin = Проворство гоблина
.desc = { ent-CP14ActionSpellSprint.desc }
+ent-CP14ActionSpellFreeze = Заморозка
+ .desc = Вы начинаете сильно охлаждать цель, замедляя скорость ее передвижения.
+
+ent-CP14ImpactEffectFreeze = { ent-CP14BaseMagicImpact }
+ .desc = { ent-CP14BaseMagicImpact.desc }
+
+ent-CP14RunePlantFreeze = { ent-CP14BaseMagicRune }
+ .desc = { ent-CP14BaseMagicRune.desc }
+
+ent-CP14SpellScrollFreeze = свиток заклинания заморозки
+ .desc = { ent-CP14BaseSpellScrollWater.desc }
+
ent-CP14ActionSpellWaterCreation = Создание воды
.desc = Создайте сгусток воды, который удерживается в форме парящего шара в течение некоторого времени.
@@ -394,6 +444,9 @@ ent-CP14HeadSkeleton = череп
ent-CP14ClothingBackpackLeather = кожаный рюкзак
.desc = Вы носите его на спине и кладете в него предметы.
+ent-CP14ClothingSatchelLeather = кожаная сумка
+ .desc = Вы носите его на спине и кладете в него предметы.
+
ent-CP14ClothingBeltQuiver = колчан
.desc = Вмещает много арбалетных болтов и плотно прилегает к поясу.
@@ -418,6 +471,9 @@ ent-CP14ClothingCloakGreen = зеленый плащ
ent-CP14ClothingCloakBlue = синий плащ
.desc = Синий плащ, покрывающий все тело.
+ent-CP14ClothingCloakFurCoat = Меховая шуба
+ .desc = Тепло под дождем, тепло под снегом, тепло на ветру. Славно.
+
ent-CP14ClothingCloakGuardBase = накидка стражи
.desc = Наплечная накидка в стандартных цветах Имперской гвардии.
@@ -427,9 +483,6 @@ ent-CP14ClothingCloakGuardBlue = { ent-CP14ClothingCloakGuardBase }
ent-CP14ClothingCloakGuardCommander = бронированный плащ командира гвардии
.desc = Это чрезвычайно прочная и легкая накидка, разработанная специально для командиров Имперской гвардии.
-ent-CP14ClothingCloakFurCoat = Меховая шуба
- .desc = Тепло под дождем, тепло под снегом, тепло на ветру. Славно.
-
ent-CP14ClothingEyesMonocle = монокль
.desc = Аристократично и красиво.
@@ -528,10 +581,10 @@ ent-CP14ClothingOuterClothingCuirass = кираса
ent-CP14ClothingOuterClothingInfantryCuirass = пехотная кираса
.desc = Кираса легкой пехоты, в отличие от оригинала, защищает и спину.
-ent-CP14ClothingOuterClothingCuirassLoincloth = набедренная повязка с кирасой
+ent-CP14ClothingOuterClothingCuirassLoincloth = кираса с набедренником
.desc = Более тяжелый вариант кирасы, закрывающий только верхнюю часть ног.
-ent-CP14ClothingOuterClothingCuirassLeg = кираса для ног
+ent-CP14ClothingOuterClothingCuirassLeg = кираса с поножами
.desc = Более тяжелая кираса, полностью закрывающий ноги.
ent-CP14ClothingPantsBase = None
@@ -603,6 +656,24 @@ ent-CP14ClothingRingFlashLight = проводящее кольцо вспышк
.desc = Стандартное манапроводящее кольцо, позволяющее вызвать яркую ослепляющую вспышку света.
.suffix = Вспышка света
+ent-CP14ClothingBeltBrown = коричневый пояс
+ .desc = Простой коричневый пояс. Он поможет рубашке не развеваться на ветру.
+
+ent-CP14ClothingOuterClothingGreenVest = зелёная жилетка
+ .desc = Стильный зеленый жилет с золотыми пуговицами.
+
+ent-CP14ClothingOuterClothingRedVest = красная жилетка
+ .desc = Стильный красный жилет с золотыми крапинками.
+
+ent-CP14ClothingOuterClothingBrownVest1 = коричневый жилет
+ .desc = Простой, приличный кожаный жилет. Довольно стильно.
+
+ent-CP14ClothingOuterClothingBrownVest2 = коричневый жилет с застежками
+ .desc = Тот же простой коричневый кожаный жилет, но с застежками.
+
+ent-CP14ClothingOuterClothingBrownVest3 = лёгкий кожаный жилет
+ .desc = Два кожаных лоскута, соединенных ремнем снизу.
+
ent-CP14ClothingShirtBase = рубашка
.desc = Приятный на ощупь материал, удобная свободная форма рубашки.
@@ -639,27 +710,6 @@ ent-CP14ClothingShirtCottonRed = холщовая красная рубашка
ent-CP14ClothingShirtCottonWhite = холщовая белая рубашка
.desc = { ent-CP14ClothingShirtBase.desc }
-ent-CP14ClothingShirtCottonWhiteBelt = холщовая опоясанная белая рубашка
- .desc = { ent-CP14ClothingShirtBase.desc }
-
-ent-CP14ClothingShirtCottonWhiteBrownVest = холщовая опоясанная бело-коричневая рубашка
- .desc = { ent-CP14ClothingShirtBase.desc }
-
-ent-CP14ClothingShirtCottonWhiteBrownVest2 = { ent-CP14ClothingShirtCottonWhiteBrownVest }
- .desc = { ent-CP14ClothingShirtCottonWhiteBrownVest.desc }
-
-ent-CP14ClothingShirtCottonWhiteBrownVest3 = { ent-CP14ClothingShirtCottonWhiteBrownVest }
- .desc = { ent-CP14ClothingShirtCottonWhiteBrownVest.desc }
-
-ent-CP14ClothingShirtCottonWhiteCollar = холщовая белая рубашка с воротником
- .desc = { ent-CP14ClothingShirtBase.desc }
-
-ent-CP14ClothingShirtCottonWhiteGreenVest = холщовая зеленая стильная рубашка с воротником
- .desc = { ent-CP14ClothingShirtBase.desc }
-
-ent-CP14ClothingShirtCottonWhiteGreenVest2 = { ent-CP14ClothingShirtCottonWhiteGreenVest }
- .desc = { ent-CP14ClothingShirtCottonWhiteGreenVest.desc }
-
ent-CP14ClothingShirtCottonYellow = холщовая желтая рубашка
.desc = { ent-CP14ClothingShirtBase.desc }
@@ -705,15 +755,19 @@ ent-CP14BaseMobGroupSpawner = пульсирующий разлом демипл
ent-CP14MobGroupSpawnerZombie = { ent-CP14BaseMobGroupSpawner }
.desc = { ent-CP14BaseMobGroupSpawner.desc }
- .suffix = 1-3 Zombie
+ .suffix = 1-3 Зомби
ent-CP14MobGroupSpawnerHydras = { ent-CP14BaseMobGroupSpawner }
.desc = { ent-CP14BaseMobGroupSpawner.desc }
- .suffix = 1-3 Hydras
+ .suffix = 1-3 Гидры
ent-CP14MobGroupSpawnerMosquito = { ent-CP14BaseMobGroupSpawner }
.desc = { ent-CP14BaseMobGroupSpawner.desc }
- .suffix = 2-3 Mosquito
+ .suffix = 2-3 Москитов
+
+ent-CP14MobGroupSpawnerRabbits = { ent-CP14BaseMobGroupSpawner }
+ .desc = { ent-CP14BaseMobGroupSpawner.desc }
+ .suffix = 2-3 Кроликов
ent-CP14SpawnPointGuardCommander = командир стражи
.desc = { ent-CP14SpawnPointJobBase.desc }
@@ -726,10 +780,13 @@ ent-CP14SpawnPointCommandant = коммендант
ent-CP14SpawnPointBanker = банкир
.desc = { ent-CP14SpawnPointJobBase.desc }
-ent-CP14SpawnPointApprentice = подмастерье
+ent-CP14SpawnPointAdventurer = авантюрист
.desc = { ent-CP14SpawnPointJobBase.desc }
-ent-CP14SpawnPointAdventurer = авантюрист
+ent-CP14SpawnPointGuildmaster = гильдмастер
+ .desc = { ent-CP14SpawnPointJobBase.desc }
+
+ent-CP14SpawnPointApprentice = подмастерье
.desc = { ent-CP14SpawnPointJobBase.desc }
ent-CP14SpawnPointAlchemist = алхимик
@@ -749,6 +806,8 @@ ent-CP14SpawnMobPig = спавнер свиньи
ent-CP14SpawnMobBoar = спавнер кабана
+ent-CP14SpawnMobFrog = спавнер жабки
+
ent-CP14SpawnMobDinoYumkaraptor = спавнер Юмкараптора
ent-CP14SpawnMobDinoSmallHydra = спавнер малой гидры
@@ -780,6 +839,9 @@ ent-CP14MobPig = свинья
ent-CP14MobBoar = кабан
.desc = Дальний родственник свиней, но, в отличие от своих мирных сородичей, обязательно попытается подцепить вас на клыки, если вы проявите к нему агрессию.
+ent-CP14MobFrog = лягушка
+ .desc = Зеленая и постоянно прыгающая лягушка. Возможно, только благодаря ей комары еще не полностью заполнили болота.
+
ent-CP14MobDino = дино
ent-CP14MobDinoYumkaraptor = юмкараптор
@@ -788,21 +850,15 @@ ent-CP14MobDinoYumkaraptor = юмкараптор
ent-CP14MobDinoSmallHydra = малая гидра
.desc = Небольшая двухголовая ящерица, несмотря на свои размеры, может быть довольно опасной.
+ent-CP14ActionSpellIceShardsGhost = { ent-CP14ActionSpellIceShards }
+ .desc = { ent-CP14ActionSpellIceShards.desc }
+
ent-CP14MobMonsterMole = хищный крот
.desc = Охотится в темноте и любит вкус мяса и крови во рту.
-ent-CP14ActionMoleSpellSubterraneanLeap = Подземный прыжок
- .desc = Сделайте подземный прыжок, быстро приближаясь к жертве.
-
-ent-CP14ImpactEffectDigging = { ent-CP14BaseMagicImpact }
- .desc = { ent-CP14BaseMagicImpact.desc }
-
ent-CP14MobUndeadSkeleton = скелет
.desc = Оживленный темной магией хрупкий скелет. Обычно скелеты - чрезвычайно разумные существа, управляемые недавно умершей душой.
-ent-CP14MobUndeadSkeletonCloset = { ent-CP14MobUndeadSkeleton }
- .desc = { ent-CP14MobUndeadSkeleton.desc }
-
ent-CP14MobSpaceCobra = кобра
ent-CP14MobUndeadZombie = ходячий труп
@@ -864,31 +920,31 @@ ent-CP14BookKnowledgeBase = книга знаний
ent-CP14BookKnowledgeWoodWork = { ent-CP14BookKnowledgeBase }
.desc = { ent-CP14BookKnowledgeBase.desc }
- .suffix = Wood Work
+ .suffix = Работа по дереву
ent-CP14BookKnowledgeMetallMelting = { ent-CP14BookKnowledgeBase }
.desc = { ent-CP14BookKnowledgeBase.desc }
- .suffix = Metall Melting
+ .suffix = Плавка металла
ent-CP14BookKnowledgeMetallForging = { ent-CP14BookKnowledgeBase }
.desc = { ent-CP14BookKnowledgeBase.desc }
- .suffix = Metall Forging
+ .suffix = Ковка металла
ent-CP14BookKnowledgeGlasswork = { ent-CP14BookKnowledgeBase }
.desc = { ent-CP14BookKnowledgeBase.desc }
- .suffix = Glasswork
+ .suffix = Работа со стеклом
ent-CP14BookKnowledgeClothingSewing = { ent-CP14BookKnowledgeBase }
.desc = { ent-CP14BookKnowledgeBase.desc }
- .suffix = Clothing Sewing
+ .suffix = Шитье одежды
ent-CP14BookKnowledgeWallpaperCraft = { ent-CP14BookKnowledgeBase }
.desc = { ent-CP14BookKnowledgeBase.desc }
- .suffix = Wallpaper Craft
+ .suffix = Изготовление обоев
ent-CP14BookKnowledgeAdvancedClothingSewing = { ent-CP14BookKnowledgeBase }
.desc = { ent-CP14BookKnowledgeBase.desc }
- .suffix = Advanced Clothing Sewing
+ .suffix = Продвинутое шитье одежды
ent-CP14Paper = бумага
.desc = Лист белой бумаги.
@@ -916,6 +972,10 @@ ent-CP14StampGuardCommander = штамп командира стража
.desc = { ent-CP14StampBase.desc }
.suffix = НЕ МАППИТЬ
+ent-CP14StampGuildmaster = штамп гильдмастера
+ .desc = { ent-CP14StampBase.desc }
+ .suffix = НЕ МАППИТЬ
+
ent-CP14GreenBottle = зеленая бутылка
.desc = Зеленая бутылка, идеально подходит для пива.
.suffix = Пустая
@@ -960,8 +1020,19 @@ ent-CP14FoodCheeseSlice = долька сыра
ent-CP14FoodDoughLarge = большой кусок теста
.desc = Идеальный ингредиент для любого мучного изделия. Остается только придать ему форму.
-ent-CP14FoodDoughMedium = средний кусок теста
- .desc = { ent-CP14FoodDoughLarge.desc }
+ent-CP14FoodBread = хлеб
+ .desc = Хрустящий и такой ароматный!
+
+ent-CP14FoodBreadSlice = ломтик хлеба
+ .desc = { ent-CP14FoodBread.desc }
+
+ent-CP14FoodDoughMedium = кусок теста среднего размера
+
+ent-CP14FoodBreadBun = булочка
+ .desc = Это как обычный хлеб, только меньше и смешнее.
+
+ent-CP14FoodBreadBunSlice = разрезанная булочка
+ .desc = Это как обычный хлеб, только меньше и смешнее. Да, и еще пополам порезан.
ent-CP14FoodDoughMediumFlat = раскатанное тесто
.desc = { ent-CP14FoodDoughMedium.desc }
@@ -978,26 +1049,56 @@ ent-CP14FoodMeatSliceBase = { ent-CP14FoodMeatBase }
ent-CP14FoodMeatLamb = сырая баранина
.desc = Сочный стейк из баранины
+ent-CP14FoodMeatLambCooked = жареный стейк из баранины
+ .desc = { ent-CP14FoodMeatLamb.desc }
+
ent-CP14FoodMeatLambSlice = кусочки мяса
.desc = Сочный стейк из баранины
-ent-CP14FoodMeatLambCutlet = котлета из баранины
+ent-CP14FoodMeatLambCookedSlice = жаренные кусочки мяса
+ .desc = { ent-CP14FoodMeatLambSlice.desc }
+
+ent-CP14FoodMeatLambCutlet = баранья котлета
.desc = Результат смешивания нарезанной баранины и яйца - сырая круглая котлета.
-ent-CP14BasePlate = None
- .desc = Это ваша тарелка для вкусного обеда!
+ent-CP14FoodMeatLambCutletCooked = жаренная баранья котлета
+ .desc = Вкуснятина!
-ent-CP14PlateWooden = деревянная тарелка
- .desc = { ent-CP14BasePlate.desc }
+ent-CP14FoodMeatFrogLeg = лягушачья лапа
+ .desc = Говорят, что где-то такое едят.
-ent-CP14PlateWooden2 = { ent-CP14PlateWooden }
- .desc = { ent-CP14PlateWooden.desc }
+ent-CP14FoodMeatFrogLegCooked = жаренная лягушачья лапа
+ .desc = Он даже кажется съедобным.
-ent-CP14PlateCeramic = керамическая тарелка
- .desc = { ent-CP14BasePlate.desc }
+ent-CP14FoodPieAppleRaw = сырой яблочный пирог
+ .desc = Сырое тесто с яблоками - это то, что вам сейчас не стоит есть.
-ent-CP14PlateIron = железная тарелка
- .desc = { ent-CP14BasePlate.desc }
+ent-CP14FoodPieApple = яблочный пирог
+ .desc = Яблочный пирог манит вас своим ароматом.
+
+ent-CP14FoodPieMeatRaw = сырой мясной пирог
+ .desc = Сырое тесто с сырым мясом - не самое лучшее блюдо на данный момент.
+
+ent-CP14FoodPieMeat = мясной пирог
+ .desc = О, этот чудесный аромат хлеба и мяса, я бы съел его прямо сейчас.
+
+ent-CP14FoodPieFishRaw = сырой рыбный пирог
+ .desc = Сырое тесто с сырой рыбой..... Где они взяли рыбу?!
+
+ent-CP14FoodPieFish = рыбный пирог
+ .desc = Рыбный пирог - хорошая альтернатива мясным блюдам.
+
+ent-CP14FoodPiePumpkinRaw = сырой тыквенный пирог
+ .desc = Сырое тесто с тыквой может стать восхитительно ароматным блюдом.
+
+ent-CP14FoodPiePumpkin = тыквенный пирог
+ .desc = Вкусный тыквенный пирог с поджаристой корочкой снаружи.
+
+ent-CP14Plate = тарелка
+ .desc = Это ваша тарелка для вкусной еды!
+
+ent-CP14PlatePie = пирожковая тарелка
+ .desc = Форма для приготовления вкусного пирога.
ent-CP14FoodCabbage = капуста
.desc = Зеленый съедобный шарик
@@ -1020,6 +1121,23 @@ ent-CP14FoodCucumber = огурец
ent-CP14FoodTomatoesSlice = срез помидора
.desc = Тонкий ломтик красного помидора. Их уже не так приятно бросать в людей, как целые помидоры.
+ent-CP14FoodApple = яблоко
+ .desc = Фрукт для любителей быстро перекусить.
+
+ent-CP14FoodAppleSlice = яблочная долька
+ .desc = Небольшие кусочки, чтобы съесть за один раз.
+
+ent-CP14SmokingPipe = курительная трубка
+ .desc = Удобная и практичная курительная трубка, последняя мода в Империи.
+
+ent-CP14SmokingPipeFilledTobacco = { ent-CP14SmokingPipe }
+ .desc = { ent-CP14SmokingPipe.desc }
+ .suffix = Табак
+
+ent-CP14SmokingPipeFilledSage = { ent-CP14SmokingPipe }
+ .desc = { ent-CP14SmokingPipe.desc }
+ .suffix = Шалфей
+
ent-CP14CopperCoin = медная монета
.desc = Монета самого мелкого номинала. Медь.
.suffix = 10 монет
@@ -1107,9 +1225,6 @@ ent-CP14ChromiumSlime = хромиевая слизь
ent-CP14WildSage = корень дикого шалфея
.desc = Корень повсеместно распространенного лекарственного растения, неплохо заживляющего физические повреждения и вызывающего откашливание.
-ent-CP14QuartzShard = грубый кварц
- .desc = природный кристалл, являющийся естественным накопителем магической энергии. Его цвет отражает качество кристалла - чем выше спектр излучения, тем выше уровень утечки энергии.
-
ent-CP14LumiMushroom = люмигриб
.desc = Слабо светящийся гриб. Часто используется алхимиками как средство для концентрации растворов.
@@ -1174,6 +1289,10 @@ ent-CP14KeyBlacksmith = { ent-CP14BaseKey }
.desc = { ent-CP14BaseKey.desc }
.suffix = Кузнец 1
+ent-CP14KeyBlacksmith2 = { ent-CP14BaseKey }
+ .desc = { ent-CP14BaseKey.desc }
+ .suffix = Кузнец 2
+
ent-CP14KeyGuardEntrance = { ent-CP14BaseKey }
.desc = { ent-CP14BaseKey.desc }
.suffix = Стража, вход
@@ -1190,6 +1309,14 @@ ent-CP14KeyGuardWeaponStorage = { ent-CP14BaseKey }
.desc = { ent-CP14BaseKey.desc }
.suffix = Хранилище оружия
+ent-CP14KeyGuildmaster = { ent-CP14BaseKey }
+ .desc = { ent-CP14BaseKey.desc }
+ .suffix = Гильдмастер
+
+ent-CP14KeyDemiplaneCrystal = { ent-CP14BaseKey }
+ .desc = { ent-CP14BaseKey.desc }
+ .suffix = Кристалл связи с демипланами
+
ent-CP14BaseKeyRing = кольцо для ключей
.desc = Позволяет комфортно носить большое количество ключей в одном месте.
.suffix = Пустое
@@ -1204,7 +1331,7 @@ ent-CP14KeyRingBlacksmith = { ent-CP14BaseKeyRing }
ent-CP14KeyRingPersonalHouse = { ent-CP14BaseKeyRing }
.desc = { ent-CP14BaseKeyRing.desc }
- .suffix = Personal House
+ .suffix = Личный дом
ent-CP14KeyRingAlchemist = { ent-CP14BaseKeyRing }
.desc = { ent-CP14BaseKeyRing.desc }
@@ -1226,6 +1353,10 @@ ent-CP14KeyRingGuardCommander = { ent-CP14BaseKeyRing }
.desc = { ent-CP14BaseKeyRing.desc }
.suffix = Командир стражи
+ent-CP14KeyRingGuildmaster = { ent-CP14BaseKeyRing }
+ .desc = { ent-CP14BaseKeyRing.desc }
+ .suffix = Гильдмастер
+
ent-CP14KeyPersonalHouseAbstract = { ent-CP14BaseKey }
.desc = { ent-CP14BaseKey.desc }
.suffix = Личный дом, абстрактный
@@ -1273,6 +1404,30 @@ ent-CP14KeyPersonalHouse10 = { ent-CP14BaseKey }
.desc = { ent-CP14BaseKey.desc }
.suffix = Личный дом 10
+ent-CP14KeyPersonalHouse11 = { ent-CP14BaseKey }
+ .desc = { ent-CP14BaseKey.desc }
+ .suffix = Личный дом 11
+
+ent-CP14KeyPersonalHouse12 = { ent-CP14BaseKey }
+ .desc = { ent-CP14BaseKey.desc }
+ .suffix = Личный дом 12
+
+ent-CP14KeyPersonalHouse13 = { ent-CP14BaseKey }
+ .desc = { ent-CP14BaseKey.desc }
+ .suffix = Личный дом 13
+
+ent-CP14KeyPersonalHouse14 = { ent-CP14BaseKey }
+ .desc = { ent-CP14BaseKey.desc }
+ .suffix = Личный дом 14
+
+ent-CP14KeyPersonalHouse15 = { ent-CP14BaseKey }
+ .desc = { ent-CP14BaseKey.desc }
+ .suffix = Личный дом 15
+
+ent-CP14KeyPersonalHouse16 = { ent-CP14BaseKey }
+ .desc = { ent-CP14BaseKey.desc }
+ .suffix = Личный дом 16
+
ent-CP14KeyTavernHall = { ent-CP14BaseKey }
.desc = { ent-CP14BaseKey.desc }
.suffix = Вход в таверну
@@ -1390,17 +1545,61 @@ ent-CP14DyePurple = фиолетовый краситель
ent-CP14DyeBlack = черный краситель
.desc = { ent-CP14BaseDye.desc }
-ent-CP14OreCopper = медная руда
- .desc = Кусочек бледной, тяжелой меди.
+ent-CP14OreCopper1 = медная руда
+ .desc = Кусок бледной, тяжелой меди.
-ent-CP14OreIron = железная руда
- .desc = Кусочек холодного, тяжелого железа.
+ent-CP14OreCopper5 = { ent-CP14OreCopper1 }
+ .desc = { ent-CP14OreCopper1.desc }
+ .suffix = 5
-ent-CP14OreGold = золотая руда
+ent-CP14OreCopper10 = { ent-CP14OreCopper1 }
+ .desc = { ent-CP14OreCopper1.desc }
+ .suffix = 10
+
+ent-CP14OreIron1 = железная руда
+ .desc = Кусок холодного, тяжелого железа.
+
+ent-CP14OreIron5 = { ent-CP14OreIron1 }
+ .desc = { ent-CP14OreIron1.desc }
+ .suffix = 5
+
+ent-CP14OreIron10 = { ent-CP14OreIron1 }
+ .desc = { ent-CP14OreIron1.desc }
+ .suffix = 10
+
+ent-CP14OreGold1 = золотая руда
.desc = Кусочек мягкого, чистого золота.
-ent-CP14OreMithril = мифриловая руда
- .desc = Кусочек зачарованного, чистого митрила.
+ent-CP14OreGold5 = { ent-CP14OreGold1 }
+ .desc = { ent-CP14OreGold1.desc }
+ .suffix = 5
+
+ent-CP14OreGold10 = { ent-CP14OreGold1 }
+ .desc = { ent-CP14OreGold1.desc }
+ .suffix = 10
+
+ent-CP14OreMithril1 = мифриловая руда
+ .desc = Кусочек зачарованного мифрила
+
+ent-CP14OreMithril5 = { ent-CP14OreMithril1 }
+ .desc = { ent-CP14OreMithril1.desc }
+ .suffix = 5
+
+ent-CP14OreMithril10 = { ent-CP14OreMithril1 }
+ .desc = { ent-CP14OreMithril1.desc }
+ .suffix = 10
+
+ent-CP14ScrapCopper = медный хлам
+ .desc = Кривые куски меди. Бесполезны. Только для того, чтобы быть переплавленным.
+
+ent-CP14ScrapIron = железный хлам
+ .desc = Кривые куски железа. Бесполезны. Только для того, чтобы быть переплавленным.
+
+ent-CP14ScrapGold = золотой хлам
+ .desc = Кривые куски золота. Бесполезны. Только для того, чтобы быть переплавленным.
+
+ent-CP14ScrapMithril = мифриловый хлам
+ .desc = Кривые куски мифрила. Бесполезны. Только для того, чтобы быть переплавленным.
ent-CP14DirtBlock1 = блок земли
.desc = Блок великолепной плодородной почвы.
@@ -1427,6 +1626,10 @@ ent-CP14WoodenPlanks10 = { ent-CP14WoodenPlanks1 }
.desc = { ent-CP14WoodenPlanks1.desc }
.suffix = 10
+ent-CP14WoodenPlanks20 = { ent-CP14WoodenPlanks1 }
+ .desc = { ent-CP14WoodenPlanks1.desc }
+ .suffix = 20
+
ent-CP14LucensWoodLog = люценовые бревна
.desc = { ent-CP14WoodLog.desc }
@@ -1438,21 +1641,29 @@ ent-CP14LucensWoodenPlanks10 = { ent-CP14LucensWoodenPlanks1 }
.desc = { ent-CP14LucensWoodenPlanks1.desc }
.suffix = 10
+ent-CP14LucensWoodenPlanks20 = { ent-CP14LucensWoodenPlanks1 }
+ .desc = { ent-CP14LucensWoodenPlanks1.desc }
+ .suffix = 20
+
ent-CP14Nail1 = гвозди
.desc = Основной столярный инструмент, позволяющий делать с деревом невообразимые вещи.
.suffix = 1
-ent-CP14Nail10 = { ent-CP14Nail1 }
+ent-CP14Nail20 = { ent-CP14Nail1 }
.desc = { ent-CP14Nail1.desc }
- .suffix = 10
+ .suffix = 20
+
+ent-CP14Nail50 = { ent-CP14Nail1 }
+ .desc = { ent-CP14Nail1.desc }
+ .suffix = 50
ent-CP14FloraMaterial1 = растительный материал
.desc = Органический материал, используемый в лечебных или строительных целях.
.suffix = 1
-ent-CP14FloraMaterial2 = { ent-CP14FloraMaterial1 }
+ent-CP14FloraMaterial10 = { ent-CP14FloraMaterial1 }
.desc = { ent-CP14FloraMaterial1.desc }
- .suffix = 2
+ .suffix = 10
ent-CP14String = нитки
.desc = Тонкая нить. Материал для починки одежды или пошива новой.
@@ -1551,7 +1762,7 @@ ent-CP14Crayon = мелок
ent-CP14CrayonWhite = белый мелок
.desc = { ent-CP14Crayon.desc }
-ent-CP14CrayonRainbow = магический радуждный мелок
+ent-CP14CrayonRainbow = магический радужный мелок
.desc = { ent-CP14Crayon.desc }
ent-CP14CrayonBlack = черный мелок
@@ -1647,6 +1858,21 @@ ent-CP14ModularBladeCopperDagger = медное лезвие кинжала
ent-CP14ModularBladeMithrilDagger = мифриловое лезвие кинжала
.desc = { ent-CP14ModularBladeDaggerBase.desc }
+ent-CP14ModularBladeHammerBase = None
+ .desc = Молот без рукояти. Кузнец может использовать его как запасную часть для создания инструмента.
+
+ent-CP14ModularBladeIronHammer = железный наболдашник молота
+ .desc = { ent-CP14ModularBladeHammerBase.desc }
+
+ent-CP14ModularBladeGoldHammer = золотой наболдашник молота
+ .desc = { ent-CP14ModularBladeHammerBase.desc }
+
+ent-CP14ModularBladeCopperHammer = медный наболдашник молота
+ .desc = { ent-CP14ModularBladeHammerBase.desc }
+
+ent-CP14ModularBladeMithrilHammer = мифриловый наболдашник молота
+ .desc = { ent-CP14ModularBladeHammerBase.desc }
+
ent-CP14ModularBladeMaceBase = None
.desc = Булава-шар без рукояти. Кузнец может использовать его как запасную часть для создания оружия.
@@ -1853,6 +2079,12 @@ ent-CP14VialSmallManaPotion = { ent-CP14VialSmall }
.desc = { ent-CP14VialSmall.desc }
.suffix = Зелье маны 50%
+ent-CP14GroundTobacco = перемолотый табак
+ .desc = Измельченные и высушенные листья табака, некоторые из них напоминают карри.
+
+ent-CP14GroundSage = перемолотый шалфей
+ .desc = Молотый и сушеный корень шалфея, как выяснилось, является отличным заменителем табака.
+
ent-CP14SeedWheat = семена пшеницы
.desc = Маленькие семена пшеницы. Что вы будете с ними делать? Размолоть в муку или посадить снова?
@@ -1927,7 +2159,7 @@ ent-CP14CrystalLampOrangeEmpty = оранжевая кристалльная л
.desc = { ent-CP14CrystalLamp.desc }
ent-CP14Lighter = зажигалка
- .desc = Позволяет поджигать вещи. Абсолютно, на 100% не из майнкрафта.
+ .desc = Поджигает вещи
ent-CP14Rope = веревка
.desc = Многофункциональная веревка. Ей можно связать что-нить. Или кого-нибудь.
@@ -1943,6 +2175,7 @@ ent-CP14Torch = факел
ent-CP14TorchIgnited = { ent-CP14Torch }
.desc = { ent-CP14Torch.desc }
+ .suffix = Подожженный
ent-CP14WallpaperBank = обои "честность банкира"
.desc = { ent-CP14BaseWallpaper.desc }
@@ -1980,6 +2213,9 @@ ent-CP14ModularIronAxe = железный топор
ent-CP14ModularIronDagger = железный кинжал
.desc = Маленький, многофункциональный, острый клинок. Им можно резать мясо или бросать в гоблинов.
+ent-CP14ModularIronHammer = железный молоток
+ .desc = Небольшой молоток. Хорошо подходит для плотницких работ, а также для раскалывания черепов.
+
ent-CP14ModularIronMace = железная булава
.desc = Тяжелый кусок металла на длинной палке. Что может быть проще этого?
@@ -2007,20 +2243,18 @@ ent-CP14ModularGuardHalberd = алебарда стражника
ent-CP14ModularSkeletonHalberd = костяная алебарда
.desc = Ужасное оружие из костей
+ent-CP14BowCombat = боевой лук
+ .desc = Стандартный боевой
+
ent-CP14BaseLightCrossbow = легкий арбалет
.desc = Небольшой, компактный арбалет, который удобно держать одной рукой. Не слишком меткий с обратной стороны.
+ent-CP14Arrow = стрела
+ .desc = Деревянный стержень с железным наконечником и оперением. Просто и опасно.
+
ent-CP14Crossbolt = арбалетный болт
.desc = Стержень с заостренным концом. Без оперения, это вам не лук.
-ent-CP14RitualEnd = окончание ритуала
-
-ent-CP14_NeutralCluster_Root = Te-Se-Ra
- .desc = Идеальная энергетическая позиция для начала любого ритуала.
-
-ent-CP14_NeutralCluster_00 = Li-Ra
- .desc = { ent-CP14_NeutralCluster_Base.desc }
-
ent-CP14Chasm = бездна
.desc = И вы не видите ее дна...
@@ -2048,80 +2282,28 @@ ent-CP14WallmountCrystalDiamonds = { ent-CP14WallmountCrystalBase }
.desc = { ent-CP14WallmountCrystalBase.desc }
.suffix = Белый
-ent-CP14CrystalBase = сверкающий кварц
- .desc = Биолюминесцентные кристаллы кварца, которые могут принимать любой цвет, - очень удобный источник света в глубоких пещерах. К сожалению, светящиеся свойства очень трудно сохранить.
+ent-CP14Lighthouse = маяк
+ .desc = Свет во тьме.
-ent-CP14CrystalRubiesSmall = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Красный, Малый
+ent-CP14DemiplaneLinkCrystal = кристалл связи с демипланами
+ .desc = Позволяет открывать порталы в демипланы, пока заполнен энергией. Вызывает прорывы монстров из демипланов в город. Когда он разряжается, игра заканчивается.
+ .suffix = ОДИН НА КАРТУ
-ent-CP14CrystalRubiesMedium = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Красный, Средний
+ent-CP14TravelingShop = городская торговая информационная доска
+ .desc = Позволяет отслеживать, что продается и покупается в городе прямо сейчас.
-ent-CP14CrystalRubiesBig = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Красный, Большой
+ent-CP14DPSMeter = DPS Meter
+ .desc = Считает средний урон в секунду. Если вы перестаете его бить - показывает результат.
+ .suffix = Debug, DO NOT MAP
-ent-CP14CrystalTopazesSmall = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Жёлтый, Малый
+ent-CP14DemiplanRiftCore = ядро разрыва демиплана
+ .desc = Тонкая связь между реальным миром и демипланом, куда отправились искатели приключений. Рано или поздно они вернутся оттуда.
-ent-CP14CrystalTopazesMedium = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Жёлтый, Средний
+ent-CP14DemiplaneTimedRadiusPassway = пульсирующий разлом демиплана
+ .desc = Этот разлом набирает силу, и через секунду все ближайшие существа окажутся в ловушке демиплана!
-ent-CP14CrystalTopazesBig = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Жёлтый, Большой
-
-ent-CP14CrystalEmeraldsSmall = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Зеленый, Малый
-
-ent-CP14CrystalEmeraldsMedium = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Зеленый, Средний
-
-ent-CP14CrystalEmeraldsBig = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Зеленый, Большой
-
-ent-CP14CrystalSapphiresSmall = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Голубой, Малый
-
-ent-CP14CrystalSapphiresMedium = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Голубой, Средний
-
-ent-CP14CrystalSapphiresBig = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Голубой, Большой
-
-ent-CP14CrystalAmethystsSmall = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Фиолетовый, Малый
-
-ent-CP14CrystalAmethystsMedium = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Фиолетовый, Средний
-
-ent-CP14CrystalAmethystsBig = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Фиолетовый, Большой
-
-ent-CP14CrystalDiamondsSmall = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Белый, Малый
-
-ent-CP14CrystalDiamondsMedium = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Белый, Средний
-
-ent-CP14CrystalDiamondsBig = { ent-CP14CrystalBase }
- .desc = { ent-CP14CrystalBase.desc }
- .suffix = Белый, Большой
+ent-CP14DemiplanePassway = разлом демиплана
+ .desc = Промежуток в пространстве, позволяющий путешествовать между мирами и демипланами.
ent-CP14LaddersDownBase = лестница вниз
.desc = Темные глубины подземного мира зовут вас.
@@ -2171,29 +2353,6 @@ ent-CP14LaddersUpMarbleAutoLink = { ent-CP14LaddersUpMarble }
.desc = { ent-CP14LaddersUpMarble.desc }
.suffix = Мрамор
-ent-CP14Lighthouse = маяк
- .desc = Свет во тьме.
-
-ent-CP14DemiplaneLinkCrystal = кристалл связи с демипланами
- .desc = Позволяет открывать порталы в демипланы, пока заполнен энергией. Вызывает прорывы монстров из демипланов в город. Когда он разряжается, игра заканчивается.
- .suffix = ОДИН НА КАРТУ
-
-ent-CP14TravelingShop = городская торговая информационная доска
- .desc = Позволяет отслеживать, что продается и покупается в городе прямо сейчас.
-
-ent-CP14DPSMeter = DPS Meter
- .desc = Считает средний урон в секунду. Если вы перестаете его бить - показывает результат.
- .suffix = Debug, DO NOT MAP
-
-ent-CP14DemiplanRiftCore = ядро разрыва демиплана
- .desc = Тонкая связь между реальным миром и демипланом, куда отправились искатели приключений. Рано или поздно они вернутся оттуда.
-
-ent-CP14DemiplaneTimedRadiusPassway = пульсирующий разлом демиплана
- .desc = Этот разлом набирает силу, и через секунду все ближайшие существа окажутся в ловушке демиплана!
-
-ent-CP14DemiplanePassway = разлом демиплана
- .desc = Промежуток в пространстве, позволяющий путешествовать между мирами и демипланами.
-
ent-CP14WallmountFlagAlchemist = гобелен алхимика
.desc = Гобелен с символом зелья, указывающий на то, что здесь обитают алхимики.
@@ -2290,8 +2449,14 @@ ent-CP14StatueAngelLimestone = { ent-CP14StatueAngel }
ent-CP14BaseTombstone = надгробие
.desc = Кусок камня, установленный в память о павших.
+ent-CP14IronDoorFrame = каркас железной двери
+ .desc = Незаконченная железная дверь.
+
+ent-CP14IronDoorFrameMirrored = { ent-CP14IronDoorFrame }
+ .desc = { ent-CP14IronDoorFrame.desc }
+
ent-CP14WoodenDoorFrame = каркас деревянной двери
- .desc = Незаконченная деревянная дверь
+ .desc = Незаконченная деревянная дверь.
ent-CP14WoodenDoorFrameMirrored = { ent-CP14WoodenDoorFrame }
.desc = { ent-CP14WoodenDoorFrame.desc }
@@ -2320,6 +2485,10 @@ ent-CP14WoodenDoorTavernAlchemy2 = { ent-CP14WoodenDoor }
.desc = { ent-CP14WoodenDoor.desc }
.suffix = Алхимия 2
+ent-CP14WoodenDoorTavernAlchemy3 = { ent-CP14WoodenDoor }
+ .desc = { ent-CP14WoodenDoor.desc }
+ .suffix = Алхимия 3
+
ent-CP14IronDoorBankStaff = { ent-CP14IronDoor }
.desc = { ent-CP14IronDoor.desc }
.suffix = Сотрудники банка
@@ -2348,6 +2517,10 @@ ent-CP14IronDoorBlacksmith2 = { ent-CP14IronDoor }
.desc = { ent-CP14IronDoor.desc }
.suffix = Кузница 2
+ent-CP14IronDoorBlacksmith3 = { ent-CP14IronDoor }
+ .desc = { ent-CP14IronDoor.desc }
+ .suffix = Кузница 3
+
ent-CP14IronDoorGuard = { ent-CP14IronDoor }
.desc = { ent-CP14IronDoor.desc }
.suffix = Стража
@@ -2368,6 +2541,18 @@ ent-CP14FenceIronGrilleGateGuard = { ent-CP14FenceIronGrilleGate }
.desc = { ent-CP14FenceIronGrilleGate.desc }
.suffix = Стража
+ent-CP14IronDoorGuardGuildmaster = { ent-CP14IronDoor }
+ .desc = { ent-CP14IronDoor.desc }
+ .suffix = Гильдмастер
+
+ent-CP14FenceIronGrilleGateGuildmaster = { ent-CP14FenceIronGrilleGate }
+ .desc = { ent-CP14FenceIronGrilleGate.desc }
+ .suffix = Гильдмастер
+
+ent-CP14FenceIronGrilleGateDemiplaneCrystal = { ent-CP14FenceIronGrilleGate }
+ .desc = { ent-CP14FenceIronGrilleGate.desc }
+ .suffix = Кристалл связи с демипланами
+
ent-CP14WoodenDoorPersonalHouse1 = { ent-CP14WoodenDoor }
.desc = { ent-CP14WoodenDoor.desc }
.suffix = Личный дом 1
@@ -2428,6 +2613,10 @@ ent-CP14WoodenDoorPersonalHouse15 = { ent-CP14WoodenDoor }
.desc = { ent-CP14WoodenDoor.desc }
.suffix = Личный дом 15
+ent-CP14WoodenDoorPersonalHouse16 = { ent-CP14WoodenDoor }
+ .desc = { ent-CP14WoodenDoor.desc }
+ .suffix = Личный дом 16
+
ent-CP14WoodenDoorTavernStaff = { ent-CP14WoodenDoor }
.desc = { ent-CP14WoodenDoor.desc }
.suffix = Персонал таверны
@@ -2543,6 +2732,57 @@ ent-CP14BaseLucensTree = Люцен
ent-CP14BaseLucensTreeLarge = большой Люцен
.desc = { ent-CP14BaseLucensTree.desc }
+ent-CP14CrystalBase = сверкающий кварц
+ .desc = Природные кристаллы кварца, способные впитывать магическую энергию окружающего мира.
+
+ent-CP14CrystalBigBase = { ent-CP14CrystalBase }
+ .desc = { ent-CP14CrystalBase.desc }
+
+ent-CP14CrystalMediumBase = { ent-CP14CrystalBase }
+ .desc = { ent-CP14CrystalBase.desc }
+
+ent-CP14CrystalSmallBase = { ent-CP14CrystalBase }
+ .desc = { ent-CP14CrystalBase.desc }
+
+ent-CP14CrystalSmall = { ent-CP14CrystalSmallBase }
+ .desc = { ent-CP14CrystalSmallBase.desc }
+ .suffix = Обычный, маленький
+
+ent-CP14CrystalMedium = { ent-CP14CrystalMediumBase }
+ .desc = { ent-CP14CrystalMediumBase.desc }
+ .suffix = Обычный, средний
+
+ent-CP14CrystalBig = { ent-CP14CrystalBigBase }
+ .desc = { ent-CP14CrystalBigBase.desc }
+ .suffix = Обычный, большой
+
+ent-CP14CrystalShardBase = осколок кварца
+ .desc = Природные кристаллы кварца, способные впитывать магическую энергию окружающего мира.
+
+ent-CP14CrystalShardWater = { ent-CP14CrystalShardBase }
+ .desc = { ent-CP14CrystalShardBase.desc }
+ .suffix = Вода
+
+ent-CP14CrystalShardHealing = { ent-CP14CrystalShardBase }
+ .desc = { ent-CP14CrystalShardBase.desc }
+ .suffix = Лечение
+
+ent-CP14CrystalShardFire = { ent-CP14CrystalShardBase }
+ .desc = { ent-CP14CrystalShardBase.desc }
+ .suffix = Огонь
+
+ent-CP14CrystalShardLight = { ent-CP14CrystalShardBase }
+ .desc = { ent-CP14CrystalShardBase.desc }
+ .suffix = Свет
+
+ent-CP14CrystalShardElectric = { ent-CP14CrystalShardBase }
+ .desc = { ent-CP14CrystalShardBase.desc }
+ .suffix = Электрический
+
+ent-CP14CrystalShardDarkness = { ent-CP14CrystalShardBase }
+ .desc = { ent-CP14CrystalShardBase.desc }
+ .suffix = Тьма
+
ent-CP14GatherableWildBase = { ent-CP14GatherableBase }
.desc = { ent-CP14GatherableBase.desc }
@@ -2579,9 +2819,6 @@ ent-CP14GatherableLumiMushroom = люмигрибы
.desc = Слабо светящийся гриб. Часто используется алхимиками как средство для концентрации растворов.
.suffix = Собираемый
-ent-CP14QuartzCrystal = кварц
- .desc = Кварц - важнейший минерал, способный взаимодействовать с магической энергией. Он очень востребован алхимиками для извлечения полезных свойств из жидкостей
-
ent-CP14GatherableBlueAmanita = лазурная аманита
.desc = Небесно-голубой цветок, известный своими лечебными и магическими свойствами.
.suffix = Собираемый
@@ -2707,10 +2944,10 @@ ent-CP14CraneBarrelSmallAleBottomless = { ent-CP14CraneBarrelSmall }
ent-CP14Bonfire = костёр
.desc = Груда бревен, сложенных вместе, и готовых вспыхнуть от малейшей искры.
-ent-C14IronCabinet = железный комод
+ent-CP14IronCabinet = железный комод
.desc = Железный шкаф. Прочный, запираемый. Вы можете хранить здесь свои ценности, не опасаясь, что какой-нибудь грабитель заберет все себе.
-ent-C14IronCabinetCargo = торговый ящик
+ent-CP14IronCabinetCargo = торговый ящик
.desc = Бронированное хранилище для хранения денег, предназначенных для торговли с городом. Городские работники будут выгружать сюда свои доходы или забирать их отсюда, когда вы захотите что-то купить.
ent-CP14ClosetBase = шкаф
@@ -2725,7 +2962,7 @@ ent-CP14CurtainsWhite = { ent-CP14BaseCurtains }
ent-CP14CurtainsWhiteOpened = { ent-CP14CurtainsWhite }
.desc = { ent-CP14CurtainsWhite.desc }
- .suffix = Белые, открытые
+ .suffix = Белые. Открытые
ent-CP14CurtainsBlue = { ent-CP14BaseCurtains }
.desc = { ent-CP14BaseCurtains.desc }
@@ -2733,7 +2970,7 @@ ent-CP14CurtainsBlue = { ent-CP14BaseCurtains }
ent-CP14CurtainsBlueOpened = { ent-CP14CurtainsBlue }
.desc = { ent-CP14CurtainsBlue.desc }
- .suffix = Синие, открытые
+ .suffix = Синие. Открытые
ent-CP14CurtainsRed = { ent-CP14BaseCurtains }
.desc = { ent-CP14BaseCurtains.desc }
@@ -2741,7 +2978,7 @@ ent-CP14CurtainsRed = { ent-CP14BaseCurtains }
ent-CP14CurtainsRedOpened = { ent-CP14CurtainsRed }
.desc = { ent-CP14CurtainsRed.desc }
- .suffix = Красные, открытые
+ .suffix = Красные. Открытые
ent-CP14Lamppost = фонарный столб
.desc = Фонарь, подвешенный на столбе.
@@ -2749,12 +2986,12 @@ ent-CP14Lamppost = фонарный столб
ent-CP14LamppostBlue = фонарный столб
.desc = Фонарь, подвешенный на столбе.
- .suffix = Вечногорящий, Синий
+ .suffix = Вечногорящий. Синий
ent-CP14WoodenPalletSell = деревянный поддон для продажи
.desc = { ent-CP14WoodenPallet.desc }
-ent-CP14WoodenPalletBuy = деревянный поддн для покупки
+ent-CP14WoodenPalletBuy = деревянный поддон для покупки
.desc = { ent-CP14WoodenPallet.desc }
ent-CP14TableWoodenFrame = каркас деревянного стола
@@ -2889,6 +3126,12 @@ ent-CP14WindowStoneBrick = окно в стене из каменного кир
ent-CP14WindowMarbleBrick = окно в стене из мраморного кирпича
.desc = Мраморная кирпичная стена со стеклянным окном в ней.
+ent-CP14WindowIceBlock = блок льда
+ .desc = Гладкий и прозрачный лед.
+
+ent-CP14AstralCorrosion = астральное заражение
+ .desc = Светящиеся трещины в реальности. Возможно, это нормально.
+
ent-CP14LoadoutDummyBundleAlchemy = набор алхимика
ent-CP14LoadoutDummyBundleBlacksmith = набор кузнеца
@@ -2906,11 +3149,20 @@ ent-CP14ClothingCloakBlacksmithArpon = фартук кузнеца
ent-CP14ClothingCloakMaidArpon = фартук горничной
.desc = Чистота, порядок и послушание - главные черты хорошей горничной.
-ent-CP14ClothingCloakCommandantJacket = куртка коменданта
- .desc = Белый и золотой цвета говорят о том, что вы обращаетесь к высшим силам.
+ent-CP14ClothingCloakCommandantJacket = плащ коменданта
+ .desc = Белый и золотой цвета говорят о том, что вы обращаетесь к высшей власти.
ent-CP14ClothingCloakCaptainJacket = куртка капитана
- .desc = Белый и золотой цвета говорят о том, что вы обращаетесь к высшим силам.
+ .desc = Белый и золотой цвета говорят о том, что вы обращаетесь к высшей власти.
+
+ent-CP14ClothingCloakGuildmasterCape = плащ гильдмастера
+ .desc = Зеленый и золотой цвета говорят о том, что вы обращаетесь к высшей власти.
+
+ent-CP14ClothingOuterClothingBankerWaistCoat = жилетка банкира
+ .desc = Стильная жилетка из дорогой кожи. Специальная униформа для банковских служащих, которая заставляет клиентов чувствовать себя попрошайками.
+
+ent-CP14MobIceSpectre = ледяной спектр
+ .desc = Непогребенная душа замерзших искателей приключений. Ее ярость против мира лишает ее разума.
ent-CP14MobMonsterMosquito = рой москитов-кровопийц
.desc = Кровожадный рой мелких комаров только и ждет мягкой плоти для кровавого пиршества.
@@ -2934,12 +3186,6 @@ ent-CP14CrystalLamp = кристалльная лампа
ent-CP14MagicHealingStaff = посох исцеления
.desc = Длинная, наполовину технологическая, наполовину магическая палка, предназначенная для преобразования магической энергии в целительные заклинания.
-ent-CP14BaseBattleHammer = боевой молот
- .desc = Большой тяжелый молот. Лучше не вставать у него на пути!
-
-ent-CP14BaseLightHammer = лёгкий молоток
- .desc = Небольшой молоток. Хорошо подходит для плотницких работ, а также для раскалывания черепов.
-
ent-CP14BaseShield = щит
.desc = Деревянный щит, способный выдержать несколько ударов.
@@ -2958,6 +3204,8 @@ ent-CP14BaseWrench = гаечный ключ
ent-CP14WallmountCrystalBase = сверкающий кварц
.desc = Биолюминесцентные кристаллы кварца, которые могут принимать любой цвет, - очень удобный источник света в глубоких пещерах. К сожалению, светящиеся свойства очень трудно сохранить.
+ent-CP14AstralHaze = астральная мгла
+
ent-CP14WallmountFlagBase = гобелен
.desc = Кусок ткани, прикрепленный к стене.
@@ -2987,6 +3235,9 @@ ent-CP14FenceIronGrilleStraight = { ent-CP14FenceIronGrilleBase }
.desc = { ent-CP14FenceIronGrilleBase.desc }
.suffix = Прямой
+ent-CP14FenceIronGrilleGateFrame = рама железных решетчатых ворот
+ .desc = Незаконченные железные решетчатые ворота.
+
ent-CP14FenceIronGrilleGate = железные решетчатые ворота
.desc = Тяжелые железные ворота в решетках. Выглядит серьезно.
@@ -3062,7 +3313,7 @@ ent-CP14Mannequin = манекен
.desc = Удобная подставка для одежды или доспехов.
ent-CP14WoodenPallet = деревянный поддон
- .desc = деревянная подставка для товаров
+ .desc = Деревянная подставка для товаров.
ent-CP14Target = мишень
.desc = Мишень для тренировки меткости.
@@ -3098,6 +3349,9 @@ ent-CP14RoofWooden = деревянная крыша
ent-CP14RoofStone = каменная крыша
.desc = { ent-CP14BaseRoof.desc }
+ent-CP14RoofRemover = roof remover debug
+ .desc = { ent-CP14BaseRoof.desc }
+
ent-CP14AlchemyNormalizer = нормализатор растворов
.desc = Алхимический прибор, который удаляет мелкий осадок из растворов и стабилизирует его для дальнейшей работы.
diff --git a/Resources/Locale/ru-RU/_CP14/demiplane/demiplane.ftl b/Resources/Locale/ru-RU/_CP14/demiplane/demiplane.ftl
index 58ad6f2b2d..eefb224b30 100644
--- a/Resources/Locale/ru-RU/_CP14/demiplane/demiplane.ftl
+++ b/Resources/Locale/ru-RU/_CP14/demiplane/demiplane.ftl
@@ -9,4 +9,6 @@ cp14-round-end-monolith-recharged = Связь с другими мирами в
cp14-round-end = Кристалл связи с демипланами окончательно разрядился. Связь с другими мирами оборвалась. "Интересная" часть этой истории окончена...
-cp14-demiplane-echoes = Эхо голосов
\ No newline at end of file
+cp14-demiplane-echoes = Эхо голосов
+
+cp14-demiplane-countdown = Демиплан начинает коллапсировать! У вас {$duration} минут, чтобы покинуть его!
\ No newline at end of file
diff --git a/Resources/Locale/ru-RU/_CP14/demiplane/locations.ftl b/Resources/Locale/ru-RU/_CP14/demiplane/locations.ftl
index 29be4d5846..0a75dad256 100644
--- a/Resources/Locale/ru-RU/_CP14/demiplane/locations.ftl
+++ b/Resources/Locale/ru-RU/_CP14/demiplane/locations.ftl
@@ -2,4 +2,5 @@ cp14-demiplane-location-cave = Темные пещеры
cp14-demiplane-location-cave-grass = Заросшие пещеры
cp14-demiplane-location-grassland-island = Зеленый остров
cp14-demiplane-location-ice-cave = Ледяные пещеры
-cp14-demiplane-location-snow-island = Заснеженный остров
\ No newline at end of file
+cp14-demiplane-location-snow-island = Заснеженный остров
+cp14-demiplane-location-leaf-maze = Травяной лабиринт
\ No newline at end of file
diff --git a/Resources/Locale/ru-RU/_CP14/demiplane/modifiers.ftl b/Resources/Locale/ru-RU/_CP14/demiplane/modifiers.ftl
index 70e2d4c52a..1cbd025436 100644
--- a/Resources/Locale/ru-RU/_CP14/demiplane/modifiers.ftl
+++ b/Resources/Locale/ru-RU/_CP14/demiplane/modifiers.ftl
@@ -12,9 +12,12 @@ cp14-modifier-explosive = взрывных мин
cp14-modifier-ruins = древних руин
cp14-modifier-xeno = ксеноморфов
cp14-modifier-zombie = толп нежити
+cp14-modifier-skeleton = разумные скелеты
cp14-modifier-dyno = доисторической фауны
cp14-modifier-mole = хищных кротов
cp14-modifier-rabbits = кроликов
cp14-modifier-boars = диких кабанов
cp14-modifier-chasm = бездонных пропастей
cp14-modifier-air-lily = воздушных лилий
+cp14-modifier-time-limit-10 = временного распада (10 минут)
+cp14-modifier-shadow-kudzu = распространяющейся тьмы
\ No newline at end of file
diff --git a/Resources/Locale/ru-RU/_CP14/events/events.ftl b/Resources/Locale/ru-RU/_CP14/events/events.ftl
index 483ad54fa1..fd9fbba4a7 100644
--- a/Resources/Locale/ru-RU/_CP14/events/events.ftl
+++ b/Resources/Locale/ru-RU/_CP14/events/events.ftl
@@ -1 +1,2 @@
-cp14-event-announcement-demiplane-outbreak = Воздух пронзает чувство опасности... Что-то из других миров вторгается в ваш городок.
\ No newline at end of file
+cp14-event-announcement-demiplane-outbreak = Воздух пронзает чувство опасности... Что-то из других миров вторгается в ваш городок.
+cp14-event-announcement-unstable-demiplane = Нарастает напряжение... где-то в городе открылся дикий демиплан. Закройте его, до того как из него вырвутся толпы монстров.
\ No newline at end of file
diff --git a/Resources/Locale/ru-RU/_CP14/job/department.ftl b/Resources/Locale/ru-RU/_CP14/job/department.ftl
index 594030e7de..d8f03718fe 100644
--- a/Resources/Locale/ru-RU/_CP14/job/department.ftl
+++ b/Resources/Locale/ru-RU/_CP14/job/department.ftl
@@ -4,7 +4,7 @@ department-CP14Mercenary-desc = Свободные люди, старающие
department-CP14Command = Мэрия
department-CP14Command-desc = Лица, ответственные за выполнение поставленной от империи задачи, и управляющие всем, что происходит в поселении.
-department-CP14Bank = Банк
+department-CP14Bank = Торговая гильдия
department-CP14Bank-desc = Лица, тесно связанные с экономикой и торговлей, работающие в банке.
department-CP14Guard = Стража
diff --git a/Resources/Locale/ru-RU/_CP14/job/job.ftl b/Resources/Locale/ru-RU/_CP14/job/job.ftl
index f17edc637d..28070a240d 100644
--- a/Resources/Locale/ru-RU/_CP14/job/job.ftl
+++ b/Resources/Locale/ru-RU/_CP14/job/job.ftl
@@ -6,25 +6,24 @@ cp14-job-desc-guard-commander = Самая опасная личность в о
cp14-job-name-guard = Стражник
cp14-job-desc-guard = Боевая единица империи, поклявшаяся защищать ее народ. Следите за безопасностью, и обороняйте других от возможных опасностей.
-# Bank
+# Trade guild
cp14-job-name-commandant = Комендант
cp14-job-desc-commandant = Контролируйте экономику поселения, торгуя с Империей. Заведуйте запасами и финансами, направляя ресурсы рабочим рукам.
-cp14-job-name-banker = Банкир
-cp14-job-desc-banker = Заключайте сделки, храните доверенные ценности, выдавайте вклады под проценты и занимайтесь любой другой экономической работой, которая обогатит ваш банк.
+cp14-job-name-merchant = Торговец
+cp14-job-desc-merchant = В ваших руках возможность покупать и продавать почти что угодно! Используйте ее, чтобы обогатить себя и вашу торговую гильдию.
# Mercenary
cp14-job-name-guildmaster = Гильдмастер
-cp14-job-desc-guildmaster = Обеспечивайте авантюристов и ремесленников работой, и следите чтобы они получали достаточно прибыли за это.
-
-cp14-job-name-apprentice = Подмастерье
-cp14-job-desc-apprentice = Мирный житель империи, только начинающий постигать тонкости различных наук. Выберите специализацию в экипировке, и постарайтесь помочь другим в их работе, в обмен на зарплату и бесценный опыт.
+cp14-job-desc-guildmaster = Оберегайте жизни ваших авантюристов, обеспечивайте их всем необходимым, и контролируйте чтобы они выполняли свою работу.
cp14-job-name-adventurer = Авантюрист
cp14-job-desc-adventurer = Охотник за острыми эмоциями, богатствами и славой, постоянно рискующий своей жизнью. Выполняйте самые опасные заказы, зарабатывая на жизнь добычей ресурсов или убийством монстров.
+# Artisans
+
cp14-job-name-alchemist = Алхимик
cp14-job-desc-alchemist = В своем роде ученый, исследующий природу веществ. Создавайте яды и лекарства, из многочисленных природных растений и ингредиентов, и зарабатывайте деньги, продавая их нуждающимся.
@@ -32,4 +31,7 @@ cp14-job-name-innkeeper = Трактирщик [Early WIP]
cp14-job-desc-innkeeper = В любом месте Силейты найдутся желающие выпить и отдохнуть. И вы можете заработать на этом желании! Найдите способ обеспечить людей хорошим отдыхом, едой и выпивкой.
cp14-job-name-blacksmith = Кузнец
-cp14-job-desc-blacksmith = Создавайте и улучшайте экипировку для всех нуждающихся! В ваших руках мощь металла и огня, и только вы знаете как аккуратно использовать их, чтобы создавать шедевры.
\ No newline at end of file
+cp14-job-desc-blacksmith = Создавайте и улучшайте экипировку для всех нуждающихся! В ваших руках мощь металла и огня, и только вы знаете как аккуратно использовать их, чтобы создавать шедевры.
+
+cp14-job-name-apprentice = Подмастерье
+cp14-job-desc-apprentice = Мирный житель империи, только начинающий постигать тонкости различных наук. Выберите специализацию в экипировке, и постарайтесь помочь другим в их работе, в обмен на зарплату и бесценный опыт.
\ No newline at end of file
diff --git a/Resources/Locale/ru-RU/_CP14/job/supervisors.ftl b/Resources/Locale/ru-RU/_CP14/job/supervisors.ftl
index 246abc8239..cfa72b5d8c 100644
--- a/Resources/Locale/ru-RU/_CP14/job/supervisors.ftl
+++ b/Resources/Locale/ru-RU/_CP14/job/supervisors.ftl
@@ -2,4 +2,5 @@ cp14-job-supervisors-empire = Империи и ее представителя
cp14-job-supervisors-command = всем представителям власти
cp14-job-supervisors-commandant = коменданту
-cp14-job-supervisors-guard-commander = командиру стражи
\ No newline at end of file
+cp14-job-supervisors-guard-commander = командиру стражи
+cp14-job-supervisors-guildmaster = гильдмастеру
\ No newline at end of file
diff --git a/Resources/Locale/ru-RU/_CP14/loadouts/loadout.ftl b/Resources/Locale/ru-RU/_CP14/loadouts/loadout.ftl
index 7289919e0a..7d32157e9c 100644
--- a/Resources/Locale/ru-RU/_CP14/loadouts/loadout.ftl
+++ b/Resources/Locale/ru-RU/_CP14/loadouts/loadout.ftl
@@ -1,5 +1,6 @@
# General
+cp14-loadout-general-outer = Верхняя одежда
cp14-loadout-general-cloak = Накидка
cp14-loadout-general-eyes = Очки
cp14-loadout-general-gloves = Перчатки
@@ -39,18 +40,20 @@ cp14-loadout-guard-pants = Штаны стражи
cp14-loadout-guard-shirt = Рубашка стражи
cp14-loadout-guard-spells = Заклинания стражи
-# Bank
+# Trade guild
-cp14-loadout-bank-head = Шляпа работника банка
cp14-loadout-commandant-head = Шляпа коменданта
cp14-loadout-commandant-cloak = Накидка коменданта
-cp14-loadout-banker-outer = Жилет банкира
-cp14-loadout-bank-shirt = Рубашка работника банка
-cp14-loadout-bank-pants = Штаны работника банка
-cp14-loadout-bank-shoes = Ботинки работника банка
+
+cp14-loadout-merchant-head = Шляпа торговца
+cp14-loadout-merchant-outer = Жилет торговца
+cp14-loadout-merchant-shirt = Рубашка торговца
+cp14-loadout-merchant-pants = Штаны торговца
+cp14-loadout-merchant-shoes = Ботинки торговца
# Guildmaster
+cp14-loadout-guildmaster-outer = Верхняя одежда гильдмастера
cp14-loadout-guildmaster-cloak = Накидка гильдмастера
cp14-loadout-guildmaster-shirt = Рубашка гильдмастера
cp14-loadout-guildmaster-pants = Штаны гильдмастера
diff --git a/Resources/Locale/ru-RU/_CP14/machineLinking/transmitter_ports.ftl b/Resources/Locale/ru-RU/_CP14/machineLinking/transmitter_ports.ftl
new file mode 100644
index 0000000000..538848eda4
--- /dev/null
+++ b/Resources/Locale/ru-RU/_CP14/machineLinking/transmitter_ports.ftl
@@ -0,0 +1,5 @@
+cp14-signal-port-name-pressed = Нажато
+cp14-signal-port-description-pressed = Этот узел активируется, когда на устройство нажимают.
+
+cp14-signal-port-name-released = Отпущено
+cp14-signal-port-description-released = Этот узел активируется, когда устройство отпускают.
\ No newline at end of file
diff --git a/Resources/Locale/ru-RU/_CP14/magicSpells/speech.ftl b/Resources/Locale/ru-RU/_CP14/magicSpells/speech.ftl
index 8b7586c54c..a2bcae931b 100644
--- a/Resources/Locale/ru-RU/_CP14/magicSpells/speech.ftl
+++ b/Resources/Locale/ru-RU/_CP14/magicSpells/speech.ftl
@@ -1 +1,2 @@
+cp14-kick-emote-start = заносит ногу...
cp14-kick-emote = совершает сильный пинок
\ No newline at end of file
diff --git a/Resources/Locale/ru-RU/_CP14/modularCraft/slots.ftl b/Resources/Locale/ru-RU/_CP14/modularCraft/slots.ftl
index 29b1d69413..8fe7a523ce 100644
--- a/Resources/Locale/ru-RU/_CP14/modularCraft/slots.ftl
+++ b/Resources/Locale/ru-RU/_CP14/modularCraft/slots.ftl
@@ -1,2 +1,3 @@
cp14-modular-slot-blade = лезвие
-cp14-modular-slot-garde = гарда
\ No newline at end of file
+cp14-modular-slot-garde = гарда
+cp14-modular-slot-blade-inlay = инкрустация лезвия
\ No newline at end of file
diff --git a/Resources/Locale/ru-RU/_CP14/passport/passport.ftl b/Resources/Locale/ru-RU/_CP14/passport/passport.ftl
new file mode 100644
index 0000000000..e3c712455e
--- /dev/null
+++ b/Resources/Locale/ru-RU/_CP14/passport/passport.ftl
@@ -0,0 +1,6 @@
+cp14-passport-name = Имя: {$name}
+cp14-passport-species = Раса: {$species}
+cp14-passport-birth-date = Дата рождения: {$birthday}
+cp14-passport-job = Профессия: {$job}
+
+cp14-passport-stamp = Паспорт утвержден
\ No newline at end of file
diff --git a/Resources/Locale/ru-RU/_CP14/recipe/title.ftl b/Resources/Locale/ru-RU/_CP14/recipe/title.ftl
new file mode 100644
index 0000000000..cb97c4fa1b
--- /dev/null
+++ b/Resources/Locale/ru-RU/_CP14/recipe/title.ftl
@@ -0,0 +1 @@
+cp14-recipe-title-meat = разные кусочки сырого мяса
diff --git a/Resources/Locale/ru-RU/_CP14/speech/speech-chatsan.ftl b/Resources/Locale/ru-RU/_CP14/speech/speech-chatsan.ftl
index 915492e5ab..47f0add1f5 100644
--- a/Resources/Locale/ru-RU/_CP14/speech/speech-chatsan.ftl
+++ b/Resources/Locale/ru-RU/_CP14/speech/speech-chatsan.ftl
@@ -170,19 +170,3 @@ cp14-chatsan-word-85 = лкм
cp14-chatsan-replacement-85 = левая рука
cp14-chatsan-word-86 = пкм
cp14-chatsan-replacement-86 = правая рука
-cp14-chatsan-word-87 = мм
-cp14-chatsan-replacement-87 = меди
-cp14-chatsan-word-88 = см
-cp14-chatsan-replacement-88 = серебра
-cp14-chatsan-word-89 = зм
-cp14-chatsan-replacement-89 = золота
-cp14-chatsan-word-90 = пм
-cp14-chatsan-replacement-90 = платины
-cp14-chatsan-word-91 = cp
-cp14-chatsan-replacement-91 = меди
-cp14-chatsan-word-92 = sp
-cp14-chatsan-replacement-92 = серебра
-cp14-chatsan-word-93 = gp
-cp14-chatsan-replacement-93 = золота
-cp14-chatsan-word-94 = pp
-cp14-chatsan-replacement-94 = платины
diff --git a/Resources/Locale/ru-RU/_CP14/travelingStoreship/positions_sell.ftl b/Resources/Locale/ru-RU/_CP14/travelingStoreship/positions_sell.ftl
index 3a1cd17d11..547956d634 100644
--- a/Resources/Locale/ru-RU/_CP14/travelingStoreship/positions_sell.ftl
+++ b/Resources/Locale/ru-RU/_CP14/travelingStoreship/positions_sell.ftl
@@ -1,16 +1,37 @@
cp14-store-sell-hint = Чтобы продать {$name}, погрузите необходимый товар на продающие поддоны. Наши люди в городе разберутся что к чему, заберут товар и оставят деньги в торговом ящике на корабле.
-cp14-store-sell-goldbar-name = 10 золотых слитков
-cp14-store-sell-goldbar-desc = Добыча и обработка золотой руды активно спонсируется империей, использующей золото как валюту и материал для ювелирных украшений.
-
-cp14-store-sell-ironbar-name = 10 железных слитков
-cp14-store-sell-ironbar-desc = Железо - незаменимый материал для производства... почти всего, что имеет хоть какую либо долговечность в этом мире. И конечно же, Империя не откажется от дополнительной партии.
-
-cp14-store-sell-copperbar-name = 10 медных слитков
-cp14-store-sell-copperbar-desc = Хоть медь и используется в основном как материал для монет но и в разных сплавах он часто нравится кузнецам.
-
cp14-store-sell-wood-name = 30 деревянных досок
cp14-store-sell-wood-desc = Вы правда думаете что хоть кому то нужны доски с далекого острова? Что ж вы правы, надеемся у вашего поселения есть чем греться зимой.
cp14-store-sell-glass-name = 10 стекла
-cp14-store-sell-glass-desc = Изящный материал, который ценится в Империи за свою универсальность. Окна дворцов, линзы мастеров и даже зеркала магов — все это требует стекла. Ваши труды точно найдут применение!
\ No newline at end of file
+cp14-store-sell-glass-desc = Изящный материал, который ценится в Империи за свою универсальность. Окна дворцов, линзы мастеров и даже зеркала магов — все это требует стекла. Ваши труды точно найдут применение!
+
+cp14-store-sell-alchemical-herbals-name = 10 алхимических растений
+cp14-store-sell-alchemical-herbals-desc = TODO
+
+# Metalls
+
+cp14-store-sell-copperbar-name = 10 медных слитков
+cp14-store-sell-copperbar-desc = Хоть медь и используется в основном как материал для монет но и в разных сплавах он часто нравится кузнецам.
+
+cp14-store-sell-ironbar-name = 10 железных слитков
+cp14-store-sell-ironbar-desc = Железо - незаменимый материал для производства... почти всего, что имеет хоть какую либо долговечность в этом мире. И конечно же, Империя не откажется от дополнительной партии.
+
+cp14-store-sell-goldbar-name = 10 золотых слитков
+cp14-store-sell-goldbar-desc = Добыча и обработка золотой руды активно спонсируется империей, использующей золото как валюту и материал для ювелирных украшений.
+
+cp14-store-sell-mithrilbar-name = 10 мифриловых слитков
+cp14-store-sell-mithrilbar-desc = TODO
+
+
+cp14-store-sell-copperore-name = 10 медной руды
+cp14-store-sell-copperore-desc = TODO
+
+cp14-store-sell-ironore-name = 10 железной руды
+cp14-store-sell-ironore-desc = TODO
+
+cp14-store-sell-goldore-name = 10 золотой руды
+cp14-store-sell-goldore-desc = TODO
+
+cp14-store-sell-mithrilore-name = 10 мифриловой руды
+cp14-store-sell-mithrilore-desc = TODO
\ No newline at end of file
diff --git a/Resources/Maps/Nonstations/nukieplanet.yml b/Resources/Maps/Nonstations/nukieplanet.yml
index 6c0a209dec..5d6cbb6930 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,46 +10555,7 @@ 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
- entities:
- - uid: 261
- components:
- - type: Transform
- pos: 7.7892694,4.987089
- parent: 104
- - uid: 275
- components:
- - type: Transform
- pos: -3.80645,4.798395
- parent: 104
- - uid: 281
- components:
- - type: Transform
- pos: -1.0279694,6.890992
- parent: 104
- - uid: 1619
- components:
- - type: Transform
- pos: 16.10984,7.3249645
- parent: 104
- - uid: 1622
- components:
- - type: Transform
- pos: 7.42463,16.597832
- parent: 104
- - uid: 1626
- components:
- - type: Transform
- pos: 11.605486,16.944057
- parent: 104
-- proto: FloraTreeConifer02
+- proto: FloraTreeConifer
entities:
- uid: 219
components:
@@ -10579,6 +10567,11 @@ entities:
- type: Transform
pos: 7.7267694,7.536619
parent: 104
+ - uid: 261
+ components:
+ - type: Transform
+ pos: 7.7892694,4.987089
+ parent: 104
- uid: 267
components:
- type: Transform
@@ -10589,21 +10582,46 @@ entities:
- type: Transform
pos: -0.17814255,7.5043383
parent: 104
+ - uid: 271
+ components:
+ - type: Transform
+ pos: -1.1000175,4.26659
+ parent: 104
- uid: 273
components:
- type: Transform
pos: -2.591959,2.9214401
parent: 104
+ - uid: 275
+ components:
+ - type: Transform
+ pos: -3.80645,4.798395
+ parent: 104
- uid: 280
components:
- type: Transform
pos: 1.5111885,4.4898434
parent: 104
+ - uid: 281
+ components:
+ - type: Transform
+ pos: -1.0279694,6.890992
+ parent: 104
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: 0.74747276,19.424063
+ parent: 104
- uid: 1618
components:
- type: Transform
pos: 11.32859,10.093473
parent: 104
+ - uid: 1619
+ components:
+ - type: Transform
+ pos: 16.10984,7.3249645
+ parent: 104
- uid: 1620
components:
- type: Transform
@@ -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,44 +10652,33 @@ 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: 265
+ components:
+ - type: Transform
+ pos: 0.24603653,5.7335367
+ parent: 104
+ - uid: 269
+ components:
+ - type: Transform
+ pos: 0.30623245,3.9068413
+ parent: 104
- uid: 270
components:
- type: Transform
pos: -2.3114033,5.0917635
parent: 104
- - uid: 1630
- components:
- - type: Transform
- pos: 4.558771,16.696045
- parent: 104
-- proto: FloraTreeSnow03
- entities:
- uid: 274
components:
- type: Transform
pos: -3.3325882,6.8936405
parent: 104
- - uid: 1629
- components:
- - type: Transform
- pos: 9.924105,15.382175
- parent: 104
-- proto: FloraTreeSnow04
- entities:
- - uid: 265
- components:
- - type: Transform
- pos: 0.24603653,5.7335367
- parent: 104
- uid: 276
components:
- type: Transform
@@ -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 d17b925bf2..cfddf10b8d 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: 4.4739795,-2.5042162
+ 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: 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/djstation.yml b/Resources/Maps/Ruins/djstation.yml
index 8a81ede4fb..60214c1c53 100644
--- a/Resources/Maps/Ruins/djstation.yml
+++ b/Resources/Maps/Ruins/djstation.yml
@@ -1146,7 +1146,7 @@ entities:
- type: Transform
pos: -4.5,-2.5
parent: 2
-- proto: IntercomAll
+- proto: IntercomFreelance
entities:
- uid: 316
components:
diff --git a/Resources/Maps/Ruins/ruined_prison_ship.yml b/Resources/Maps/Ruins/ruined_prison_ship.yml
new file mode 100644
index 0000000000..ab92184029
--- /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 28e028b784..7a187cb334 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,13 +650,6 @@ entities:
- type: Transform
pos: -1.6170431,-2.424334
parent: 222
-- proto: ClothingBackpackMerc
- entities:
- - uid: 20
- components:
- - type: Transform
- pos: 0.5821538,-4.4794393
- parent: 222
- proto: ClothingBeltUtility
entities:
- uid: 196
@@ -664,40 +657,41 @@ entities:
- type: Transform
pos: -6.516491,-5.5462
parent: 222
-- proto: ClothingShoesBootsCombatFilled
+- proto: ClothingNeckChameleon
entities:
- - uid: 220
+ - uid: 25
components:
- type: Transform
- parent: 149
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 221
- components:
- - type: Transform
- parent: 149
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpskirtOperative
+ pos: -1.5,-3.5
+ parent: 222
+- proto: ClothingNeckScarfStripedSyndieGreen
entities:
- - uid: 217
+ - uid: 203
components:
- type: Transform
- parent: 149
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitOperative
+ pos: -1.5,-3.5
+ parent: 222
+- proto: ClothingNeckScarfStripedSyndieRed
entities:
- - uid: 216
+ - uid: 204
components:
- type: Transform
- parent: 149
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
+ pos: -1.5,-3.5
+ parent: 222
+- proto: ClothingUniformJumpskirtSyndieFormalDress
+ entities:
+ - uid: 205
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 222
+- proto: ClothingUniformJumpsuitSyndieFormal
+ entities:
+ - uid: 17
+ components:
+ - type: Transform
+ 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 854d87c77e..79bd43cc58 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,57 +6628,6 @@ entities:
611:
- On: Open
- Off: Close
- 588:
- - On: Open
- - Off: Close
- 587:
- - On: Open
- - Off: Close
- 589:
- - On: Open
- - Off: Close
- 590:
- - On: Open
- - Off: Close
- 591:
- - On: Open
- - Off: Close
- 592:
- - On: Open
- - Off: Close
- 593:
- - On: Open
- - Off: Close
- 595:
- - On: Open
- - Off: Close
- 596:
- - On: Open
- - Off: Close
- 597:
- - On: Open
- - Off: Close
- 598:
- - On: Open
- - Off: Close
- 599:
- - On: Open
- - Off: Close
- 600:
- - On: Open
- - Off: Close
- 601:
- - On: Open
- - Off: Close
- 602:
- - On: Open
- - Off: Close
- 603:
- - On: Open
- - Off: Close
- 594:
- - On: Open
- - Off: Close
lastSignals:
Status: True
- type: Label
@@ -6611,6 +6688,57 @@ entities:
626:
- On: Open
- Off: Close
+ 587:
+ - On: Open
+ - Off: Close
+ 588:
+ - On: Open
+ - Off: Close
+ 589:
+ - On: Open
+ - Off: Close
+ 590:
+ - On: Open
+ - Off: Close
+ 591:
+ - On: Open
+ - Off: Close
+ 592:
+ - On: Open
+ - Off: Close
+ 593:
+ - On: Open
+ - Off: Close
+ 594:
+ - On: Open
+ - Off: Close
+ 595:
+ - On: Open
+ - Off: Close
+ 596:
+ - On: Open
+ - Off: Close
+ 597:
+ - On: Open
+ - Off: Close
+ 598:
+ - On: Open
+ - Off: Close
+ 599:
+ - On: Open
+ - Off: Close
+ 600:
+ - On: Open
+ - Off: Close
+ 601:
+ - On: Open
+ - Off: Close
+ 602:
+ - On: Open
+ - Off: Close
+ 603:
+ - On: Open
+ - Off: Close
lastSignals:
Status: True
- type: Label
@@ -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/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml
index 75511b1760..9d495f7495 100644
--- a/Resources/Maps/Test/dev_map.yml
+++ b/Resources/Maps/Test/dev_map.yml
@@ -36,11 +36,11 @@ entities:
version: 6
0,-1:
ind: 0,-1
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-2,0:
ind: -2,0
@@ -68,12 +68,16 @@ entities:
version: 6
0,-2:
ind: 0,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-1,-2:
ind: -1,-2
tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
+ 1,-2:
+ ind: 1,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
- type: Broadphase
- type: Physics
bodyStatus: InAir
@@ -100,247 +104,301 @@ entities:
data:
tiles:
-4,0:
+ 0: 65532
+ -4,-1:
0: 65535
-4,1:
- 0: 65535
+ 0: 15
+ 1: 65280
+ -5,1:
+ 1: 52292
+ -4,2:
+ 1: 8959
+ -5,2:
+ 1: 204
+ -4,3:
+ 1: 8738
+ -4,4:
+ 1: 230
-3,0:
- 0: 65535
+ 0: 65524
-3,1:
- 0: 65535
+ 0: 3823
+ -3,2:
+ 1: 35071
+ -3,-1:
+ 0: 56797
-2,0:
- 0: 65535
+ 0: 65534
-2,1:
- 0: 65535
+ 0: 61167
+ -3,3:
+ 1: 8
+ -2,3:
+ 1: 15
-2,2:
- 0: 65535
+ 0: 3822
+ -2,-1:
+ 0: 61166
-1,0:
0: 65535
-1,1:
0: 65535
-1,2:
- 0: 65535
- -4,-3:
- 0: 61440
- -4,-2:
- 0: 65535
- -4,-1:
- 0: 65535
- -3,-3:
- 0: 61440
- -3,-2:
- 0: 65535
- -3,-1:
- 0: 65535
- -2,-4:
- 0: 65520
- -2,-3:
- 0: 65535
- -2,-2:
- 0: 65535
- -2,-1:
- 0: 65535
- -1,-4:
- 0: 65535
- -1,-3:
- 0: 65535
- -1,-2:
- 0: 65535
+ 0: 53247
+ -1,3:
+ 1: 1
-1,-1:
0: 65535
- 0,4:
- 0: 61183
- 0,5:
- 0: 61166
- 0,6:
- 0: 14
- 1,4:
- 0: 65535
- 1,5:
- 0: 65535
- 1,6:
- 0: 65535
- 1,7:
- 0: 15
- 2,4:
- 0: 65535
- 2,5:
- 0: 65535
- 2,6:
- 0: 4095
- 3,4:
- 0: 65535
- 3,5:
- 0: 65535
- 3,6:
- 0: 53247
- 3,7:
- 0: 12
0,0:
0: 65535
0,1:
0: 65535
0,2:
0: 65535
- 0,3:
+ -4,-2:
0: 65535
- 1,0:
- 0: 65535
- 1,1:
- 0: 65535
- 1,2:
- 0: 65535
- 1,3:
- 0: 65535
- 2,0:
- 0: 4369
- 1: 8738
- 2,2:
- 0: 65535
- 2,3:
- 0: 65535
- 3,0:
- 0: 65535
- 3,2:
- 0: 65535
- 3,3:
- 0: 65535
- 3,1:
+ -3,-2:
+ 0: 56829
+ -2,-2:
+ 0: 3838
+ -2,-4:
+ 0: 60928
+ -2,-3:
0: 61166
+ -1,-4:
+ 0: 65350
+ -1,-3:
+ 0: 65535
+ -1,-2:
+ 0: 4095
+ -1,-5:
+ 0: 16384
0,-4:
- 0: 65527
+ 0: 65299
0,-3:
0: 65535
0,-2:
- 0: 65535
+ 0: 53247
0,-1:
0: 65535
- 1,-4:
- 0: 30576
- 1,-3:
- 0: 65399
- 1,-2:
- 0: 63359
+ 0,4:
+ 1: 17
+ 0: 3276
+ 0,3:
+ 1: 4368
+ 0: 52428
+ -1,4:
+ 1: 240
+ 0,5:
+ 0: 52428
+ 0,6:
+ 0: 14
+ 1,4:
+ 0: 17759
+ 1,3:
+ 0: 65535
+ 1,5:
+ 0: 58990
+ 1,6:
+ 0: 26350
+ 1,7:
+ 0: 4
+ 2,4:
+ 0: 65419
+ 2,5:
+ 0: 45311
+ 2,6:
+ 0: 187
+ 2,3:
+ 0: 16383
+ 3,4:
+ 0: 46011
+ 3,5:
+ 0: 47295
+ 3,6:
+ 0: 35007
+ 3,3:
+ 0: 8191
+ 4,4:
+ 0: 12595
+ 4,5:
+ 0: 13107
+ 4,6:
+ 0: 13107
+ 1,0:
+ 0: 65535
+ 1,2:
+ 0: 65520
1,-1:
0: 65535
- 2,-2:
- 0: 4096
- 1: 8738
- 2,-1:
- 0: 4369
+ 1,1:
+ 0: 61166
+ 2,2:
+ 0: 7632
+ 2,0:
1: 8738
+ 2,1:
+ 1: 2
+ 3,2:
+ 0: 36828
+ 3,0:
+ 0: 36590
+ 3,1:
+ 0: 52428
3,-1:
- 0: 65262
- 3,-2:
- 0: 61152
- 4,-2:
- 0: 65520
- 4,-1:
- 0: 65535
- 5,-2:
- 0: 65520
- 5,-1:
- 0: 65535
- 6,-2:
- 0: 65520
- 6,-1:
- 0: 65535
- 7,-2:
- 0: 65520
- 7,-1:
- 0: 65535
- -5,0:
- 0: 52428
- -5,-3:
- 0: 32768
- -5,-2:
- 0: 51336
- -5,-1:
- 0: 52428
+ 0: 35771
4,0:
- 0: 65535
+ 0: 8191
4,1:
0: 65535
4,2:
0: 65535
4,3:
+ 0: 8191
+ 0,-5:
+ 0: 4096
+ 1,-4:
+ 0: 48008
+ 1,-3:
+ 0: 65467
+ 1,-2:
+ 0: 3003
+ 1,-5:
+ 0: 34952
+ 2,-4:
+ 0: 45875
+ 1: 1092
+ 2: 2056
+ 2,-3:
0: 65535
+ 2,-2:
+ 0: 61439
+ 2,-5:
+ 0: 65535
+ 2,-1:
+ 0: 3822
+ 3,-4:
+ 0: 65535
+ 3,-3:
+ 0: 65535
+ 3,-2:
+ 0: 48063
+ 3,-5:
+ 0: 65535
+ 4,-4:
+ 0: 65535
+ 4,-3:
+ 0: 65535
+ 4,-2:
+ 0: 65311
+ 4,-1:
+ 0: 8191
+ 4,-5:
+ 0: 65535
+ 5,-4:
+ 0: 62451
+ 2: 3084
+ 5,-3:
+ 0: 62451
+ 3: 12
+ 4: 3072
+ 5,-2:
+ 0: 65283
+ 5: 12
+ 5,-1:
+ 0: 36863
+ 5,-5:
+ 0: 62451
+ 2: 3084
5,0:
- 0: 65535
- 5,1:
- 0: 65535
- 5,2:
- 0: 65535
- 5,3:
- 0: 65535
+ 0: 40959
+ 6,-4:
+ 2: 257
+ 0: 4112
+ 1: 17476
+ 6,-3:
+ 3: 1
+ 0: 4112
+ 4: 256
+ 1: 17476
+ 6,-2:
+ 5: 1
+ 0: 47872
+ 1: 4
+ 6,-1:
+ 0: 7103
+ 6,-5:
+ 0: 4112
+ 1: 17476
+ 2: 257
6,0:
0: 65535
- 6,1:
- 0: 65535
- 6,2:
- 0: 65535
- 6,3:
- 0: 63351
+ 7,-2:
+ 0: 65280
+ 7,-1:
+ 0: 8191
7,0:
- 0: 30583
- 7,1:
- 0: 4375
- 7,2:
- 0: 4369
- 7,3:
- 0: 4096
+ 0: 13107
8,-2:
- 0: 30576
+ 0: 13056
8,-1:
- 0: 30583
- 4,4:
- 0: 30583
- 4,5:
- 0: 30583
- 4,6:
- 0: 30583
- 4,7:
- 0: 7
- -4,2:
- 0: 26367
- -1,3:
- 0: 15
- 2,1:
- 0: 4369
- 1: 2
- -5,1:
- 0: 52428
- -4,3:
- 0: 26222
- -3,3:
- 0: 15
- -2,3:
- 0: 15
- -4,4:
- 0: 238
+ 0: 819
+ -5,0:
+ 1: 17476
+ -5,-1:
+ 1: 17476
+ -5,-2:
+ 1: 16384
+ 5,1:
+ 0: 48051
+ 5,2:
+ 0: 7103
+ 5,3:
+ 0: 4095
+ 6,1:
+ 0: 65525
+ 6,2:
+ 0: 4095
+ 6,3:
+ 0: 626
-3,4:
- 0: 255
+ 1: 240
-2,4:
- 0: 255
- -1,4:
- 0: 255
- -5,2:
- 0: 204
- -3,2:
- 0: 35071
- 0,-5:
- 0: 28672
- -1,-5:
+ 1: 240
+ 1,-7:
+ 1: 192
+ 0: 32768
+ 1,-6:
+ 0: 34952
+ 2,-7:
+ 1: 240
0: 61440
- 2,-3:
- 1: 12834
- 2,-4:
- 1: 61166
- 3,-4:
- 1: 13107
- 2,-5:
- 1: 57344
- 3,-5:
- 1: 12288
+ 2,-6:
+ 0: 65535
+ 3,-7:
+ 1: 240
+ 0: 61440
+ 3,-6:
+ 0: 65535
+ 4,-7:
+ 1: 240
+ 0: 62976
+ 4,-6:
+ 0: 65535
+ 5,-7:
+ 1: 240
+ 0: 61440
+ 5,-6:
+ 0: 62451
+ 2: 3084
+ 6,-7:
+ 1: 17520
+ 0: 4096
+ 6,-6:
+ 2: 257
+ 0: 4112
+ 1: 17476
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -357,6 +415,21 @@ entities:
- 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:
@@ -372,6 +445,51 @@ entities:
- 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
+ - 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
chunkSize: 4
- type: GasTileOverlay
- type: BecomesStation
@@ -384,6 +502,7 @@ entities:
- type: MetaData
- type: Transform
- type: Map
+ mapPaused: True
- type: PhysicsMap
- type: GridTree
- type: MovedGrids
@@ -401,12 +520,23 @@ entities:
- type: DeviceList
devices:
- 801
-- proto: AirCanister
- entities:
- - uid: 458
+ - uid: 1556
components:
- type: Transform
- pos: 7.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,-12.5
+ parent: 179
+- proto: AirCanister
+ entities:
+ - uid: 1281
+ components:
+ - type: Transform
+ pos: 12.5,-5.5
+ parent: 179
+ - uid: 1284
+ components:
+ - type: Transform
+ pos: 13.5,-5.5
parent: 179
- proto: Airlock
entities:
@@ -435,6 +565,32 @@ entities:
- type: Transform
pos: 6.5,28.5
parent: 179
+- proto: AirlockAtmospherics
+ entities:
+ - uid: 77
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-8.5
+ parent: 179
+ - uid: 678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-9.5
+ parent: 179
+ - uid: 904
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-6.5
+ parent: 179
+ - uid: 995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,-6.5
+ parent: 179
- proto: AirlockCargo
entities:
- uid: 87
@@ -481,16 +637,6 @@ entities:
- type: Transform
pos: 0.5,-14.5
parent: 179
- - uid: 255
- components:
- - type: Transform
- pos: 7.5,-8.5
- parent: 179
- - uid: 256
- components:
- - type: Transform
- pos: 5.5,-8.5
- parent: 179
- uid: 318
components:
- type: Transform
@@ -741,6 +887,23 @@ entities:
rot: 3.141592653589793 rad
pos: -0.5,-13.5
parent: 179
+- proto: AmmoniaCanister
+ entities:
+ - uid: 250
+ components:
+ - type: Transform
+ pos: 9.5,-1.5
+ parent: 179
+ - uid: 251
+ components:
+ - type: Transform
+ pos: 10.5,-1.5
+ parent: 179
+ - uid: 1317
+ components:
+ - type: Transform
+ pos: 24.5,-19.5
+ parent: 179
- proto: AnomalyLocator
entities:
- uid: 1086
@@ -795,6 +958,362 @@ entities:
- type: Transform
pos: 0.5,-16.5
parent: 179
+ - uid: 1184
+ components:
+ - type: Transform
+ pos: 22.5,-16.5
+ parent: 179
+ - uid: 1187
+ components:
+ - type: Transform
+ pos: 22.5,-14.5
+ parent: 179
+ - uid: 1200
+ components:
+ - type: Transform
+ pos: 22.5,-10.5
+ parent: 179
+ - uid: 1201
+ components:
+ - type: Transform
+ pos: 22.5,-12.5
+ parent: 179
+ - uid: 1207
+ components:
+ - type: Transform
+ pos: 22.5,-18.5
+ parent: 179
+ - uid: 1220
+ components:
+ - type: Transform
+ pos: 22.5,-8.5
+ parent: 179
+ - uid: 1235
+ components:
+ - type: Transform
+ pos: 22.5,-20.5
+ parent: 179
+ - uid: 1238
+ components:
+ - type: Transform
+ pos: 22.5,-22.5
+ parent: 179
+ - uid: 1260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-24.5
+ parent: 179
+ - uid: 1335
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,-25.5
+ parent: 179
+ - uid: 1336
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-25.5
+ parent: 179
+ - uid: 1489
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-12.5
+ parent: 179
+ - uid: 1493
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-14.5
+ parent: 179
+ - uid: 1500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-16.5
+ parent: 179
+ - uid: 1507
+ components:
+ - type: Transform
+ pos: 7.5,-19.5
+ parent: 179
+ - uid: 1508
+ components:
+ - type: Transform
+ pos: 8.5,-19.5
+ parent: 179
+ - uid: 1509
+ components:
+ - type: Transform
+ pos: 9.5,-19.5
+ parent: 179
+ - uid: 1510
+ components:
+ - type: Transform
+ pos: 10.5,-19.5
+ parent: 179
+ - uid: 1511
+ components:
+ - type: Transform
+ pos: 11.5,-19.5
+ parent: 179
+ - uid: 1512
+ components:
+ - type: Transform
+ pos: 12.5,-19.5
+ parent: 179
+ - uid: 1513
+ components:
+ - type: Transform
+ pos: 13.5,-19.5
+ parent: 179
+ - uid: 1514
+ components:
+ - type: Transform
+ pos: 14.5,-19.5
+ parent: 179
+ - uid: 1515
+ components:
+ - type: Transform
+ pos: 14.5,-20.5
+ parent: 179
+ - uid: 1516
+ components:
+ - type: Transform
+ pos: 14.5,-21.5
+ parent: 179
+ - uid: 1517
+ components:
+ - type: Transform
+ pos: 14.5,-22.5
+ parent: 179
+ - uid: 1518
+ components:
+ - type: Transform
+ pos: 14.5,-23.5
+ parent: 179
+ - uid: 1519
+ components:
+ - type: Transform
+ pos: 14.5,-24.5
+ parent: 179
+- proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 1582
+ components:
+ - type: Transform
+ pos: 23.5,-13.5
+ parent: 179
+ - uid: 1583
+ components:
+ - type: Transform
+ pos: 23.5,-15.5
+ parent: 179
+ - uid: 1584
+ components:
+ - type: Transform
+ pos: 23.5,-17.5
+ parent: 179
+ - uid: 1585
+ components:
+ - type: Transform
+ pos: 23.5,-19.5
+ parent: 179
+ - uid: 1586
+ components:
+ - type: Transform
+ pos: 23.5,-21.5
+ parent: 179
+ - uid: 1587
+ components:
+ - type: Transform
+ pos: 23.5,-23.5
+ parent: 179
+ - uid: 1588
+ components:
+ - type: Transform
+ pos: 10.5,-14.5
+ parent: 179
+ - uid: 1589
+ components:
+ - type: Transform
+ pos: 22.5,-13.5
+ parent: 179
+ - uid: 1590
+ components:
+ - type: Transform
+ pos: 24.5,-13.5
+ parent: 179
+ - uid: 1591
+ components:
+ - type: Transform
+ pos: 24.5,-15.5
+ parent: 179
+ - uid: 1592
+ components:
+ - type: Transform
+ pos: 22.5,-15.5
+ parent: 179
+ - uid: 1593
+ components:
+ - type: Transform
+ pos: 22.5,-17.5
+ parent: 179
+ - uid: 1594
+ components:
+ - type: Transform
+ pos: 24.5,-17.5
+ parent: 179
+ - uid: 1595
+ components:
+ - type: Transform
+ pos: 24.5,-19.5
+ parent: 179
+ - uid: 1596
+ components:
+ - type: Transform
+ pos: 22.5,-19.5
+ parent: 179
+ - uid: 1597
+ components:
+ - type: Transform
+ pos: 22.5,-21.5
+ parent: 179
+ - uid: 1598
+ components:
+ - type: Transform
+ pos: 22.5,-23.5
+ parent: 179
+ - uid: 1599
+ components:
+ - type: Transform
+ pos: 24.5,-23.5
+ parent: 179
+ - uid: 1600
+ components:
+ - type: Transform
+ pos: 24.5,-21.5
+ parent: 179
+ - uid: 1607
+ components:
+ - type: Transform
+ pos: 10.5,-15.5
+ parent: 179
+ - uid: 1608
+ components:
+ - type: Transform
+ pos: 10.5,-13.5
+ parent: 179
+ - uid: 1609
+ components:
+ - type: Transform
+ pos: 11.5,-13.5
+ parent: 179
+ - uid: 1610
+ components:
+ - type: Transform
+ pos: 11.5,-15.5
+ parent: 179
+- proto: AtmosFixInstantPlasmaFireMarker
+ entities:
+ - uid: 1611
+ components:
+ - type: Transform
+ pos: 12.5,-15.5
+ parent: 179
+ - uid: 1612
+ components:
+ - type: Transform
+ pos: 13.5,-15.5
+ parent: 179
+ - uid: 1613
+ components:
+ - type: Transform
+ pos: 14.5,-15.5
+ parent: 179
+ - uid: 1614
+ components:
+ - type: Transform
+ pos: 14.5,-14.5
+ parent: 179
+ - uid: 1615
+ components:
+ - type: Transform
+ pos: 13.5,-14.5
+ parent: 179
+ - uid: 1616
+ components:
+ - type: Transform
+ pos: 12.5,-14.5
+ parent: 179
+ - uid: 1617
+ components:
+ - type: Transform
+ pos: 12.5,-13.5
+ parent: 179
+ - uid: 1618
+ components:
+ - type: Transform
+ pos: 13.5,-13.5
+ parent: 179
+ - uid: 1619
+ components:
+ - type: Transform
+ pos: 14.5,-13.5
+ parent: 179
+- proto: AtmosFixNitrogenMarker
+ entities:
+ - uid: 1579
+ components:
+ - type: Transform
+ pos: 23.5,-9.5
+ parent: 179
+ - uid: 1603
+ components:
+ - type: Transform
+ pos: 22.5,-9.5
+ parent: 179
+ - uid: 1604
+ components:
+ - type: Transform
+ pos: 24.5,-9.5
+ parent: 179
+- proto: AtmosFixOxygenMarker
+ entities:
+ - uid: 1580
+ components:
+ - type: Transform
+ pos: 23.5,-7.5
+ parent: 179
+ - uid: 1605
+ components:
+ - type: Transform
+ pos: 22.5,-7.5
+ parent: 179
+ - uid: 1606
+ components:
+ - type: Transform
+ pos: 24.5,-7.5
+ parent: 179
+- proto: AtmosFixPlasmaMarker
+ entities:
+ - uid: 1581
+ components:
+ - type: Transform
+ pos: 23.5,-11.5
+ parent: 179
+ - uid: 1601
+ components:
+ - type: Transform
+ pos: 22.5,-11.5
+ parent: 179
+ - uid: 1602
+ components:
+ - type: Transform
+ pos: 24.5,-11.5
+ parent: 179
- proto: Autolathe
entities:
- uid: 1
@@ -912,6 +1431,37 @@ entities:
- type: Transform
pos: -2.5,-16.5
parent: 179
+ - uid: 1230
+ components:
+ - type: Transform
+ pos: 6.5,-20.5
+ parent: 179
+ - uid: 1232
+ components:
+ - type: Transform
+ pos: 6.5,-17.5
+ parent: 179
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - uid: 1233
+ components:
+ - type: Transform
+ pos: 6.5,-16.5
+ parent: 179
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - uid: 1234
+ components:
+ - type: Transform
+ pos: 6.5,-15.5
+ parent: 179
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - uid: 1385
+ components:
+ - type: Transform
+ pos: 11.5,-14.5
+ parent: 179
- proto: BoozeDispenser
entities:
- uid: 752
@@ -945,6 +1495,14 @@ entities:
- type: Transform
pos: 7.1447573,15.900927
parent: 179
+- proto: ButtonFrameCautionSecurity
+ entities:
+ - uid: 1488
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-12.5
+ parent: 179
- proto: CableApcExtension
entities:
- uid: 15
@@ -2242,6 +2800,411 @@ entities:
- type: Transform
pos: 8.5,25.5
parent: 179
+ - uid: 1277
+ components:
+ - type: Transform
+ pos: 4.5,-10.5
+ parent: 179
+ - uid: 1282
+ components:
+ - type: Transform
+ pos: 4.5,-11.5
+ parent: 179
+ - uid: 1289
+ components:
+ - type: Transform
+ pos: 5.5,-9.5
+ parent: 179
+ - uid: 1292
+ components:
+ - type: Transform
+ pos: 4.5,-9.5
+ parent: 179
+ - uid: 1348
+ components:
+ - type: Transform
+ pos: 6.5,-9.5
+ parent: 179
+ - uid: 1349
+ components:
+ - type: Transform
+ pos: 7.5,-9.5
+ parent: 179
+ - uid: 1350
+ components:
+ - type: Transform
+ pos: 9.5,-9.5
+ parent: 179
+ - uid: 1351
+ components:
+ - type: Transform
+ pos: 10.5,-9.5
+ parent: 179
+ - uid: 1352
+ components:
+ - type: Transform
+ pos: 11.5,-9.5
+ parent: 179
+ - uid: 1353
+ components:
+ - type: Transform
+ pos: 12.5,-9.5
+ parent: 179
+ - uid: 1354
+ components:
+ - type: Transform
+ pos: 13.5,-9.5
+ parent: 179
+ - uid: 1355
+ components:
+ - type: Transform
+ pos: 14.5,-9.5
+ parent: 179
+ - uid: 1356
+ components:
+ - type: Transform
+ pos: 15.5,-9.5
+ parent: 179
+ - uid: 1357
+ components:
+ - type: Transform
+ pos: 16.5,-9.5
+ parent: 179
+ - uid: 1358
+ components:
+ - type: Transform
+ pos: 17.5,-9.5
+ parent: 179
+ - uid: 1359
+ components:
+ - type: Transform
+ pos: 18.5,-9.5
+ parent: 179
+ - uid: 1360
+ components:
+ - type: Transform
+ pos: 19.5,-9.5
+ parent: 179
+ - uid: 1361
+ components:
+ - type: Transform
+ pos: 20.5,-9.5
+ parent: 179
+ - uid: 1362
+ components:
+ - type: Transform
+ pos: 21.5,-9.5
+ parent: 179
+ - uid: 1363
+ components:
+ - type: Transform
+ pos: 8.5,-9.5
+ parent: 179
+ - uid: 1364
+ components:
+ - type: Transform
+ pos: 11.5,-8.5
+ parent: 179
+ - uid: 1365
+ components:
+ - type: Transform
+ pos: 11.5,-7.5
+ parent: 179
+ - uid: 1366
+ components:
+ - type: Transform
+ pos: 11.5,-5.5
+ parent: 179
+ - uid: 1367
+ components:
+ - type: Transform
+ pos: 11.5,-4.5
+ parent: 179
+ - uid: 1368
+ components:
+ - type: Transform
+ pos: 11.5,-6.5
+ parent: 179
+ - uid: 1369
+ components:
+ - type: Transform
+ pos: 11.5,-3.5
+ parent: 179
+ - uid: 1370
+ components:
+ - type: Transform
+ pos: 9.5,-16.5
+ parent: 179
+ - uid: 1371
+ components:
+ - type: Transform
+ pos: 9.5,-22.5
+ parent: 179
+ - uid: 1372
+ components:
+ - type: Transform
+ pos: 9.5,-21.5
+ parent: 179
+ - uid: 1373
+ components:
+ - type: Transform
+ pos: 9.5,-10.5
+ parent: 179
+ - uid: 1374
+ components:
+ - type: Transform
+ pos: 9.5,-20.5
+ parent: 179
+ - uid: 1375
+ components:
+ - type: Transform
+ pos: 9.5,-19.5
+ parent: 179
+ - uid: 1376
+ components:
+ - type: Transform
+ pos: 9.5,-18.5
+ parent: 179
+ - uid: 1377
+ components:
+ - type: Transform
+ pos: 9.5,-17.5
+ parent: 179
+ - uid: 1378
+ components:
+ - type: Transform
+ pos: 9.5,-15.5
+ parent: 179
+ - uid: 1379
+ components:
+ - type: Transform
+ pos: 9.5,-11.5
+ parent: 179
+ - uid: 1380
+ components:
+ - type: Transform
+ pos: 9.5,-14.5
+ parent: 179
+ - uid: 1381
+ components:
+ - type: Transform
+ pos: 9.5,-13.5
+ parent: 179
+ - uid: 1382
+ components:
+ - type: Transform
+ pos: 9.5,-12.5
+ parent: 179
+ - uid: 1383
+ components:
+ - type: Transform
+ pos: 10.5,-14.5
+ parent: 179
+ - uid: 1384
+ components:
+ - type: Transform
+ pos: 11.5,-14.5
+ parent: 179
+ - uid: 1389
+ components:
+ - type: Transform
+ pos: 16.5,-14.5
+ parent: 179
+ - uid: 1390
+ components:
+ - type: Transform
+ pos: 17.5,-14.5
+ parent: 179
+ - uid: 1391
+ components:
+ - type: Transform
+ pos: 19.5,-14.5
+ parent: 179
+ - uid: 1392
+ components:
+ - type: Transform
+ pos: 20.5,-14.5
+ parent: 179
+ - uid: 1393
+ components:
+ - type: Transform
+ pos: 21.5,-14.5
+ parent: 179
+ - uid: 1394
+ components:
+ - type: Transform
+ pos: 22.5,-14.5
+ parent: 179
+ - uid: 1395
+ components:
+ - type: Transform
+ pos: 18.5,-14.5
+ parent: 179
+ - uid: 1396
+ components:
+ - type: Transform
+ pos: 22.5,-9.5
+ parent: 179
+ - uid: 1397
+ components:
+ - type: Transform
+ pos: 10.5,-19.5
+ parent: 179
+ - uid: 1398
+ components:
+ - type: Transform
+ pos: 11.5,-19.5
+ parent: 179
+ - uid: 1399
+ components:
+ - type: Transform
+ pos: 12.5,-19.5
+ parent: 179
+ - uid: 1400
+ components:
+ - type: Transform
+ pos: 13.5,-19.5
+ parent: 179
+ - uid: 1401
+ components:
+ - type: Transform
+ pos: 14.5,-19.5
+ parent: 179
+ - uid: 1402
+ components:
+ - type: Transform
+ pos: 15.5,-19.5
+ parent: 179
+ - uid: 1403
+ components:
+ - type: Transform
+ pos: 17.5,-19.5
+ parent: 179
+ - uid: 1404
+ components:
+ - type: Transform
+ pos: 18.5,-19.5
+ parent: 179
+ - uid: 1405
+ components:
+ - type: Transform
+ pos: 19.5,-19.5
+ parent: 179
+ - uid: 1406
+ components:
+ - type: Transform
+ pos: 20.5,-19.5
+ parent: 179
+ - uid: 1407
+ components:
+ - type: Transform
+ pos: 21.5,-19.5
+ parent: 179
+ - uid: 1408
+ components:
+ - type: Transform
+ pos: 22.5,-19.5
+ parent: 179
+ - uid: 1409
+ components:
+ - type: Transform
+ pos: 16.5,-19.5
+ parent: 179
+ - uid: 1410
+ components:
+ - type: Transform
+ pos: 9.5,-23.5
+ parent: 179
+ - uid: 1411
+ components:
+ - type: Transform
+ pos: 9.5,-24.5
+ parent: 179
+ - uid: 1412
+ components:
+ - type: Transform
+ pos: 10.5,-24.5
+ parent: 179
+ - uid: 1413
+ components:
+ - type: Transform
+ pos: 11.5,-24.5
+ parent: 179
+ - uid: 1414
+ components:
+ - type: Transform
+ pos: 12.5,-24.5
+ parent: 179
+ - uid: 1415
+ components:
+ - type: Transform
+ pos: 13.5,-24.5
+ parent: 179
+ - uid: 1416
+ components:
+ - type: Transform
+ pos: 14.5,-24.5
+ parent: 179
+ - uid: 1417
+ components:
+ - type: Transform
+ pos: 15.5,-24.5
+ parent: 179
+ - uid: 1418
+ components:
+ - type: Transform
+ pos: 16.5,-24.5
+ parent: 179
+ - uid: 1419
+ components:
+ - type: Transform
+ pos: 17.5,-24.5
+ parent: 179
+ - uid: 1420
+ components:
+ - type: Transform
+ pos: 18.5,-24.5
+ parent: 179
+ - uid: 1421
+ components:
+ - type: Transform
+ pos: 19.5,-24.5
+ parent: 179
+ - uid: 1422
+ components:
+ - type: Transform
+ pos: 20.5,-24.5
+ parent: 179
+ - uid: 1423
+ components:
+ - type: Transform
+ pos: 21.5,-24.5
+ parent: 179
+ - uid: 1424
+ components:
+ - type: Transform
+ pos: 22.5,-24.5
+ parent: 179
+ - uid: 1502
+ components:
+ - type: Transform
+ pos: 13.5,-14.5
+ parent: 179
+ - uid: 1503
+ components:
+ - type: Transform
+ pos: 12.5,-14.5
+ parent: 179
+ - uid: 1504
+ components:
+ - type: Transform
+ pos: 14.5,-14.5
+ parent: 179
+ - uid: 1554
+ components:
+ - type: Transform
+ pos: 15.5,-14.5
+ parent: 179
- proto: CableApcStack
entities:
- uid: 70
@@ -2360,6 +3323,23 @@ entities:
- type: Transform
pos: -3.277628,-2.15838
parent: 179
+- proto: CarbonDioxideCanister
+ entities:
+ - uid: 748
+ components:
+ - type: Transform
+ pos: 13.5,-4.5
+ parent: 179
+ - uid: 749
+ components:
+ - type: Transform
+ pos: 12.5,-4.5
+ parent: 179
+ - uid: 1316
+ components:
+ - type: Transform
+ pos: 24.5,-21.5
+ parent: 179
- proto: Catwalk
entities:
- uid: 2
@@ -2433,132 +3413,6 @@ entities:
- type: Transform
pos: -5.5,-13.5
parent: 179
- - uid: 345
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,0.5
- parent: 179
- - uid: 346
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,1.5
- parent: 179
- - uid: 347
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,2.5
- parent: 179
- - uid: 348
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,3.5
- parent: 179
- - uid: 349
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,4.5
- parent: 179
- - uid: 403
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,-0.5
- parent: 179
- - uid: 404
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,-1.5
- parent: 179
- - uid: 405
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,-2.5
- parent: 179
- - uid: 406
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,-3.5
- parent: 179
- - uid: 407
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,-4.5
- parent: 179
- - uid: 408
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,-5.5
- parent: 179
- - uid: 409
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,-6.5
- parent: 179
- - uid: 410
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,-7.5
- parent: 179
- - uid: 411
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,-8.5
- parent: 179
- - uid: 412
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,-9.5
- parent: 179
- - uid: 413
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,-10.5
- parent: 179
- - uid: 414
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 9.5,-11.5
- parent: 179
- - uid: 415
- components:
- - type: Transform
- anchored: False
- rot: -1.5707963267949 rad
- pos: 8.5,-8.5
- parent: 179
- uid: 438
components:
- type: Transform
@@ -2704,52 +3558,16 @@ entities:
parent: 179
- proto: ClosetEmergencyFilledRandom
entities:
- - uid: 319
+ - uid: 349
components:
- type: Transform
pos: 1.5,-10.5
parent: 179
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 2.9923203
- - 11.2568245
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 322
+ - uid: 403
components:
- type: Transform
pos: 0.5,-10.5
parent: 179
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 2.9923203
- - 11.2568245
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: ClosetToolFilled
entities:
- uid: 524
@@ -2844,6 +3662,13 @@ entities:
- 0
- 0
- 0
+- proto: ClothingBeltChiefEngineerFilled
+ entities:
+ - uid: 1573
+ components:
+ - type: Transform
+ pos: 1.3037996,-5.2961445
+ parent: 179
- proto: ClothingBeltUtilityFilled
entities:
- uid: 427
@@ -2960,7 +3785,7 @@ entities:
parent: 179
- proto: ComputerCargoShuttle
entities:
- - uid: 995
+ - uid: 404
components:
- type: Transform
pos: 0.5,-11.5
@@ -3097,31 +3922,6 @@ entities:
- 0
- 0
- 0
-- proto: CrateGeneric
- entities:
- - uid: 266
- components:
- - type: Transform
- pos: 5.5,-6.5
- parent: 179
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 2.9923203
- - 11.2568245
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: CrateHydroponicsSeeds
entities:
- uid: 754
@@ -3172,6 +3972,18 @@ entities:
- 0
- 0
- 0
+- proto: CrateMaterialSteel
+ entities:
+ - uid: 1258
+ components:
+ - type: Transform
+ pos: 7.5,-11.5
+ parent: 179
+ - uid: 1293
+ components:
+ - type: Transform
+ pos: 7.5,-10.5
+ parent: 179
- proto: CrateMedical
entities:
- uid: 131
@@ -3246,12 +4058,19 @@ entities:
- type: Transform
pos: 0.5,-3.5
parent: 179
+- proto: DebugGenerator
+ entities:
+ - uid: 490
+ components:
+ - type: Transform
+ pos: -6.5,-11.5
+ parent: 179
- proto: DefaultStationBeaconAISatellite
entities:
- uid: 1198
components:
- type: Transform
- pos: 11.5,-14.5
+ pos: 8.5,-10.5
parent: 179
- proto: DefaultStationBeaconBotany
entities:
@@ -3408,6 +4227,13 @@ entities:
- type: Transform
pos: 13.5,12.5
parent: 179
+- proto: FireAxeCabinetFilled
+ entities:
+ - uid: 1574
+ components:
+ - type: Transform
+ pos: 8.5,-4.5
+ parent: 179
- proto: FireExtinguisher
entities:
- uid: 323
@@ -3514,114 +4340,757 @@ entities:
- type: Transform
pos: 3.5215416,6.799056
parent: 179
-- proto: GasAnalyzer
+- proto: FrezonCanister
entities:
- - uid: 876
+ - uid: 1308
components:
- type: Transform
- pos: 4.4732866,-0.48882532
+ pos: 9.5,-5.5
parent: 179
-- proto: GasFilter
+ - uid: 1309
+ components:
+ - type: Transform
+ pos: 10.5,-5.5
+ parent: 179
+ - uid: 1318
+ components:
+ - type: Transform
+ pos: 24.5,-15.5
+ parent: 179
+- proto: GasAnalyzer
+ entities:
+ - uid: 1571
+ components:
+ - type: Transform
+ pos: 7.3675013,-6.725376
+ parent: 179
+- proto: GasMinerAmmonia
+ entities:
+ - uid: 1204
+ components:
+ - type: Transform
+ pos: 23.5,-19.5
+ parent: 179
+- proto: GasMinerCarbonDioxide
+ entities:
+ - uid: 1205
+ components:
+ - type: Transform
+ pos: 23.5,-21.5
+ parent: 179
+- proto: GasMinerFrezon
+ entities:
+ - uid: 1223
+ components:
+ - type: Transform
+ pos: 23.5,-15.5
+ parent: 179
+- proto: GasMinerNitrogenStation
+ entities:
+ - uid: 1222
+ components:
+ - type: Transform
+ pos: 23.5,-9.5
+ parent: 179
+- proto: GasMinerNitrousOxide
+ entities:
+ - uid: 1225
+ components:
+ - type: Transform
+ pos: 23.5,-17.5
+ parent: 179
+- proto: GasMinerOxygenStation
+ entities:
+ - uid: 1199
+ components:
+ - type: Transform
+ pos: 23.5,-7.5
+ parent: 179
+- proto: GasMinerPlasma
+ entities:
+ - uid: 1221
+ components:
+ - type: Transform
+ pos: 23.5,-11.5
+ parent: 179
+- proto: GasMinerTritium
+ entities:
+ - uid: 1224
+ components:
+ - type: Transform
+ pos: 23.5,-13.5
+ parent: 179
+- proto: GasMinerWaterVapor
+ entities:
+ - uid: 1202
+ components:
+ - type: Transform
+ pos: 23.5,-23.5
+ parent: 179
+- proto: GasMixer
+ entities:
+ - uid: 1480
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-9.5
+ parent: 179
+ - type: GasMixer
+ inletTwoConcentration: 0.20999998
+ inletOneConcentration: 0.79
+- proto: GasOutletInjector
+ entities:
+ - uid: 406
+ components:
+ - type: Transform
+ pos: 24.5,-21.5
+ parent: 179
+ - uid: 409
+ components:
+ - type: Transform
+ pos: 24.5,-17.5
+ parent: 179
+ - uid: 410
+ components:
+ - type: Transform
+ pos: 24.5,-23.5
+ parent: 179
+ - uid: 411
+ components:
+ - type: Transform
+ pos: 24.5,-15.5
+ parent: 179
+ - uid: 413
+ components:
+ - type: Transform
+ pos: 24.5,-11.5
+ parent: 179
+ - uid: 414
+ components:
+ - type: Transform
+ pos: 24.5,-19.5
+ parent: 179
+ - uid: 429
+ components:
+ - type: Transform
+ pos: 24.5,-7.5
+ parent: 179
+ - uid: 444
+ components:
+ - type: Transform
+ pos: 24.5,-9.5
+ parent: 179
+ - uid: 447
+ components:
+ - type: Transform
+ pos: 24.5,-13.5
+ parent: 179
+- proto: GasPassiveVent
+ entities:
+ - uid: 1319
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-23.5
+ parent: 179
+ - uid: 1320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-21.5
+ parent: 179
+ - uid: 1321
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-19.5
+ parent: 179
+ - uid: 1322
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-15.5
+ parent: 179
+ - uid: 1323
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-17.5
+ parent: 179
+ - uid: 1324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-13.5
+ parent: 179
+ - uid: 1325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-11.5
+ parent: 179
+ - uid: 1326
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-9.5
+ parent: 179
+ - uid: 1327
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-7.5
+ parent: 179
+ - uid: 1544
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-26.5
+ parent: 179
+- proto: GasPipeBend
+ entities:
+ - uid: 407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-16.5
+ parent: 179
+ - uid: 408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-14.5
+ parent: 179
+ - uid: 412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-8.5
+ parent: 179
+ - uid: 415
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-10.5
+ parent: 179
+ - uid: 418
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-12.5
+ parent: 179
+ - uid: 1439
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-18.5
+ parent: 179
+ - uid: 1440
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-20.5
+ parent: 179
+ - uid: 1441
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-22.5
+ parent: 179
+ - uid: 1442
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-24.5
+ parent: 179
+ - uid: 1482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-7.5
+ parent: 179
+ - uid: 1542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-9.5
+ parent: 179
+- proto: GasPipeStraight
+ entities:
+ - uid: 1443
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-24.5
+ parent: 179
+ - uid: 1444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-24.5
+ parent: 179
+ - uid: 1445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-22.5
+ parent: 179
+ - uid: 1446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-22.5
+ parent: 179
+ - uid: 1447
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-20.5
+ parent: 179
+ - uid: 1448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-20.5
+ parent: 179
+ - uid: 1449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-18.5
+ parent: 179
+ - uid: 1450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-16.5
+ parent: 179
+ - uid: 1451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-14.5
+ parent: 179
+ - uid: 1452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-12.5
+ parent: 179
+ - uid: 1453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-10.5
+ parent: 179
+ - uid: 1454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-8.5
+ parent: 179
+ - uid: 1455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-8.5
+ parent: 179
+ - uid: 1456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-10.5
+ parent: 179
+ - uid: 1457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-12.5
+ parent: 179
+ - uid: 1458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-14.5
+ parent: 179
+ - uid: 1460
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-16.5
+ parent: 179
+ - uid: 1461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-18.5
+ parent: 179
+ - uid: 1483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-7.5
+ parent: 179
+ - uid: 1484
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-8.5
+ parent: 179
+ - uid: 1485
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,-8.5
+ parent: 179
+ - uid: 1486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,-9.5
+ parent: 179
+ - uid: 1487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-9.5
+ parent: 179
+ - uid: 1522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-21.5
+ parent: 179
+ - uid: 1523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-20.5
+ parent: 179
+ - uid: 1524
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-19.5
+ parent: 179
+ - uid: 1525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-18.5
+ parent: 179
+ - uid: 1526
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-17.5
+ parent: 179
+ - uid: 1527
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-16.5
+ parent: 179
+ - uid: 1528
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-15.5
+ parent: 179
+ - uid: 1529
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-14.5
+ parent: 179
+ - uid: 1530
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-12.5
+ parent: 179
+ - uid: 1531
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-13.5
+ parent: 179
+ - uid: 1532
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-10.5
+ parent: 179
+ - uid: 1533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-11.5
+ parent: 179
+ - uid: 1534
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-9.5
+ parent: 179
+ - uid: 1535
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-9.5
+ parent: 179
+ - uid: 1536
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-9.5
+ parent: 179
+ - uid: 1537
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-9.5
+ parent: 179
+ - uid: 1538
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-9.5
+ parent: 179
+ - uid: 1539
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-9.5
+ parent: 179
+ - uid: 1540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-9.5
+ parent: 179
+ - uid: 1541
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-9.5
+ parent: 179
+ - uid: 1546
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-25.5
+ parent: 179
+ - uid: 1547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-22.5
+ parent: 179
+ - uid: 1548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-22.5
+ parent: 179
+ - uid: 1549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-22.5
+ parent: 179
+ - uid: 1550
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-22.5
+ parent: 179
+ - uid: 1551
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-22.5
+ parent: 179
+ - uid: 1552
+ components:
+ - type: Transform
+ pos: 17.5,-23.5
+ parent: 179
+- proto: GasPipeTJunction
+ entities:
+ - uid: 1479
+ components:
+ - type: Transform
+ pos: 20.5,-9.5
+ parent: 179
+ - uid: 1481
+ components:
+ - type: Transform
+ pos: 19.5,-7.5
+ parent: 179
+ - uid: 1553
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,-22.5
+ parent: 179
+- proto: GasPressurePump
+ entities:
+ - uid: 1459
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-7.5
+ parent: 179
+ - uid: 1462
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-9.5
+ parent: 179
+ - uid: 1463
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-11.5
+ parent: 179
+ - uid: 1464
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-13.5
+ parent: 179
+ - uid: 1465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-15.5
+ parent: 179
+ - uid: 1466
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-17.5
+ parent: 179
+ - uid: 1467
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-19.5
+ parent: 179
+ - uid: 1468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-21.5
+ parent: 179
+ - uid: 1469
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-23.5
+ parent: 179
+ - uid: 1470
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-24.5
+ parent: 179
+ - uid: 1471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-22.5
+ parent: 179
+ - uid: 1472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-20.5
+ parent: 179
+ - uid: 1473
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-18.5
+ parent: 179
+ - uid: 1474
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-16.5
+ parent: 179
+ - uid: 1475
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-14.5
+ parent: 179
+ - uid: 1476
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-12.5
+ parent: 179
+ - uid: 1477
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-10.5
+ parent: 179
+ - uid: 1478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-8.5
+ parent: 179
+- proto: GasThermoMachineFreezer
entities:
- uid: 480
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-3.5
+ pos: 9.5,-7.5
parent: 179
-- proto: GasMixer
- entities:
- - uid: 747
+ - uid: 616
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-2.5
+ pos: 10.5,-7.5
parent: 179
-- proto: GasOutletInjector
+- proto: GasThermoMachineHeater
entities:
- - uid: 429
+ - uid: 483
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-1.5
+ pos: 13.5,-7.5
parent: 179
-- proto: GasPipeBend
- entities:
- - uid: 727
+ - uid: 1568
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-0.5
- parent: 179
-- proto: GasPipeFourway
- entities:
- - uid: 728
- components:
- - type: Transform
- pos: 5.5,-1.5
- parent: 179
-- proto: GasPipeStraight
- entities:
- - uid: 749
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-3.5
- parent: 179
-- proto: GasPipeTJunction
- entities:
- - uid: 748
- components:
- - type: Transform
- pos: 5.5,-2.5
- parent: 179
-- proto: GasPort
- entities:
- - uid: 457
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-0.5
- parent: 179
-- proto: GasPressurePump
- entities:
- - uid: 171
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-3.5
+ pos: 12.5,-7.5
parent: 179
- proto: GasValve
entities:
- - uid: 168
+ - uid: 1545
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-24.5
parent: 179
- proto: GasVentPump
entities:
- - uid: 729
+ - uid: 1521
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,-22.5
parent: 179
- proto: GasVentScrubber
entities:
- - uid: 452
+ - uid: 1543
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-2.5
- parent: 179
-- proto: GasVolumePump
- entities:
- - uid: 160
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-22.5
parent: 179
- proto: GeigerCounter
entities:
@@ -3731,6 +5200,10 @@ entities:
- type: Transform
pos: -8.5,7.5
parent: 179
+ - type: Fixtures
+ fixtures: {}
+ - type: Airtight
+ noAirWhenFullyAirBlocked: True
missingComponents:
- TimedDespawn
- uid: 901
@@ -3738,6 +5211,10 @@ entities:
- type: Transform
pos: -10.5,7.5
parent: 179
+ - type: Fixtures
+ fixtures: {}
+ - type: Airtight
+ noAirWhenFullyAirBlocked: True
missingComponents:
- TimedDespawn
- uid: 902
@@ -3745,8 +5222,19 @@ entities:
- type: Transform
pos: -9.5,7.5
parent: 179
+ - type: Fixtures
+ fixtures: {}
+ - type: Airtight
+ noAirWhenFullyAirBlocked: True
missingComponents:
- TimedDespawn
+- proto: HolofanProjectorEmpty
+ entities:
+ - uid: 1569
+ components:
+ - type: Transform
+ pos: 7.2439203,-7.545966
+ parent: 179
- proto: HolosignWetFloor
entities:
- uid: 848
@@ -3779,6 +5267,13 @@ entities:
- type: Transform
pos: 2.5,15.5
parent: 179
+- proto: Igniter
+ entities:
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 13.546334,-14.688479
+ parent: 179
- proto: KitchenReagentGrinder
entities:
- uid: 731
@@ -3815,6 +5310,13 @@ entities:
- type: Transform
pos: -3.511025,-10.35149
parent: 179
+- proto: LockerAtmosphericsFilledHardsuit
+ entities:
+ - uid: 1278
+ components:
+ - type: Transform
+ pos: 7.5,-12.5
+ parent: 179
- proto: LockerBotanistFilled
entities:
- uid: 869
@@ -3890,81 +5392,27 @@ entities:
- 0
- 0
- 0
-- proto: LockerChiefEngineerFilled
+- proto: LockerChiefEngineerFilledHardsuit
entities:
- - uid: 447
+ - uid: 1564
components:
- type: Transform
- pos: 7.5,2.5
+ pos: 7.5,-13.5
parent: 179
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 2.9923203
- - 11.2568245
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: LockerElectricalSuppliesFilled
entities:
- - uid: 444
+ - uid: 405
components:
- type: Transform
- pos: 7.5,3.5
+ pos: 5.5,-6.5
parent: 179
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 2.9923203
- - 11.2568245
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerEngineerFilled
+- proto: LockerEngineerFilledHardsuit
entities:
- - uid: 490
+ - uid: 458
components:
- type: Transform
- pos: 7.5,4.5
+ pos: 5.5,-5.5
parent: 179
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 2.9923203
- - 11.2568245
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: LockerMedical
entities:
- uid: 128
@@ -4115,29 +5563,11 @@ entities:
- 0
- proto: LockerWeldingSuppliesFilled
entities:
- - uid: 871
+ - uid: 457
components:
- type: Transform
- pos: 7.5,1.5
+ pos: 5.5,-7.5
parent: 179
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 2.9923203
- - 11.2568245
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: MachineAnomalyGenerator
entities:
- uid: 1071
@@ -4307,10 +5737,37 @@ entities:
'UID: 31739': 801
- proto: NitrogenCanister
entities:
- - uid: 459
+ - uid: 871
components:
- type: Transform
- pos: 7.5,-1.5
+ pos: 9.5,-4.5
+ parent: 179
+ - uid: 876
+ components:
+ - type: Transform
+ pos: 10.5,-4.5
+ parent: 179
+ - uid: 1315
+ components:
+ - type: Transform
+ pos: 24.5,-9.5
+ parent: 179
+- proto: NitrousOxideCanister
+ entities:
+ - uid: 617
+ components:
+ - type: Transform
+ pos: 10.5,-3.5
+ parent: 179
+ - uid: 1302
+ components:
+ - type: Transform
+ pos: 9.5,-3.5
+ parent: 179
+ - uid: 1314
+ components:
+ - type: Transform
+ pos: 24.5,-17.5
parent: 179
- proto: Ointment
entities:
@@ -4326,10 +5783,20 @@ entities:
parent: 179
- proto: OxygenCanister
entities:
- - uid: 340
+ - uid: 747
components:
- type: Transform
- pos: 7.5,-3.5
+ pos: 13.5,-3.5
+ parent: 179
+ - uid: 875
+ components:
+ - type: Transform
+ pos: 12.5,-3.5
+ parent: 179
+ - uid: 1310
+ components:
+ - type: Transform
+ pos: 24.5,-7.5
parent: 179
- proto: PaperBin10
entities:
@@ -4359,10 +5826,20 @@ entities:
parent: 179
- proto: PlasmaCanister
entities:
- - uid: 461
+ - uid: 255
components:
- type: Transform
- pos: 7.5,-2.5
+ pos: 10.5,-2.5
+ parent: 179
+ - uid: 256
+ components:
+ - type: Transform
+ pos: 9.5,-2.5
+ parent: 179
+ - uid: 1311
+ components:
+ - type: Transform
+ pos: 24.5,-11.5
parent: 179
- proto: PlasticFlapsAirtightClear
entities:
@@ -4393,12 +5870,12 @@ entities:
- type: Transform
pos: -5.5,-5.5
parent: 179
-- proto: PortableGeneratorSuperPacman
+- proto: PowerCellAntiqueProto
entities:
- - uid: 1016
+ - uid: 1570
components:
- type: Transform
- pos: -6.5,-11.5
+ pos: 7.5772533,-7.233466
parent: 179
- proto: PowerCellHigh
entities:
@@ -4455,6 +5932,12 @@ entities:
parent: 179
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,-24.5
+ parent: 179
- uid: 536
components:
- type: Transform
@@ -4463,6 +5946,12 @@ entities:
parent: 179
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 546
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-5.5
+ parent: 179
- uid: 660
components:
- type: Transform
@@ -4534,22 +6023,6 @@ entities:
parent: 179
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 678
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-1.5
- parent: 179
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 680
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-5.5
- parent: 179
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 681
components:
- type: Transform
@@ -4584,6 +6057,97 @@ entities:
rot: 1.5707963267948966 rad
pos: 15.5,22.5
parent: 179
+ - uid: 1425
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-3.5
+ parent: 179
+ - uid: 1426
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-3.5
+ parent: 179
+ - uid: 1427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-7.5
+ parent: 179
+ - uid: 1428
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-14.5
+ parent: 179
+ - uid: 1429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-18.5
+ parent: 179
+ - uid: 1430
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-24.5
+ parent: 179
+ - uid: 1431
+ components:
+ - type: Transform
+ pos: 14.5,-7.5
+ parent: 179
+ - uid: 1432
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-23.5
+ parent: 179
+ - uid: 1433
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-19.5
+ parent: 179
+ - uid: 1434
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-15.5
+ parent: 179
+ - uid: 1435
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-11.5
+ parent: 179
+ - uid: 1436
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-7.5
+ parent: 179
+ - uid: 1437
+ components:
+ - type: Transform
+ pos: 19.5,-7.5
+ parent: 179
+- proto: PoweredlightExterior
+ entities:
+ - uid: 1557
+ components:
+ - type: Transform
+ pos: 16.5,-26.5
+ parent: 179
+- proto: PoweredLightPostSmall
+ entities:
+ - uid: 1438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-17.5
+ parent: 179
- proto: PoweredSmallLight
entities:
- uid: 163
@@ -4624,14 +6188,6 @@ entities:
parent: 179
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 483
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-9.5
- parent: 179
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 534
components:
- type: Transform
@@ -4640,6 +6196,12 @@ entities:
parent: 179
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-10.5
+ parent: 179
- proto: Protolathe
entities:
- uid: 12
@@ -4799,6 +6361,13 @@ entities:
- type: Transform
pos: -14.5,9.5
parent: 179
+- proto: RCDExperimental
+ entities:
+ - uid: 1575
+ components:
+ - type: Transform
+ pos: 1.6787996,-5.6922684
+ parent: 179
- proto: ReinforcedWindow
entities:
- uid: 1084
@@ -5018,6 +6587,30 @@ entities:
- Pressed: Toggle
698:
- Pressed: Toggle
+ - uid: 1560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-12.5
+ parent: 179
+ - type: DeviceLinkSource
+ linkedPorts:
+ 728:
+ - Pressed: Trigger
+- proto: SignAtmos
+ entities:
+ - uid: 1301
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-7.5
+ parent: 179
+ - uid: 1558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-6.5
+ parent: 179
- proto: SignCargoDock
entities:
- uid: 1046
@@ -5025,6 +6618,54 @@ entities:
- type: Transform
pos: 4.5,-4.5
parent: 179
+- proto: SignCryogenics
+ entities:
+ - uid: 1298
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-15.5
+ parent: 179
+- proto: SignDanger
+ entities:
+ - uid: 1203
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-19.5
+ parent: 179
+- proto: SignFlammable
+ entities:
+ - uid: 1297
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-13.5
+ parent: 179
+ - uid: 1299
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-11.5
+ parent: 179
+- proto: SignSpace
+ entities:
+ - uid: 1291
+ components:
+ - type: Transform
+ pos: 6.5,-19.5
+ parent: 179
+ - uid: 1555
+ components:
+ - type: Transform
+ pos: 6.5,-14.5
+ parent: 179
+ - uid: 1563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-25.5
+ parent: 179
- proto: SmallLight
entities:
- uid: 1048
@@ -5053,6 +6694,13 @@ entities:
- type: Transform
pos: 8.5,12.5
parent: 179
+- proto: SpawnMobCorgiMouse
+ entities:
+ - uid: 1050
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 179
- proto: SpawnMobHuman
entities:
- uid: 138
@@ -5070,13 +6718,6 @@ entities:
- type: Transform
pos: 3.5,7.5
parent: 179
-- proto: SpawnMobCorgiMouse
- entities:
- - uid: 1050
- components:
- - type: Transform
- pos: 3.5,8.5
- parent: 179
- proto: SpawnPointCaptain
entities:
- uid: 954
@@ -5112,6 +6753,13 @@ entities:
- type: Transform
pos: 6.985283,16.424004
parent: 179
+- proto: SprayPainter
+ entities:
+ - uid: 1572
+ components:
+ - type: Transform
+ pos: 7.5948057,-5.356733
+ parent: 179
- proto: Stimpack
entities:
- uid: 462
@@ -5132,6 +6780,28 @@ entities:
rot: 3.141592653589793 rad
pos: -2.5,-6.5
parent: 179
+- proto: StorageCanister
+ entities:
+ - uid: 1285
+ components:
+ - type: Transform
+ pos: 10.5,-6.5
+ parent: 179
+ - uid: 1286
+ components:
+ - type: Transform
+ pos: 9.5,-6.5
+ parent: 179
+ - uid: 1287
+ components:
+ - type: Transform
+ pos: 12.5,-6.5
+ parent: 179
+ - uid: 1288
+ components:
+ - type: Transform
+ pos: 13.5,-6.5
+ parent: 179
- proto: Stunbaton
entities:
- uid: 434
@@ -5202,6 +6872,11 @@ entities:
- type: Transform
pos: 8.5,21.5
parent: 179
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 7.5,-7.5
+ parent: 179
- uid: 92
components:
- type: Transform
@@ -5391,6 +7066,16 @@ entities:
- type: Transform
pos: 3.5,5.5
parent: 179
+ - uid: 452
+ components:
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 179
+ - uid: 461
+ components:
+ - type: Transform
+ pos: 7.5,-6.5
+ parent: 179
- uid: 465
components:
- type: Transform
@@ -5566,6 +7251,11 @@ entities:
- type: Transform
pos: 0.5,-3.5
parent: 179
+ - uid: 1561
+ components:
+ - type: Transform
+ pos: 7.5,-5.5
+ parent: 179
- proto: TableGlass
entities:
- uid: 964
@@ -5593,6 +7283,13 @@ entities:
- type: Transform
pos: 12.5,12.5
parent: 179
+- proto: TargetClown
+ entities:
+ - uid: 459
+ components:
+ - type: Transform
+ pos: 7.5,-0.5
+ parent: 179
- proto: TargetHuman
entities:
- uid: 159
@@ -5600,6 +7297,43 @@ entities:
- type: Transform
pos: -6.5,-1.5
parent: 179
+ - uid: 248
+ components:
+ - type: Transform
+ pos: 7.5,1.5
+ parent: 179
+- proto: TargetSyndicate
+ entities:
+ - uid: 613
+ components:
+ - type: Transform
+ pos: 7.5,-2.5
+ parent: 179
+- proto: TegCenter
+ entities:
+ - uid: 1576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-18.5
+ parent: 179
+- proto: TegCirculator
+ entities:
+ - uid: 1577
+ components:
+ - type: Transform
+ pos: 14.5,-18.5
+ parent: 179
+ - type: PointLight
+ color: '#FF3300FF'
+ - uid: 1578
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-18.5
+ parent: 179
+ - type: PointLight
+ color: '#FF3300FF'
- proto: TelecomServerFilled
entities:
- uid: 963
@@ -5652,6 +7386,23 @@ entities:
- type: Transform
pos: 1.354346,4.548879
parent: 179
+- proto: TritiumCanister
+ entities:
+ - uid: 254
+ components:
+ - type: Transform
+ pos: 13.5,-2.5
+ parent: 179
+ - uid: 619
+ components:
+ - type: Transform
+ pos: 12.5,-2.5
+ parent: 179
+ - uid: 1312
+ components:
+ - type: Transform
+ pos: 24.5,-13.5
+ parent: 179
- proto: TwoWayLever
entities:
- uid: 699
@@ -5715,6 +7466,53 @@ entities:
- Left: Forward
- Right: Reverse
- Middle: Off
+ - uid: 1290
+ components:
+ - type: Transform
+ pos: 7.5,-14.5
+ parent: 179
+ - type: TwoWayLever
+ nextSignalLeft: True
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1234:
+ - Left: Open
+ - Right: Open
+ - Middle: Close
+ 1233:
+ - Left: Open
+ - Right: Open
+ - Middle: Close
+ 1232:
+ - Left: Open
+ - Right: Open
+ - Middle: Close
+ 728:
+ - Left: Trigger
+ - Right: Trigger
+ - Middle: Trigger
+ - uid: 1499
+ components:
+ - type: Transform
+ pos: 11.5,-12.5
+ parent: 179
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1385:
+ - Left: Open
+ - Right: Open
+ - Middle: Close
+ - uid: 1520
+ components:
+ - type: Transform
+ pos: 7.5,-18.5
+ parent: 179
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1230:
+ - Left: Open
+ - Right: Open
+ - Middle: Close
- proto: UnfinishedMachineFrame
entities:
- uid: 522
@@ -5748,6 +7546,17 @@ entities:
- type: Transform
pos: -11.5,-1.5
parent: 179
+ - uid: 1567
+ components:
+ - type: Transform
+ pos: 5.5,-11.5
+ parent: 179
+ - type: ActionGrant
+ actions:
+ - ActionVendingThrow
+ - ActionVendingThrow
+ - ActionVendingThrow
+ - ActionVendingThrow
- proto: VendingMachineMedical
entities:
- uid: 156
@@ -5784,12 +7593,26 @@ entities:
- type: Transform
pos: -13.5,4.5
parent: 179
-- proto: VendingMachineTankDispenserEVA
+- proto: VendingMachineTankDispenserEngineering
entities:
- - uid: 875
+ - uid: 615
components:
- type: Transform
- pos: 7.5,0.5
+ pos: 17.5,-7.5
+ parent: 179
+- proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 614
+ components:
+ - type: Transform
+ pos: 14.5,-7.5
+ parent: 179
+- proto: VendingMachineVendomat
+ entities:
+ - uid: 1565
+ components:
+ - type: Transform
+ pos: 5.5,-12.5
parent: 179
- proto: VendingMachineYouTool
entities:
@@ -5798,6 +7621,17 @@ entities:
- type: Transform
pos: -11.5,-0.5
parent: 179
+ - uid: 1566
+ components:
+ - type: Transform
+ pos: 5.5,-10.5
+ parent: 179
+ - type: ActionGrant
+ actions:
+ - ActionVendingThrow
+ - ActionVendingThrow
+ - ActionVendingThrow
+ - ActionVendingThrow
- proto: WallSolid
entities:
- uid: 3
@@ -6065,16 +7899,6 @@ entities:
- type: Transform
pos: 9.5,22.5
parent: 179
- - uid: 76
- components:
- - type: Transform
- pos: 8.5,-1.5
- parent: 179
- - uid: 77
- components:
- - type: Transform
- pos: 8.5,-2.5
- parent: 179
- uid: 78
components:
- type: Transform
@@ -6130,11 +7954,6 @@ entities:
- type: Transform
pos: 7.5,27.5
parent: 179
- - uid: 97
- components:
- - type: Transform
- pos: 8.5,-3.5
- parent: 179
- uid: 98
components:
- type: Transform
@@ -6245,6 +8064,12 @@ entities:
- type: Transform
pos: 4.5,24.5
parent: 179
+ - uid: 160
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-0.5
+ parent: 179
- uid: 164
components:
- type: Transform
@@ -6256,11 +8081,23 @@ entities:
- type: Transform
pos: 8.5,2.5
parent: 179
+ - uid: 168
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-0.5
+ parent: 179
- uid: 169
components:
- type: Transform
pos: 8.5,0.5
parent: 179
+ - uid: 171
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-0.5
+ parent: 179
- uid: 173
components:
- type: Transform
@@ -6496,31 +8333,6 @@ entities:
- type: Transform
pos: -7.5,-5.5
parent: 179
- - uid: 248
- components:
- - type: Transform
- pos: 5.5,-7.5
- parent: 179
- - uid: 249
- components:
- - type: Transform
- pos: 5.5,-9.5
- parent: 179
- - uid: 250
- components:
- - type: Transform
- pos: 6.5,-9.5
- parent: 179
- - uid: 251
- components:
- - type: Transform
- pos: 6.5,-7.5
- parent: 179
- - uid: 254
- components:
- - type: Transform
- pos: 7.5,-9.5
- parent: 179
- uid: 260
components:
- type: Transform
@@ -6531,6 +8343,11 @@ entities:
- type: Transform
pos: 6.5,-5.5
parent: 179
+ - uid: 266
+ components:
+ - type: Transform
+ pos: 8.5,-3.5
+ parent: 179
- uid: 271
components:
- type: Transform
@@ -6671,6 +8488,12 @@ entities:
- type: Transform
pos: 24.5,14.5
parent: 179
+ - uid: 322
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-11.5
+ parent: 179
- uid: 329
components:
- type: Transform
@@ -6711,6 +8534,12 @@ entities:
- type: Transform
pos: 26.5,12.5
parent: 179
+ - uid: 346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-7.5
+ parent: 179
- uid: 352
components:
- type: Transform
@@ -6811,11 +8640,6 @@ entities:
- type: Transform
pos: 22.5,11.5
parent: 179
- - uid: 418
- components:
- - type: Transform
- pos: 7.5,-7.5
- parent: 179
- uid: 439
components:
- type: Transform
@@ -7012,11 +8836,6 @@ entities:
- type: Transform
pos: 7.5,-4.5
parent: 179
- - uid: 546
- components:
- - type: Transform
- pos: 8.5,-4.5
- parent: 179
- uid: 547
components:
- type: Transform
@@ -7165,47 +8984,18 @@ entities:
- uid: 612
components:
- type: Transform
- pos: 13.5,-1.5
- parent: 179
- - uid: 613
- components:
- - type: Transform
- pos: 13.5,-6.5
- parent: 179
- - uid: 614
- components:
- - type: Transform
- pos: 13.5,-5.5
- parent: 179
- - uid: 615
- components:
- - type: Transform
- pos: 13.5,-4.5
- parent: 179
- - uid: 616
- components:
- - type: Transform
- pos: 13.5,-3.5
- parent: 179
- - uid: 617
- components:
- - type: Transform
- pos: 13.5,-2.5
+ pos: 8.5,-2.5
parent: 179
- uid: 618
components:
- type: Transform
pos: 14.5,-6.5
parent: 179
- - uid: 619
- components:
- - type: Transform
- pos: 15.5,-6.5
- parent: 179
- uid: 620
components:
- type: Transform
- pos: 16.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-7.5
parent: 179
- uid: 621
components:
@@ -7402,6 +9192,11 @@ entities:
- type: Transform
pos: 27.5,4.5
parent: 179
+ - uid: 680
+ components:
+ - type: Transform
+ pos: 8.5,-1.5
+ parent: 179
- uid: 702
components:
- type: Transform
@@ -7490,6 +9285,12 @@ entities:
rot: 3.141592653589793 rad
pos: 15.5,18.5
parent: 179
+ - uid: 1016
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-9.5
+ parent: 179
- uid: 1072
components:
- type: Transform
@@ -7505,11 +9306,293 @@ entities:
- type: Transform
pos: 17.5,28.5
parent: 179
+ - uid: 1176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-10.5
+ parent: 179
- uid: 1181
components:
- type: Transform
pos: 5.5,28.5
parent: 179
+ - uid: 1206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-12.5
+ parent: 179
+ - uid: 1209
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-8.5
+ parent: 179
+ - uid: 1210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-17.5
+ parent: 179
+ - uid: 1211
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-15.5
+ parent: 179
+ - uid: 1212
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-19.5
+ parent: 179
+ - uid: 1213
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-18.5
+ parent: 179
+ - uid: 1214
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-22.5
+ parent: 179
+ - uid: 1215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-20.5
+ parent: 179
+ - uid: 1216
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-21.5
+ parent: 179
+ - uid: 1217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-13.5
+ parent: 179
+ - uid: 1218
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-14.5
+ parent: 179
+ - uid: 1219
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-16.5
+ parent: 179
+ - uid: 1226
+ components:
+ - type: Transform
+ pos: 6.5,-22.5
+ parent: 179
+ - uid: 1228
+ components:
+ - type: Transform
+ pos: 6.5,-21.5
+ parent: 179
+ - uid: 1229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-19.5
+ parent: 179
+ - uid: 1231
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-18.5
+ parent: 179
+ - uid: 1263
+ components:
+ - type: Transform
+ pos: 6.5,-23.5
+ parent: 179
+ - uid: 1272
+ components:
+ - type: Transform
+ pos: 6.5,-24.5
+ parent: 179
+ - uid: 1294
+ components:
+ - type: Transform
+ pos: 25.5,-24.5
+ parent: 179
+ - uid: 1295
+ components:
+ - type: Transform
+ pos: 25.5,-23.5
+ parent: 179
+ - uid: 1303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-1.5
+ parent: 179
+ - uid: 1304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-2.5
+ parent: 179
+ - uid: 1305
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-3.5
+ parent: 179
+ - uid: 1306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-4.5
+ parent: 179
+ - uid: 1307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-5.5
+ parent: 179
+ - uid: 1328
+ components:
+ - type: Transform
+ pos: 25.5,-25.5
+ parent: 179
+ - uid: 1329
+ components:
+ - type: Transform
+ pos: 24.5,-25.5
+ parent: 179
+ - uid: 1330
+ components:
+ - type: Transform
+ pos: 23.5,-25.5
+ parent: 179
+ - uid: 1331
+ components:
+ - type: Transform
+ pos: 22.5,-25.5
+ parent: 179
+ - uid: 1332
+ components:
+ - type: Transform
+ pos: 21.5,-25.5
+ parent: 179
+ - uid: 1333
+ components:
+ - type: Transform
+ pos: 20.5,-25.5
+ parent: 179
+ - uid: 1334
+ components:
+ - type: Transform
+ pos: 19.5,-25.5
+ parent: 179
+ - uid: 1337
+ components:
+ - type: Transform
+ pos: 16.5,-25.5
+ parent: 179
+ - uid: 1338
+ components:
+ - type: Transform
+ pos: 15.5,-25.5
+ parent: 179
+ - uid: 1339
+ components:
+ - type: Transform
+ pos: 14.5,-25.5
+ parent: 179
+ - uid: 1340
+ components:
+ - type: Transform
+ pos: 12.5,-25.5
+ parent: 179
+ - uid: 1341
+ components:
+ - type: Transform
+ pos: 11.5,-25.5
+ parent: 179
+ - uid: 1342
+ components:
+ - type: Transform
+ pos: 10.5,-25.5
+ parent: 179
+ - uid: 1343
+ components:
+ - type: Transform
+ pos: 9.5,-25.5
+ parent: 179
+ - uid: 1344
+ components:
+ - type: Transform
+ pos: 8.5,-25.5
+ parent: 179
+ - uid: 1345
+ components:
+ - type: Transform
+ pos: 7.5,-25.5
+ parent: 179
+ - uid: 1346
+ components:
+ - type: Transform
+ pos: 6.5,-25.5
+ parent: 179
+ - uid: 1347
+ components:
+ - type: Transform
+ pos: 13.5,-25.5
+ parent: 179
+ - uid: 1506
+ components:
+ - type: Transform
+ pos: 10.5,-12.5
+ parent: 179
+ - uid: 1559
+ components:
+ - type: Transform
+ pos: 8.5,-4.5
+ parent: 179
+- proto: WarningCO2
+ entities:
+ - uid: 1300
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-21.5
+ parent: 179
+- proto: WarningN2
+ entities:
+ - uid: 1208
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-9.5
+ parent: 179
+- proto: WarningN2O
+ entities:
+ - uid: 1296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-17.5
+ parent: 179
+- proto: WarningO2
+ entities:
+ - uid: 1227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-7.5
+ parent: 179
- proto: WaterTankFull
entities:
- uid: 115
@@ -7522,6 +9605,23 @@ entities:
- type: Transform
pos: -2.5,3.5
parent: 179
+- proto: WaterVaporCanister
+ entities:
+ - uid: 97
+ components:
+ - type: Transform
+ pos: 12.5,-1.5
+ parent: 179
+ - uid: 319
+ components:
+ - type: Transform
+ pos: 13.5,-1.5
+ parent: 179
+ - uid: 1313
+ components:
+ - type: Transform
+ pos: 24.5,-23.5
+ parent: 179
- proto: WeaponCapacitorRecharger
entities:
- uid: 708
@@ -7623,6 +9723,331 @@ entities:
- type: Transform
pos: 2.5,-14.5
parent: 179
+- proto: WindowReinforcedDirectional
+ entities:
+ - uid: 340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-7.5
+ parent: 179
+ - uid: 345
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-8.5
+ parent: 179
+ - uid: 347
+ components:
+ - type: Transform
+ pos: 24.5,-22.5
+ parent: 179
+ - uid: 348
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-8.5
+ parent: 179
+ - uid: 1236
+ components:
+ - type: Transform
+ pos: 23.5,-8.5
+ parent: 179
+ - uid: 1237
+ components:
+ - type: Transform
+ pos: 24.5,-8.5
+ parent: 179
+ - uid: 1239
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-10.5
+ parent: 179
+ - uid: 1240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-10.5
+ parent: 179
+ - uid: 1241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-9.5
+ parent: 179
+ - uid: 1242
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-11.5
+ parent: 179
+ - uid: 1243
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-13.5
+ parent: 179
+ - uid: 1244
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-15.5
+ parent: 179
+ - uid: 1245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-17.5
+ parent: 179
+ - uid: 1246
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-19.5
+ parent: 179
+ - uid: 1247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-22.5
+ parent: 179
+ - uid: 1248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-21.5
+ parent: 179
+ - uid: 1249
+ components:
+ - type: Transform
+ pos: 23.5,-10.5
+ parent: 179
+ - uid: 1250
+ components:
+ - type: Transform
+ pos: 24.5,-10.5
+ parent: 179
+ - uid: 1251
+ components:
+ - type: Transform
+ pos: 24.5,-12.5
+ parent: 179
+ - uid: 1252
+ components:
+ - type: Transform
+ pos: 24.5,-14.5
+ parent: 179
+ - uid: 1253
+ components:
+ - type: Transform
+ pos: 24.5,-16.5
+ parent: 179
+ - uid: 1254
+ components:
+ - type: Transform
+ pos: 24.5,-18.5
+ parent: 179
+ - uid: 1255
+ components:
+ - type: Transform
+ pos: 24.5,-20.5
+ parent: 179
+ - uid: 1256
+ components:
+ - type: Transform
+ pos: 23.5,-20.5
+ parent: 179
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: 23.5,-18.5
+ parent: 179
+ - uid: 1259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-24.5
+ parent: 179
+ - uid: 1261
+ components:
+ - type: Transform
+ pos: 23.5,-16.5
+ parent: 179
+ - uid: 1262
+ components:
+ - type: Transform
+ pos: 23.5,-14.5
+ parent: 179
+ - uid: 1264
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-22.5
+ parent: 179
+ - uid: 1265
+ components:
+ - type: Transform
+ pos: 23.5,-12.5
+ parent: 179
+ - uid: 1266
+ components:
+ - type: Transform
+ pos: 23.5,-22.5
+ parent: 179
+ - uid: 1267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-12.5
+ parent: 179
+ - uid: 1268
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-12.5
+ parent: 179
+ - uid: 1269
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-14.5
+ parent: 179
+ - uid: 1270
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-14.5
+ parent: 179
+ - uid: 1271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-23.5
+ parent: 179
+ - uid: 1273
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-16.5
+ parent: 179
+ - uid: 1274
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-16.5
+ parent: 179
+ - uid: 1275
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-18.5
+ parent: 179
+ - uid: 1276
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-18.5
+ parent: 179
+ - uid: 1279
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-20.5
+ parent: 179
+ - uid: 1280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-20.5
+ parent: 179
+ - uid: 1283
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-24.5
+ parent: 179
+ - uid: 1386
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-15.5
+ parent: 179
+ - uid: 1387
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-13.5
+ parent: 179
+ - uid: 1388
+ components:
+ - type: Transform
+ pos: 12.5,-12.5
+ parent: 179
+ - uid: 1490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-15.5
+ parent: 179
+ - uid: 1491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-14.5
+ parent: 179
+ - uid: 1492
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-16.5
+ parent: 179
+ - uid: 1494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-13.5
+ parent: 179
+ - uid: 1495
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-16.5
+ parent: 179
+ - uid: 1496
+ components:
+ - type: Transform
+ pos: 11.5,-12.5
+ parent: 179
+ - uid: 1497
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-16.5
+ parent: 179
+ - uid: 1498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-15.5
+ parent: 179
+ - uid: 1501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-16.5
+ parent: 179
+ - uid: 1505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-13.5
+ parent: 179
+ - uid: 1562
+ components:
+ - type: Transform
+ pos: 14.5,-12.5
+ parent: 179
- proto: Wirecutter
entities:
- uid: 359
diff --git a/Resources/Maps/_CP14/Dungeon/artifact_room.yml b/Resources/Maps/_CP14/Dungeon/artifact_room.yml
new file mode 100644
index 0000000000..43a80a4cd3
--- /dev/null
+++ b/Resources/Maps/_CP14/Dungeon/artifact_room.yml
@@ -0,0 +1,890 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 20: CP14FloorBase
+ 9: CP14FloorFoundation
+ 13: CP14FloorGrass
+ 14: CP14FloorGrassLight
+ 15: CP14FloorGrassTall
+ 21: CP14FloorLucensWoodPlanksCruciform
+ 10: CP14FloorOakWoodPlanksBig
+ 12: CP14FloorOakWoodPlanksBroken
+ 11: CP14FloorOakWoodPlanksCruciform
+ 17: CP14FloorStonebricks
+ 16: CP14FloorStonebricksSmallCarved1
+ 19: CP14FloorStonebricksSmallCarved2
+ 18: CP14FloorStonebricksSquareCarved
+ 2: FloorAsteroidSand
+ 6: FloorAsteroidSandUnvariantized
+ 5: FloorAsteroidTile
+ 8: FloorBrokenWood
+ 82: FloorShuttleOrange
+ 1: FloorShuttlePurple
+ 89: FloorSteel
+ 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: CQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAACQAAAAAACQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAEgAAAAAAEAAAAAAAEAAAAAAACQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAACQAAAAAACQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEgAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAACQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAACQAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: EAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAFQAAAAAAEAAAAAAAFQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAACQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACQAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAAACQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAFQAAAAAAEgAAAAAAFQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAEAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAFQAAAAAAEAAAAAAAFQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAACQAAAAAAEAAAAAAACQAAAAAACQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ 1,1:
+ ind: 1,1
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ -1,2:
+ ind: -1,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,2:
+ ind: 0,2
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,2:
+ ind: 1,2
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,-1:
+ ind: 2,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,0:
+ ind: 2,0
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEAAAAAAAEAAAAAAACQAAAAAAEAAAAAAAEAAAAAAACQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACQAAAAAACQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEAAAAAAAAQAAAAAACQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,1:
+ ind: 2,1
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,2:
+ ind: 2,2
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes: []
+ - type: LoadedMap
+ - type: SpreaderGrid
+ - type: GridPathfinding
+ - type: RadiationGridResistance
+- proto: CP14Chasm
+ entities:
+ - uid: 11
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,4.5
+ parent: 1
+ - uid: 12
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 1
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 13.5,2.5
+ parent: 1
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 10.5,3.5
+ parent: 1
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 11.5,4.5
+ parent: 1
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 1
+ - uid: 78
+ components:
+ - type: Transform
+ pos: 10.5,4.5
+ parent: 1
+ - uid: 80
+ components:
+ - type: Transform
+ pos: 10.5,5.5
+ parent: 1
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 11.5,1.5
+ parent: 1
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 1
+ - uid: 84
+ components:
+ - type: Transform
+ pos: 13.5,3.5
+ parent: 1
+ - uid: 85
+ components:
+ - type: Transform
+ pos: 11.5,5.5
+ parent: 1
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 13.5,4.5
+ parent: 1
+ - uid: 87
+ components:
+ - type: Transform
+ pos: 11.5,6.5
+ parent: 1
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 12.5,5.5
+ parent: 1
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 12.5,3.5
+ parent: 1
+ - uid: 97
+ components:
+ - type: Transform
+ pos: 14.5,3.5
+ parent: 1
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 1
+ - uid: 106
+ components:
+ - type: Transform
+ pos: 12.5,1.5
+ parent: 1
+ - uid: 107
+ components:
+ - type: Transform
+ pos: 9.5,4.5
+ parent: 1
+ - uid: 108
+ components:
+ - type: Transform
+ pos: 9.5,3.5
+ parent: 1
+ - uid: 110
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 1
+ - uid: 117
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 1
+ - uid: 118
+ components:
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 1
+ - uid: 119
+ components:
+ - type: Transform
+ pos: 12.5,2.5
+ parent: 1
+ - uid: 123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,2.5
+ parent: 1
+ - uid: 127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,1.5
+ parent: 1
+ - uid: 129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,2.5
+ parent: 1
+ - uid: 130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,3.5
+ parent: 1
+ - uid: 133
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,3.5
+ parent: 1
+ - uid: 139
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,5.5
+ parent: 1
+- proto: CP14FenceIronGrilleStraight
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,1.5
+ parent: 1
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 17.5,6.5
+ parent: 1
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 25.5,6.5
+ parent: 1
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 26.5,6.5
+ parent: 1
+ - uid: 23
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,5.5
+ parent: 1
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 21.5,6.5
+ parent: 1
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 1
+ - uid: 31
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,1.5
+ parent: 1
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 28.5,0.5
+ parent: 1
+ - uid: 45
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,3.5
+ parent: 1
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 29.5,0.5
+ parent: 1
+ - uid: 58
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,5.5
+ parent: 1
+ - uid: 64
+ components:
+ - type: Transform
+ pos: 19.5,6.5
+ parent: 1
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 4.5,5.5
+ parent: 1
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 1
+ - uid: 100
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,0.5
+ parent: 1
+ - uid: 101
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,0.5
+ parent: 1
+ - uid: 104
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 109
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,0.5
+ parent: 1
+ - uid: 112
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 1
+ - uid: 115
+ components:
+ - type: Transform
+ pos: 2.5,5.5
+ parent: 1
+ - uid: 120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,1.5
+ parent: 1
+- proto: CP14IronDoorGuardWeaponStorage
+ entities:
+ - uid: 62
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,3.5
+ parent: 1
+ - uid: 103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,3.5
+ parent: 1
+ - uid: 111
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 1
+ - uid: 121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,3.5
+ parent: 1
+ - uid: 131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,3.5
+ parent: 1
+- proto: CP14MobGroupSpawnerZombie
+ entities:
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 20.5,4.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 18.5,2.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14SpawnUniqueArtifact
+ entities:
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 1
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 19.5,3.5
+ parent: 1
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 25.5,3.5
+ parent: 1
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 11.5,3.5
+ parent: 1
+ - uid: 125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,3.5
+ parent: 1
+- proto: CP14TableWoodenRound
+ entities:
+ - uid: 26
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 19.5,3.5
+ parent: 1
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 25.5,3.5
+ parent: 1
+ - uid: 126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,3.5
+ parent: 1
+- proto: CP14WallmountTorchAlwaysPowered
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,4.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 18.5,5.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 28.5,1.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 38
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,3.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 113
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,2.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 140
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,2.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14WallSkulls
+ entities:
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 27.5,2.5
+ parent: 1
+ - uid: 10
+ components:
+ - type: Transform
+ pos: 27.5,6.5
+ parent: 1
+ - uid: 13
+ components:
+ - type: Transform
+ pos: 26.5,0.5
+ parent: 1
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 30.5,2.5
+ parent: 1
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 25.5,2.5
+ parent: 1
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 25.5,4.5
+ parent: 1
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 22.5,6.5
+ parent: 1
+ - uid: 22
+ components:
+ - type: Transform
+ pos: 22.5,4.5
+ parent: 1
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 1
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 5.5,1.5
+ parent: 1
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 26.5,4.5
+ parent: 1
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 28.5,6.5
+ parent: 1
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 30.5,1.5
+ parent: 1
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 30.5,0.5
+ parent: 1
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 28.5,4.5
+ parent: 1
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 28.5,2.5
+ parent: 1
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 29.5,4.5
+ parent: 1
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 27.5,0.5
+ parent: 1
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 30.5,4.5
+ parent: 1
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 25.5,0.5
+ parent: 1
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 24.5,2.5
+ parent: 1
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 24.5,3.5
+ parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 28.5,5.5
+ parent: 1
+ - uid: 63
+ components:
+ - type: Transform
+ pos: 20.5,6.5
+ parent: 1
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 16.5,6.5
+ parent: 1
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 16.5,4.5
+ parent: 1
+ - uid: 67
+ components:
+ - type: Transform
+ pos: 18.5,6.5
+ parent: 1
+ - uid: 71
+ components:
+ - type: Transform
+ pos: 24.5,6.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 16.5,2.5
+ parent: 1
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 24.5,4.5
+ parent: 1
+ - uid: 79
+ components:
+ - type: Transform
+ pos: 20.5,0.5
+ parent: 1
+ - uid: 81
+ components:
+ - type: Transform
+ pos: 22.5,0.5
+ parent: 1
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 1
+ - uid: 92
+ components:
+ - type: Transform
+ pos: 5.5,4.5
+ parent: 1
+ - uid: 93
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 1
+ - uid: 95
+ components:
+ - type: Transform
+ pos: 16.5,0.5
+ parent: 1
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 18.5,0.5
+ parent: 1
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 105
+ components:
+ - type: Transform
+ pos: 22.5,2.5
+ parent: 1
+ - uid: 114
+ components:
+ - type: Transform
+ pos: 5.5,5.5
+ parent: 1
+ - uid: 116
+ components:
+ - type: Transform
+ pos: 1.5,5.5
+ parent: 1
+ - uid: 124
+ components:
+ - type: Transform
+ pos: 36.5,4.5
+ parent: 1
+ - uid: 128
+ components:
+ - type: Transform
+ pos: 36.5,2.5
+ parent: 1
+ - uid: 134
+ components:
+ - type: Transform
+ pos: 37.5,2.5
+ parent: 1
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 38.5,2.5
+ parent: 1
+ - uid: 136
+ components:
+ - type: Transform
+ pos: 38.5,3.5
+ parent: 1
+ - uid: 137
+ components:
+ - type: Transform
+ pos: 38.5,4.5
+ parent: 1
+ - uid: 138
+ components:
+ - type: Transform
+ pos: 37.5,4.5
+ parent: 1
+- proto: CP14XenoTurret
+ entities:
+ - uid: 2
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,1.5
+ parent: 1
+ - uid: 3
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,0.5
+ parent: 1
+ - uid: 7
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,5.5
+ parent: 1
+ - uid: 8
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,1.5
+ parent: 1
+ - uid: 35
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,1.5
+ parent: 1
+ - uid: 37
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,4.5
+ parent: 1
+ - uid: 39
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,6.5
+ parent: 1
+ - uid: 42
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,0.5
+ parent: 1
+ - uid: 47
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,5.5
+ parent: 1
+ - uid: 69
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,5.5
+ parent: 1
+ - uid: 122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,6.5
+ parent: 1
+ - uid: 132
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,3.5
+ parent: 1
+- proto: LandMineExplosive
+ entities:
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 25.35069,5.6042547
+ parent: 1
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 29.570948,3.5915112
+ parent: 1
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 27.511461,5.559277
+ parent: 1
+ - uid: 72
+ components:
+ - type: Transform
+ pos: 26.4986,1.6237447
+ parent: 1
+...
diff --git a/Resources/Maps/_CP14/comoss.yml b/Resources/Maps/_CP14/comoss.yml
index 9ab268fa62..cd082b38de 100644
--- a/Resources/Maps/_CP14/comoss.yml
+++ b/Resources/Maps/_CP14/comoss.yml
@@ -74,9 +74,9 @@ entities:
- type: CP14DayCycle
- type: CP14WeatherController
entries:
- - visuals: CP14Snow
- - visuals: CP14SnowLight
- - visuals: CP14SnowMedium
+ - visuals: CP14Mist
+ - visuals: CP14Rain
+ - visuals: CP14Storm
- type: CP14MapDamage
- type: LoadedMap
- type: Parallax
@@ -93,379 +93,379 @@ entities:
chunks:
0,0:
ind: 0,0
- tiles: GQAAAAAGGQAAAAABGQAAAAAEGAAAAAAAFwAAAAACBAAAAAAIBAAAAAAIBAAAAAABBAAAAAANBAAAAAAAFwAAAAAFBAAAAAAGBwAAAAACBwAAAAACBQAAAAACBgAAAAAAGQAAAAADFwAAAAAEFwAAAAADGAAAAAACGAAAAAAEBAAAAAACBQAAAAADBQAAAAAABQAAAAAABAAAAAAJFwAAAAABBAAAAAANBQAAAAAABQAAAAABBQAAAAADBQAAAAAAGQAAAAADFwAAAAAFBAAAAAAJBAAAAAABBQAAAAACBAAAAAACBQAAAAACBQAAAAAABQAAAAAABAAAAAANFwAAAAACBAAAAAAEBwAAAAACBQAAAAACBQAAAAADBwAAAAABGQAAAAAIFwAAAAAABAAAAAAHBAAAAAAJBAAAAAAJBAAAAAALBAAAAAAMBQAAAAADBQAAAAABBAAAAAAGFwAAAAADBAAAAAAMBgAAAAADBgAAAAAABQAAAAABBgAAAAACGQAAAAAFFwAAAAAFBAAAAAAMBQAAAAAABAAAAAAFBAAAAAANBAAAAAAHBAAAAAACBAAAAAACBAAAAAALFwAAAAAEBAAAAAAJBwAAAAAABgAAAAACBwAAAAADBQAAAAADGQAAAAAEFwAAAAAABAAAAAAEBQAAAAABBQAAAAABBAAAAAADBAAAAAAEBAAAAAAIBQAAAAAABAAAAAAAFwAAAAAABAAAAAAEBwAAAAADBwAAAAAABQAAAAABBQAAAAACGQAAAAAIFwAAAAAABAAAAAAEBAAAAAAABAAAAAAEBAAAAAAHBAAAAAALBQAAAAABBAAAAAACBAAAAAABFwAAAAAABAAAAAAJBAAAAAALBAAAAAAABAAAAAAIBAAAAAANGQAAAAAGFwAAAAAFFwAAAAABFwAAAAABFwAAAAAFFwAAAAACFwAAAAABGAAAAAACFwAAAAADFwAAAAABFwAAAAABFwAAAAACFwAAAAAAFwAAAAADFwAAAAADFwAAAAADGQAAAAABGQAAAAAFGQAAAAABGQAAAAAEGQAAAAACGQAAAAAGGQAAAAACGQAAAAAGGQAAAAADGQAAAAAAGQAAAAACGQAAAAACGQAAAAABGQAAAAAIGQAAAAADGQAAAAAEGQAAAAACGQAAAAAHGQAAAAAAGQAAAAAFGQAAAAADGQAAAAAFGQAAAAAFGQAAAAAIGQAAAAAGGQAAAAABGQAAAAAIGQAAAAAAGQAAAAACGQAAAAABGQAAAAAGGQAAAAABGAAAAAAEGAAAAAAFFwAAAAACFwAAAAAFFgAAAAADGAAAAAAEGAAAAAACFwAAAAACFwAAAAACFwAAAAAEFwAAAAADFwAAAAACFwAAAAAEGAAAAAAEFwAAAAABFwAAAAAFBAAAAAAFBAAAAAACBAAAAAAGBAAAAAAKBAAAAAAMBAAAAAAHBAAAAAAJFwAAAAACBAAAAAAHBAAAAAAJBAAAAAAFBAAAAAAJBAAAAAAABQAAAAABBAAAAAAKBAAAAAAMBQAAAAADBQAAAAADBgAAAAADBQAAAAACBwAAAAAABQAAAAADBAAAAAAMFwAAAAACBAAAAAALBgAAAAADBgAAAAADBQAAAAAABQAAAAADBwAAAAACBwAAAAAABAAAAAAEBQAAAAABBQAAAAADBgAAAAACBQAAAAADBwAAAAAABwAAAAADBAAAAAAEFwAAAAACBAAAAAAJBgAAAAACBQAAAAADBQAAAAACBgAAAAACBwAAAAABBwAAAAACBAAAAAABBQAAAAABBgAAAAAABQAAAAABBQAAAAAABwAAAAADBgAAAAAABAAAAAAKFwAAAAAEBAAAAAAHBQAAAAAABwAAAAACBQAAAAAABQAAAAAABQAAAAABBgAAAAADBAAAAAANBgAAAAACBQAAAAADBAAAAAAHBAAAAAAMBAAAAAAIBAAAAAAKBAAAAAAHFwAAAAADBAAAAAALBAAAAAADBAAAAAAFBQAAAAAABQAAAAAABQAAAAABBAAAAAAKBAAAAAAI
+ tiles: AwAAAAAEAwAAAAAIAwAAAAABAgAAAAAHAgAAAAAKBAAAAAADBAAAAAAABAAAAAABBAAAAAAHBAAAAAAAFgAAAAAEBAAAAAALBwAAAAADBwAAAAACBQAAAAACBgAAAAACAwAAAAAFHgAAAAAEHgAAAAABAgAAAAAMAgAAAAAGBAAAAAAABQAAAAACBQAAAAAABQAAAAABBAAAAAAIHgAAAAAFBAAAAAAGBQAAAAAABQAAAAABBQAAAAACBQAAAAABAwAAAAAIHgAAAAADBAAAAAADBAAAAAAMBQAAAAABBAAAAAAMBQAAAAABBQAAAAAABQAAAAADBAAAAAAEHgAAAAAEBAAAAAAHBwAAAAACBQAAAAACBQAAAAADBwAAAAAAAwAAAAAEHgAAAAACBAAAAAAGBAAAAAAEBAAAAAAHBAAAAAADBAAAAAAMBQAAAAACBQAAAAACBAAAAAAKHgAAAAAFBAAAAAACBgAAAAADBgAAAAADBQAAAAADBgAAAAAAAwAAAAAIHgAAAAABBAAAAAAFBQAAAAABBAAAAAAGBAAAAAACBAAAAAAMBAAAAAAFBAAAAAAHBAAAAAAKHgAAAAADBAAAAAADBwAAAAACBgAAAAACBwAAAAAABQAAAAAAAwAAAAADHgAAAAABBAAAAAAMBQAAAAABBQAAAAAABAAAAAAMBAAAAAAEBAAAAAADBQAAAAAABAAAAAAGHgAAAAABBAAAAAAJBwAAAAADBwAAAAAABQAAAAADBQAAAAADAwAAAAAAGAAAAAABBAAAAAANBAAAAAAMBAAAAAAABAAAAAAABAAAAAANBQAAAAADBAAAAAAGBAAAAAAAHgAAAAAEBAAAAAAFBAAAAAAEBAAAAAAHBAAAAAALBAAAAAAJAwAAAAAIHgAAAAADHgAAAAAFAgAAAAAFAgAAAAAJAgAAAAAEAgAAAAAIHQAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAADAgAAAAAMAwAAAAAEAwAAAAADAwAAAAABAwAAAAAIAwAAAAAGAwAAAAABAwAAAAAFAwAAAAAAAwAAAAAEAwAAAAAIAwAAAAACAwAAAAAGAwAAAAAHAwAAAAAEAwAAAAAAAwAAAAAFAwAAAAAGAwAAAAAAAwAAAAADAwAAAAAFAwAAAAAHAwAAAAAEAwAAAAAEAwAAAAAAAwAAAAAAAwAAAAAHAwAAAAAEAwAAAAABAwAAAAAHAwAAAAADAwAAAAAFAwAAAAAHHQAAAAABHQAAAAAEHgAAAAADHgAAAAACHAAAAAAEGAAAAAAAAgAAAAAAAgAAAAAJAgAAAAALAgAAAAAFHgAAAAAFHgAAAAACAgAAAAAGAgAAAAANAgAAAAAIHgAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAAKBAAAAAAJBAAAAAAGBAAAAAADAgAAAAAJBAAAAAAIBAAAAAAGBAAAAAAIBAAAAAAEBAAAAAAGBQAAAAAABAAAAAAKBAAAAAAIBQAAAAACBQAAAAACBAAAAAAABQAAAAAABwAAAAACBQAAAAADBAAAAAAAHgAAAAACBAAAAAADBgAAAAABBgAAAAACBQAAAAAABQAAAAACBwAAAAABBwAAAAADBAAAAAAMBQAAAAADBQAAAAAABgAAAAABBQAAAAACBwAAAAADBwAAAAABBAAAAAAKGAAAAAADBAAAAAALBgAAAAABBQAAAAADBQAAAAADBgAAAAABBwAAAAABBwAAAAAABAAAAAAABQAAAAACBgAAAAABBAAAAAAABQAAAAABBwAAAAAABgAAAAACBAAAAAAMHgAAAAAEBAAAAAADBQAAAAAABwAAAAABBQAAAAADBQAAAAABBQAAAAAABgAAAAABBAAAAAAMBgAAAAABBQAAAAABBAAAAAABBAAAAAAFBAAAAAAIBAAAAAAKBAAAAAAEHgAAAAABBAAAAAAIBAAAAAADBAAAAAAFBQAAAAADBQAAAAABBQAAAAADBAAAAAAHBAAAAAAJ
version: 6
0,-1:
ind: 0,-1
- tiles: FwAAAAAEFgAAAAAAFgAAAAABGAAAAAAFGAAAAAAFFwAAAAAEFwAAAAAEGQAAAAADGQAAAAAGFwAAAAAFBAAAAAAJBQAAAAADBQAAAAABBQAAAAADBQAAAAAABQAAAAACFwAAAAAEFgAAAAACFgAAAAAEGAAAAAAFFgAAAAAAFwAAAAAFFwAAAAADGQAAAAAFGQAAAAACFwAAAAAEBAAAAAACBQAAAAACBQAAAAAABQAAAAACBQAAAAABBQAAAAADFwAAAAAAFwAAAAAEGAAAAAACFgAAAAAEFwAAAAAEFwAAAAAFFwAAAAADGQAAAAAIGQAAAAADFwAAAAABBAAAAAAEBAAAAAAGBAAAAAAKBAAAAAAGBAAAAAADBAAAAAANFwAAAAAAFwAAAAAAFwAAAAACFwAAAAAFFwAAAAABFwAAAAACFwAAAAADGQAAAAAEGQAAAAAGFwAAAAADFwAAAAAAFwAAAAADFwAAAAABFwAAAAAAFwAAAAACFwAAAAAAGQAAAAAEGQAAAAAHGQAAAAADGQAAAAACGQAAAAAHGQAAAAAHGQAAAAACGQAAAAAEGQAAAAAEGQAAAAAHGQAAAAADGQAAAAAIGQAAAAAHGQAAAAADGQAAAAACGQAAAAABGQAAAAAIGQAAAAAGGQAAAAACGQAAAAAEGQAAAAABGQAAAAAGGQAAAAAHGQAAAAACGQAAAAAAGQAAAAAAGQAAAAABGQAAAAAFGQAAAAADGQAAAAAIGQAAAAABGQAAAAAAGQAAAAAIFwAAAAADFwAAAAAFFwAAAAADFwAAAAACFwAAAAAEFwAAAAADFwAAAAAAFwAAAAADFwAAAAAFFwAAAAAFFwAAAAACFwAAAAAFGAAAAAACAgAAAAANFwAAAAACGQAAAAAEFwAAAAAEBAAAAAAABAAAAAAHBAAAAAAKBAAAAAAGBAAAAAACBAAAAAAMBAAAAAAABAAAAAABFwAAAAADAgAAAAADAgAAAAALFwAAAAADAgAAAAAOFwAAAAAFGQAAAAABFwAAAAACBAAAAAAJBQAAAAABBQAAAAABBgAAAAABBgAAAAACBQAAAAADBgAAAAABBAAAAAACAgAAAAAGAgAAAAADFwAAAAAFAgAAAAAGAgAAAAABAgAAAAAAGQAAAAAFFwAAAAABBAAAAAACBgAAAAACBQAAAAAABgAAAAAABgAAAAACBwAAAAACBgAAAAABBAAAAAAIAgAAAAAKAgAAAAACAgAAAAACAgAAAAAMAgAAAAAAAgAAAAAFGQAAAAACGAAAAAABBQAAAAADBgAAAAACBQAAAAAABwAAAAACBQAAAAADBwAAAAADBwAAAAADBAAAAAALAgAAAAAHAgAAAAAJAgAAAAACAgAAAAABAgAAAAAGAgAAAAAEGQAAAAABFwAAAAAEBAAAAAANBAAAAAABBAAAAAAKBAAAAAAGBQAAAAADBwAAAAADBQAAAAAABAAAAAAGAgAAAAAFAgAAAAADFwAAAAAAAgAAAAANAgAAAAACAgAAAAAGGQAAAAADFwAAAAAAFwAAAAAAFwAAAAABFwAAAAABBAAAAAACBQAAAAADBQAAAAABBQAAAAACBAAAAAAFAgAAAAAEAgAAAAALAgAAAAAMAgAAAAAKFwAAAAAFAgAAAAABGQAAAAADGQAAAAADGQAAAAAIFwAAAAADFwAAAAAEBAAAAAANBQAAAAACBgAAAAABBgAAAAACBgAAAAABFwAAAAAFAgAAAAAAAgAAAAAFAgAAAAAKAgAAAAAJAgAAAAANGQAAAAABGQAAAAAAGQAAAAACGQAAAAACFwAAAAABBAAAAAAFBAAAAAAABAAAAAANBAAAAAAMBAAAAAAKAgAAAAANFwAAAAACAgAAAAABAgAAAAADFwAAAAABAgAAAAAMGQAAAAAAGQAAAAAFGQAAAAAEGQAAAAACFwAAAAAFFwAAAAADFwAAAAACFwAAAAACFwAAAAAAFwAAAAADFwAAAAAFBAAAAAAJBwAAAAACBAAAAAAKBAAAAAANBAAAAAAH
+ tiles: AgAAAAAGHgAAAAADAgAAAAADAgAAAAALAgAAAAADFgAAAAADHgAAAAAAAwAAAAAIAwAAAAAIHgAAAAACBAAAAAACBQAAAAABBQAAAAACBQAAAAAABQAAAAADBQAAAAABHgAAAAAFAgAAAAAMAgAAAAAOAgAAAAAMFgAAAAAFHgAAAAADHgAAAAAFAwAAAAABAwAAAAAIHgAAAAACBAAAAAAEBQAAAAAABQAAAAACBQAAAAAABQAAAAAABQAAAAADHgAAAAAAAgAAAAAGHQAAAAAFAgAAAAAMHgAAAAABHgAAAAACHgAAAAABAwAAAAADAwAAAAACHgAAAAAEBAAAAAADBAAAAAAHBAAAAAAFBAAAAAALBAAAAAAFBAAAAAABHgAAAAAFAgAAAAAJHgAAAAAFHgAAAAADHgAAAAADHgAAAAADHgAAAAABAwAAAAAHAwAAAAAIHgAAAAADHgAAAAAEHgAAAAAAHgAAAAAEHgAAAAAAHgAAAAABAgAAAAAHAwAAAAAAAwAAAAAIAwAAAAAHAwAAAAACAwAAAAABAwAAAAABAwAAAAAEAwAAAAACAwAAAAADAwAAAAAAAwAAAAAHAwAAAAABAwAAAAAGAwAAAAAGAwAAAAAFAwAAAAAIAwAAAAAHAwAAAAAFAwAAAAAGAwAAAAAGAwAAAAAEAwAAAAABAwAAAAABAwAAAAAIAwAAAAAHAwAAAAAAAwAAAAACAwAAAAAIAwAAAAAIAwAAAAAGAwAAAAAFAwAAAAACAwAAAAAFAgAAAAADAgAAAAALHgAAAAAEHgAAAAAEHgAAAAAEHgAAAAABHgAAAAAEHgAAAAACAgAAAAABAgAAAAAFAgAAAAAJHgAAAAABHQAAAAAEAgAAAAAFHgAAAAACAwAAAAACAgAAAAAKBAAAAAAKBAAAAAAFBAAAAAAABAAAAAALBAAAAAADBAAAAAAIBAAAAAAHBAAAAAABHgAAAAAFAgAAAAAJAgAAAAAGHgAAAAADAgAAAAAAHgAAAAAFAwAAAAAAHgAAAAABBAAAAAAFBQAAAAAABQAAAAAABgAAAAACBgAAAAAABQAAAAAABgAAAAAABAAAAAAIAgAAAAAJAgAAAAACHgAAAAAAAgAAAAADAgAAAAAOAgAAAAAIAwAAAAAAHgAAAAABBAAAAAALBgAAAAAABQAAAAADBgAAAAAABgAAAAADBwAAAAAABgAAAAACBAAAAAADAgAAAAAHAgAAAAAJAgAAAAACAgAAAAADAgAAAAAFAgAAAAAJAwAAAAAIHQAAAAAABQAAAAACBgAAAAACBQAAAAACBwAAAAADBQAAAAABBwAAAAADBwAAAAADBAAAAAAJAgAAAAAJAgAAAAAJAgAAAAACAgAAAAAHAgAAAAAKAgAAAAAHAwAAAAACHgAAAAABBAAAAAAKBAAAAAAIBAAAAAAABAAAAAAFBQAAAAAABwAAAAAABQAAAAABBAAAAAABAgAAAAANAgAAAAAOHgAAAAABAgAAAAAGAgAAAAAKAgAAAAAFAwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAABAAAAAAMBQAAAAAABQAAAAACBQAAAAACBAAAAAAEAgAAAAALAgAAAAABAgAAAAAEAgAAAAABHgAAAAAFAgAAAAAMAwAAAAAEAwAAAAAFAwAAAAAFHgAAAAACHgAAAAAABAAAAAADBQAAAAAABgAAAAADBgAAAAADBgAAAAACFgAAAAADAgAAAAAMAgAAAAAJAgAAAAACAgAAAAAEAgAAAAANAwAAAAAFAwAAAAAGAwAAAAAFAwAAAAAFHgAAAAACBAAAAAABBAAAAAAFBAAAAAAIBAAAAAAGBAAAAAAKFwAAAAAAFgAAAAACAgAAAAAHAgAAAAAAHgAAAAAAAgAAAAAOAwAAAAAAAwAAAAAGAwAAAAAAAwAAAAAAHgAAAAAEHgAAAAAAHgAAAAACHgAAAAAEHgAAAAABFgAAAAAFFwAAAAAEBAAAAAAJBwAAAAADBAAAAAAMBAAAAAADBAAAAAAG
version: 6
-1,-1:
ind: -1,-1
- tiles: BQAAAAABBQAAAAAABAAAAAAIFgAAAAABGAAAAAAFBAAAAAAABAAAAAABBQAAAAABBQAAAAACGgAAAAAAGwAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGwAAAAAABAAAAAAMBQAAAAADBQAAAAABBAAAAAAEFgAAAAADGAAAAAADFwAAAAADFgAAAAAAFgAAAAAABAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAABBAAAAAAMBAAAAAAKBAAAAAACFgAAAAAAFgAAAAAAFwAAAAABFgAAAAAAFgAAAAAABAAAAAANBAAAAAAHBAAAAAAGGgAAAAAABAAAAAANBAAAAAAJBAAAAAACBAAAAAACBAAAAAAIGAAAAAAFGAAAAAADFgAAAAABFgAAAAAAFgAAAAAEFgAAAAADFgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAANFwAAAAAAFwAAAAABFwAAAAAAGAAAAAAAFgAAAAAAFgAAAAACFgAAAAACGAAAAAAAGAAAAAAAGAAAAAABBAAAAAABGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAJFwAAAAADGQAAAAAFFwAAAAAAGAAAAAAFFgAAAAAAGAAAAAAFGAAAAAACFwAAAAABFwAAAAADFwAAAAABBAAAAAAJBAAAAAAMBAAAAAABBAAAAAABBAAAAAALBAAAAAADFwAAAAAEGQAAAAABFwAAAAABFwAAAAABGAAAAAABFwAAAAAFFwAAAAAFFwAAAAAFFwAAAAAAFwAAAAABFwAAAAAFFwAAAAABFwAAAAAEFwAAAAADFwAAAAABFwAAAAADFwAAAAAAGQAAAAACFwAAAAACFwAAAAACGAAAAAAEFwAAAAABFwAAAAAEFwAAAAAABAAAAAADBAAAAAABBAAAAAANBAAAAAAHBAAAAAABBAAAAAAHBAAAAAAFBAAAAAAMFwAAAAAEGQAAAAAIBAAAAAAIBAAAAAACBAAAAAADBAAAAAAEBAAAAAAGFwAAAAABBAAAAAAIBgAAAAACBwAAAAACBgAAAAAABwAAAAADBQAAAAABBQAAAAADBAAAAAAJFwAAAAAFGQAAAAAGBQAAAAABBQAAAAABBQAAAAABBQAAAAABBAAAAAAGFwAAAAAEBAAAAAAEBQAAAAACBgAAAAADBwAAAAADBgAAAAAABgAAAAABBwAAAAADBAAAAAAIFwAAAAACGQAAAAAFBQAAAAABBQAAAAADBQAAAAACBQAAAAABBAAAAAAMFwAAAAABBAAAAAAIBQAAAAADBwAAAAACBgAAAAADBwAAAAABBwAAAAADBgAAAAADBAAAAAALFwAAAAAEGQAAAAABBAAAAAAJBAAAAAAKBQAAAAADBAAAAAAMBAAAAAAEFwAAAAACBAAAAAABBgAAAAADBwAAAAAABQAAAAABBAAAAAAJBAAAAAAGBAAAAAAHBAAAAAAGFwAAAAAEGQAAAAADBAAAAAANBQAAAAACBQAAAAAABQAAAAAAFwAAAAAFFwAAAAAEBAAAAAAIBwAAAAABBgAAAAACBQAAAAACBQAAAAAAFwAAAAAFFwAAAAABFwAAAAAAFwAAAAAFGQAAAAAHBAAAAAABBQAAAAADBQAAAAAABQAAAAADFwAAAAAAFwAAAAAEBAAAAAANBAAAAAAFBAAAAAAGBAAAAAAJBAAAAAADFwAAAAAAFwAAAAADGQAAAAAAGQAAAAADGQAAAAAHFwAAAAACFwAAAAABFwAAAAABFwAAAAADFwAAAAACFwAAAAACFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAADFwAAAAAEFwAAAAABGQAAAAAHGQAAAAACGQAAAAAGGQAAAAADFwAAAAADFwAAAAAEFwAAAAAAFwAAAAABFwAAAAAFFwAAAAADBAAAAAAABAAAAAAFBAAAAAAFBAAAAAAAGAAAAAACGAAAAAAFGQAAAAAFGQAAAAAGGQAAAAAIGQAAAAAD
+ tiles: BQAAAAACBQAAAAAABAAAAAACHAAAAAADHQAAAAADBAAAAAAFBAAAAAADBQAAAAADBQAAAAACGgAAAAADGwAAAAAAGwAAAAABGgAAAAAAGwAAAAABGwAAAAAABAAAAAAMBQAAAAACBQAAAAADBAAAAAAAHAAAAAAFHQAAAAABHgAAAAAAHAAAAAADHAAAAAACBAAAAAAMGgAAAAADGgAAAAACGgAAAAABGgAAAAABGgAAAAABGgAAAAACBAAAAAAIBAAAAAAMBAAAAAAHBAAAAAAJHAAAAAACHAAAAAABHgAAAAAFHAAAAAADHAAAAAADBAAAAAALBAAAAAADBAAAAAADGgAAAAABBAAAAAAIBAAAAAACBAAAAAAABAAAAAACBAAAAAAKHQAAAAACHQAAAAAEHAAAAAABHAAAAAADHAAAAAACAgAAAAAHAgAAAAANGgAAAAADGgAAAAABGgAAAAAAGgAAAAAAGgAAAAACBAAAAAAGHgAAAAADHgAAAAAFHgAAAAABHQAAAAAAAgAAAAABAgAAAAACAgAAAAAFAgAAAAAAAgAAAAANAgAAAAANBAAAAAAFGgAAAAACGgAAAAAAGgAAAAACGgAAAAAABAAAAAANHgAAAAADAwAAAAAFHgAAAAADHQAAAAACHAAAAAACAgAAAAAEAgAAAAAGAgAAAAALHgAAAAAEHgAAAAAABAAAAAAKBAAAAAAEBAAAAAAABAAAAAAFBAAAAAAFBAAAAAADHgAAAAAFAwAAAAAIHgAAAAAAHgAAAAADHQAAAAACHgAAAAAEHgAAAAACHgAAAAAFHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAACHgAAAAAFHgAAAAAFHgAAAAAFAwAAAAADHgAAAAAAHgAAAAAAHQAAAAADHgAAAAACHgAAAAAFHgAAAAACBAAAAAAJBAAAAAAMBAAAAAAMBAAAAAAABAAAAAAJBAAAAAAMBAAAAAAMBAAAAAAMHgAAAAACAwAAAAAIBAAAAAADBAAAAAABBAAAAAABBAAAAAAJBAAAAAAJHgAAAAACBAAAAAAABgAAAAADBwAAAAAABgAAAAAABwAAAAADBQAAAAABBQAAAAACBAAAAAAKHgAAAAAFAwAAAAACBQAAAAADBQAAAAACBQAAAAABBQAAAAABBAAAAAAAHgAAAAADBAAAAAAKBQAAAAAABgAAAAADBwAAAAABBgAAAAABBgAAAAAABwAAAAACBAAAAAANHgAAAAAFAwAAAAAGBQAAAAAABQAAAAABBQAAAAAABQAAAAADBAAAAAAAHgAAAAAEBAAAAAAABQAAAAABBwAAAAABBgAAAAABBwAAAAAABwAAAAABBgAAAAABBAAAAAACHgAAAAAEAwAAAAAFBAAAAAACBAAAAAAKBQAAAAABBAAAAAAJBAAAAAALHgAAAAAFBAAAAAAABgAAAAABBwAAAAABBQAAAAACBAAAAAAJBAAAAAABBAAAAAAJBAAAAAAHHgAAAAAFAwAAAAAEBAAAAAANBQAAAAAABQAAAAAABQAAAAABHgAAAAACHgAAAAAABAAAAAAKBwAAAAACBgAAAAAABQAAAAABBQAAAAAAHgAAAAACHgAAAAAEHgAAAAAEHgAAAAAAAwAAAAABBAAAAAAGBQAAAAAABQAAAAABBQAAAAADHgAAAAAAHgAAAAACBAAAAAAGBAAAAAALBAAAAAAKBAAAAAAMBAAAAAAEHgAAAAABAgAAAAAPAwAAAAACAwAAAAACAwAAAAAEHgAAAAAEHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAAFHgAAAAAEHgAAAAAAHgAAAAAEHgAAAAABHgAAAAABAgAAAAAPAwAAAAAGAwAAAAAHAwAAAAABAwAAAAAIHgAAAAAEHgAAAAAFHgAAAAACHgAAAAAAHgAAAAAEHgAAAAAABAAAAAAJBAAAAAAKBAAAAAAKBAAAAAAHAgAAAAAHAgAAAAAAAwAAAAAIAwAAAAAHAwAAAAAGAwAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: BAAAAAAGBAAAAAAFBwAAAAABBAAAAAAABAAAAAADFwAAAAAFBAAAAAALDQAAAAAADQAAAAAABgAAAAACGAAAAAAAGAAAAAAFGAAAAAAAGQAAAAAIGQAAAAABGQAAAAAEBwAAAAADBQAAAAAABwAAAAAABwAAAAADBAAAAAAMFwAAAAAEBAAAAAANDQAAAAAADQAAAAAABgAAAAAAGAAAAAACGAAAAAABGAAAAAADFwAAAAABFwAAAAAEGQAAAAACBQAAAAABBAAAAAAABAAAAAAKBAAAAAAMBAAAAAANFwAAAAABBAAAAAALDQAAAAAADQAAAAAABAAAAAAABAAAAAAEAwAAAAAEBAAAAAAABAAAAAAEFwAAAAACGQAAAAACBQAAAAAABgAAAAAABgAAAAACBQAAAAABBAAAAAALFwAAAAAABAAAAAANDQAAAAAADQAAAAAADQAAAAAAAwAAAAABAwAAAAAIAwAAAAAEBAAAAAACFwAAAAACGQAAAAAEBwAAAAADBgAAAAACBgAAAAABBQAAAAACBAAAAAAEFwAAAAACBAAAAAALDQAAAAAADQAAAAAADQAAAAAAAwAAAAAEAwAAAAAHAwAAAAAABAAAAAALFwAAAAABGQAAAAADBQAAAAAABQAAAAACBwAAAAADBwAAAAACBAAAAAAEFwAAAAAFBAAAAAAFDQAAAAAADQAAAAAADQAAAAAAAwAAAAACAwAAAAAGAwAAAAAIBAAAAAAFFwAAAAAFGQAAAAABBAAAAAAJBAAAAAAJBAAAAAADBAAAAAAFBAAAAAANFwAAAAADBAAAAAANBAAAAAALBAAAAAAHBAAAAAAABAAAAAABBAAAAAACBAAAAAAHBAAAAAAAFwAAAAAFGQAAAAABFwAAAAAFFwAAAAADFwAAAAAAFwAAAAAFFwAAAAAEFwAAAAADFwAAAAADFwAAAAAEFwAAAAAAFwAAAAAAFwAAAAADFwAAAAACFwAAAAAAFwAAAAAEFwAAAAAEGQAAAAADGQAAAAAAGQAAAAABGQAAAAAEGQAAAAAHGQAAAAAEGQAAAAACGQAAAAAHGQAAAAADGQAAAAAHGQAAAAAFGQAAAAACGQAAAAAIGQAAAAAIGQAAAAAIGQAAAAAIGQAAAAAFGQAAAAAGGQAAAAAAGQAAAAAHGQAAAAAEGQAAAAAIGQAAAAADGQAAAAAGGQAAAAACGQAAAAABGQAAAAABGQAAAAABGQAAAAAAGQAAAAAAGQAAAAACGQAAAAAAGQAAAAAHFwAAAAAAFwAAAAABFwAAAAABFwAAAAAAFwAAAAADFwAAAAAAFwAAAAAAGAAAAAADFgAAAAAAFgAAAAAFFwAAAAAEFwAAAAADFwAAAAACFwAAAAADFgAAAAADFgAAAAAABAAAAAAIBAAAAAABBAAAAAAIBAAAAAAAFwAAAAAFBAAAAAAIBAAAAAACBAAAAAAEBAAAAAAJBAAAAAAEBAAAAAADBAAAAAAJFwAAAAAFBAAAAAACBQAAAAABBAAAAAAKDgAAAAAADgAAAAAEDgAAAAAEBAAAAAAJFwAAAAAABAAAAAAKBgAAAAADBgAAAAAABgAAAAAABgAAAAACBgAAAAABBAAAAAACFwAAAAADBAAAAAANBgAAAAABBwAAAAABDgAAAAACDgAAAAAEDgAAAAAADgAAAAABFwAAAAADBAAAAAAKBgAAAAABBgAAAAADBQAAAAADBQAAAAADBQAAAAABBAAAAAANFwAAAAAFBAAAAAAEBwAAAAADBwAAAAACDgAAAAABDgAAAAAEDgAAAAAEDgAAAAAAFwAAAAADBAAAAAALBgAAAAAABgAAAAACBQAAAAACBQAAAAABBQAAAAAABAAAAAAAFwAAAAAEBAAAAAACBQAAAAADBQAAAAAADgAAAAAFDgAAAAAEDgAAAAAFBAAAAAAMFwAAAAAABAAAAAAHBQAAAAADBQAAAAACBgAAAAABBAAAAAAHBAAAAAAABAAAAAABFwAAAAAEBAAAAAAABwAAAAACBgAAAAAC
+ tiles: BAAAAAADBAAAAAAIBwAAAAADBAAAAAAFBAAAAAAMHgAAAAAFBAAAAAADBgAAAAABBgAAAAACBgAAAAAAAgAAAAAKAgAAAAAHAgAAAAAOAwAAAAAIAwAAAAACAwAAAAAHBwAAAAACBQAAAAADBwAAAAADBwAAAAABBAAAAAANHgAAAAACBAAAAAAIBgAAAAAABgAAAAADBgAAAAABAgAAAAAFAgAAAAAAAgAAAAALAgAAAAAFAgAAAAAMAwAAAAADBQAAAAACBAAAAAADBAAAAAAEBAAAAAAMBAAAAAAIHgAAAAAABAAAAAAFBgAAAAAABgAAAAACBAAAAAANBAAAAAAHBgAAAAAABAAAAAAKBAAAAAAKAgAAAAAGAwAAAAAHBQAAAAADBgAAAAABBgAAAAAABQAAAAADBAAAAAABGAAAAAAEBAAAAAAJBgAAAAAABgAAAAABBgAAAAADBgAAAAABBgAAAAACBgAAAAACBAAAAAAMAgAAAAAOAwAAAAAHBwAAAAADBgAAAAADBgAAAAABBQAAAAAABAAAAAALHgAAAAABBAAAAAAKBgAAAAADBgAAAAADBgAAAAACBgAAAAACBgAAAAACBgAAAAADBAAAAAAAHgAAAAADAwAAAAAEBQAAAAAABQAAAAADBwAAAAABBwAAAAADBAAAAAAGHgAAAAAFBAAAAAADBgAAAAADBgAAAAABBgAAAAADBgAAAAADBgAAAAABBgAAAAACBAAAAAAKGAAAAAACAwAAAAAABAAAAAAJBAAAAAABBAAAAAAGBAAAAAAFBAAAAAAHHgAAAAAFBAAAAAAGBAAAAAACBAAAAAANBAAAAAAABAAAAAAMBAAAAAAMBAAAAAAFBAAAAAAAHgAAAAAAAwAAAAAIAgAAAAAGHgAAAAABHgAAAAABHgAAAAAEHgAAAAABHgAAAAACHgAAAAAFGAAAAAAFGAAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAAAAwAAAAAHAwAAAAAIAwAAAAAFAwAAAAACAwAAAAAIAwAAAAAAAwAAAAAAAwAAAAAHAwAAAAAGAwAAAAAEAwAAAAAHAwAAAAAIAwAAAAAFAwAAAAAFAwAAAAAAAwAAAAAHAwAAAAABAwAAAAAGAwAAAAABAwAAAAAFAwAAAAAHAwAAAAAIAwAAAAACAwAAAAAAAwAAAAAGAwAAAAAIAwAAAAAIAwAAAAAHAwAAAAAEAwAAAAABAwAAAAAHAwAAAAACAwAAAAAGAgAAAAAMHAAAAAADHAAAAAADGAAAAAAEHAAAAAAAHgAAAAABHgAAAAAEHQAAAAADHAAAAAADHAAAAAACGAAAAAAEHgAAAAAFHgAAAAAEHgAAAAACHAAAAAABHAAAAAABBAAAAAAEBAAAAAAMBAAAAAAEBAAAAAAAHAAAAAABBAAAAAAHBAAAAAALBAAAAAAKBAAAAAAJBAAAAAABBAAAAAAJBAAAAAABHgAAAAABBAAAAAAMBQAAAAABBAAAAAAEDgAAAAAEDgAAAAADDgAAAAACBAAAAAADHAAAAAAFBAAAAAAKBgAAAAAABgAAAAADBgAAAAACBgAAAAADBgAAAAAABAAAAAAMHgAAAAAFBAAAAAAEBgAAAAACBwAAAAADDgAAAAABDgAAAAACDgAAAAACDgAAAAACHAAAAAADBAAAAAADBgAAAAAABgAAAAAABQAAAAAABQAAAAADBQAAAAACBAAAAAACHgAAAAADBAAAAAAIBwAAAAADBwAAAAAADgAAAAABDgAAAAAFDgAAAAACDgAAAAACHAAAAAADBAAAAAALBgAAAAAABgAAAAAABQAAAAAABQAAAAABBQAAAAABBAAAAAAAHgAAAAACBAAAAAALBQAAAAADBQAAAAADDgAAAAAADgAAAAAADgAAAAACBAAAAAABHAAAAAABBAAAAAALBQAAAAAABQAAAAADBgAAAAACBAAAAAAMBAAAAAABBAAAAAAJHgAAAAABBAAAAAAHBwAAAAAABgAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: BwAAAAADBAAAAAAAAgAAAAAKCQAAAAAMBAAAAAAABQAAAAAABAAAAAACBQAAAAADBgAAAAACBQAAAAADBgAAAAACBwAAAAACBgAAAAABBAAAAAAMFwAAAAAEGQAAAAAHBQAAAAAABAAAAAACBAAAAAAABAAAAAAMBAAAAAAKBAAAAAAABAAAAAAJBgAAAAACBQAAAAACBQAAAAABBAAAAAABBgAAAAABBwAAAAADBAAAAAAHFwAAAAAFGQAAAAAHBwAAAAAABwAAAAAABQAAAAAABQAAAAAABAAAAAAJFwAAAAAABAAAAAACBAAAAAABBAAAAAAEBAAAAAACBAAAAAAFBQAAAAAABAAAAAAJBAAAAAAGFwAAAAADGQAAAAAABQAAAAADBgAAAAADBgAAAAADBQAAAAAABAAAAAALFwAAAAADFwAAAAADFwAAAAABFwAAAAAEFwAAAAAFFwAAAAACGAAAAAAEFwAAAAAAFwAAAAACFwAAAAACGQAAAAABBwAAAAAABgAAAAABBgAAAAACBQAAAAAABQAAAAADGAAAAAADGQAAAAABGQAAAAADGQAAAAAIGQAAAAAAGQAAAAAEGQAAAAAAGQAAAAABGQAAAAADGQAAAAABGQAAAAAGBAAAAAAGBAAAAAAGBAAAAAAMBAAAAAAEBAAAAAAEFwAAAAAAGQAAAAAHGQAAAAAFGQAAAAAEGQAAAAABGQAAAAAGGQAAAAAEGQAAAAACGQAAAAAFGQAAAAAHGQAAAAABFwAAAAADFwAAAAADFwAAAAAEFwAAAAAAFwAAAAAFFwAAAAABFwAAAAADGAAAAAAEFgAAAAAEFwAAAAACFwAAAAAAFwAAAAACFwAAAAAFFwAAAAAEFwAAAAABFwAAAAABBAAAAAAGBAAAAAAEBAAAAAANBAAAAAAIBAAAAAAEBAAAAAAHBAAAAAALBAAAAAAJBAAAAAALBAAAAAAHBAAAAAAFBAAAAAAIBAAAAAALBAAAAAACBAAAAAADBAAAAAADBQAAAAADBQAAAAADBQAAAAACBQAAAAAABAAAAAAKBQAAAAADBQAAAAADBgAAAAADBgAAAAADBgAAAAAABQAAAAADBgAAAAAABgAAAAABBgAAAAADBQAAAAADBAAAAAAEBQAAAAABBQAAAAACBQAAAAAABgAAAAADBgAAAAADBgAAAAACBQAAAAADBgAAAAABBgAAAAADBgAAAAADBQAAAAABBgAAAAAABgAAAAADBgAAAAADBgAAAAADBgAAAAAABQAAAAAABQAAAAAABQAAAAAABgAAAAACBgAAAAAABgAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAAABQAAAAADBgAAAAABBgAAAAADBQAAAAACBQAAAAADBQAAAAACBQAAAAACBwAAAAABBQAAAAACBwAAAAACBwAAAAABBQAAAAABBwAAAAABBwAAAAABBwAAAAADBwAAAAACBQAAAAABBQAAAAABBAAAAAAABQAAAAADBQAAAAADBQAAAAABBQAAAAABBQAAAAABBQAAAAAABwAAAAABBwAAAAAABQAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAABBQAAAAAABQAAAAABBAAAAAAHBQAAAAADBAAAAAAMBAAAAAAABAAAAAAKBAAAAAAEBAAAAAADAwAAAAAAAwAAAAAABQAAAAAABAAAAAAMDQAAAAAADQAAAAAABAAAAAAGDQAAAAAABAAAAAAKBAAAAAAJBQAAAAABBQAAAAACBAAAAAADFgAAAAACGAAAAAAEBAAAAAAJAwAAAAAAAwAAAAAABQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAHBQAAAAACBQAAAAADBAAAAAALFgAAAAADGAAAAAABBAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAGgAAAAAAGwAAAAAAGwAAAAAAGgAAAAAAGwAAAAAAGwAAAAAABAAAAAAC
+ tiles: BwAAAAACBAAAAAAEAgAAAAAKCQAAAAAECQAAAAAICQAAAAAABAAAAAAJBQAAAAABBgAAAAACBQAAAAABBgAAAAACBwAAAAACBgAAAAABBAAAAAAJHgAAAAADAwAAAAACBQAAAAACBAAAAAAHBAAAAAALBAAAAAACBAAAAAANCQAAAAAFBAAAAAADBgAAAAABBQAAAAACBQAAAAAABAAAAAAABgAAAAACBwAAAAADBAAAAAADHgAAAAAEAwAAAAAEBwAAAAAABwAAAAABBQAAAAACBQAAAAAABAAAAAAKCQAAAAADBAAAAAAJBAAAAAAMBAAAAAAEBAAAAAAGBAAAAAAEBQAAAAADBAAAAAACBAAAAAAHHgAAAAAFAwAAAAACBQAAAAABBgAAAAABBgAAAAAABQAAAAADBAAAAAADHgAAAAAAHgAAAAACHgAAAAAFHgAAAAABHgAAAAAAAgAAAAALAgAAAAAKAgAAAAAKFgAAAAADHgAAAAACAwAAAAAABwAAAAACBgAAAAABBgAAAAAABQAAAAADBQAAAAADHQAAAAAEAwAAAAADAwAAAAAIAwAAAAAFAwAAAAADAwAAAAAIAwAAAAADAwAAAAAEAwAAAAACAwAAAAADAwAAAAADBAAAAAAHBAAAAAAGBAAAAAANBAAAAAAJBAAAAAAGHgAAAAAAAwAAAAAGAwAAAAAFAwAAAAAHAwAAAAAFAwAAAAABAwAAAAABAwAAAAABAwAAAAAEAwAAAAADAwAAAAADHgAAAAACHgAAAAAEHgAAAAAEHgAAAAAFHgAAAAADHgAAAAAFHgAAAAAFHQAAAAABFgAAAAAEHgAAAAAEFgAAAAADHgAAAAAFHgAAAAADAgAAAAAKAgAAAAADHgAAAAAABAAAAAAKBAAAAAAKBAAAAAAJBAAAAAACBAAAAAACBAAAAAACBAAAAAAHBAAAAAAEBAAAAAAKBAAAAAAHBAAAAAAKBAAAAAANBAAAAAAGBAAAAAAKBAAAAAAIBAAAAAANBQAAAAABBQAAAAADBQAAAAACBQAAAAADBAAAAAAFBQAAAAACBQAAAAACBgAAAAABBgAAAAAABgAAAAACBQAAAAACBgAAAAABBgAAAAACBgAAAAACBQAAAAADBAAAAAAJBQAAAAACBQAAAAACBQAAAAACBgAAAAAABgAAAAABBgAAAAADBQAAAAAABgAAAAABBgAAAAAABgAAAAAABQAAAAAABgAAAAAABgAAAAABBgAAAAADBgAAAAAABgAAAAADBQAAAAADBQAAAAABBQAAAAACBgAAAAACBgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAABBQAAAAACBQAAAAABBQAAAAADBgAAAAABBgAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAABBwAAAAAABQAAAAABBwAAAAAABwAAAAADBQAAAAAABwAAAAADBwAAAAACBwAAAAACBwAAAAACBQAAAAADBQAAAAAABAAAAAAJBQAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAABBQAAAAABBwAAAAADBwAAAAACBQAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAADBQAAAAADBQAAAAACBAAAAAAGBQAAAAAABAAAAAAMBAAAAAALBAAAAAAGBAAAAAANBAAAAAANAwAAAAAHAwAAAAADBQAAAAACBAAAAAANDQAAAAAADQAAAAAABAAAAAAJDQAAAAAABAAAAAALBAAAAAAKBQAAAAABBQAAAAAABAAAAAAFHAAAAAAEHQAAAAABBAAAAAAAAwAAAAAAAwAAAAABBQAAAAACGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAAABAAAAAAMBQAAAAADBQAAAAACBAAAAAAKHAAAAAABHQAAAAAFBAAAAAAIAwAAAAAAAwAAAAADAwAAAAAHGgAAAAACGwAAAAADGwAAAAACGgAAAAAAGwAAAAACGwAAAAAABAAAAAAN
version: 6
0,-2:
ind: 0,-2
- tiles: GQAAAAAEFwAAAAABBAAAAAACBQAAAAACBQAAAAADBQAAAAADBQAAAAAABQAAAAABBAAAAAAJFwAAAAABBAAAAAABAwAAAAAAAwAAAAABAwAAAAAEAwAAAAADBAAAAAALGQAAAAAHFwAAAAADBAAAAAAKBQAAAAADBQAAAAADBQAAAAADBQAAAAADBQAAAAACBAAAAAAEFwAAAAAEBAAAAAAMAwAAAAABAwAAAAACAwAAAAADAwAAAAABBAAAAAAGGQAAAAAIFwAAAAAABAAAAAAMBQAAAAACBAAAAAAMBAAAAAAFBAAAAAAIBAAAAAACBAAAAAAFFwAAAAAFBAAAAAAMAwAAAAAEAwAAAAADAwAAAAAHAwAAAAAIBAAAAAAMGQAAAAAEFwAAAAADFwAAAAACGAAAAAAAFwAAAAAEFwAAAAAFFwAAAAACFwAAAAAFFwAAAAAFFwAAAAADBAAAAAACAwAAAAAAAwAAAAAABQAAAAAAAwAAAAAEBAAAAAALGQAAAAAFGQAAAAAAGQAAAAAGGQAAAAAGGQAAAAADGQAAAAACGQAAAAAFGQAAAAAEGQAAAAAGGQAAAAACAwAAAAAHAwAAAAAHAwAAAAAGAwAAAAABAwAAAAAEAwAAAAAGGQAAAAAEGQAAAAAAGQAAAAAEGQAAAAAHGQAAAAAEGQAAAAAAGQAAAAAAGQAAAAAEGQAAAAAGGQAAAAAIAwAAAAAIAwAAAAABAwAAAAADAwAAAAAEAwAAAAAIAwAAAAAAFwAAAAABFwAAAAABFwAAAAAFFwAAAAAAFwAAAAABFwAAAAADFwAAAAAAGQAAAAAAGQAAAAAHFwAAAAAFBAAAAAAKAwAAAAADAwAAAAAEAwAAAAAABQAAAAACBQAAAAAAFwAAAAADFwAAAAAFFwAAAAABFwAAAAAEFwAAAAAFFwAAAAAAFwAAAAAEGQAAAAAEGQAAAAAEFwAAAAADBAAAAAAIAwAAAAAIAwAAAAAEAwAAAAAIAwAAAAAFAwAAAAAEFwAAAAAEFwAAAAAFFwAAAAAFFwAAAAAAFwAAAAABFwAAAAAEFwAAAAACGQAAAAAEGQAAAAAIFwAAAAAFBAAAAAAIAwAAAAAHAwAAAAAAAwAAAAAEAwAAAAABAwAAAAAHBgAAAAADFgAAAAAFFgAAAAACGAAAAAAFFgAAAAABFgAAAAACFwAAAAAAGQAAAAAIGQAAAAACFwAAAAAFBAAAAAACAwAAAAAAAwAAAAAFAwAAAAAAAwAAAAAAAwAAAAABBgAAAAAAFgAAAAABFgAAAAADFgAAAAABGAAAAAADGAAAAAABFgAAAAACGQAAAAAFGQAAAAAGFwAAAAAABAAAAAAABAAAAAANBAAAAAAJBAAAAAACBAAAAAAFAwAAAAACFwAAAAAAFwAAAAABFwAAAAABFwAAAAABFgAAAAAEFgAAAAAEGAAAAAAFGQAAAAAIGQAAAAAEFwAAAAAABAAAAAALBQAAAAACBQAAAAADBQAAAAADBQAAAAAABQAAAAABFwAAAAAEFwAAAAACFgAAAAAEFgAAAAABFwAAAAAEFwAAAAAEFgAAAAABGQAAAAAGGQAAAAACFwAAAAAFBAAAAAAEBQAAAAABBQAAAAADBQAAAAADBQAAAAABBQAAAAABFwAAAAADGAAAAAABGAAAAAAFFgAAAAADFgAAAAAEFwAAAAAFGAAAAAAAGQAAAAADGQAAAAAEFwAAAAABBAAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAACFwAAAAABGAAAAAADGAAAAAADGAAAAAAEFgAAAAADFwAAAAAAFwAAAAADGQAAAAADGQAAAAABFwAAAAAABAAAAAAIBAAAAAACBAAAAAALBAAAAAANBAAAAAALBQAAAAABFwAAAAADFgAAAAAFGAAAAAAAGAAAAAAEFgAAAAAAFwAAAAABFwAAAAAAGQAAAAADGQAAAAAAFwAAAAAABAAAAAALBQAAAAABBQAAAAACBQAAAAADBQAAAAAABQAAAAAC
+ tiles: AwAAAAAHAgAAAAANBAAAAAAJBQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAACBAAAAAADHgAAAAAABAAAAAANAwAAAAABAwAAAAAEAwAAAAADAwAAAAAEBAAAAAAFAwAAAAAGFgAAAAACBAAAAAAEBQAAAAACBQAAAAAABQAAAAAABQAAAAACBQAAAAABBAAAAAAEHgAAAAAEBAAAAAABAwAAAAAIAwAAAAAGAwAAAAAAAwAAAAAHBAAAAAAJAwAAAAACHgAAAAAEBAAAAAAMBQAAAAABBAAAAAAABAAAAAACBAAAAAALBAAAAAAJBAAAAAADHgAAAAAEBAAAAAAFAwAAAAAFAwAAAAACAwAAAAAAAwAAAAADBAAAAAAKAwAAAAAGHgAAAAAFAgAAAAABAgAAAAAFAgAAAAACHgAAAAAFHgAAAAADHgAAAAADHgAAAAABAgAAAAACBAAAAAANAwAAAAAHAwAAAAABBQAAAAABAwAAAAAIBAAAAAAFAwAAAAAGAwAAAAABAwAAAAAAAwAAAAAHAwAAAAACAwAAAAADAwAAAAAFAwAAAAAFAwAAAAAFAwAAAAADAwAAAAAIAwAAAAAGAwAAAAAAAwAAAAAIAwAAAAAGAwAAAAAEAwAAAAAIAwAAAAAIAwAAAAAIAwAAAAABAwAAAAAEAwAAAAAGAwAAAAAGAwAAAAAEAwAAAAADAwAAAAADAwAAAAAEAwAAAAAGAwAAAAAEAwAAAAABAwAAAAADAwAAAAAAHgAAAAAEFgAAAAAFAgAAAAANHgAAAAAEHgAAAAAFHgAAAAAAHgAAAAACAwAAAAAHAwAAAAAIAgAAAAAHBAAAAAAJAwAAAAAEAwAAAAAAAwAAAAAGBQAAAAACBQAAAAAAHgAAAAAAHgAAAAAEAgAAAAAJHgAAAAAAHgAAAAAAHgAAAAAFHgAAAAAAAwAAAAABAwAAAAAFHgAAAAAFBAAAAAAGAwAAAAAEAwAAAAAFAwAAAAACAwAAAAAEAwAAAAACHgAAAAAFAgAAAAALAgAAAAAEAgAAAAAKHgAAAAACHgAAAAAFHgAAAAAAAwAAAAAFAwAAAAAHHgAAAAAABAAAAAAGAwAAAAAGAwAAAAADAwAAAAAIAwAAAAAAAwAAAAAGBgAAAAACAgAAAAABAgAAAAAGAgAAAAALAgAAAAAIAgAAAAAEAgAAAAAGAwAAAAAFAwAAAAAAFgAAAAADBAAAAAADAwAAAAAEAwAAAAAHAwAAAAAIAwAAAAAGAwAAAAAABgAAAAABAgAAAAAAAgAAAAAFAgAAAAAMAgAAAAAFAgAAAAAOAgAAAAANAwAAAAAIAwAAAAAAHgAAAAADBAAAAAAJBAAAAAAMBAAAAAAHBAAAAAAFBAAAAAALAwAAAAADHgAAAAACHgAAAAADAgAAAAAJAgAAAAABAgAAAAACHAAAAAAFHQAAAAADAwAAAAAGAwAAAAAIHgAAAAADBAAAAAALBQAAAAABBQAAAAACBQAAAAADBQAAAAACBQAAAAADHgAAAAAAAgAAAAAFAgAAAAACAgAAAAAMHgAAAAADHgAAAAAAHAAAAAAEAwAAAAADAwAAAAACHgAAAAADBAAAAAAJBQAAAAADBQAAAAACBQAAAAAABQAAAAAABQAAAAACHgAAAAAAAgAAAAAPAgAAAAAFAgAAAAAOAgAAAAAKHgAAAAAFHQAAAAACAwAAAAAGAwAAAAAIAgAAAAAFBAAAAAAMBQAAAAADBQAAAAAABQAAAAACBQAAAAACBQAAAAAAAgAAAAACAgAAAAAOAgAAAAAKAgAAAAAHAgAAAAAEHgAAAAACHgAAAAAEAwAAAAABAwAAAAAIAgAAAAAJBAAAAAALBAAAAAAKBAAAAAAEBAAAAAALBAAAAAABBQAAAAABHgAAAAADAgAAAAAOAgAAAAAOAgAAAAAPAgAAAAAGHgAAAAAEHgAAAAAFAwAAAAAFAwAAAAADAgAAAAAKBAAAAAAFBQAAAAADBQAAAAABBQAAAAAABQAAAAAABQAAAAAB
version: 6
-2,-2:
ind: -2,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADCQAAAAAJCQAAAAAJBAAAAAAEBQAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACCQAAAAANCQAAAAAFCQAAAAALBAAAAAAFBQAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAECQAAAAAICQAAAAAHCQAAAAAJCQAAAAAMBAAAAAANBQAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADCQAAAAAHCQAAAAAFCQAAAAANCQAAAAAACQAAAAANBAAAAAADBwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAACQAAAAAGCQAAAAAACQAAAAAGCQAAAAAGCQAAAAANBAAAAAAJBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAECQAAAAAMCQAAAAAACQAAAAANCQAAAAAECQAAAAANCQAAAAAHBAAAAAAFBAAAAAANBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACQAAAAAECQAAAAAHCQAAAAAMCQAAAAAMCQAAAAACCQAAAAAGFwAAAAAEFwAAAAAEFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAgAAAAALAgAAAAAAAgAAAAAKAgAAAAAHAgAAAAAHFwAAAAAFFwAAAAADBAAAAAAKBAAAAAALBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAgAAAAAGAgAAAAADFwAAAAACAgAAAAAIFwAAAAAEFwAAAAADFwAAAAADBQAAAAADBQAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAKAgAAAAAAAgAAAAAIAgAAAAAMFwAAAAADAgAAAAAOAgAAAAAPFwAAAAABBAAAAAAHBQAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAJAgAAAAALAgAAAAADAgAAAAADFwAAAAAFAgAAAAAFAgAAAAALFwAAAAAABQAAAAABBQAAAAADBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAgAAAAAGAgAAAAAIAgAAAAAPAgAAAAAHAgAAAAAMAgAAAAAHAgAAAAAKFwAAAAADBQAAAAADBQAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAgAAAAAFAgAAAAAKAgAAAAAJAgAAAAALAgAAAAANAgAAAAAJAgAAAAACAgAAAAAABAAAAAAHBQAAAAADBQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAPAgAAAAAMAgAAAAAPAgAAAAADAgAAAAADAgAAAAAEAgAAAAAMFwAAAAACBAAAAAAABAAAAAAIBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAgAAAAALAgAAAAADAgAAAAAAAgAAAAALAgAAAAAMAgAAAAAKAgAAAAAJFwAAAAACBAAAAAACBQAAAAABBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABAgAAAAAJAgAAAAAKAgAAAAAAAgAAAAAOAgAAAAALAgAAAAACFwAAAAADBAAAAAAMBQAAAAACBQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABCQAAAAAECQAAAAADBAAAAAADBQAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAECQAAAAAMCQAAAAAHCQAAAAABBAAAAAAKBQAAAAACBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAADCQAAAAANCQAAAAAICQAAAAAHCQAAAAALBAAAAAAHBQAAAAACBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACQAAAAAECQAAAAAFCQAAAAAJCQAAAAANCQAAAAANBAAAAAAIBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABCQAAAAAFCQAAAAAECQAAAAADCQAAAAANCQAAAAABBAAAAAACBwAAAAABBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADCQAAAAADCQAAAAAFCQAAAAAHCQAAAAALCQAAAAACCQAAAAAKBAAAAAACBAAAAAANBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABCQAAAAALCQAAAAAECQAAAAAHCQAAAAALCQAAAAAICQAAAAABHgAAAAAFHgAAAAADHgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAPAgAAAAADAgAAAAAGAgAAAAABAgAAAAAKHgAAAAACHgAAAAAABAAAAAAKBAAAAAAJBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAgAAAAAFAgAAAAADHgAAAAAFAgAAAAAOHgAAAAAAHgAAAAAAHgAAAAABBQAAAAAABQAAAAACBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAKAgAAAAABAgAAAAAAAgAAAAADHgAAAAAAAgAAAAAJAgAAAAAKHgAAAAACBAAAAAAIBQAAAAADBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAgAAAAAMAgAAAAAFAgAAAAADAgAAAAAHHgAAAAAAAgAAAAAAAgAAAAAEHgAAAAABBQAAAAACBQAAAAABBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAgAAAAAOAgAAAAAEAgAAAAAGAgAAAAACAgAAAAAIAgAAAAAOAgAAAAAFHgAAAAACBQAAAAAABQAAAAAABQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAgAAAAAPAgAAAAAMAgAAAAAHAgAAAAAOAgAAAAAIAgAAAAAEAgAAAAAJAgAAAAADBAAAAAAGBQAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAgAAAAAKAgAAAAAIAgAAAAADAgAAAAALAgAAAAAIAgAAAAALAgAAAAALHgAAAAAFBAAAAAABBAAAAAAHBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAgAAAAAJAgAAAAACAgAAAAAMAgAAAAAEAgAAAAAIAgAAAAACAgAAAAAFHgAAAAABBAAAAAAJBQAAAAAABQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAIAgAAAAAJAgAAAAAFAgAAAAANAgAAAAANAgAAAAAHAgAAAAAGHgAAAAACBAAAAAALBQAAAAACBQAAAAAD
version: 6
-2,-1:
ind: -2,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAMAgAAAAAIAgAAAAAGAgAAAAADAgAAAAAMFwAAAAAEFwAAAAACFwAAAAABBAAAAAAGBQAAAAABBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAgAAAAANAgAAAAAMAgAAAAAEAgAAAAAAAgAAAAACAgAAAAALAgAAAAAABAAAAAADBQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAEAgAAAAAHAgAAAAALAgAAAAABAgAAAAAOAgAAAAACFwAAAAAEBAAAAAAJBQAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAgAAAAAIAgAAAAABAgAAAAAMAgAAAAALAgAAAAAKAgAAAAABAgAAAAAABAAAAAACBAAAAAAMBAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAJAgAAAAAIAgAAAAANFwAAAAAEAgAAAAANAgAAAAALAgAAAAAGFwAAAAADFwAAAAADFwAAAAAECgAAAAAACgAAAAAACgAAAAADCgAAAAAACgAAAAADCgAAAAAACgAAAAAACgAAAAACCgAAAAABFwAAAAAFGQAAAAABGQAAAAACAgAAAAACFwAAAAADFwAAAAAEFwAAAAACCgAAAAADCgAAAAADCgAAAAACCgAAAAABCgAAAAACCgAAAAADCgAAAAADCgAAAAADCgAAAAACFwAAAAACGQAAAAAHGQAAAAACFwAAAAACFwAAAAADFwAAAAABFwAAAAAACgAAAAADCgAAAAADCgAAAAADCgAAAAADCgAAAAADCgAAAAADCgAAAAAACgAAAAAACgAAAAABFwAAAAAAGQAAAAAEGQAAAAAFFwAAAAACFwAAAAABFwAAAAAFFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAABCgAAAAAAFgAAAAAFGQAAAAACGQAAAAAIFwAAAAAFBAAAAAABBAAAAAAABAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAACCgAAAAACFgAAAAADGQAAAAABGQAAAAAEFwAAAAABBAAAAAAABQAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAABCgAAAAADFwAAAAAEGQAAAAAAGQAAAAAAFwAAAAAEBAAAAAAKBQAAAAACBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAAACgAAAAAAFwAAAAACGQAAAAACGQAAAAAAFwAAAAADBAAAAAANBQAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAAACgAAAAADFwAAAAAAGQAAAAADGQAAAAAGFgAAAAAFBQAAAAABBQAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAAACgAAAAACFwAAAAACGQAAAAABGQAAAAAFFgAAAAABBAAAAAAHBAAAAAAGBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAACCgAAAAABFgAAAAADGQAAAAAGGQAAAAAGFwAAAAAEFwAAAAABFwAAAAAAFwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAADCgAAAAADFgAAAAADGQAAAAAEGQAAAAAEFwAAAAAAFwAAAAAEFwAAAAAFFwAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAFAgAAAAABAgAAAAAJAgAAAAAOAgAAAAAFHgAAAAADHgAAAAAAHgAAAAAABAAAAAAKBQAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAgAAAAALAgAAAAANAgAAAAAKAgAAAAAFAgAAAAAAAgAAAAAMAgAAAAAPBAAAAAAABQAAAAABBQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAgAAAAANAgAAAAAEAgAAAAABAgAAAAADAgAAAAALAgAAAAAHHgAAAAADBAAAAAAKBQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAADAgAAAAAJAgAAAAAIAgAAAAAGAgAAAAAEAgAAAAAFAgAAAAABAgAAAAAIBAAAAAACBAAAAAAFBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAALAgAAAAAJAgAAAAAEHgAAAAAAAgAAAAAPAgAAAAAGAgAAAAAMHgAAAAACHgAAAAADHgAAAAABCgAAAAABCgAAAAABCgAAAAAACgAAAAACCgAAAAABCgAAAAACCgAAAAABCgAAAAABCgAAAAABHgAAAAAAAwAAAAADAwAAAAAFAgAAAAABHgAAAAAAHgAAAAABHgAAAAACCgAAAAADCgAAAAACCgAAAAABCgAAAAADCgAAAAACCgAAAAABCgAAAAABCgAAAAAACgAAAAAAHgAAAAAFAwAAAAAIAwAAAAABHgAAAAADHgAAAAABHgAAAAAFHgAAAAADCgAAAAAACgAAAAACCgAAAAABCgAAAAAACgAAAAAACgAAAAABCgAAAAABCgAAAAAACgAAAAAAHgAAAAAFAwAAAAACAwAAAAAGHgAAAAADHgAAAAACHgAAAAAFHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAACCgAAAAADAgAAAAAOAwAAAAAHAwAAAAAGHgAAAAACBAAAAAAABAAAAAAFBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAABCgAAAAAAAgAAAAAMAwAAAAACAwAAAAAIHgAAAAAABAAAAAADBQAAAAABBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAADCgAAAAADAgAAAAAOAwAAAAAHAwAAAAAEHgAAAAAEBAAAAAAJBQAAAAABBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAABCgAAAAABAgAAAAACAwAAAAAHAwAAAAADAgAAAAAGBAAAAAALBQAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAACCgAAAAABHgAAAAABAwAAAAABAwAAAAADAgAAAAAJBQAAAAACBQAAAAAABQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAAACgAAAAADHgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABAAAAAAEBAAAAAAMBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAADCgAAAAACHAAAAAACAwAAAAADAwAAAAAAHgAAAAAFHgAAAAAEHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAADCgAAAAACHAAAAAAEAwAAAAADAwAAAAAFHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAD
version: 6
-2,0:
ind: -2,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAADCgAAAAACFgAAAAABGQAAAAAFGQAAAAAEFwAAAAABBAAAAAAEBAAAAAAEBAAAAAAICgAAAAADCgAAAAACCgAAAAAACgAAAAACCgAAAAAACgAAAAAACgAAAAACCgAAAAADCgAAAAADFgAAAAAEGQAAAAAGGQAAAAAFFwAAAAAABAAAAAACBgAAAAABBgAAAAABCgAAAAACCgAAAAABCgAAAAACCgAAAAADCgAAAAAACgAAAAADCgAAAAAACgAAAAABCgAAAAABFwAAAAACGQAAAAADGQAAAAAAFwAAAAADBAAAAAAJBgAAAAADBgAAAAABCgAAAAABCgAAAAACCgAAAAABCgAAAAABCgAAAAABCgAAAAAACgAAAAAACgAAAAAACgAAAAACFwAAAAAEGQAAAAAEGQAAAAAFFwAAAAAABAAAAAACBwAAAAADBQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAABCgAAAAACFwAAAAADGQAAAAAAGQAAAAAAFwAAAAADBAAAAAAEBQAAAAADBQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAACCgAAAAACFgAAAAACGQAAAAAGGQAAAAAHFwAAAAABBAAAAAAJBgAAAAADBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAADCgAAAAAAFwAAAAADGQAAAAAGGQAAAAADFwAAAAADBAAAAAAMBAAAAAAGBQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAACCgAAAAABFgAAAAAEGQAAAAAGGQAAAAABFwAAAAADFwAAAAACFwAAAAAFGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAADCgAAAAACFgAAAAAAGQAAAAACGQAAAAAFGQAAAAAFGQAAAAABGQAAAAAGGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAADCgAAAAADFgAAAAAFGQAAAAAIGQAAAAACGQAAAAAGGQAAAAAFGQAAAAADGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAAACgAAAAADFwAAAAAEFgAAAAACFwAAAAACFwAAAAACFgAAAAABFgAAAAAFFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAABAAAAAABBAAAAAAIBAAAAAAKBAAAAAAJBAAAAAAKDgAAAAADDgAAAAAEBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAACBAAAAAAHDgAAAAADDgAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAAFDgAAAAADCgAAAAABCgAAAAADCgAAAAABCgAAAAAACgAAAAACCgAAAAABCgAAAAADCgAAAAADBAAAAAACDgAAAAAFDgAAAAABDgAAAAAEDgAAAAACDgAAAAAEDgAAAAAFDgAAAAACCgAAAAABCgAAAAABCgAAAAAACgAAAAADCgAAAAABCgAAAAADCgAAAAACCgAAAAADBAAAAAAGDgAAAAAEDgAAAAABDgAAAAAFDgAAAAABDgAAAAAEDgAAAAADDgAAAAACCgAAAAAACgAAAAADCgAAAAADCgAAAAACCgAAAAADCgAAAAADCgAAAAACCgAAAAAABAAAAAAMDgAAAAAEDgAAAAAEDgAAAAABDgAAAAAFDgAAAAAADgAAAAAEDgAAAAAB
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAADCgAAAAACHAAAAAACAwAAAAAGAwAAAAAHHgAAAAACBAAAAAAIBAAAAAACBAAAAAACCgAAAAADCgAAAAADCgAAAAABCgAAAAACCgAAAAACCgAAAAACCgAAAAAACgAAAAABCgAAAAAAHAAAAAAFAwAAAAAEAwAAAAADHgAAAAACBAAAAAAIBgAAAAADBgAAAAAACgAAAAACCgAAAAACCgAAAAAACgAAAAADCgAAAAADCgAAAAACCgAAAAAACgAAAAABCgAAAAACAgAAAAANAwAAAAACAwAAAAAFGAAAAAAABAAAAAAKBgAAAAACBgAAAAADCgAAAAAACgAAAAABCgAAAAAACgAAAAACCgAAAAADCgAAAAABCgAAAAAACgAAAAABCgAAAAAAAgAAAAAEAwAAAAADAwAAAAABHgAAAAADBAAAAAAEBwAAAAABBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAABCgAAAAAAAgAAAAADAwAAAAAHAwAAAAADHgAAAAAEBAAAAAACBQAAAAACBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAACCgAAAAADAgAAAAABAwAAAAABAwAAAAAGHgAAAAACBAAAAAAMBgAAAAAABQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAAACgAAAAAAAgAAAAAPAwAAAAAAAwAAAAAEHgAAAAAABAAAAAAGBAAAAAAMBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAAACgAAAAACAgAAAAAMAwAAAAAIAwAAAAAEHgAAAAACHgAAAAAAAgAAAAAAAgAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAACHAAAAAACAwAAAAABAwAAAAAGAwAAAAADAwAAAAAHAwAAAAAFAwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAABCgAAAAACGAAAAAAAAwAAAAABAwAAAAABAwAAAAAFAwAAAAAIAwAAAAAHAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAADCgAAAAACAgAAAAAFHAAAAAAFAgAAAAAHAgAAAAAAAgAAAAAPAgAAAAAFAgAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAACBAAAAAANBAAAAAAMBAAAAAALBAAAAAANBAAAAAAMDgAAAAABDgAAAAAFBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAAABAAAAAAHDgAAAAAEDgAAAAADDgAAAAABDgAAAAACDgAAAAAEDgAAAAACDgAAAAAECgAAAAAACgAAAAACCgAAAAADCgAAAAADCgAAAAADCgAAAAAACgAAAAACCgAAAAAABAAAAAABDgAAAAABDgAAAAADDgAAAAAFDgAAAAAADgAAAAACDgAAAAABDgAAAAACCgAAAAADCgAAAAACCgAAAAADCgAAAAACCgAAAAAACgAAAAADCgAAAAACCgAAAAAABAAAAAABDgAAAAACDgAAAAACDgAAAAADDgAAAAAADgAAAAAEDgAAAAADDgAAAAAFCgAAAAAACgAAAAABCgAAAAAACgAAAAABCgAAAAADCgAAAAABCgAAAAADCgAAAAAABAAAAAAFDgAAAAAFDgAAAAAEDgAAAAAFDgAAAAAADgAAAAABDgAAAAAEDgAAAAAB
version: 6
1,0:
ind: 1,0
- tiles: BQAAAAACBwAAAAABBAAAAAAKFwAAAAAAGQAAAAAEGQAAAAAEFwAAAAADBAAAAAAHBQAAAAABBgAAAAADBAAAAAALBAAAAAAHBAAAAAAFFwAAAAACHAAAAAAAHAAAAAACBQAAAAADBQAAAAACBAAAAAAFFwAAAAAAGQAAAAAIGQAAAAABFwAAAAAABAAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAAABAAAAAAGFwAAAAADHAAAAAADHAAAAAACBwAAAAABBgAAAAADBAAAAAAMFwAAAAADGQAAAAAAGQAAAAAFFwAAAAADBAAAAAAJEwAAAAACBwAAAAACBQAAAAAABwAAAAAABAAAAAALFwAAAAACHAAAAAACHAAAAAADBwAAAAADBQAAAAABBAAAAAAMFwAAAAAFGQAAAAAGGQAAAAAGFwAAAAAABAAAAAAKEwAAAAADEwAAAAAABQAAAAADEwAAAAACBAAAAAAKFwAAAAACHAAAAAADHAAAAAAABgAAAAACBgAAAAABBQAAAAAAFwAAAAABGQAAAAAHGQAAAAAAGAAAAAACBgAAAAABBQAAAAADBQAAAAADBQAAAAAABQAAAAABBAAAAAABFwAAAAAAHgAAAAAAHAAAAAAABgAAAAABBgAAAAACBAAAAAABFwAAAAAAGQAAAAAIGQAAAAAGFwAAAAADBAAAAAAMBQAAAAAABQAAAAADBQAAAAADBQAAAAACBAAAAAAEFwAAAAADHAAAAAAAHAAAAAABBQAAAAADBAAAAAADBAAAAAACFwAAAAAEGQAAAAAAGQAAAAABFwAAAAACBAAAAAAIBAAAAAAMBAAAAAAHBAAAAAAFBAAAAAAFBAAAAAACFwAAAAACHAAAAAAFHgAAAAACFgAAAAAEFwAAAAABFwAAAAAFFwAAAAAAGQAAAAAGGQAAAAAGFwAAAAAFFwAAAAADFwAAAAAFFwAAAAAFFwAAAAACFwAAAAAAFwAAAAAEFwAAAAADFwAAAAAEFwAAAAADGQAAAAAEGQAAAAAEGQAAAAAIGQAAAAABGQAAAAAAGQAAAAAAGQAAAAAHGQAAAAACGQAAAAADGQAAAAAIGQAAAAACGQAAAAAFGQAAAAAAGQAAAAACGQAAAAAGGQAAAAAGGQAAAAAHGQAAAAAIGQAAAAAHGQAAAAAGGQAAAAABGQAAAAAGGQAAAAABGQAAAAAAGQAAAAAEGQAAAAACGQAAAAAHGQAAAAAHGQAAAAABGQAAAAAAGQAAAAAIGQAAAAAEFwAAAAADFwAAAAAFGAAAAAAEFwAAAAABFwAAAAAEFwAAAAAEGAAAAAAAFwAAAAADFwAAAAABGAAAAAAEFwAAAAACFwAAAAAEFwAAAAAEFgAAAAABFwAAAAADFwAAAAABFwAAAAADBAAAAAAIBwAAAAABBAAAAAABBAAAAAAHBAAAAAABBAAAAAALFwAAAAAAFwAAAAACBAAAAAAKBAAAAAAKBAAAAAAMBAAAAAAEAwAAAAADBAAAAAAGBAAAAAAIFwAAAAACBAAAAAAGBwAAAAABBgAAAAADBQAAAAAABgAAAAAABAAAAAAMBAAAAAAFFwAAAAADBAAAAAAADQAAAAAADQAAAAAAAwAAAAAIAwAAAAAAAwAAAAACBAAAAAAEGAAAAAAFBAAAAAAJBQAAAAAABQAAAAACBgAAAAAABwAAAAABBwAAAAADBAAAAAAMFwAAAAACBAAAAAAIDQAAAAAADQAAAAAAAwAAAAABAwAAAAAFAwAAAAACBAAAAAAFGAAAAAADBAAAAAABBgAAAAABBgAAAAABBQAAAAACBwAAAAAABwAAAAADBAAAAAADHAAAAAAABAAAAAAFDQAAAAAADQAAAAAABAAAAAAHBAAAAAAMAwAAAAACBAAAAAADGAAAAAAEBAAAAAALBgAAAAACBgAAAAACBQAAAAAABQAAAAACBQAAAAACBAAAAAADHAAAAAABBAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAA
+ tiles: BQAAAAADBwAAAAABBAAAAAAAHgAAAAAAAwAAAAAFAwAAAAAIHgAAAAAFBAAAAAAFBQAAAAABDQAAAAAADQAAAAAADQAAAAAABAAAAAAKHAAAAAAFHAAAAAAFHAAAAAAFBQAAAAABBQAAAAABBAAAAAALHgAAAAABAwAAAAAFAwAAAAAIHgAAAAAABAAAAAAJDQAAAAAADQAAAAAADQAAAAAADQAAAAAABAAAAAANBAAAAAABBAAAAAAKBAAAAAAHBwAAAAAABgAAAAAABAAAAAAAHgAAAAABAwAAAAAIAwAAAAABGAAAAAAEBAAAAAAGDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAwAAAAAHAwAAAAAABAAAAAAIBwAAAAAABQAAAAAABAAAAAAAHgAAAAABAwAAAAAHAwAAAAAEAgAAAAAOBAAAAAALAwAAAAAHAwAAAAAEBQAAAAACDQAAAAAADQAAAAAAAwAAAAAGAwAAAAAIBAAAAAAJBgAAAAADBgAAAAAABQAAAAACHgAAAAAEAwAAAAABAwAAAAACAgAAAAAKAwAAAAAHAwAAAAACAwAAAAAGBQAAAAAADQAAAAAADQAAAAAAAwAAAAADAwAAAAADBAAAAAAIBgAAAAAABgAAAAACBAAAAAAAHgAAAAAAAwAAAAAEAwAAAAACAgAAAAAPBAAAAAAHAwAAAAAHAwAAAAAHAwAAAAAEDQAAAAAADQAAAAAADQAAAAAADQAAAAAABAAAAAALBQAAAAADBAAAAAAABAAAAAAKHgAAAAACAwAAAAAAAwAAAAAHGAAAAAAABAAAAAACBAAAAAABBAAAAAAFBAAAAAAKBAAAAAADBAAAAAALBAAAAAANBAAAAAAIBAAAAAAJAgAAAAABAgAAAAAOHgAAAAACHgAAAAAAAwAAAAAFAwAAAAAAGAAAAAAEGAAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAAwAAAAAIAwAAAAAAAwAAAAAFAwAAAAADAwAAAAAHAwAAAAADAwAAAAABAwAAAAAFAwAAAAAIAwAAAAAGAwAAAAABAwAAAAAHAwAAAAAGAwAAAAAFAwAAAAADAwAAAAAHAwAAAAADAwAAAAAEAwAAAAAFAwAAAAACAwAAAAAGAwAAAAAGAwAAAAAFAwAAAAAFAwAAAAAFAwAAAAAEAwAAAAACAwAAAAAEAwAAAAAIAwAAAAACAwAAAAAGAwAAAAACGAAAAAABAgAAAAABAgAAAAAKAgAAAAABHgAAAAAEHgAAAAAFHQAAAAAAHgAAAAABHgAAAAAAHQAAAAAFHgAAAAAAHgAAAAAAAgAAAAALAgAAAAALAgAAAAAAHgAAAAAEHgAAAAAEBAAAAAAFBwAAAAABBAAAAAAFBAAAAAAHBAAAAAAABAAAAAAHHgAAAAAEHgAAAAABBAAAAAAHBAAAAAAEBAAAAAAGBAAAAAAIAwAAAAAABAAAAAAIBAAAAAANHgAAAAADBAAAAAAKBwAAAAADBgAAAAABBQAAAAADBgAAAAACBwAAAAACBAAAAAANGAAAAAACBAAAAAANDQAAAAAADQAAAAAAAwAAAAAEAwAAAAADAwAAAAADBAAAAAAFHQAAAAADBAAAAAAKBQAAAAAABQAAAAAABgAAAAAABwAAAAACBwAAAAACBAAAAAAEGAAAAAACBAAAAAAFDQAAAAAADQAAAAAAAwAAAAAAAwAAAAABAwAAAAAFBAAAAAAGHQAAAAAABAAAAAAJBgAAAAABBgAAAAADBQAAAAADBwAAAAAABwAAAAABBAAAAAACHAAAAAACBAAAAAAFDQAAAAAADQAAAAAABAAAAAADBAAAAAALAwAAAAAIBAAAAAANHQAAAAACBAAAAAAEBgAAAAABBgAAAAAABQAAAAACBQAAAAACBQAAAAACBAAAAAABHAAAAAACBAAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: BQAAAAACBQAAAAAABAAAAAAFAwAAAAAFAwAAAAAGAwAAAAAEAwAAAAAIBAAAAAAMFwAAAAADFwAAAAABHAAAAAAFHAAAAAADCQAAAAAICQAAAAAICQAAAAAJCQAAAAAKBQAAAAACBQAAAAABBAAAAAAEBAAAAAALAwAAAAAGAwAAAAAABAAAAAADBAAAAAAIFwAAAAAFHAAAAAAFHAAAAAABHAAAAAADHAAAAAADHAAAAAABHAAAAAAEHAAAAAABBAAAAAALBAAAAAAABAAAAAAIFwAAAAACGAAAAAAFGAAAAAABFwAAAAAFBAAAAAADFwAAAAAFHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAABHAAAAAABHAAAAAAAFwAAAAAEFwAAAAAEFwAAAAAAFwAAAAABGQAAAAAGGQAAAAAHFwAAAAAAFwAAAAADFwAAAAADFwAAAAACFwAAAAADFwAAAAABFwAAAAAAFwAAAAAFHAAAAAADHAAAAAACGQAAAAAEGQAAAAAGGQAAAAAGGQAAAAAFGQAAAAADGQAAAAAIFwAAAAAFBAAAAAADBAAAAAAIBAAAAAAGBAAAAAAJBAAAAAALBAAAAAAKFwAAAAABHAAAAAACHAAAAAACGQAAAAAAGQAAAAAAGQAAAAACGQAAAAADGQAAAAAAGQAAAAAGFwAAAAAFBAAAAAADBQAAAAAABgAAAAAABgAAAAADBQAAAAABBAAAAAAGFwAAAAADHAAAAAACHAAAAAAAFwAAAAAEFwAAAAAFFwAAAAAEFwAAAAADGQAAAAAEGQAAAAAEFgAAAAACBgAAAAADBQAAAAAABgAAAAACBgAAAAAABwAAAAAABAAAAAAHFwAAAAACHAAAAAADHAAAAAAEAgAAAAAJAgAAAAAJFwAAAAAEFwAAAAAFGQAAAAAIGQAAAAABFwAAAAAEBAAAAAAEBQAAAAACBQAAAAABBwAAAAACBwAAAAABBAAAAAABFwAAAAAFHAAAAAABHAAAAAAEAgAAAAAJFwAAAAACAgAAAAANFwAAAAAEGQAAAAADGQAAAAAIFwAAAAAFBAAAAAAKBQAAAAAABQAAAAABBAAAAAABBAAAAAAGBAAAAAAFFwAAAAABHAAAAAADHAAAAAADAgAAAAAPAgAAAAAEAgAAAAADFwAAAAAEGQAAAAADGQAAAAADFwAAAAABBAAAAAACBgAAAAACBQAAAAAABAAAAAAFAwAAAAAIAwAAAAAIFwAAAAADHAAAAAADHAAAAAADAgAAAAABAgAAAAAJFwAAAAAEFwAAAAAAGQAAAAAFGQAAAAAFFwAAAAABBAAAAAAEBwAAAAACBwAAAAABBAAAAAAKFwAAAAAFFwAAAAAAFwAAAAADHAAAAAAFHAAAAAADAgAAAAAEAgAAAAAPAgAAAAAHFwAAAAADGQAAAAAFGQAAAAACFwAAAAAFBAAAAAABBwAAAAADBwAAAAADBgAAAAAAAwAAAAAEFwAAAAAFFwAAAAAEHAAAAAADHAAAAAAEAgAAAAABAgAAAAAIAgAAAAACAgAAAAAOGQAAAAAGGQAAAAAAFwAAAAADBAAAAAAMBAAAAAALBAAAAAAFBAAAAAAMFwAAAAACFwAAAAAEFwAAAAABHAAAAAABHAAAAAADAgAAAAADAgAAAAAIAgAAAAALFwAAAAAEGQAAAAAEGQAAAAACFwAAAAAFFwAAAAACFwAAAAAAFwAAAAAEFwAAAAADFwAAAAADFwAAAAAAFwAAAAAAHAAAAAABHAAAAAAFAgAAAAAAAgAAAAAKFwAAAAADFwAAAAACGQAAAAABGQAAAAADFwAAAAAFBAAAAAAIBAAAAAALBAAAAAADBAAAAAAGFwAAAAAEFwAAAAACFwAAAAADHAAAAAABHAAAAAACBAAAAAAGBAAAAAADBAAAAAAAFwAAAAACGQAAAAAEGQAAAAAHFwAAAAACBAAAAAADBgAAAAABBgAAAAAABgAAAAAAFwAAAAACFwAAAAAEFwAAAAADHAAAAAAAHAAAAAAD
+ tiles: BQAAAAACBQAAAAACBAAAAAANAwAAAAADAwAAAAACAwAAAAAHAwAAAAAABAAAAAAHHgAAAAAAHgAAAAAEHAAAAAAEHAAAAAAECQAAAAAHCQAAAAAFCQAAAAADCQAAAAAEBQAAAAADBQAAAAAABAAAAAACBAAAAAADAwAAAAAHAwAAAAAHBAAAAAANBAAAAAAMHgAAAAACHAAAAAAEHAAAAAABHAAAAAAAHAAAAAAEHAAAAAAFHAAAAAABHAAAAAACBAAAAAANBAAAAAANBAAAAAAKAgAAAAAJAgAAAAACAgAAAAAOHgAAAAACBAAAAAACHgAAAAAEHAAAAAAEHAAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAAEHAAAAAACAgAAAAAIAgAAAAAJAgAAAAADAgAAAAANAwAAAAAEAwAAAAAAAgAAAAAOHgAAAAAEHgAAAAAAHgAAAAAFHgAAAAAAHgAAAAAAHgAAAAAEHgAAAAABHAAAAAAAHAAAAAAEAwAAAAADAwAAAAAAAwAAAAADAwAAAAAEAwAAAAAGAwAAAAAGHgAAAAABBAAAAAAABAAAAAAGBAAAAAANBAAAAAAMBAAAAAANBAAAAAAGHgAAAAABHAAAAAABHAAAAAAEAwAAAAACAwAAAAABAwAAAAAHAwAAAAAAAwAAAAADAwAAAAAFHgAAAAADBAAAAAAHBQAAAAABBgAAAAAABgAAAAAABQAAAAABBAAAAAAHHgAAAAAAHAAAAAAFHAAAAAAEHgAAAAABHgAAAAABHgAAAAAAHgAAAAABAwAAAAAHAwAAAAABAgAAAAAIBgAAAAACBQAAAAABBgAAAAACBgAAAAACBwAAAAABBAAAAAABHgAAAAADHAAAAAABHAAAAAAEAgAAAAABAgAAAAAAHgAAAAAEHgAAAAABAwAAAAAEAwAAAAAGAgAAAAAJBAAAAAAEBQAAAAABBQAAAAAABwAAAAACBwAAAAADBAAAAAAHHgAAAAAFHAAAAAACHAAAAAAFAgAAAAAIHgAAAAAAAgAAAAANHgAAAAAEAwAAAAACAwAAAAABAgAAAAABBAAAAAALBQAAAAADBQAAAAABBAAAAAAHBAAAAAAFBAAAAAAAHgAAAAACHAAAAAADHAAAAAAFAgAAAAAPAgAAAAABAgAAAAACHgAAAAAEAwAAAAABAwAAAAAHHgAAAAACBAAAAAAKBgAAAAACBQAAAAAABAAAAAAIAwAAAAAEAwAAAAAGHgAAAAACHAAAAAAEHAAAAAABAgAAAAAOAgAAAAAIHgAAAAACHgAAAAACAwAAAAAAAwAAAAAEGAAAAAADBAAAAAAKBwAAAAACBwAAAAADBAAAAAAAHgAAAAACFgAAAAACHgAAAAAEHAAAAAACHAAAAAACAgAAAAAPAgAAAAADAgAAAAAEHgAAAAACAwAAAAABAwAAAAAIHgAAAAAEBAAAAAAGBwAAAAADBwAAAAAABgAAAAAAAwAAAAAHHgAAAAADFgAAAAACHAAAAAAFHAAAAAAAAgAAAAAEAgAAAAADAgAAAAAHAgAAAAAIAwAAAAABAwAAAAAEHgAAAAAFBAAAAAAHBAAAAAAABAAAAAAMBAAAAAAHHgAAAAAAHgAAAAAAHgAAAAAEHAAAAAABHAAAAAADAgAAAAAIAgAAAAAHAgAAAAADHgAAAAACAwAAAAAIAwAAAAAHHgAAAAAAHgAAAAABHgAAAAADHgAAAAAFHgAAAAABHgAAAAABHgAAAAAEHgAAAAABHAAAAAAAHAAAAAACAgAAAAACAgAAAAAFHgAAAAABHgAAAAAFAwAAAAAEAwAAAAAFHgAAAAAEBAAAAAAHBAAAAAADBAAAAAAABAAAAAACDQAAAAAABAAAAAAJHgAAAAAFHAAAAAADHAAAAAADBAAAAAAGBAAAAAAABAAAAAANHgAAAAACAwAAAAAEAwAAAAADHgAAAAADBAAAAAALDQAAAAAADQAAAAAADQAAAAAADQAAAAAABAAAAAAMHgAAAAAEHAAAAAABHAAAAAAE
version: 6
1,-2:
ind: 1,-2
- tiles: FwAAAAABGQAAAAAFFwAAAAAFBAAAAAAABQAAAAADBQAAAAAABQAAAAACBAAAAAAKHQAAAAAACQAAAAAHCQAAAAAMCQAAAAAMCQAAAAAECQAAAAAICQAAAAAKCQAAAAAKAwAAAAAAAwAAAAABAwAAAAACBAAAAAAFBQAAAAADBQAAAAABBQAAAAAABAAAAAAIHQAAAAABCQAAAAAJCQAAAAAFCQAAAAAMCQAAAAAICQAAAAACCQAAAAALCQAAAAACAwAAAAAGAwAAAAABAwAAAAAGBAAAAAAFBQAAAAACBQAAAAABBQAAAAACBAAAAAAFHQAAAAABCQAAAAAFCQAAAAABCQAAAAANCQAAAAAICQAAAAADCQAAAAACCQAAAAAABAAAAAAEAwAAAAAHBAAAAAAGBAAAAAAGBAAAAAAIAwAAAAAGBAAAAAAEBAAAAAAMHQAAAAAFCQAAAAANCQAAAAAJCQAAAAACCQAAAAANCQAAAAABCQAAAAAKCQAAAAACAwAAAAAIAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAAIAwAAAAAEBAAAAAAGHAAAAAADCQAAAAADCQAAAAANCQAAAAAACQAAAAAECQAAAAAFCQAAAAAGCQAAAAANAwAAAAABAwAAAAAAAwAAAAAFAwAAAAACAwAAAAACAwAAAAAEAwAAAAABBAAAAAAIHAAAAAACCQAAAAAKCQAAAAABCQAAAAAACQAAAAAICQAAAAAKCQAAAAAECQAAAAABAwAAAAAEAwAAAAAGAwAAAAACAwAAAAAAAwAAAAAGAwAAAAAAAwAAAAABBAAAAAAIHAAAAAABCQAAAAADCQAAAAAJCQAAAAAICQAAAAAICQAAAAAMCQAAAAANCQAAAAALAwAAAAABAwAAAAABAwAAAAAFAwAAAAADAwAAAAABAwAAAAAIAwAAAAABBAAAAAALFwAAAAAECQAAAAAGCQAAAAANCQAAAAALCQAAAAADCQAAAAADCQAAAAALCQAAAAABAwAAAAAEAwAAAAAEAwAAAAAHAwAAAAADAwAAAAADAwAAAAAHAwAAAAADBAAAAAABFwAAAAAECQAAAAAICQAAAAAMCQAAAAACCQAAAAADCQAAAAAECQAAAAAICQAAAAABAwAAAAACAwAAAAAFAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAFBAAAAAAEFwAAAAACCQAAAAAFCQAAAAADCQAAAAAMCQAAAAAMCQAAAAALCQAAAAAICQAAAAAHBAAAAAAHBAAAAAABBAAAAAAKBAAAAAAHAwAAAAAFAwAAAAABBAAAAAAABAAAAAANFwAAAAADCQAAAAAACQAAAAAKCQAAAAADCQAAAAADCQAAAAAMCQAAAAAFCQAAAAAEBQAAAAADBQAAAAADBAAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAAHCQAAAAAMFwAAAAADCQAAAAAHCQAAAAAJCQAAAAAJCQAAAAAACQAAAAANCQAAAAAFCQAAAAAMBQAAAAABBQAAAAAABAAAAAAKAwAAAAADAwAAAAACAwAAAAACAwAAAAAFCQAAAAADFwAAAAAECQAAAAALCQAAAAAACQAAAAACCQAAAAAJCQAAAAAMCQAAAAAGCQAAAAAGBQAAAAADBQAAAAADBAAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAABAAAAAANFwAAAAADCQAAAAAICQAAAAAMCQAAAAANCQAAAAAMCQAAAAAECQAAAAAMCQAAAAANBAAAAAABBAAAAAAEBAAAAAANAwAAAAAFAwAAAAADAwAAAAABAwAAAAAGBAAAAAAFFwAAAAAEFwAAAAADHAAAAAAACQAAAAACCQAAAAAJCQAAAAACCQAAAAAICQAAAAACBQAAAAAABQAAAAACBAAAAAACAwAAAAAFAwAAAAACAwAAAAAIAwAAAAACAwAAAAABFwAAAAACFwAAAAAEHAAAAAABHAAAAAADCQAAAAAFCQAAAAAGCQAAAAAACQAAAAAH
+ tiles: HgAAAAACAwAAAAAFHgAAAAADBAAAAAAEBQAAAAACBQAAAAABBQAAAAABBAAAAAAKHQAAAAADCQAAAAACCQAAAAAECQAAAAALCQAAAAADCQAAAAANCQAAAAAMCQAAAAAIAwAAAAAAAwAAAAAFAwAAAAAFBAAAAAAJBQAAAAABBQAAAAACBQAAAAACBAAAAAABHQAAAAADCQAAAAAHCQAAAAAHCQAAAAALCQAAAAACCQAAAAAACQAAAAAJCQAAAAABAwAAAAAEAwAAAAAFAwAAAAAGBAAAAAAKBQAAAAADBQAAAAADBQAAAAADBAAAAAAJHQAAAAAFCQAAAAAGCQAAAAAACQAAAAAGCQAAAAAKCQAAAAAJCQAAAAADCQAAAAAIBAAAAAAFAwAAAAAIBAAAAAAHBAAAAAAABAAAAAAHAwAAAAAHBAAAAAAIBAAAAAAJHQAAAAAFCQAAAAAJCQAAAAAFCQAAAAAFCQAAAAADCQAAAAANCQAAAAALCQAAAAALAwAAAAACAwAAAAAHAwAAAAABAwAAAAAIAwAAAAAGAwAAAAAEAwAAAAADBAAAAAAAHAAAAAAECQAAAAABCQAAAAAMCQAAAAANCQAAAAAACQAAAAAHCQAAAAAICQAAAAAGAwAAAAAIAwAAAAACAwAAAAACAwAAAAAHAwAAAAAFAwAAAAABAwAAAAAGBAAAAAANHAAAAAAACQAAAAAACQAAAAANCQAAAAAJCQAAAAALCQAAAAABCQAAAAACCQAAAAAKAwAAAAAIAwAAAAADAwAAAAAHAwAAAAAEAwAAAAAAAwAAAAABAwAAAAAABAAAAAAGHAAAAAAECQAAAAACCQAAAAAHCQAAAAACCQAAAAAHCQAAAAAMCQAAAAACCQAAAAAIAwAAAAAAAwAAAAAHAwAAAAABAwAAAAABAwAAAAAGAwAAAAAGAwAAAAAABAAAAAAMHgAAAAAACQAAAAAICQAAAAAICQAAAAANCQAAAAAMCQAAAAADCQAAAAAECQAAAAAHAwAAAAAEAwAAAAAGAwAAAAADAwAAAAAGAwAAAAAEAwAAAAAGAwAAAAAHBAAAAAALHgAAAAAACQAAAAAKCQAAAAAGCQAAAAACCQAAAAADCQAAAAAFCQAAAAAICQAAAAAGAwAAAAAGAwAAAAAEAwAAAAABAwAAAAAEAwAAAAABAwAAAAAHAwAAAAACBAAAAAACHgAAAAAECQAAAAADCQAAAAAACQAAAAADCQAAAAANCQAAAAANCQAAAAAHCQAAAAAEBAAAAAAGBAAAAAANBAAAAAAKBAAAAAAKAwAAAAADAwAAAAAIBAAAAAAKBAAAAAAEHgAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAAKCQAAAAAFCQAAAAAHCQAAAAACBQAAAAACBQAAAAACBAAAAAAKAwAAAAAEAwAAAAAGAwAAAAAIAwAAAAAACQAAAAABHgAAAAACCQAAAAANCQAAAAAGCQAAAAAJCQAAAAACCQAAAAAACQAAAAAJCQAAAAAJBQAAAAAABQAAAAACBAAAAAAHAwAAAAAEAwAAAAAFAwAAAAACAwAAAAAACQAAAAAAHgAAAAABCQAAAAAECQAAAAABCQAAAAAGCQAAAAAICQAAAAAGCQAAAAAHCQAAAAAIBQAAAAADBQAAAAACBAAAAAAMAwAAAAACAwAAAAAHAwAAAAAIAwAAAAABBAAAAAADHgAAAAAECQAAAAANCQAAAAAMCQAAAAAACQAAAAADCQAAAAAICQAAAAABCQAAAAAFBAAAAAALBAAAAAAABAAAAAACAwAAAAAGAwAAAAAFAwAAAAACAwAAAAAHBAAAAAANHgAAAAAAHgAAAAAAHAAAAAACCQAAAAAMCQAAAAABCQAAAAANCQAAAAAECQAAAAAEBQAAAAADBQAAAAADBAAAAAABAwAAAAAEAwAAAAAFAwAAAAAIAwAAAAACAwAAAAABHgAAAAAAHgAAAAAAHAAAAAACHAAAAAAACQAAAAAMCQAAAAAKCQAAAAALCQAAAAAH
version: 6
1,1:
ind: 1,1
- tiles: GAAAAAAFBAAAAAAGBAAAAAAKBAAAAAAKBwAAAAACBQAAAAADBQAAAAABBAAAAAAIHAAAAAACBAAAAAANAwAAAAAEAwAAAAAGAwAAAAAHDQAAAAAADQAAAAAADQAAAAAAFwAAAAAAFwAAAAAAFwAAAAACBwAAAAABBwAAAAACBQAAAAADBgAAAAAABAAAAAAHHAAAAAABBAAAAAAKAwAAAAACAwAAAAAEAwAAAAACBAAAAAANBAAAAAAEBAAAAAANFwAAAAAAFwAAAAADFwAAAAAEBAAAAAAHBAAAAAAHBAAAAAACBAAAAAAIBAAAAAAEHAAAAAAEBAAAAAANBAAAAAABBAAAAAAEBAAAAAALBAAAAAAGFwAAAAAFFwAAAAACFwAAAAACFwAAAAAAFwAAAAAFFwAAAAABFwAAAAABFwAAAAAEFwAAAAAAFwAAAAAFFwAAAAADCQAAAAADCQAAAAAJCQAAAAAJCQAAAAAGCQAAAAAICQAAAAAKCQAAAAABFwAAAAAEFwAAAAAAFwAAAAABFwAAAAABFwAAAAAEFwAAAAAEFwAAAAABFwAAAAACCQAAAAAKCQAAAAAMCQAAAAAKCQAAAAAGCQAAAAAICQAAAAAHCQAAAAAGCQAAAAACGAAAAAAAFwAAAAADFwAAAAAEHwAAAAAAHwAAAAAAFwAAAAABFwAAAAAFFwAAAAAACQAAAAABCQAAAAADCQAAAAAICQAAAAAKCQAAAAAKCQAAAAAICQAAAAADCQAAAAALGAAAAAAAGAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAFwAAAAAECQAAAAAICQAAAAACCQAAAAALCQAAAAALCQAAAAACCQAAAAALCQAAAAAJCQAAAAANCQAAAAAKGAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAFwAAAAADCQAAAAAICQAAAAADCQAAAAADCQAAAAAICQAAAAAJCQAAAAAKCQAAAAAACQAAAAAMCQAAAAABGAAAAAABGAAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAACQAAAAAICQAAAAACCQAAAAADCQAAAAABCQAAAAAHCQAAAAAGCQAAAAABCQAAAAAECQAAAAANFwAAAAAFGAAAAAAAGAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAFwAAAAAACQAAAAAKCQAAAAAHCQAAAAABCQAAAAAJCQAAAAACCQAAAAABCQAAAAAICQAAAAABCQAAAAABCQAAAAAIGAAAAAAAGAAAAAAAFwAAAAAAFwAAAAAFFwAAAAAAGAAAAAAACQAAAAAKCQAAAAAECQAAAAANCQAAAAAFCQAAAAAJCQAAAAAMCQAAAAAECQAAAAAKCQAAAAAECQAAAAAKCQAAAAANCQAAAAAECQAAAAAFFwAAAAAAGAAAAAAAGAAAAAAACQAAAAAJCQAAAAADCQAAAAAFCQAAAAABCQAAAAAMCQAAAAAACQAAAAABCQAAAAAGCQAAAAAKCQAAAAAICQAAAAAFCQAAAAAGCQAAAAADCQAAAAANFwAAAAAFHAAAAAACCQAAAAAJCQAAAAAJCQAAAAAMCQAAAAAECQAAAAANCQAAAAAECQAAAAAMCQAAAAADCQAAAAAKCQAAAAAFCQAAAAAMCQAAAAAACQAAAAANCQAAAAAGCQAAAAACFwAAAAAACQAAAAAJCQAAAAALCQAAAAALCQAAAAACCQAAAAANCQAAAAAHCQAAAAANCQAAAAAJCQAAAAALCQAAAAAHCQAAAAABCQAAAAANCQAAAAAGCQAAAAAGCQAAAAAHCQAAAAAECQAAAAAKCQAAAAAGCQAAAAAJCQAAAAANCQAAAAACCQAAAAANCQAAAAAMCQAAAAAFCQAAAAAFCQAAAAAACQAAAAABCQAAAAAMCQAAAAALCQAAAAAMCQAAAAAKCQAAAAAKCQAAAAADCQAAAAADCQAAAAADCQAAAAAGCQAAAAAHCQAAAAACCQAAAAAFCQAAAAAMCQAAAAAN
+ tiles: HQAAAAACBAAAAAAEBgAAAAADBgAAAAAABwAAAAABBQAAAAACBQAAAAADBAAAAAAFHAAAAAACBAAAAAABAwAAAAAEAwAAAAADAwAAAAAADQAAAAAADQAAAAAADQAAAAAAHgAAAAAEBAAAAAAABwAAAAABBwAAAAACBwAAAAACBQAAAAABBgAAAAACBAAAAAAIHAAAAAAABAAAAAAMAwAAAAAGAwAAAAAEAwAAAAADBAAAAAADBAAAAAAEBAAAAAAAFgAAAAADBAAAAAANBwAAAAACBwAAAAACBwAAAAACBAAAAAAEBAAAAAANBAAAAAAEHAAAAAAEBAAAAAANBAAAAAAEBAAAAAACBAAAAAABBAAAAAAHHgAAAAAAHgAAAAADHgAAAAAEBAAAAAAEBwAAAAADBwAAAAACBwAAAAABBwAAAAAAHgAAAAABHgAAAAAAHgAAAAAACQAAAAANCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAGCQAAAAAGHgAAAAABBAAAAAAMBAAAAAANBAAAAAADBAAAAAADBAAAAAAGHgAAAAAFHgAAAAAACQAAAAAHCQAAAAAMCQAAAAAMCQAAAAAMCQAAAAAICQAAAAABCQAAAAAFCQAAAAANHQAAAAAAHgAAAAAAHgAAAAAAAgAAAAAMAgAAAAAGHgAAAAADHgAAAAAFHgAAAAAFCQAAAAAFCQAAAAACCQAAAAALCQAAAAALCQAAAAAMCQAAAAAFCQAAAAAECQAAAAAMHQAAAAADHQAAAAAAAgAAAAAMAgAAAAALAgAAAAAEAgAAAAANHgAAAAAFCQAAAAAFCQAAAAAGCQAAAAACCQAAAAAACQAAAAADCQAAAAAGCQAAAAADCQAAAAAFCQAAAAADHQAAAAAEAgAAAAAOAgAAAAABAgAAAAACAgAAAAAOAgAAAAAGHgAAAAAACQAAAAANCQAAAAABCQAAAAABCQAAAAALCQAAAAAMCQAAAAAECQAAAAAACQAAAAABCQAAAAAJHQAAAAADHQAAAAAAAgAAAAAHAgAAAAALAgAAAAALAgAAAAAFAgAAAAAPCQAAAAALCQAAAAAMCQAAAAAKCQAAAAAECQAAAAABCQAAAAACCQAAAAAFCQAAAAAECQAAAAADHgAAAAABHQAAAAAEHQAAAAACAgAAAAAEAgAAAAAHAgAAAAAHHgAAAAAECQAAAAAKCQAAAAAMCQAAAAACCQAAAAAJCQAAAAAHCQAAAAAMCQAAAAAECQAAAAAJCQAAAAAECQAAAAAGHQAAAAAEHQAAAAABHgAAAAABHgAAAAAFHgAAAAABHQAAAAADCQAAAAAICQAAAAAFCQAAAAAACQAAAAAACQAAAAAGCQAAAAALCQAAAAABCQAAAAAACQAAAAALCQAAAAAICQAAAAAECQAAAAAKCQAAAAAHHgAAAAAEHQAAAAADHQAAAAAACQAAAAAJCQAAAAAECQAAAAAHCQAAAAAECQAAAAANCQAAAAABCQAAAAAHCQAAAAANCQAAAAAFCQAAAAAICQAAAAALCQAAAAAHCQAAAAACCQAAAAAEHgAAAAADHAAAAAAECQAAAAAHCQAAAAAHCQAAAAAICQAAAAAICQAAAAANCQAAAAAECQAAAAAFCQAAAAAHCQAAAAAECQAAAAAKCQAAAAAICQAAAAAFCQAAAAADCQAAAAAMCQAAAAAKHgAAAAAECQAAAAABCQAAAAAFCQAAAAAKCQAAAAAKCQAAAAAGCQAAAAABCQAAAAAICQAAAAABCQAAAAAHCQAAAAAMCQAAAAABCQAAAAAHCQAAAAAKCQAAAAAMCQAAAAAECQAAAAADCQAAAAACCQAAAAAGCQAAAAAGCQAAAAACCQAAAAAJCQAAAAABCQAAAAAJCQAAAAANCQAAAAAECQAAAAAICQAAAAAICQAAAAANCQAAAAAMCQAAAAADCQAAAAAFCQAAAAAFCQAAAAAGCQAAAAABCQAAAAAICQAAAAACCQAAAAAGCQAAAAAGCQAAAAABCQAAAAABCQAAAAAJ
version: 6
0,1:
ind: 0,1
- tiles: BgAAAAADBwAAAAACBAAAAAAFBwAAAAADBwAAAAAAFwAAAAAEFwAAAAAFFwAAAAAEBAAAAAAEBwAAAAACBwAAAAABBwAAAAAABwAAAAAABQAAAAACBAAAAAAKGAAAAAABBwAAAAAABwAAAAAABQAAAAADBwAAAAACBwAAAAADFwAAAAAFFwAAAAABFwAAAAACBAAAAAAFBAAAAAAGBAAAAAANBwAAAAABBAAAAAALBAAAAAABBAAAAAAHGAAAAAAEBAAAAAADBAAAAAAKBAAAAAADFwAAAAACFwAAAAAAAwAAAAABFwAAAAACFwAAAAAEFwAAAAABFwAAAAAEFwAAAAADGAAAAAACGAAAAAADGAAAAAACGAAAAAACGAAAAAADFwAAAAAEFwAAAAABFwAAAAABFwAAAAAEFwAAAAACFwAAAAADFwAAAAADFwAAAAAAFwAAAAAEFwAAAAABFwAAAAADFwAAAAADFwAAAAAFGAAAAAABFwAAAAAFFwAAAAAEFwAAAAAEFwAAAAADFwAAAAAFFwAAAAADAgAAAAAFFwAAAAAAFwAAAAAFFwAAAAACBAAAAAALCwAAAAAACwAAAAAACwAAAAAABAAAAAAMCwAAAAAABAAAAAAJBAAAAAAIFgAAAAACFgAAAAADFwAAAAAFFwAAAAABFwAAAAABFwAAAAAFFwAAAAACGAAAAAAABAAAAAAKCwAAAAAACwAAAAAADAAAAAAACwAAAAAABQAAAAAABQAAAAABBAAAAAAGFgAAAAAEFgAAAAACFgAAAAACFwAAAAADFwAAAAABFwAAAAADAgAAAAAEGAAAAAAFBAAAAAAKCwAAAAAADAAAAAAADAAAAAAABgAAAAACBQAAAAADCwAAAAAABAAAAAAHFgAAAAAEFgAAAAABFgAAAAABFwAAAAADFwAAAAACFwAAAAABCQAAAAALCQAAAAAHBAAAAAAMBQAAAAAACwAAAAAABgAAAAAABQAAAAACCwAAAAAACwAAAAAABAAAAAACFgAAAAAEFgAAAAABFgAAAAAFCQAAAAAICQAAAAAMCQAAAAAGCQAAAAALCQAAAAANBAAAAAAFCwAAAAAACwAAAAAACwAAAAAABQAAAAACCwAAAAAACwAAAAAABAAAAAAFCQAAAAAFCQAAAAADCQAAAAAECQAAAAAJCQAAAAAMCQAAAAAACQAAAAACCQAAAAAGBAAAAAAHDAAAAAAADAAAAAAACwAAAAAABgAAAAADCwAAAAAABAAAAAAJBAAAAAAGCQAAAAAHCQAAAAAHCQAAAAABCQAAAAALCQAAAAABCQAAAAABCQAAAAAJCQAAAAAIBAAAAAAMDAAAAAAADAAAAAAACwAAAAAADAAAAAAADAAAAAAABAAAAAAABAAAAAAACQAAAAALCQAAAAANCQAAAAAGCQAAAAAHCQAAAAAHCQAAAAAKCQAAAAAHCQAAAAAJBAAAAAAHDAAAAAAADAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAAACQAAAAALCQAAAAABCQAAAAAJCQAAAAABCQAAAAAICQAAAAAECQAAAAAGCQAAAAALBAAAAAAIBAAAAAAHBAAAAAALBAAAAAAGBAAAAAAHBAAAAAAIBAAAAAAIBAAAAAAMCQAAAAAECQAAAAAACQAAAAAGCQAAAAAKCQAAAAALCQAAAAACCQAAAAANCQAAAAAMCQAAAAABCQAAAAAHCQAAAAABCQAAAAANCQAAAAAFCQAAAAANCQAAAAAMCQAAAAAFCQAAAAAFCQAAAAACCQAAAAADCQAAAAAMCQAAAAAJCQAAAAAMCQAAAAACCQAAAAALCQAAAAAFCQAAAAABCQAAAAAFCQAAAAAECQAAAAAHCQAAAAAKCQAAAAAECQAAAAAJCQAAAAADCQAAAAAJCQAAAAACCQAAAAANCQAAAAACCQAAAAANCQAAAAAJCQAAAAALCQAAAAAKCQAAAAAJCQAAAAALCQAAAAANCQAAAAALCQAAAAAFCQAAAAAMCQAAAAAA
+ tiles: BgAAAAABBwAAAAABBAAAAAALBwAAAAAABwAAAAACHgAAAAAEHgAAAAACHgAAAAAABAAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAABBQAAAAAABAAAAAANHQAAAAADBwAAAAACBwAAAAACBQAAAAABBwAAAAADBwAAAAADHgAAAAAAHgAAAAACHgAAAAAFBAAAAAAEBAAAAAAIBAAAAAADBwAAAAABBAAAAAAGBAAAAAAIBAAAAAANHQAAAAAABAAAAAAHBAAAAAANBAAAAAADHgAAAAABHgAAAAAFAwAAAAAEHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHQAAAAAEHQAAAAAEHQAAAAABHQAAAAAEHQAAAAABHgAAAAABHgAAAAABHgAAAAABHgAAAAAAGAAAAAAAFgAAAAAAAgAAAAAGFgAAAAAAHgAAAAADHgAAAAAEHgAAAAAAHgAAAAABHgAAAAAFHQAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAABGAAAAAACAgAAAAAHAgAAAAAPGAAAAAABFgAAAAAEGAAAAAADBAAAAAAICwAAAAAACwAAAAAACwAAAAAABAAAAAALCwAAAAAABAAAAAAJBAAAAAAEHAAAAAAEHAAAAAAEFgAAAAAAAgAAAAAHAgAAAAAOAgAAAAACGAAAAAADHQAAAAAFBAAAAAABCwAAAAAACwAAAAAADAAAAAAACwAAAAAABQAAAAAABQAAAAAABAAAAAADHAAAAAAFHAAAAAABHAAAAAABFgAAAAAFAgAAAAAIAgAAAAAGAgAAAAAMHQAAAAABBAAAAAAICwAAAAAADAAAAAAADAAAAAAABgAAAAACBQAAAAADCwAAAAAABAAAAAAJHAAAAAAEHAAAAAABHAAAAAAFHgAAAAAEGAAAAAAEHgAAAAAACQAAAAADCQAAAAAJBAAAAAAMBQAAAAAACwAAAAAABgAAAAADBQAAAAAACwAAAAAACwAAAAAABAAAAAAJHAAAAAAAHAAAAAABHAAAAAAACQAAAAAFCQAAAAAKCQAAAAAHCQAAAAABCQAAAAAJBAAAAAADCwAAAAAACwAAAAAACwAAAAAABQAAAAADCwAAAAAACwAAAAAABAAAAAADCQAAAAAMCQAAAAABCQAAAAAACQAAAAABCQAAAAAMCQAAAAAJCQAAAAADCQAAAAAEBAAAAAAHDAAAAAAADAAAAAAACwAAAAAABgAAAAACCwAAAAAABAAAAAAEBAAAAAABCQAAAAAACQAAAAANCQAAAAAGCQAAAAADCQAAAAAFCQAAAAAHCQAAAAAFCQAAAAAFBAAAAAAADAAAAAAADAAAAAAACwAAAAAADAAAAAAADAAAAAAABAAAAAAIBAAAAAAECQAAAAAFCQAAAAAGCQAAAAAICQAAAAAECQAAAAAMCQAAAAADCQAAAAALCQAAAAAKBAAAAAABDAAAAAAADAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAAJCQAAAAAKCQAAAAABCQAAAAANCQAAAAABCQAAAAAGCQAAAAAICQAAAAABCQAAAAAABAAAAAAMBAAAAAAABAAAAAAGBAAAAAAEBAAAAAAEBAAAAAACBAAAAAAGBAAAAAACCQAAAAAFCQAAAAAACQAAAAAKCQAAAAAECQAAAAACCQAAAAAECQAAAAAGCQAAAAABCQAAAAAACQAAAAAACQAAAAAMCQAAAAAICQAAAAAMCQAAAAANCQAAAAAACQAAAAABCQAAAAAACQAAAAAJCQAAAAAECQAAAAAECQAAAAADCQAAAAAJCQAAAAABCQAAAAAICQAAAAAECQAAAAAICQAAAAADCQAAAAADCQAAAAAMCQAAAAAICQAAAAAKCQAAAAACCQAAAAABCQAAAAALCQAAAAANCQAAAAAFCQAAAAAHCQAAAAAMCQAAAAADCQAAAAAGCQAAAAAICQAAAAAFCQAAAAAHCQAAAAAICQAAAAAFCQAAAAADCQAAAAAJCQAAAAAL
version: 6
1,2:
ind: 1,2
- tiles: CQAAAAABCQAAAAANCQAAAAAFCQAAAAADCQAAAAAICQAAAAAGCQAAAAADCQAAAAADCQAAAAAFCQAAAAANCQAAAAAECQAAAAADCQAAAAAICQAAAAAKCQAAAAAMCQAAAAADCQAAAAAHCQAAAAABCQAAAAAHCQAAAAAHCQAAAAAACQAAAAAKCQAAAAAICQAAAAAACQAAAAAGCQAAAAAFCQAAAAALCQAAAAAACQAAAAAJCQAAAAAJCQAAAAAGCQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAANCQAAAAAGCQAAAAAJCQAAAAAHCQAAAAAHCQAAAAALCQAAAAACCQAAAAAICQAAAAACCQAAAAALCQAAAAAHCQAAAAAMCQAAAAACCQAAAAAICQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAECQAAAAAACQAAAAAJCQAAAAAGCQAAAAANCQAAAAAECQAAAAAKCQAAAAAMCQAAAAAFCQAAAAAACQAAAAANCQAAAAAJCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAANCQAAAAANCQAAAAALCQAAAAANCQAAAAAECQAAAAAFCQAAAAAJCQAAAAAFCQAAAAAHCQAAAAAECQAAAAABCQAAAAAMCQAAAAABCQAAAAALCQAAAAAHCQAAAAAHCQAAAAAACQAAAAAICQAAAAALCQAAAAAECQAAAAAACQAAAAANCQAAAAAACQAAAAAMCQAAAAAMCQAAAAABCQAAAAAKCQAAAAAFCQAAAAAECQAAAAACCQAAAAABCQAAAAAJCQAAAAAKCQAAAAACCQAAAAACCQAAAAANCQAAAAAJCQAAAAAHCQAAAAABCQAAAAALCQAAAAAKCQAAAAAECQAAAAAFCQAAAAACCQAAAAABCQAAAAAKCQAAAAAJCQAAAAAACQAAAAABCQAAAAANCQAAAAAKCQAAAAAECQAAAAADCQAAAAAECQAAAAAFCQAAAAAMCQAAAAAMCQAAAAANCQAAAAALCQAAAAAICQAAAAABCQAAAAAMCQAAAAAKCQAAAAAHCQAAAAAFCQAAAAALCQAAAAAMCQAAAAAACQAAAAAACQAAAAAACQAAAAALCQAAAAAJCQAAAAAMCQAAAAALCQAAAAAFCQAAAAALCQAAAAAKCQAAAAAKCQAAAAAHCQAAAAAICQAAAAAJCQAAAAAMCQAAAAAACQAAAAANCQAAAAAMCQAAAAADCQAAAAAGCQAAAAANCQAAAAAKCQAAAAAHCQAAAAAECQAAAAAECQAAAAALCQAAAAAFCQAAAAAECQAAAAANCQAAAAAACQAAAAADCQAAAAAFCQAAAAACCQAAAAAKCQAAAAAFCQAAAAAECQAAAAAGCQAAAAAICQAAAAAECQAAAAAKCQAAAAAMCQAAAAAKCQAAAAADCQAAAAABCQAAAAALCQAAAAAKCQAAAAAFCQAAAAACCQAAAAAGCQAAAAAGCQAAAAAACQAAAAAECQAAAAAHCQAAAAAGCQAAAAANCQAAAAAHCQAAAAAFCQAAAAAICQAAAAALCQAAAAALCQAAAAAJCQAAAAACCQAAAAACCQAAAAAJCQAAAAAICQAAAAAGCQAAAAAICQAAAAACCQAAAAABCQAAAAAFCQAAAAAJCQAAAAAACQAAAAAICQAAAAAICQAAAAADCQAAAAAMCQAAAAAECQAAAAAHCQAAAAAMCQAAAAANCQAAAAALCQAAAAAACQAAAAAJCQAAAAAJCQAAAAANCQAAAAAJCQAAAAACCQAAAAAFCQAAAAAECQAAAAAGCQAAAAABCQAAAAANCQAAAAAACQAAAAANCQAAAAAICQAAAAABCQAAAAALCQAAAAABCQAAAAAKCQAAAAAGCQAAAAALCQAAAAADCQAAAAACCQAAAAABCQAAAAAICQAAAAAKCQAAAAANCQAAAAAKCQAAAAAHCQAAAAABCQAAAAACCQAAAAAKCQAAAAAKCQAAAAABCQAAAAALCQAAAAADCQAAAAAICQAAAAAE
+ tiles: CQAAAAAKCQAAAAAJCQAAAAAFCQAAAAAICQAAAAACCQAAAAAGCQAAAAANCQAAAAAGCQAAAAAMCQAAAAADCQAAAAACCQAAAAAECQAAAAABCQAAAAALCQAAAAAMCQAAAAABCQAAAAAJCQAAAAAMCQAAAAAHCQAAAAAECQAAAAAACQAAAAAJCQAAAAAICQAAAAAACQAAAAAGCQAAAAACCQAAAAAMCQAAAAAFCQAAAAAJCQAAAAALCQAAAAABCQAAAAAGCQAAAAAECQAAAAACCQAAAAANCQAAAAAICQAAAAAGCQAAAAAGCQAAAAANCQAAAAAHCQAAAAAACQAAAAAECQAAAAAACQAAAAAMCQAAAAAACQAAAAADCQAAAAAFCQAAAAAECQAAAAAGCQAAAAABCQAAAAACCQAAAAAICQAAAAAFCQAAAAAGCQAAAAAMCQAAAAAJCQAAAAAECQAAAAABCQAAAAALCQAAAAAACQAAAAAECQAAAAAECQAAAAACCQAAAAANCQAAAAADCQAAAAAGCQAAAAAACQAAAAADCQAAAAAFCQAAAAAKCQAAAAAMCQAAAAANCQAAAAAACQAAAAANCQAAAAAICQAAAAAACQAAAAAECQAAAAAGCQAAAAAICQAAAAABCQAAAAADCQAAAAABCQAAAAAFCQAAAAAGCQAAAAAKCQAAAAABCQAAAAAICQAAAAAJCQAAAAAMCQAAAAANCQAAAAAACQAAAAAACQAAAAAHCQAAAAAMCQAAAAADCQAAAAAECQAAAAAJCQAAAAADCQAAAAAECQAAAAAJCQAAAAAACQAAAAALCQAAAAAACQAAAAAMCQAAAAAKCQAAAAAICQAAAAADCQAAAAACCQAAAAAFCQAAAAAMCQAAAAABCQAAAAAECQAAAAAMCQAAAAAICQAAAAAJCQAAAAANCQAAAAAICQAAAAAKCQAAAAALCQAAAAAICQAAAAAHCQAAAAAACQAAAAAFCQAAAAAGCQAAAAANCQAAAAAJCQAAAAAJCQAAAAAMCQAAAAAKCQAAAAAECQAAAAAHCQAAAAAGCQAAAAAGCQAAAAAKCQAAAAANCQAAAAADCQAAAAAHCQAAAAABCQAAAAADCQAAAAAHCQAAAAAJCQAAAAACCQAAAAABCQAAAAAJCQAAAAABCQAAAAAECQAAAAAKCQAAAAAKCQAAAAAKCQAAAAAKCQAAAAAACQAAAAAECQAAAAAACQAAAAADCQAAAAANCQAAAAACCQAAAAAMCQAAAAAICQAAAAALCQAAAAANCQAAAAAHCQAAAAAICQAAAAACCQAAAAABCQAAAAAICQAAAAAJCQAAAAAGCQAAAAALCQAAAAAICQAAAAANCQAAAAAJCQAAAAALCQAAAAAMCQAAAAAICQAAAAAGCQAAAAAGCQAAAAAICQAAAAAMCQAAAAADCQAAAAAECQAAAAALCQAAAAAJCQAAAAAICQAAAAAFCQAAAAALCQAAAAACCQAAAAANCQAAAAAICQAAAAACCQAAAAAGCQAAAAAKCQAAAAAHCQAAAAABCQAAAAACCQAAAAAKCQAAAAAECQAAAAAHCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAGCQAAAAAGCQAAAAAGCQAAAAACCQAAAAAHCQAAAAAFCQAAAAAECQAAAAAMCQAAAAAHCQAAAAAFCQAAAAAFCQAAAAAHCQAAAAAMCQAAAAAMCQAAAAAICQAAAAAFCQAAAAAMCQAAAAADCQAAAAAGCQAAAAABCQAAAAANCQAAAAAHCQAAAAANCQAAAAAHCQAAAAAHCQAAAAACCQAAAAAHCQAAAAAKCQAAAAAECQAAAAACCQAAAAACCQAAAAABCQAAAAANCQAAAAADCQAAAAACCQAAAAAGCQAAAAAHCQAAAAAICQAAAAAICQAAAAANCQAAAAANCQAAAAALCQAAAAAKCQAAAAAHCQAAAAAMCQAAAAALCQAAAAACCQAAAAANCQAAAAALCQAAAAAJCQAAAAAHCQAAAAAKCQAAAAADCQAAAAAG
version: 6
0,2:
ind: 0,2
- tiles: CQAAAAACCQAAAAAHCQAAAAANCQAAAAAICQAAAAAHCQAAAAADCQAAAAAICQAAAAAHCQAAAAADCQAAAAAACQAAAAAJCQAAAAABCQAAAAAJCQAAAAAGCQAAAAAKCQAAAAAHCQAAAAACCQAAAAAACQAAAAAICQAAAAAFCQAAAAAFCQAAAAAJCQAAAAAGCQAAAAAMCQAAAAABCQAAAAAKCQAAAAALCQAAAAAECQAAAAAMCQAAAAAACQAAAAALCQAAAAAKCQAAAAAECQAAAAAICQAAAAABCQAAAAAFCQAAAAABCQAAAAAICQAAAAAHCQAAAAACCQAAAAAICQAAAAAICQAAAAAJCQAAAAALCQAAAAAACQAAAAAACQAAAAAKCQAAAAADCQAAAAAKCQAAAAAHCQAAAAAICQAAAAAFCQAAAAACCQAAAAAECQAAAAAHCQAAAAAJCQAAAAAJCQAAAAANCQAAAAALCQAAAAAKCQAAAAAECQAAAAANCQAAAAADCQAAAAAMCQAAAAAKCQAAAAAGCQAAAAAJCQAAAAAJCQAAAAAECQAAAAANCQAAAAAECQAAAAANCQAAAAAJCQAAAAABCQAAAAAICQAAAAANCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAAFCQAAAAALCQAAAAANCQAAAAABCQAAAAAGCQAAAAAJCQAAAAAACQAAAAALCQAAAAAJCQAAAAABCQAAAAAACQAAAAAICQAAAAAMCQAAAAAICQAAAAAHCQAAAAAKCQAAAAAMCQAAAAAACQAAAAAJCQAAAAAICQAAAAANCQAAAAAJCQAAAAADCQAAAAAGCQAAAAAHCQAAAAAKCQAAAAAFCQAAAAADCQAAAAAGCQAAAAAGCQAAAAANCQAAAAAHCQAAAAAFCQAAAAAICQAAAAALCQAAAAAJCQAAAAAKCQAAAAALCQAAAAALCQAAAAAMCQAAAAAECQAAAAACCQAAAAAJCQAAAAAHCQAAAAABCQAAAAAMCQAAAAAKCQAAAAABCQAAAAAACQAAAAAGCQAAAAABCQAAAAAICQAAAAACCQAAAAAMCQAAAAAICQAAAAALCQAAAAACCQAAAAAGCQAAAAAHCQAAAAAHCQAAAAACCQAAAAAGCQAAAAADCQAAAAAACQAAAAAKCQAAAAADCQAAAAACCQAAAAAECQAAAAALCQAAAAABCQAAAAAICQAAAAAKCQAAAAAMCQAAAAAFCQAAAAAICQAAAAALCQAAAAAFCQAAAAADCQAAAAALCQAAAAAECQAAAAADCQAAAAACCQAAAAAFCQAAAAAHCQAAAAAMCQAAAAALCQAAAAAJCQAAAAANCQAAAAAECQAAAAAMCQAAAAAECQAAAAAJCQAAAAANCQAAAAALCQAAAAADCQAAAAAECQAAAAAGCQAAAAAMCQAAAAACCQAAAAABCQAAAAAJCQAAAAAECQAAAAALCQAAAAABCQAAAAAMCQAAAAANCQAAAAAGCQAAAAANCQAAAAACCQAAAAANCQAAAAAGCQAAAAAMCQAAAAAMCQAAAAANCQAAAAALCQAAAAADCQAAAAAGCQAAAAAMCQAAAAANCQAAAAAICQAAAAAECQAAAAALCQAAAAAKCQAAAAABCQAAAAAJCQAAAAAECQAAAAAKCQAAAAANCQAAAAAECQAAAAACCQAAAAALCQAAAAALCQAAAAAFCQAAAAAACQAAAAAACQAAAAAICQAAAAAKCQAAAAADCQAAAAAHCQAAAAAKCQAAAAAECQAAAAALCQAAAAAECQAAAAAKCQAAAAADCQAAAAAKCQAAAAALCQAAAAANCQAAAAAACQAAAAAFCQAAAAABCQAAAAADCQAAAAANCQAAAAAGCQAAAAAMCQAAAAALCQAAAAAFCQAAAAANCQAAAAANCQAAAAAMCQAAAAACCQAAAAAFCQAAAAAECQAAAAAJCQAAAAAACQAAAAALCQAAAAAECQAAAAAICQAAAAAICQAAAAAACQAAAAAGCQAAAAAHCQAAAAALCQAAAAACCQAAAAAMCQAAAAAE
+ tiles: CQAAAAAGCQAAAAAGCQAAAAAJCQAAAAAMCQAAAAAMCQAAAAAKCQAAAAACCQAAAAAFCQAAAAACCQAAAAADCQAAAAAFCQAAAAADCQAAAAAMCQAAAAAICQAAAAAECQAAAAAFCQAAAAADCQAAAAAJCQAAAAANCQAAAAABCQAAAAAJCQAAAAAGCQAAAAAACQAAAAAFCQAAAAALCQAAAAAKCQAAAAAKCQAAAAADCQAAAAACCQAAAAABCQAAAAAECQAAAAABCQAAAAALCQAAAAAACQAAAAAICQAAAAAKCQAAAAAFCQAAAAAECQAAAAAMCQAAAAAICQAAAAAFCQAAAAACCQAAAAAKCQAAAAAKCQAAAAAICQAAAAAGCQAAAAAGCQAAAAAHCQAAAAACCQAAAAAECQAAAAAICQAAAAADCQAAAAAJCQAAAAAGCQAAAAADCQAAAAACCQAAAAABCQAAAAANCQAAAAABCQAAAAAACQAAAAAICQAAAAAACQAAAAAICQAAAAAJCQAAAAALCQAAAAALCQAAAAAMCQAAAAAFCQAAAAADCQAAAAANCQAAAAANCQAAAAANCQAAAAAKCQAAAAAECQAAAAALCQAAAAADCQAAAAAHCQAAAAAECQAAAAAECQAAAAAHCQAAAAADCQAAAAAECQAAAAAECQAAAAAICQAAAAADCQAAAAABCQAAAAAICQAAAAACCQAAAAAACQAAAAAKCQAAAAACCQAAAAAGCQAAAAAECQAAAAANCQAAAAALCQAAAAAFCQAAAAAICQAAAAAACQAAAAAFCQAAAAAACQAAAAACCQAAAAAFCQAAAAANCQAAAAALCQAAAAAGCQAAAAANCQAAAAAJCQAAAAAICQAAAAAKCQAAAAADCQAAAAANCQAAAAAACQAAAAAKCQAAAAAICQAAAAANCQAAAAAECQAAAAAFCQAAAAAHCQAAAAADCQAAAAADCQAAAAABCQAAAAAJCQAAAAABCQAAAAALCQAAAAAICQAAAAAFCQAAAAANCQAAAAAHCQAAAAANCQAAAAABCQAAAAALCQAAAAABCQAAAAALCQAAAAALCQAAAAAGCQAAAAAICQAAAAAHCQAAAAADCQAAAAAKCQAAAAALCQAAAAAJCQAAAAAGCQAAAAAJCQAAAAAFCQAAAAAACQAAAAAICQAAAAAFCQAAAAABCQAAAAAKCQAAAAAFCQAAAAAMCQAAAAAECQAAAAAHCQAAAAAKCQAAAAANCQAAAAADCQAAAAAMCQAAAAALCQAAAAAGCQAAAAAKCQAAAAAICQAAAAAECQAAAAAFCQAAAAAICQAAAAAHCQAAAAAFCQAAAAAKCQAAAAAGCQAAAAAFCQAAAAAFCQAAAAAECQAAAAAFCQAAAAADCQAAAAAHCQAAAAAICQAAAAAKCQAAAAAJCQAAAAACCQAAAAANCQAAAAAECQAAAAAKCQAAAAAHCQAAAAAMCQAAAAAKCQAAAAAMCQAAAAAJCQAAAAAECQAAAAADCQAAAAACCQAAAAAGCQAAAAAGCQAAAAAHCQAAAAAACQAAAAAGCQAAAAAKCQAAAAADCQAAAAADCQAAAAAJCQAAAAAFCQAAAAALCQAAAAAGCQAAAAALCQAAAAAHCQAAAAAICQAAAAAGCQAAAAAFCQAAAAALCQAAAAABCQAAAAAICQAAAAAICQAAAAAICQAAAAACCQAAAAADCQAAAAAACQAAAAANCQAAAAAECQAAAAAJCQAAAAALCQAAAAAKCQAAAAAFCQAAAAAGCQAAAAANCQAAAAADCQAAAAAKCQAAAAACCQAAAAAKCQAAAAAJCQAAAAAICQAAAAAHCQAAAAAKCQAAAAAECQAAAAAKCQAAAAAKCQAAAAAKCQAAAAABCQAAAAAJCQAAAAAACQAAAAAGCQAAAAAHCQAAAAAMCQAAAAAKCQAAAAAJCQAAAAANCQAAAAANCQAAAAAGCQAAAAAGCQAAAAADCQAAAAAMCQAAAAAACQAAAAAICQAAAAALCQAAAAAFCQAAAAAHCQAAAAAGCQAAAAABCQAAAAAK
version: 6
-1,1:
ind: -1,1
- tiles: AwAAAAABAwAAAAABBAAAAAACBAAAAAAGFwAAAAAFBAAAAAAEBQAAAAAABQAAAAACBgAAAAACBgAAAAADFwAAAAAAFwAAAAABFwAAAAAABAAAAAAHBQAAAAACBgAAAAAADgAAAAABDgAAAAAEDgAAAAACBAAAAAAMFwAAAAACBAAAAAAEBQAAAAAABQAAAAAABgAAAAACBAAAAAAAFwAAAAADFwAAAAAEFwAAAAAFBAAAAAAEBQAAAAADBQAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAACFwAAAAADBAAAAAAGBAAAAAABBAAAAAAHBAAAAAABBAAAAAAJGAAAAAABFwAAAAADFwAAAAACBAAAAAAEBAAAAAADBAAAAAACDgAAAAAADgAAAAAFDgAAAAAEBAAAAAAKFwAAAAACFwAAAAABFwAAAAAFFwAAAAADFwAAAAADGAAAAAADGAAAAAAEFgAAAAAEFgAAAAABFgAAAAADFwAAAAABFwAAAAAADgAAAAADDgAAAAADDgAAAAACBAAAAAAHAgAAAAAMAgAAAAAEGAAAAAAFFgAAAAABFgAAAAADAgAAAAALFgAAAAAEFgAAAAADAgAAAAAIFgAAAAAFFwAAAAAAFwAAAAABBAAAAAAEDgAAAAADBAAAAAAIBAAAAAADAgAAAAAGAgAAAAADAgAAAAAEGAAAAAAFAgAAAAAGAgAAAAALAgAAAAAKFgAAAAACGAAAAAAFFwAAAAAEFwAAAAAFFwAAAAAEDgAAAAAFDgAAAAAFDgAAAAABBAAAAAABAgAAAAACAgAAAAAEAgAAAAAOAgAAAAAIAgAAAAAMAgAAAAAGAgAAAAAJAgAAAAAAFgAAAAADFwAAAAABFwAAAAAEFgAAAAAFDgAAAAABDgAAAAAADgAAAAAFBAAAAAAHAgAAAAAEAgAAAAAGAgAAAAAMAgAAAAAEAgAAAAAJAgAAAAAAFgAAAAABAgAAAAAFCQAAAAALFwAAAAACFwAAAAAAFgAAAAADDgAAAAAEDgAAAAAADgAAAAADBAAAAAAEAgAAAAAIAgAAAAAPAgAAAAAAAgAAAAANAgAAAAAIAgAAAAAHAgAAAAAOAgAAAAABCQAAAAAACQAAAAAEFwAAAAAAFgAAAAADBAAAAAAEBAAAAAAGBAAAAAAKBAAAAAAKAgAAAAADAgAAAAAEAgAAAAAJAgAAAAAHAgAAAAABAgAAAAACAgAAAAAGAgAAAAAHCQAAAAABCQAAAAAGCQAAAAACCQAAAAAGCQAAAAAFCQAAAAADCQAAAAAACQAAAAADAgAAAAAAAgAAAAAGAgAAAAALAgAAAAANAgAAAAANAgAAAAABAgAAAAAPAgAAAAADCQAAAAAMCQAAAAAECQAAAAAICQAAAAAFCQAAAAAFCQAAAAAKCQAAAAAECQAAAAAJCQAAAAAMCQAAAAAICQAAAAAHCQAAAAAMCQAAAAAGCQAAAAAJCQAAAAADCQAAAAALCQAAAAADCQAAAAACCQAAAAAKCQAAAAADCQAAAAADCQAAAAAHCQAAAAAFCQAAAAAECQAAAAAKCQAAAAALCQAAAAABCQAAAAAMCQAAAAAMCQAAAAAGCQAAAAAGCQAAAAALCQAAAAACCQAAAAADCQAAAAAMCQAAAAAKCQAAAAAKCQAAAAAGCQAAAAALCQAAAAANCQAAAAAFCQAAAAABCQAAAAAACQAAAAAMCQAAAAAICQAAAAANCQAAAAAFCQAAAAAGCQAAAAAACQAAAAAGCQAAAAAGCQAAAAAFCQAAAAACCQAAAAAICQAAAAAECQAAAAAFCQAAAAALCQAAAAABCQAAAAAFCQAAAAAACQAAAAACCQAAAAAGCQAAAAAICQAAAAABCQAAAAAGCQAAAAABCQAAAAAECQAAAAADCQAAAAAJCQAAAAACCQAAAAACCQAAAAAGCQAAAAAHCQAAAAAKCQAAAAADCQAAAAAECQAAAAAKCQAAAAAHCQAAAAANCQAAAAABCQAAAAAFCQAAAAAJCQAAAAAMCQAAAAAB
+ tiles: AwAAAAAFAwAAAAADBAAAAAAHBAAAAAAKGAAAAAADBAAAAAAIBQAAAAACBQAAAAAABgAAAAABBgAAAAADHgAAAAABHgAAAAABHgAAAAAABAAAAAANBQAAAAACBgAAAAABDgAAAAACDgAAAAAADgAAAAABBAAAAAAFHAAAAAADBAAAAAAABQAAAAABBQAAAAABBgAAAAABBAAAAAANHgAAAAACHgAAAAAFHgAAAAADBAAAAAAFBQAAAAAABQAAAAAADgAAAAADDgAAAAADDgAAAAAADgAAAAAAHAAAAAAFBAAAAAAJBAAAAAAIBAAAAAAJBAAAAAAFBAAAAAACHQAAAAADHgAAAAAEHgAAAAAABAAAAAAMBAAAAAALBAAAAAANDgAAAAAADgAAAAAEDgAAAAACBAAAAAACHAAAAAACHgAAAAACHgAAAAAAHgAAAAAFHgAAAAABHQAAAAAEGAAAAAADHAAAAAAEHAAAAAAFHAAAAAAFHgAAAAADHgAAAAACDgAAAAAFDgAAAAABDgAAAAAABAAAAAAEAgAAAAACAgAAAAAKGAAAAAADHAAAAAAFGAAAAAAEGAAAAAACAgAAAAANAgAAAAAKAgAAAAAMHAAAAAADHgAAAAABHgAAAAAFBAAAAAACDgAAAAAABAAAAAACBAAAAAABAgAAAAALAgAAAAADAgAAAAAFGAAAAAAEAgAAAAAMAgAAAAAAAgAAAAAFHAAAAAABGAAAAAAFHgAAAAACHgAAAAADHgAAAAAFDgAAAAACDgAAAAAADgAAAAABBAAAAAACAgAAAAADAgAAAAAFAgAAAAAJAgAAAAAOAgAAAAALAgAAAAABAgAAAAADAgAAAAAHHAAAAAABHgAAAAAEHgAAAAABHAAAAAADDgAAAAAFDgAAAAAFDgAAAAADBAAAAAAIAgAAAAAEAgAAAAAAAgAAAAACAgAAAAABAgAAAAABAgAAAAAIGAAAAAACAgAAAAACCQAAAAADHgAAAAADHgAAAAAEHAAAAAAADgAAAAADDgAAAAAEDgAAAAADBAAAAAAAAgAAAAAGAgAAAAABAgAAAAAEAgAAAAAHAgAAAAABAgAAAAABAgAAAAAGAgAAAAAGCQAAAAACCQAAAAANHgAAAAACHAAAAAAABAAAAAALBAAAAAAABAAAAAAMBAAAAAAHAgAAAAAHAgAAAAAIAgAAAAAIAgAAAAAAAgAAAAAKAgAAAAAFAgAAAAACAgAAAAAJCQAAAAAACQAAAAAECQAAAAABCQAAAAAECQAAAAAFCQAAAAAGCQAAAAAICQAAAAAMAgAAAAAMAgAAAAAPAgAAAAADAgAAAAAKAgAAAAAGAgAAAAAAAgAAAAAJAgAAAAADCQAAAAAICQAAAAAKCQAAAAAJCQAAAAACCQAAAAAJCQAAAAADCQAAAAALCQAAAAAFCQAAAAAFCQAAAAACCQAAAAAKCQAAAAALCQAAAAAACQAAAAAACQAAAAALCQAAAAADCQAAAAAICQAAAAAKCQAAAAABCQAAAAAGCQAAAAAECQAAAAAGCQAAAAANCQAAAAAMCQAAAAAECQAAAAADCQAAAAAACQAAAAALCQAAAAADCQAAAAANCQAAAAAHCQAAAAAKCQAAAAALCQAAAAANCQAAAAACCQAAAAAACQAAAAAICQAAAAAJCQAAAAAACQAAAAABCQAAAAAKCQAAAAACCQAAAAAHCQAAAAAKCQAAAAADCQAAAAAHCQAAAAAMCQAAAAAFCQAAAAAKCQAAAAABCQAAAAADCQAAAAABCQAAAAAECQAAAAAKCQAAAAAGCQAAAAAGCQAAAAAKCQAAAAALCQAAAAAHCQAAAAALCQAAAAANCQAAAAAKCQAAAAADCQAAAAAACQAAAAAFCQAAAAAGCQAAAAAMCQAAAAAJCQAAAAAECQAAAAACCQAAAAADCQAAAAAHCQAAAAAECQAAAAAECQAAAAAGCQAAAAAACQAAAAAKCQAAAAAHCQAAAAALCQAAAAADCQAAAAAECQAAAAANCQAAAAAKCQAAAAAE
version: 6
-1,2:
ind: -1,2
- tiles: CQAAAAADCQAAAAAICQAAAAADCQAAAAACCQAAAAAECQAAAAAMCQAAAAACCQAAAAAICQAAAAAMCQAAAAALCQAAAAAECQAAAAAACQAAAAADCQAAAAAACQAAAAAMCQAAAAAHCQAAAAAHCQAAAAAACQAAAAABCQAAAAALCQAAAAAJCQAAAAAKCQAAAAABCQAAAAAKCQAAAAAGCQAAAAANCQAAAAAKCQAAAAADCQAAAAAECQAAAAAECQAAAAAACQAAAAAJCQAAAAAJCQAAAAADCQAAAAANCQAAAAALCQAAAAANCQAAAAALCQAAAAADCQAAAAANCQAAAAAACQAAAAALCQAAAAAMCQAAAAACCQAAAAAECQAAAAADCQAAAAABCQAAAAAACQAAAAAECQAAAAAFCQAAAAAFCQAAAAAHCQAAAAAKCQAAAAADCQAAAAADCQAAAAAACQAAAAAJCQAAAAAHCQAAAAADCQAAAAADCQAAAAAFCQAAAAADCQAAAAANCQAAAAABCQAAAAALCQAAAAAICQAAAAAKCQAAAAAACQAAAAAECQAAAAAGCQAAAAACCQAAAAAMCQAAAAAKCQAAAAANCQAAAAAACQAAAAAHCQAAAAAICQAAAAALCQAAAAAICQAAAAAKCQAAAAAHCQAAAAALCQAAAAAECQAAAAAKCQAAAAAICQAAAAAECQAAAAAMCQAAAAALCQAAAAAACQAAAAAICQAAAAACCQAAAAAFCQAAAAADCQAAAAAJCQAAAAAJCQAAAAAACQAAAAABCQAAAAABCQAAAAANCQAAAAAICQAAAAALCQAAAAAHCQAAAAAECQAAAAAACQAAAAADCQAAAAADCQAAAAAMCQAAAAACCQAAAAAHCQAAAAADCQAAAAAACQAAAAAGCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAAECQAAAAADCQAAAAACCQAAAAANCQAAAAALCQAAAAAGCQAAAAAACQAAAAACCQAAAAAHCQAAAAADCQAAAAALCQAAAAALCQAAAAANCQAAAAABCQAAAAAGCQAAAAACCQAAAAACCQAAAAAJCQAAAAADCQAAAAAJCQAAAAAECQAAAAAKCQAAAAAFCQAAAAAACQAAAAAKCQAAAAAHCQAAAAALCQAAAAAECQAAAAANCQAAAAAJCQAAAAAGCQAAAAAMCQAAAAAFCQAAAAACCQAAAAAMCQAAAAAICQAAAAAECQAAAAAECQAAAAAFCQAAAAABCQAAAAAGCQAAAAAFCQAAAAAJCQAAAAAKCQAAAAADCQAAAAAGCQAAAAAACQAAAAACCQAAAAALCQAAAAAJCQAAAAAACQAAAAAECQAAAAAICQAAAAADCQAAAAAJCQAAAAALCQAAAAAHCQAAAAAACQAAAAAICQAAAAAGCQAAAAALCQAAAAAACQAAAAAMCQAAAAAECQAAAAALCQAAAAABCQAAAAAICQAAAAAMCQAAAAADCQAAAAACCQAAAAAACQAAAAAHCQAAAAAGCQAAAAAMCQAAAAAKCQAAAAAECQAAAAAFCQAAAAABCQAAAAANCQAAAAAACQAAAAALCQAAAAAACQAAAAAKCQAAAAADCQAAAAAICQAAAAAMCQAAAAAHCQAAAAAMCQAAAAAFCQAAAAAFCQAAAAAMCQAAAAALCQAAAAAJCQAAAAAGCQAAAAALCQAAAAADCQAAAAACCQAAAAAJCQAAAAALCQAAAAAJCQAAAAACCQAAAAALCQAAAAANCQAAAAAECQAAAAAACQAAAAAMCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAALCQAAAAANCQAAAAAICQAAAAAECQAAAAAMCQAAAAAJCQAAAAABCQAAAAADCQAAAAANCQAAAAAMCQAAAAAJCQAAAAAJCQAAAAAGCQAAAAAHCQAAAAACCQAAAAAFCQAAAAAHCQAAAAAGCQAAAAAICQAAAAACCQAAAAAACQAAAAACCQAAAAAKCQAAAAAHCQAAAAAJCQAAAAALCQAAAAANCQAAAAAICQAAAAAH
+ tiles: CQAAAAANCQAAAAAACQAAAAABCQAAAAAJCQAAAAABCQAAAAAACQAAAAANCQAAAAADCQAAAAAHCQAAAAAFCQAAAAAFCQAAAAAFCQAAAAAKCQAAAAAACQAAAAADCQAAAAAICQAAAAAHCQAAAAAKCQAAAAAICQAAAAACCQAAAAANCQAAAAAJCQAAAAAMCQAAAAABCQAAAAAICQAAAAABCQAAAAAJCQAAAAANCQAAAAAGCQAAAAABCQAAAAALCQAAAAACCQAAAAAACQAAAAAKCQAAAAAGCQAAAAACCQAAAAAMCQAAAAAKCQAAAAAECQAAAAAGCQAAAAALCQAAAAAHCQAAAAAMCQAAAAANCQAAAAAJCQAAAAAHCQAAAAAFCQAAAAAKCQAAAAAFCQAAAAAFCQAAAAABCQAAAAAJCQAAAAAJCQAAAAACCQAAAAAHCQAAAAAJCQAAAAAJCQAAAAAGCQAAAAANCQAAAAAICQAAAAAICQAAAAABCQAAAAAFCQAAAAALCQAAAAANCQAAAAABCQAAAAAHCQAAAAADCQAAAAAMCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAAICQAAAAAJCQAAAAAACQAAAAAICQAAAAALCQAAAAAACQAAAAAACQAAAAAGCQAAAAAECQAAAAANCQAAAAAGCQAAAAACCQAAAAALCQAAAAAGCQAAAAABCQAAAAAMCQAAAAAJCQAAAAALCQAAAAAFCQAAAAABCQAAAAAMCQAAAAAMCQAAAAAJCQAAAAAGCQAAAAACCQAAAAAGCQAAAAALCQAAAAACCQAAAAAGCQAAAAANCQAAAAABCQAAAAACCQAAAAANCQAAAAAICQAAAAAMCQAAAAAICQAAAAAHCQAAAAABCQAAAAAMCQAAAAACCQAAAAAECQAAAAAKCQAAAAAFCQAAAAAMCQAAAAAACQAAAAANCQAAAAAACQAAAAAFCQAAAAAKCQAAAAAFCQAAAAAGCQAAAAAHCQAAAAAKCQAAAAAMCQAAAAACCQAAAAAACQAAAAAGCQAAAAAGCQAAAAAICQAAAAAKCQAAAAAJCQAAAAAECQAAAAAECQAAAAAFCQAAAAALCQAAAAAFCQAAAAADCQAAAAAGCQAAAAAHCQAAAAANCQAAAAAJCQAAAAAJCQAAAAANCQAAAAAFCQAAAAAACQAAAAANCQAAAAAKCQAAAAABCQAAAAAECQAAAAAKCQAAAAALCQAAAAANCQAAAAAICQAAAAAHCQAAAAAICQAAAAALCQAAAAAKCQAAAAADCQAAAAAKCQAAAAALCQAAAAACCQAAAAACCQAAAAAACQAAAAAFCQAAAAAJCQAAAAANCQAAAAADCQAAAAADCQAAAAABCQAAAAAHCQAAAAAICQAAAAAICQAAAAAKCQAAAAAKCQAAAAADCQAAAAADCQAAAAADCQAAAAAICQAAAAANCQAAAAABCQAAAAALCQAAAAAKCQAAAAAACQAAAAANCQAAAAAECQAAAAABCQAAAAAECQAAAAAECQAAAAAACQAAAAAHCQAAAAAMCQAAAAAFCQAAAAADCQAAAAALCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAAGCQAAAAABCQAAAAALCQAAAAAECQAAAAAJCQAAAAAKCQAAAAAHCQAAAAAKCQAAAAABCQAAAAACCQAAAAALCQAAAAAACQAAAAAACQAAAAAGCQAAAAACCQAAAAADCQAAAAACCQAAAAAICQAAAAAFCQAAAAAECQAAAAAMCQAAAAAICQAAAAANCQAAAAAECQAAAAADCQAAAAAMCQAAAAAICQAAAAAJCQAAAAAFCQAAAAAECQAAAAAFCQAAAAANCQAAAAAECQAAAAADCQAAAAAECQAAAAAJCQAAAAADCQAAAAAGCQAAAAALCQAAAAAGCQAAAAAKCQAAAAALCQAAAAAHCQAAAAAECQAAAAALCQAAAAAMCQAAAAANCQAAAAAHCQAAAAAECQAAAAAGCQAAAAAICQAAAAACCQAAAAAJCQAAAAAECQAAAAAL
version: 6
-2,2:
ind: -2,2
- tiles: CQAAAAAFCQAAAAABCQAAAAAICQAAAAAKCQAAAAAMCQAAAAAHCQAAAAALCQAAAAAECQAAAAAKCQAAAAANCQAAAAAKCQAAAAAMCQAAAAAJCQAAAAANCQAAAAAICQAAAAACCQAAAAADCQAAAAAKCQAAAAAECQAAAAAICQAAAAAHCQAAAAAACQAAAAACCQAAAAANCQAAAAAGCQAAAAALCQAAAAAECQAAAAAHCQAAAAAICQAAAAAJCQAAAAANCQAAAAALCQAAAAABCQAAAAAFCQAAAAAKCQAAAAAKCQAAAAADCQAAAAAHCQAAAAAMCQAAAAAECQAAAAAFCQAAAAADCQAAAAADCQAAAAAHCQAAAAACCQAAAAAJCQAAAAAFCQAAAAAGCQAAAAAGCQAAAAAFCQAAAAAFCQAAAAAGCQAAAAAGCQAAAAANCQAAAAAGCQAAAAANCQAAAAABCQAAAAAHCQAAAAAJCQAAAAAACQAAAAAJCQAAAAADCQAAAAALCQAAAAAJCQAAAAAGCQAAAAAHCQAAAAANCQAAAAAACQAAAAAHCQAAAAAMCQAAAAAICQAAAAAECQAAAAABCQAAAAAICQAAAAABCQAAAAAACQAAAAAGCQAAAAAJCQAAAAAICQAAAAALCQAAAAACCQAAAAABCQAAAAAICQAAAAAKCQAAAAALCQAAAAAHCQAAAAAJCQAAAAABCQAAAAANCQAAAAALCQAAAAABCQAAAAAHCQAAAAAKCQAAAAALCQAAAAANCQAAAAAICQAAAAAGCQAAAAAACQAAAAAKCQAAAAAKCQAAAAAICQAAAAAECQAAAAAJCQAAAAAICQAAAAANCQAAAAACCQAAAAAACQAAAAAECQAAAAADCQAAAAADCQAAAAAACQAAAAAKCQAAAAAHCQAAAAAICQAAAAAGCQAAAAAFCQAAAAADCQAAAAANCQAAAAAECQAAAAANCQAAAAADCQAAAAACCQAAAAAMCQAAAAABCQAAAAADCQAAAAALCQAAAAAECQAAAAAACQAAAAANCQAAAAAECQAAAAAFCQAAAAACCQAAAAAFCQAAAAANCQAAAAAGCQAAAAAACQAAAAAACQAAAAAJCQAAAAAGCQAAAAAICQAAAAADCQAAAAAICQAAAAAECQAAAAADCQAAAAAMCQAAAAANCQAAAAADCQAAAAAJCQAAAAAKCQAAAAAACQAAAAADCQAAAAAECQAAAAACCQAAAAACCQAAAAABCQAAAAAFCQAAAAALCQAAAAAKCQAAAAAFCQAAAAAGCQAAAAABCQAAAAAICQAAAAADCQAAAAANCQAAAAADCQAAAAAJCQAAAAAGCQAAAAADCQAAAAAGCQAAAAACCQAAAAAHCQAAAAABCQAAAAAECQAAAAAHCQAAAAAJCQAAAAALCQAAAAADCQAAAAAKCQAAAAAICQAAAAAGCQAAAAABCQAAAAABCQAAAAABCQAAAAALCQAAAAAJCQAAAAANCQAAAAADCQAAAAAACQAAAAACCQAAAAAGCQAAAAALCQAAAAAFCQAAAAACCQAAAAAECQAAAAAACQAAAAANCQAAAAADCQAAAAAECQAAAAACCQAAAAAACQAAAAAJCQAAAAAMCQAAAAADCQAAAAANCQAAAAABCQAAAAAFCQAAAAAJCQAAAAACCQAAAAAHCQAAAAAFCQAAAAALCQAAAAAHCQAAAAANCQAAAAALCQAAAAABCQAAAAANCQAAAAANCQAAAAANCQAAAAAACQAAAAABCQAAAAAHCQAAAAAJCQAAAAAJCQAAAAABCQAAAAABCQAAAAACCQAAAAAICQAAAAACCQAAAAAICQAAAAAACQAAAAABCQAAAAAMCQAAAAABCQAAAAABCQAAAAABCQAAAAAFCQAAAAAJCQAAAAAJCQAAAAANCQAAAAAJCQAAAAAFCQAAAAAKCQAAAAAFCQAAAAALCQAAAAALCQAAAAAGCQAAAAALCQAAAAAMCQAAAAAACQAAAAAHCQAAAAAKCQAAAAANCQAAAAACCQAAAAAICQAAAAABCQAAAAAI
+ tiles: CQAAAAALCQAAAAAFCQAAAAAMCQAAAAAMCQAAAAAICQAAAAALCQAAAAALCQAAAAAECQAAAAALCQAAAAAICQAAAAACCQAAAAANCQAAAAAACQAAAAAJCQAAAAAACQAAAAAECQAAAAAFCQAAAAAECQAAAAAMCQAAAAAGCQAAAAAICQAAAAADCQAAAAALCQAAAAAECQAAAAAHCQAAAAAICQAAAAAKCQAAAAAHCQAAAAAICQAAAAAJCQAAAAACCQAAAAAJCQAAAAAECQAAAAAJCQAAAAACCQAAAAAICQAAAAAACQAAAAAICQAAAAADCQAAAAAECQAAAAADCQAAAAAKCQAAAAAKCQAAAAAJCQAAAAAMCQAAAAABCQAAAAAGCQAAAAAACQAAAAAHCQAAAAAFCQAAAAABCQAAAAAFCQAAAAADCQAAAAAECQAAAAAJCQAAAAAJCQAAAAAHCQAAAAAACQAAAAAKCQAAAAACCQAAAAAJCQAAAAAICQAAAAAJCQAAAAAKCQAAAAAACQAAAAAHCQAAAAAFCQAAAAAICQAAAAALCQAAAAAHCQAAAAAMCQAAAAANCQAAAAACCQAAAAALCQAAAAAJCQAAAAAJCQAAAAAICQAAAAADCQAAAAAECQAAAAAJCQAAAAAECQAAAAAICQAAAAAKCQAAAAADCQAAAAAACQAAAAAHCQAAAAAECQAAAAAECQAAAAAICQAAAAABCQAAAAABCQAAAAAFCQAAAAAKCQAAAAAECQAAAAAHCQAAAAACCQAAAAAHCQAAAAAICQAAAAAMCQAAAAAMCQAAAAAFCQAAAAALCQAAAAAJCQAAAAAICQAAAAAACQAAAAALCQAAAAALCQAAAAANCQAAAAAJCQAAAAAGCQAAAAACCQAAAAAKCQAAAAALCQAAAAABCQAAAAAMCQAAAAAECQAAAAACCQAAAAACCQAAAAANCQAAAAACCQAAAAAECQAAAAALCQAAAAANCQAAAAAJCQAAAAALCQAAAAAACQAAAAADCQAAAAAICQAAAAAKCQAAAAANCQAAAAANCQAAAAAHCQAAAAABCQAAAAAHCQAAAAAGCQAAAAAFCQAAAAAICQAAAAAACQAAAAAJCQAAAAAGCQAAAAAICQAAAAAACQAAAAAFCQAAAAANCQAAAAADCQAAAAABCQAAAAANCQAAAAAECQAAAAALCQAAAAAACQAAAAAHCQAAAAABCQAAAAABCQAAAAAKCQAAAAADCQAAAAAGCQAAAAAGCQAAAAABCQAAAAAGCQAAAAAGCQAAAAAACQAAAAACCQAAAAADCQAAAAAFCQAAAAANCQAAAAABCQAAAAAMCQAAAAABCQAAAAAMCQAAAAAKCQAAAAALCQAAAAAKCQAAAAAICQAAAAADCQAAAAALCQAAAAAMCQAAAAAICQAAAAAJCQAAAAALCQAAAAACCQAAAAAHCQAAAAAGCQAAAAALCQAAAAALCQAAAAAICQAAAAAFCQAAAAAHCQAAAAAECQAAAAAECQAAAAALCQAAAAAFCQAAAAAGCQAAAAAMCQAAAAAHCQAAAAAKCQAAAAAECQAAAAAICQAAAAAHCQAAAAANCQAAAAACCQAAAAAMCQAAAAALCQAAAAAACQAAAAAHCQAAAAANCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAJCQAAAAALCQAAAAAGCQAAAAAMCQAAAAAACQAAAAAICQAAAAAMCQAAAAAICQAAAAANCQAAAAAMCQAAAAANCQAAAAAACQAAAAALCQAAAAAJCQAAAAAHCQAAAAAACQAAAAAICQAAAAAICQAAAAANCQAAAAAECQAAAAAICQAAAAAECQAAAAADCQAAAAACCQAAAAAHCQAAAAAJCQAAAAALCQAAAAAFCQAAAAAKCQAAAAAACQAAAAANCQAAAAADCQAAAAAICQAAAAADCQAAAAAECQAAAAAGCQAAAAANCQAAAAABCQAAAAAMCQAAAAADCQAAAAAHCQAAAAAACQAAAAAJCQAAAAAJCQAAAAAGCQAAAAAL
version: 6
-2,1:
ind: -2,1
- tiles: AQAAAAAAAQAAAAADBAAAAAANBAAAAAAGBAAAAAAHDgAAAAAEDgAAAAAEBAAAAAAJBAAAAAAFBAAAAAADAwAAAAACBAAAAAACBAAAAAAAAwAAAAABAwAAAAAEBAAAAAAEAQAAAAABAQAAAAADBAAAAAADDgAAAAAFDgAAAAAFDgAAAAADDgAAAAACDgAAAAAFBAAAAAAADgAAAAACDgAAAAABDgAAAAADDgAAAAAADgAAAAABDgAAAAADDgAAAAABAQAAAAADAQAAAAACBAAAAAACDgAAAAABDgAAAAAEDgAAAAAADgAAAAAFDgAAAAABDgAAAAABDgAAAAAADgAAAAAEDgAAAAAADgAAAAAEDgAAAAADDgAAAAAADgAAAAACAQAAAAACAQAAAAACBAAAAAAFDgAAAAACDgAAAAADDgAAAAAEDgAAAAACDgAAAAADDgAAAAAADgAAAAAFDgAAAAAEDgAAAAADDgAAAAAFDgAAAAAEDgAAAAAFDgAAAAADAQAAAAAAAQAAAAAABAAAAAAGDgAAAAACDgAAAAADDgAAAAAFDgAAAAAFDgAAAAABBAAAAAAKDgAAAAAEDgAAAAAADgAAAAAADgAAAAABDgAAAAAADgAAAAABDgAAAAAEAQAAAAABAQAAAAAABAAAAAAGDgAAAAADDgAAAAACDgAAAAADDgAAAAAABAAAAAAKBAAAAAAEBAAAAAADBAAAAAAIBAAAAAAFBAAAAAACDgAAAAABBAAAAAAJBAAAAAAEAQAAAAAAAQAAAAABBAAAAAADDgAAAAADDgAAAAADDgAAAAACDgAAAAADBAAAAAAFDgAAAAABDgAAAAAFDgAAAAAEDgAAAAADDgAAAAABDgAAAAACDgAAAAADDgAAAAABCQAAAAALCQAAAAAGBAAAAAAFBAAAAAALBAAAAAAFBAAAAAAGBAAAAAAFBAAAAAAMDgAAAAADDgAAAAADDgAAAAAFDgAAAAAFDgAAAAADDgAAAAACDgAAAAABDgAAAAAACQAAAAAHCQAAAAADCQAAAAAHCQAAAAAECQAAAAAFCQAAAAADCQAAAAAFBAAAAAAHDgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAABDgAAAAAFDgAAAAAADgAAAAAECQAAAAAACQAAAAAGCQAAAAAKCQAAAAAICQAAAAAICQAAAAAECQAAAAABBAAAAAAABAAAAAAIBAAAAAANBAAAAAADBAAAAAABAwAAAAAEAwAAAAADAwAAAAAABAAAAAACCQAAAAANCQAAAAAMCQAAAAAGCQAAAAALCQAAAAAGCQAAAAACCQAAAAAICQAAAAALCQAAAAAACQAAAAAMCQAAAAAABAAAAAABAwAAAAACAwAAAAADAwAAAAAHBAAAAAANCQAAAAANCQAAAAAGCQAAAAAICQAAAAAGCQAAAAAECQAAAAAFCQAAAAABCQAAAAACCQAAAAADCQAAAAAECQAAAAAFBAAAAAACBAAAAAAHEQAAAAAABAAAAAAHBAAAAAANCQAAAAAJCQAAAAALCQAAAAAFCQAAAAAECQAAAAAKCQAAAAACCQAAAAAKCQAAAAAMCQAAAAALCQAAAAAECQAAAAALBAAAAAACEAAAAAAAEAAAAAAAEAAAAAAABAAAAAAMCQAAAAAFCQAAAAACCQAAAAABCQAAAAAJCQAAAAAGCQAAAAAGCQAAAAAHCQAAAAAICQAAAAADCQAAAAAKCQAAAAANBAAAAAAJEAAAAAAAEQAAAAAAEAAAAAAABAAAAAAACQAAAAAMCQAAAAAICQAAAAACCQAAAAAHCQAAAAADCQAAAAAACQAAAAAICQAAAAAHCQAAAAAFCQAAAAANCQAAAAAKBAAAAAAHEAAAAAAAEAAAAAAAEAAAAAAABAAAAAAICQAAAAAJCQAAAAALCQAAAAAHCQAAAAACCQAAAAAMCQAAAAACCQAAAAABCQAAAAAACQAAAAAJCQAAAAAFCQAAAAADBAAAAAALBAAAAAALBAAAAAACBAAAAAAJBAAAAAAE
+ tiles: AQAAAAAAAQAAAAAABAAAAAAJBAAAAAAMBAAAAAAGDgAAAAABDgAAAAADBAAAAAANBAAAAAAFBAAAAAALAwAAAAAFBAAAAAAMBAAAAAAJAwAAAAAEAwAAAAAEBAAAAAAGAQAAAAACAQAAAAABBAAAAAAKDgAAAAADDgAAAAAADgAAAAAEDgAAAAACDgAAAAACBAAAAAAIDgAAAAADDgAAAAAEDgAAAAAADgAAAAAFDgAAAAAFDgAAAAACDgAAAAABAQAAAAABAQAAAAAEBAAAAAALDgAAAAABDgAAAAABDgAAAAACDgAAAAAFDgAAAAAADgAAAAACDgAAAAAFDgAAAAAFDgAAAAABDgAAAAACDgAAAAAFDgAAAAABDgAAAAABAQAAAAAEAQAAAAABBAAAAAAIDgAAAAAEDgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAAEDgAAAAAEDgAAAAABDgAAAAAADgAAAAADDgAAAAACDgAAAAAAAQAAAAAEAQAAAAABBAAAAAAGDgAAAAABDgAAAAAFDgAAAAABDgAAAAAADgAAAAACBAAAAAABDgAAAAAEDgAAAAAEDgAAAAAFDgAAAAAEDgAAAAADDgAAAAADDgAAAAAAAQAAAAAAAQAAAAAEBAAAAAALDgAAAAAFDgAAAAAADgAAAAABDgAAAAACBAAAAAAKBAAAAAAIBAAAAAAKBAAAAAAABAAAAAAJBAAAAAAMDgAAAAABBAAAAAANBAAAAAAGAQAAAAADAQAAAAADBAAAAAAKDgAAAAAADgAAAAACDgAAAAAEDgAAAAACBAAAAAAFDgAAAAACDgAAAAAFDgAAAAAADgAAAAACDgAAAAACDgAAAAAEDgAAAAADDgAAAAAFCQAAAAAMCQAAAAAJBAAAAAAIBAAAAAAFBAAAAAAKBAAAAAAEBAAAAAAMBAAAAAABDgAAAAAEDgAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAACDgAAAAAFDgAAAAABCQAAAAAGCQAAAAAGCQAAAAAJCQAAAAADCQAAAAAMCQAAAAAFCQAAAAAKBAAAAAANDgAAAAAEDgAAAAACDgAAAAABDgAAAAAEDgAAAAAADgAAAAAADgAAAAACDgAAAAADCQAAAAALCQAAAAALCQAAAAAHCQAAAAADCQAAAAACCQAAAAACCQAAAAAMBAAAAAAMBAAAAAAEBAAAAAAMBAAAAAAIBAAAAAAGAwAAAAADAwAAAAACAwAAAAAHBAAAAAADCQAAAAACCQAAAAAFCQAAAAAHCQAAAAAMCQAAAAAICQAAAAAECQAAAAAFCQAAAAABCQAAAAAACQAAAAAKCQAAAAADBAAAAAAEAwAAAAAEAwAAAAAFAwAAAAAFBAAAAAAMCQAAAAAFCQAAAAAJCQAAAAAHCQAAAAAJCQAAAAABCQAAAAADCQAAAAAGCQAAAAANCQAAAAALCQAAAAAGCQAAAAAMBAAAAAANBAAAAAAKEQAAAAAABAAAAAAHBAAAAAANCQAAAAAICQAAAAAECQAAAAAICQAAAAAACQAAAAANCQAAAAAFCQAAAAAICQAAAAAGCQAAAAAGCQAAAAAECQAAAAAEBAAAAAAGEAAAAAAAEAAAAAAAEAAAAAAABAAAAAAICQAAAAAJCQAAAAACCQAAAAAFCQAAAAAJCQAAAAAMCQAAAAACCQAAAAALCQAAAAALCQAAAAABCQAAAAAKCQAAAAANBAAAAAAKEAAAAAAAEQAAAAAAEAAAAAAABAAAAAABCQAAAAALCQAAAAABCQAAAAAJCQAAAAAGCQAAAAAACQAAAAACCQAAAAAICQAAAAANCQAAAAANCQAAAAAGCQAAAAAJBAAAAAAIEAAAAAAAEAAAAAAAEAAAAAAABAAAAAAKCQAAAAALCQAAAAADCQAAAAAACQAAAAACCQAAAAANCQAAAAAECQAAAAAACQAAAAAKCQAAAAAFCQAAAAAACQAAAAAEBAAAAAALBAAAAAAHBAAAAAAGBAAAAAANBAAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAACCgAAAAAACgAAAAABCgAAAAABCgAAAAABCgAAAAADCgAAAAACCgAAAAACCgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAABCgAAAAADCgAAAAAACgAAAAABCgAAAAACCgAAAAABCgAAAAAACgAAAAACCgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAACCgAAAAAACgAAAAAACgAAAAAACgAAAAADCgAAAAADCgAAAAACCgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAABCgAAAAABCgAAAAACCgAAAAAACgAAAAAACgAAAAACCgAAAAACCgAAAAADCgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAACCgAAAAACCgAAAAACCgAAAAAACgAAAAAACgAAAAACCgAAAAABCgAAAAABCgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAABCgAAAAAACgAAAAAACgAAAAADCgAAAAADCgAAAAAACgAAAAACCgAAAAADCgAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAAACgAAAAACCgAAAAABCgAAAAADCgAAAAACCgAAAAACCgAAAAACCgAAAAADCgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAABCgAAAAABCgAAAAAACgAAAAADCgAAAAACCgAAAAADCgAAAAAACgAAAAAACgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAACCgAAAAABCgAAAAACCgAAAAADCgAAAAAACgAAAAAACgAAAAACCgAAAAADCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAABCgAAAAACCgAAAAACCgAAAAACCgAAAAABCgAAAAAACgAAAAADCgAAAAABCgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAAACgAAAAADCgAAAAACCgAAAAABCgAAAAADCgAAAAACCgAAAAAACgAAAAABCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAACCgAAAAADCgAAAAABCgAAAAAACgAAAAACCgAAAAABCgAAAAABCgAAAAABCgAAAAAD
version: 6
-3,-1:
ind: -3,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAADCgAAAAAACgAAAAADCgAAAAABCgAAAAAACgAAAAADCgAAAAADCgAAAAAACgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAACCgAAAAAACgAAAAADCgAAAAAACgAAAAABCgAAAAACCgAAAAABCgAAAAACCgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAAACgAAAAADCgAAAAACCgAAAAAACgAAAAAACgAAAAACCgAAAAACCgAAAAABCgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAADCgAAAAABCgAAAAACCgAAAAAACgAAAAAACgAAAAACCgAAAAADCgAAAAACCgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCgAAAAACCgAAAAADCgAAAAACCgAAAAACCgAAAAAACgAAAAAACgAAAAADCgAAAAACCgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAAACgAAAAAACgAAAAABCgAAAAACCgAAAAABCgAAAAADCgAAAAACCgAAAAADCgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAADAQAAAAAEAQAAAAAEAQAAAAACAQAAAAADAQAAAAABAQAAAAABAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAEAQAAAAACAQAAAAABAQAAAAADAQAAAAAEAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAAEAQAAAAACAQAAAAAEAQAAAAAEAQAAAAABAQAAAAABCQAAAAAICQAAAAAFCQAAAAADCQAAAAAHAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAAEAQAAAAABAQAAAAADAQAAAAADAQAAAAACCQAAAAAICQAAAAAJCQAAAAAGCQAAAAAKCQAAAAAFCQAAAAAECQAAAAADCQAAAAACCQAAAAABCQAAAAAGCQAAAAAECQAAAAADCQAAAAAFCQAAAAAACQAAAAANCQAAAAAKCQAAAAAMCQAAAAAECQAAAAANCQAAAAANCQAAAAACCQAAAAANCQAAAAAMCQAAAAAFCQAAAAANCQAAAAABCQAAAAAECQAAAAAFCQAAAAAECQAAAAAICQAAAAAJCQAAAAAJCQAAAAAGCQAAAAAKCQAAAAAGCQAAAAAACQAAAAAFCQAAAAAHCQAAAAACCQAAAAACCQAAAAALCQAAAAAJCQAAAAANCQAAAAAGCQAAAAALCQAAAAAFCQAAAAAFCQAAAAAGCQAAAAADCQAAAAAKCQAAAAAMCQAAAAABCQAAAAADCQAAAAACCQAAAAAGCQAAAAAJCQAAAAAFCQAAAAACCQAAAAAHCQAAAAANCQAAAAAHCQAAAAALCQAAAAADCQAAAAAECQAAAAAKCQAAAAAJCQAAAAALCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAAJCQAAAAAHCQAAAAANCQAAAAAKCQAAAAAICQAAAAACCQAAAAAECQAAAAACCQAAAAAGCQAAAAABCQAAAAAICQAAAAAHCQAAAAAACQAAAAAGCQAAAAALCQAAAAAMCQAAAAANCQAAAAAHCQAAAAAECQAAAAABCQAAAAAACQAAAAABCQAAAAAHCQAAAAAHCQAAAAADCQAAAAALCQAAAAALCQAAAAABCQAAAAAJCQAAAAADCQAAAAAECQAAAAAMCQAAAAANCQAAAAAGCQAAAAAHCQAAAAAKCQAAAAAMCQAAAAALCQAAAAAICQAAAAAMCQAAAAAHCQAAAAAECQAAAAADCQAAAAAECQAAAAAF
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAEAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAAEAQAAAAAEAQAAAAABAQAAAAACAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAACAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAABAQAAAAACAQAAAAAEAQAAAAABAQAAAAAAAQAAAAABAQAAAAAEAQAAAAACAQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAAHAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAEAQAAAAABAQAAAAACAQAAAAADAQAAAAAAAQAAAAACCQAAAAANCQAAAAAHCQAAAAABCQAAAAAECQAAAAAFCQAAAAAFCQAAAAABCQAAAAAECQAAAAAMCQAAAAALCQAAAAALCQAAAAAECQAAAAAACQAAAAAKCQAAAAAMCQAAAAAFCQAAAAAKCQAAAAALCQAAAAAKCQAAAAAMCQAAAAABCQAAAAAICQAAAAAGCQAAAAABCQAAAAADCQAAAAAFCQAAAAADCQAAAAANCQAAAAAACQAAAAAHCQAAAAAFCQAAAAACCQAAAAALCQAAAAAHCQAAAAAKCQAAAAACCQAAAAAJCQAAAAAGCQAAAAAICQAAAAADCQAAAAAHCQAAAAAJCQAAAAAHCQAAAAABCQAAAAAHCQAAAAAJCQAAAAAJCQAAAAALCQAAAAAKCQAAAAAJCQAAAAAGCQAAAAAHCQAAAAAMCQAAAAAHCQAAAAAACQAAAAAGCQAAAAANCQAAAAANCQAAAAANCQAAAAAGCQAAAAALCQAAAAAECQAAAAACCQAAAAAHCQAAAAABCQAAAAAECQAAAAAKCQAAAAANCQAAAAAECQAAAAAGCQAAAAADCQAAAAAKCQAAAAAACQAAAAABCQAAAAALCQAAAAAGCQAAAAACCQAAAAADCQAAAAAECQAAAAABCQAAAAAGCQAAAAAECQAAAAANCQAAAAALCQAAAAACCQAAAAACCQAAAAAICQAAAAACCQAAAAAFCQAAAAAKCQAAAAAACQAAAAAGCQAAAAAMCQAAAAANCQAAAAACCQAAAAAFCQAAAAAJCQAAAAALCQAAAAADCQAAAAALCQAAAAACCQAAAAACCQAAAAAJCQAAAAAGCQAAAAALCQAAAAABCQAAAAAJCQAAAAACCQAAAAAGCQAAAAANCQAAAAALCQAAAAALCQAAAAAKCQAAAAAKCQAAAAAJCQAAAAAF
version: 6
-3,2:
ind: -3,2
- tiles: CQAAAAACCQAAAAAHCQAAAAAECQAAAAALCQAAAAACCQAAAAAFCQAAAAAHCQAAAAADCQAAAAACCQAAAAAMCQAAAAABCQAAAAADCQAAAAAKCQAAAAAGCQAAAAAMCQAAAAAACQAAAAABCQAAAAABCQAAAAANCQAAAAAECQAAAAAKCQAAAAAMCQAAAAAACQAAAAAFCQAAAAANCQAAAAACCQAAAAAJCQAAAAAFCQAAAAANCQAAAAAGCQAAAAACCQAAAAAJCQAAAAADCQAAAAALCQAAAAALCQAAAAAMCQAAAAANCQAAAAABCQAAAAADCQAAAAALCQAAAAAGCQAAAAAKCQAAAAAJCQAAAAALCQAAAAAKCQAAAAAECQAAAAAHCQAAAAAICQAAAAADCQAAAAAMCQAAAAAACQAAAAANCQAAAAALCQAAAAAJCQAAAAACCQAAAAANCQAAAAAMCQAAAAAICQAAAAAECQAAAAAJCQAAAAAKCQAAAAACCQAAAAAKCQAAAAACCQAAAAAJCQAAAAAHCQAAAAAKCQAAAAAKCQAAAAAKCQAAAAAGCQAAAAABCQAAAAAICQAAAAAECQAAAAACCQAAAAAGCQAAAAANCQAAAAANCQAAAAADCQAAAAACCQAAAAAHCQAAAAAGCQAAAAACCQAAAAAFCQAAAAABCQAAAAAICQAAAAAECQAAAAAFCQAAAAACCQAAAAANCQAAAAABCQAAAAACCQAAAAALCQAAAAABCQAAAAADCQAAAAANCQAAAAAFCQAAAAAGCQAAAAAICQAAAAADCQAAAAANCQAAAAAGCQAAAAAJCQAAAAAFCQAAAAAHCQAAAAAGCQAAAAAECQAAAAADCQAAAAANCQAAAAANCQAAAAAACQAAAAAECQAAAAAICQAAAAALCQAAAAALCQAAAAACCQAAAAANCQAAAAAICQAAAAACCQAAAAAICQAAAAAKCQAAAAAICQAAAAANCQAAAAACCQAAAAALCQAAAAAGCQAAAAANCQAAAAALCQAAAAAFCQAAAAANCQAAAAAGCQAAAAAACQAAAAAMCQAAAAAECQAAAAAECQAAAAAMCQAAAAAHCQAAAAAJCQAAAAAMCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAAGCQAAAAAJCQAAAAACCQAAAAAKCQAAAAAACQAAAAAACQAAAAAMCQAAAAADCQAAAAADCQAAAAAHCQAAAAAECQAAAAANCQAAAAABCQAAAAANCQAAAAAECQAAAAABCQAAAAADCQAAAAAMAQAAAAACCQAAAAANCQAAAAAMCQAAAAAJCQAAAAAHCQAAAAAMCQAAAAALCQAAAAAFCQAAAAAJCQAAAAAMCQAAAAACCQAAAAAKCQAAAAABCQAAAAAJCQAAAAALCQAAAAAIAQAAAAAEAQAAAAACAQAAAAABCQAAAAAKCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAAJCQAAAAACCQAAAAANCQAAAAACCQAAAAANCQAAAAACCQAAAAADCQAAAAAMAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAABCQAAAAAICQAAAAANCQAAAAAHCQAAAAAMCQAAAAANCQAAAAALCQAAAAACCQAAAAANCQAAAAAFCQAAAAALCQAAAAAFAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAECQAAAAACCQAAAAABCQAAAAAICQAAAAAMCQAAAAAGCQAAAAAJCQAAAAAECQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAADAQAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAQAAAAABCQAAAAADCQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAABAQAAAAAEAQAAAAABAQAAAAAE
+ tiles: CQAAAAAJCQAAAAACCQAAAAAMCQAAAAANCQAAAAAHCQAAAAAJCQAAAAAHCQAAAAACCQAAAAAICQAAAAALCQAAAAAICQAAAAAKCQAAAAANCQAAAAABCQAAAAACCQAAAAADCQAAAAAGCQAAAAACCQAAAAAKCQAAAAADCQAAAAAACQAAAAABCQAAAAAGCQAAAAAGCQAAAAACCQAAAAAKCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAAMCQAAAAACCQAAAAACCQAAAAAJCQAAAAAKCQAAAAAECQAAAAAMCQAAAAAECQAAAAAJCQAAAAACCQAAAAAJCQAAAAAKCQAAAAACCQAAAAADCQAAAAANCQAAAAALCQAAAAACCQAAAAAFCQAAAAAFCQAAAAAICQAAAAACCQAAAAAACQAAAAAICQAAAAAECQAAAAAHCQAAAAAJCQAAAAANCQAAAAABCQAAAAAHCQAAAAAHCQAAAAANCQAAAAAJCQAAAAAHCQAAAAAHCQAAAAAJCQAAAAAHCQAAAAAECQAAAAAHCQAAAAAFCQAAAAAHCQAAAAALCQAAAAAJCQAAAAAICQAAAAACCQAAAAABCQAAAAAFCQAAAAAHCQAAAAAJCQAAAAAICQAAAAAKCQAAAAABCQAAAAAMCQAAAAALCQAAAAAHCQAAAAACCQAAAAAMCQAAAAABCQAAAAACCQAAAAAACQAAAAAGCQAAAAAACQAAAAABCQAAAAALCQAAAAAGCQAAAAANCQAAAAAACQAAAAADCQAAAAANCQAAAAAJCQAAAAADCQAAAAAMCQAAAAABCQAAAAAGCQAAAAAACQAAAAAJCQAAAAABCQAAAAAECQAAAAAJCQAAAAABCQAAAAAICQAAAAAECQAAAAAFCQAAAAABCQAAAAADCQAAAAABCQAAAAAMCQAAAAADCQAAAAAGCQAAAAAMCQAAAAAICQAAAAALCQAAAAAACQAAAAACCQAAAAAECQAAAAAHCQAAAAAICQAAAAAECQAAAAABCQAAAAAMCQAAAAABCQAAAAAECQAAAAADCQAAAAAKCQAAAAABCQAAAAAACQAAAAANCQAAAAAACQAAAAABCQAAAAAGCQAAAAAFCQAAAAAHCQAAAAADCQAAAAADCQAAAAAJCQAAAAAECQAAAAAFCQAAAAACCQAAAAABCQAAAAALCQAAAAAMCQAAAAAHCQAAAAAECQAAAAANCQAAAAACCQAAAAAMCQAAAAABCQAAAAAHCQAAAAAHCQAAAAAGAQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAAKCQAAAAAHCQAAAAAMCQAAAAAECQAAAAADCQAAAAAJCQAAAAADCQAAAAALCQAAAAALCQAAAAAMCQAAAAAFAQAAAAABAQAAAAADAQAAAAADCQAAAAACCQAAAAACCQAAAAAGCQAAAAAKCQAAAAAMCQAAAAACCQAAAAAECQAAAAAMCQAAAAADCQAAAAALCQAAAAANCQAAAAAHCQAAAAABAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAADAQAAAAABCQAAAAAKCQAAAAANCQAAAAAECQAAAAAFCQAAAAABCQAAAAANCQAAAAAACQAAAAABCQAAAAAGCQAAAAACCQAAAAACAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAAEAQAAAAABAQAAAAABAQAAAAABCQAAAAAMCQAAAAAGCQAAAAANCQAAAAAHCQAAAAAJCQAAAAANCQAAAAACCQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAEAQAAAAACAQAAAAACCQAAAAAKCQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAE
version: 6
-2,-3:
ind: -2,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAACQAAAAAMFwAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAADCQAAAAAFBAAAAAADBAAAAAANBAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAECQAAAAAICQAAAAANBAAAAAANBgAAAAABBgAAAAAB
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAADAQAAAAAEHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAACQAAAAAIHgAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAADCQAAAAAGBAAAAAAABAAAAAACBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAECQAAAAACCQAAAAAIBAAAAAAIBgAAAAAABgAAAAAD
version: 6
-1,-3:
ind: -1,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAEAQAAAAACFwAAAAADFwAAAAADFwAAAAABFwAAAAACFwAAAAABFwAAAAADFwAAAAAFFwAAAAABGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAAEFwAAAAADFwAAAAAAFwAAAAAFFwAAAAABFwAAAAADFwAAAAAAFwAAAAAEFwAAAAAAGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACQAAAAAEFwAAAAABFwAAAAADFgAAAAABGAAAAAADGAAAAAADGAAAAAAFFwAAAAAEFwAAAAADFwAAAAAFGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABCQAAAAADBAAAAAAHBAAAAAAJBAAAAAAGBAAAAAAFBAAAAAAMBAAAAAAABAAAAAALBAAAAAACFwAAAAAAGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAECQAAAAAICQAAAAACBAAAAAAHBQAAAAACBwAAAAABBwAAAAAABQAAAAABBgAAAAACBQAAAAAABAAAAAAHFwAAAAAFGQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABCQAAAAAECQAAAAAGBAAAAAABBQAAAAADBwAAAAACBgAAAAABBgAAAAACBgAAAAABBgAAAAABBAAAAAAAFwAAAAABGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABCQAAAAAMCQAAAAAFBAAAAAAFBQAAAAADBwAAAAAABQAAAAACBQAAAAADBwAAAAACBwAAAAACBAAAAAALFwAAAAACGQAAAAACAAAAAAAAAAAAAAAAAQAAAAACAQAAAAABCQAAAAAGCQAAAAAIBAAAAAAIBAAAAAANBAAAAAALBgAAAAAABQAAAAACBwAAAAABBQAAAAACBAAAAAAJFwAAAAABGQAAAAAIAAAAAAAAAAAAAAAAAQAAAAACFwAAAAABFwAAAAACCQAAAAALFgAAAAAEFgAAAAADBwAAAAABBwAAAAABBQAAAAAABgAAAAABBQAAAAACBQAAAAACGAAAAAADGQAAAAABAAAAAAAAAQAAAAACAQAAAAADFwAAAAAEFwAAAAACCQAAAAAKFgAAAAAAFgAAAAADBAAAAAAFBwAAAAAABwAAAAADBQAAAAAABQAAAAAABAAAAAALFwAAAAACGQAAAAAIAQAAAAAEAQAAAAAEFwAAAAAAFwAAAAAFFwAAAAADFwAAAAAAFwAAAAADFgAAAAAEBAAAAAAIBAAAAAAIBAAAAAAIBAAAAAAGBAAAAAABBAAAAAAHFwAAAAAFGQAAAAAHAQAAAAAAFwAAAAAAFwAAAAADFwAAAAAEFwAAAAACFwAAAAAEFwAAAAAEFwAAAAAAAgAAAAALFwAAAAABFwAAAAACFwAAAAACFwAAAAAEFwAAAAAEFwAAAAADGQAAAAAHFwAAAAACFwAAAAAAFwAAAAACAgAAAAAOBAAAAAANBAAAAAAABAAAAAAJBAAAAAAJBAAAAAAEBAAAAAAGBAAAAAAMBAAAAAANBAAAAAAMBAAAAAAIFwAAAAAEGQAAAAAHFwAAAAAFFwAAAAABCQAAAAAKAgAAAAAHBQAAAAACBQAAAAABBQAAAAAABQAAAAADBQAAAAABBQAAAAAABQAAAAADBgAAAAAABQAAAAAABAAAAAAHFwAAAAADGQAAAAAFBAAAAAAKBAAAAAAFAgAAAAAAAgAAAAAJBAAAAAALBQAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAADBgAAAAADBQAAAAAABQAAAAABBAAAAAAJFwAAAAABGQAAAAAGBgAAAAACBQAAAAAAAgAAAAAGAgAAAAAGBAAAAAAABQAAAAAABAAAAAAFBQAAAAAABQAAAAABBQAAAAAABAAAAAAKBgAAAAAABwAAAAADBAAAAAAHFwAAAAAAGQAAAAAG
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAQAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAAFHgAAAAAFHgAAAAADAgAAAAACAwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAADAQAAAAAEHgAAAAABHgAAAAAFHgAAAAABHgAAAAAEHgAAAAAAHgAAAAAAFgAAAAAAAgAAAAAMAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAECQAAAAAFHgAAAAAFAgAAAAAEHAAAAAAFHQAAAAADHQAAAAAAHQAAAAAAHgAAAAAEAgAAAAAEAgAAAAAOAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACCQAAAAAABAAAAAAAAgAAAAAJBAAAAAABBAAAAAAABAAAAAACBAAAAAAMBAAAAAAMBAAAAAADAgAAAAAKAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADCQAAAAAICQAAAAALBAAAAAAHBQAAAAABBwAAAAAABwAAAAAABQAAAAACBgAAAAADBQAAAAACBAAAAAACHgAAAAAEAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABCQAAAAAACQAAAAAIBAAAAAAEBQAAAAAABwAAAAAABgAAAAABBgAAAAABBgAAAAADBgAAAAABBAAAAAACHgAAAAABAwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABCQAAAAAKCQAAAAADBAAAAAANBQAAAAACBwAAAAADBQAAAAADBQAAAAABBwAAAAABBwAAAAABBAAAAAALHgAAAAABAwAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAACCQAAAAAGCQAAAAAKBAAAAAAFBAAAAAAEBAAAAAADBgAAAAAABQAAAAACBwAAAAAABQAAAAADBAAAAAAHAgAAAAAPAwAAAAAFAAAAAAAAAAAAAAAAAQAAAAAEHgAAAAAEHgAAAAABCQAAAAACAgAAAAANAgAAAAAMBwAAAAADBwAAAAAABQAAAAAABgAAAAAABQAAAAADBQAAAAAAAgAAAAAMAwAAAAAFAAAAAAAAAQAAAAACAQAAAAADHgAAAAADHgAAAAAECQAAAAAGAgAAAAAIAgAAAAADBAAAAAALBwAAAAABBwAAAAAABQAAAAABBQAAAAADBAAAAAAMAgAAAAAMAwAAAAAGAQAAAAADAQAAAAAEHgAAAAACHgAAAAAEHgAAAAABHgAAAAABHgAAAAACAgAAAAAGBAAAAAANBAAAAAAGBAAAAAAMBAAAAAAJBAAAAAAIBAAAAAAJHgAAAAAEAwAAAAAIAQAAAAADAgAAAAAHAgAAAAAMHgAAAAACHgAAAAAAHgAAAAACHgAAAAAEHgAAAAACAgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADFgAAAAAFHgAAAAACAwAAAAAGAgAAAAAOAgAAAAACAgAAAAANAgAAAAALBAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAAJBAAAAAACBAAAAAACBAAAAAAABAAAAAAIBAAAAAAIHgAAAAAEAwAAAAAHHgAAAAAAHgAAAAAFCQAAAAACAgAAAAAABQAAAAADBQAAAAADBQAAAAACBgAAAAADBgAAAAABBQAAAAABBQAAAAACBgAAAAADBQAAAAADBAAAAAABHgAAAAAAAwAAAAAHBAAAAAALBAAAAAAFAgAAAAACAgAAAAANBAAAAAAEBQAAAAACBQAAAAAABgAAAAADBgAAAAABBQAAAAABBgAAAAAABQAAAAAABQAAAAACBAAAAAAKHgAAAAAAAwAAAAAFBgAAAAACBQAAAAADAgAAAAAOAgAAAAACBAAAAAAMBAAAAAAABAAAAAANBQAAAAACBQAAAAABBQAAAAADBAAAAAANBgAAAAACBwAAAAAABAAAAAAMHgAAAAAEAwAAAAAB
version: 6
0,-3:
ind: 0,-3
- tiles: GQAAAAAIFwAAAAAFFwAAAAACAgAAAAAKAgAAAAANHAAAAAAFAgAAAAAJAgAAAAAGAgAAAAAOHAAAAAAFHAAAAAAFHAAAAAACHAAAAAADHAAAAAACFwAAAAADFwAAAAABGQAAAAAIFwAAAAADFwAAAAAFAgAAAAAEAgAAAAALAgAAAAAOAgAAAAABAgAAAAABFwAAAAABFwAAAAACBAAAAAAMFwAAAAAEFwAAAAAEBAAAAAAGFwAAAAACFwAAAAAFGQAAAAAIFwAAAAACFwAAAAAEFwAAAAABAgAAAAAJAgAAAAAMAgAAAAAOFwAAAAAEFwAAAAAAFwAAAAACFwAAAAADFwAAAAAAAQAAAAADAQAAAAAEFwAAAAAFFwAAAAAAGQAAAAADFwAAAAAABAAAAAAMBAAAAAAIBAAAAAABBAAAAAAEBAAAAAAHBAAAAAANBAAAAAABFwAAAAABCQAAAAAAAQAAAAABAQAAAAAEAQAAAAADAQAAAAABFwAAAAAFGQAAAAABFwAAAAAEBAAAAAAFBQAAAAABBQAAAAABBQAAAAABBQAAAAADBQAAAAADBAAAAAANFwAAAAABFwAAAAABAQAAAAADFwAAAAABAQAAAAABAQAAAAAEAQAAAAAEGQAAAAAIGAAAAAAFBQAAAAADBQAAAAADBQAAAAABBQAAAAAABQAAAAAABQAAAAAABAAAAAAIFwAAAAABFwAAAAABFwAAAAAAAQAAAAAEAQAAAAACAQAAAAABAQAAAAADGQAAAAADFwAAAAADBAAAAAAHBQAAAAADBQAAAAAABQAAAAACBQAAAAAABQAAAAABBAAAAAAFFwAAAAADCQAAAAACAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAACFwAAAAABGQAAAAACFwAAAAAFBAAAAAALBQAAAAABBQAAAAACBQAAAAADBAAAAAAFBAAAAAAJBAAAAAAAFwAAAAADFwAAAAADAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAABGQAAAAAFFwAAAAAFBAAAAAALBQAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAADBAAAAAAMFwAAAAABFwAAAAAEAQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAADGQAAAAABFwAAAAABBAAAAAAJBQAAAAAABQAAAAADBQAAAAABBAAAAAANBAAAAAALBAAAAAANFwAAAAABCQAAAAACAQAAAAACAQAAAAAEAQAAAAADAQAAAAAEAQAAAAACGQAAAAADFwAAAAABBAAAAAALBAAAAAACBAAAAAALBAAAAAAMBAAAAAAHFwAAAAAEFwAAAAAEFwAAAAACFwAAAAABAQAAAAADAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAAGQAAAAAHFwAAAAAAFwAAAAAAFwAAAAADFwAAAAAAFwAAAAAFFwAAAAAEFwAAAAADFwAAAAABFwAAAAACFwAAAAABAQAAAAAEAQAAAAACAQAAAAACAQAAAAABAQAAAAAAGQAAAAAIFwAAAAADBAAAAAABBAAAAAAKBAAAAAADBAAAAAACBAAAAAAIBAAAAAAKBAAAAAAHFwAAAAACCQAAAAACFwAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAEGQAAAAAHFwAAAAADBAAAAAALBQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAAABAAAAAAGFwAAAAACFwAAAAACFwAAAAAFFwAAAAACFwAAAAAAFwAAAAADAQAAAAAEGQAAAAAAFwAAAAAEBAAAAAANBQAAAAADBQAAAAADBQAAAAABBAAAAAANBAAAAAAEBAAAAAALFwAAAAACFwAAAAAFFwAAAAABFwAAAAAAFwAAAAADFwAAAAAAFwAAAAABGQAAAAAFFwAAAAAEBAAAAAAFBQAAAAADBQAAAAABBQAAAAAABQAAAAADBQAAAAACBAAAAAAHFwAAAAAEBAAAAAAHBAAAAAAGBAAAAAAGBAAAAAACBAAAAAAABAAAAAAM
+ tiles: AwAAAAAEHgAAAAAFFgAAAAAEAgAAAAABAgAAAAAEHAAAAAACAgAAAAAKAgAAAAAEAgAAAAAEHAAAAAADHAAAAAAEHAAAAAABHAAAAAADHAAAAAAFHgAAAAADHgAAAAACAwAAAAADAgAAAAAIHgAAAAADAgAAAAAJAgAAAAAEAgAAAAACAgAAAAAIAgAAAAAGHgAAAAACHgAAAAAEBAAAAAAMHgAAAAADHgAAAAAFBAAAAAANHgAAAAAEHgAAAAAAAwAAAAABAgAAAAAJAgAAAAALHgAAAAAAAgAAAAADAgAAAAADAgAAAAAEHgAAAAAAHgAAAAAAHgAAAAAEHgAAAAACHgAAAAACAQAAAAABAQAAAAADHgAAAAACHgAAAAABAwAAAAAGAgAAAAAKBAAAAAAEBAAAAAAMBAAAAAAIBAAAAAACBAAAAAAMBAAAAAAJBAAAAAADHgAAAAABCQAAAAAAAQAAAAAEAQAAAAAAAQAAAAACAQAAAAAAHgAAAAAEAwAAAAAEFgAAAAAEBAAAAAABBQAAAAACBQAAAAACBQAAAAADBQAAAAADBQAAAAACBAAAAAANHgAAAAAEHgAAAAAEAQAAAAAEHgAAAAADAQAAAAAAAQAAAAACAQAAAAAEAwAAAAAGHQAAAAADBQAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAACBQAAAAAABAAAAAADHgAAAAADHgAAAAAFHgAAAAACAQAAAAAAAQAAAAABAQAAAAAEAQAAAAABAwAAAAAHHgAAAAAEBAAAAAAGBQAAAAABBQAAAAABBQAAAAADBQAAAAAABQAAAAADBAAAAAAJHgAAAAADCQAAAAALAQAAAAADAQAAAAABAQAAAAABAQAAAAADHgAAAAACAwAAAAAGHgAAAAAEBAAAAAAJBQAAAAABBQAAAAAABQAAAAAABAAAAAAGBAAAAAAEBAAAAAAEHgAAAAAFHgAAAAACAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAwAAAAAIHgAAAAAABAAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAADBQAAAAABBAAAAAAMHgAAAAAEHgAAAAAEAQAAAAACAQAAAAADAQAAAAACAQAAAAABAQAAAAACAwAAAAAEHgAAAAAEBAAAAAAKBQAAAAAABQAAAAACBQAAAAADBAAAAAAMBAAAAAALBAAAAAALHgAAAAAACQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAwAAAAACAgAAAAAKBAAAAAADBAAAAAAFBAAAAAALBAAAAAAIBAAAAAADHgAAAAAFHgAAAAABHgAAAAACHgAAAAACAQAAAAAEAQAAAAAAAQAAAAACAQAAAAACAQAAAAABAwAAAAAFFgAAAAADHgAAAAAEHgAAAAADHgAAAAACHgAAAAAFHgAAAAADAgAAAAAJAgAAAAAJHgAAAAADHgAAAAACAQAAAAACAQAAAAABAQAAAAADAQAAAAAEAQAAAAAAAwAAAAACHgAAAAABBAAAAAAABAAAAAANBAAAAAAABAAAAAAFBAAAAAAFBAAAAAANBAAAAAALHgAAAAACCQAAAAALHgAAAAACAQAAAAAEAQAAAAADAQAAAAABAQAAAAABAwAAAAADHgAAAAAFBAAAAAAKBQAAAAACBQAAAAAABQAAAAACBQAAAAACBQAAAAAABAAAAAALHgAAAAAEHgAAAAAEHgAAAAACHgAAAAACHgAAAAAEHgAAAAABAQAAAAADAwAAAAADAgAAAAAJBAAAAAACBQAAAAADBQAAAAABBQAAAAACBAAAAAAABAAAAAAABAAAAAAEHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAFAwAAAAAIAgAAAAAEBAAAAAALBQAAAAACBQAAAAAABQAAAAADBQAAAAAABQAAAAACBAAAAAAMHgAAAAAEBAAAAAAKBAAAAAAIBAAAAAAHBAAAAAAGBAAAAAALBAAAAAAL
version: 6
1,-3:
ind: 1,-3
- tiles: FwAAAAAFFwAAAAAEFwAAAAADFwAAAAACFwAAAAADFwAAAAACFwAAAAABFwAAAAABFwAAAAACCQAAAAAECQAAAAANCQAAAAAHCQAAAAAGCQAAAAAICQAAAAAECQAAAAAGBAAAAAADBAAAAAAIBAAAAAAKBAAAAAABBAAAAAADBAAAAAAGBAAAAAAGBAAAAAAHFwAAAAAFCQAAAAAHCQAAAAAKCQAAAAALCQAAAAAACQAAAAAMCQAAAAAACQAAAAABBAAAAAAIAwAAAAAGAwAAAAACAwAAAAACAwAAAAACAwAAAAAEAwAAAAAGBAAAAAAGFwAAAAAFCQAAAAAFCQAAAAANCQAAAAAFCQAAAAACCQAAAAACCQAAAAABCQAAAAAIBAAAAAAIAwAAAAACEQAAAAAADQAAAAAADQAAAAAAEQAAAAAAAwAAAAABBAAAAAAFFwAAAAAECQAAAAAFCQAAAAANCQAAAAAHCQAAAAABCQAAAAAJCQAAAAAGCQAAAAABAQAAAAADAwAAAAAGDQAAAAAAAwAAAAAHAwAAAAAGDQAAAAAAAwAAAAABBAAAAAAAFwAAAAAFCQAAAAACCQAAAAAACQAAAAAICQAAAAAECQAAAAAKCQAAAAAJCQAAAAALAQAAAAADAwAAAAAGDQAAAAAAAwAAAAABAwAAAAACDQAAAAAAAwAAAAAEBAAAAAAGFwAAAAAACQAAAAAFCQAAAAAICQAAAAAMCQAAAAAJCQAAAAACCQAAAAAJCQAAAAAAAQAAAAABBAAAAAABBAAAAAADDQAAAAAADQAAAAAAEQAAAAAAAwAAAAAGBAAAAAAKFwAAAAAACQAAAAADCQAAAAABCQAAAAALCQAAAAAFCQAAAAANCQAAAAAACQAAAAANFwAAAAAEFwAAAAADBAAAAAAKAwAAAAAEAwAAAAAFAwAAAAACAwAAAAAABAAAAAAHFwAAAAABCQAAAAAICQAAAAAJCQAAAAAHCQAAAAADCQAAAAAECQAAAAANCQAAAAADAQAAAAABFwAAAAACBAAAAAAHBAAAAAAJBAAAAAAIAwAAAAAGBAAAAAAIBAAAAAAJFwAAAAAFCQAAAAADCQAAAAAICQAAAAANCQAAAAAKCQAAAAALCQAAAAAGCQAAAAAJFwAAAAABFwAAAAAFFwAAAAAEFwAAAAADFgAAAAABFgAAAAAAFwAAAAAFFwAAAAAAFwAAAAAACQAAAAADCQAAAAAMCQAAAAADCQAAAAAGCQAAAAAJCQAAAAALCQAAAAAAFwAAAAABFwAAAAABFwAAAAAAFgAAAAADFgAAAAAAFgAAAAADFwAAAAABHQAAAAAFFwAAAAAACQAAAAAICQAAAAAMCQAAAAAHCQAAAAAMCQAAAAAECQAAAAANCQAAAAAAGAAAAAAAGAAAAAAEGAAAAAABFgAAAAAAFgAAAAACFwAAAAAFFwAAAAACFwAAAAADFwAAAAABCQAAAAAMCQAAAAADCQAAAAAKCQAAAAADCQAAAAAMCQAAAAAKCQAAAAADFgAAAAABGAAAAAADFgAAAAADFgAAAAAAFwAAAAABFwAAAAADFwAAAAAEFwAAAAAFFwAAAAAECQAAAAAMCQAAAAAHCQAAAAAGCQAAAAAICQAAAAAMCQAAAAALCQAAAAADFgAAAAAAFgAAAAAAFgAAAAAFFwAAAAACFwAAAAAFFwAAAAAEFwAAAAADHQAAAAAFHQAAAAACCQAAAAALCQAAAAAGCQAAAAALCQAAAAABCQAAAAAGCQAAAAANCQAAAAALFgAAAAAEFgAAAAACFwAAAAABFwAAAAAAFwAAAAAFFwAAAAACFwAAAAABFwAAAAAFHQAAAAADCQAAAAAACQAAAAAICQAAAAANCQAAAAAKCQAAAAAACQAAAAAACQAAAAAAGQAAAAADGQAAAAAGFwAAAAAABAAAAAADBAAAAAAHBQAAAAADBAAAAAAJBAAAAAADHQAAAAACCQAAAAAJCQAAAAAICQAAAAAHCQAAAAAJCQAAAAACCQAAAAAJCQAAAAAG
+ tiles: HgAAAAAFHgAAAAABHgAAAAAEHgAAAAACHgAAAAADHgAAAAAFHgAAAAAAHgAAAAADHgAAAAAACQAAAAALCQAAAAAHCQAAAAALCQAAAAANCQAAAAAMCQAAAAAHCQAAAAAEBAAAAAAGBAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAANBAAAAAABBAAAAAAMHgAAAAAACQAAAAAKCQAAAAAGCQAAAAABCQAAAAAMCQAAAAAACQAAAAACCQAAAAAJBAAAAAABAwAAAAAFAwAAAAADAwAAAAAGAwAAAAAAAwAAAAAFAwAAAAAIBAAAAAAKHgAAAAACCQAAAAAFCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAAKCQAAAAAIBAAAAAABAwAAAAAAEQAAAAAADQAAAAAADQAAAAAAEQAAAAAAAwAAAAADBAAAAAAKHgAAAAACCQAAAAAKCQAAAAACCQAAAAACCQAAAAAICQAAAAABCQAAAAANCQAAAAAFAQAAAAABAwAAAAABDQAAAAAAAwAAAAAHAwAAAAAHDQAAAAAAAwAAAAABBAAAAAACHgAAAAADCQAAAAAMCQAAAAALCQAAAAAGCQAAAAACCQAAAAABCQAAAAAECQAAAAAHAQAAAAAAAwAAAAAEDQAAAAAAAwAAAAAFAwAAAAAEDQAAAAAAAwAAAAAIBAAAAAACHgAAAAABCQAAAAAJCQAAAAAHCQAAAAAICQAAAAANCQAAAAAKCQAAAAAGCQAAAAAMAQAAAAAABAAAAAAMBAAAAAAIDQAAAAAADQAAAAAAEQAAAAAAAwAAAAAIBAAAAAAIHgAAAAAFCQAAAAAMCQAAAAALCQAAAAALCQAAAAAFCQAAAAAHCQAAAAABCQAAAAAIHgAAAAAEHgAAAAAFBAAAAAAFAwAAAAAIAwAAAAAAAwAAAAAHAwAAAAABBAAAAAAGHgAAAAABCQAAAAAMCQAAAAAMCQAAAAANCQAAAAADCQAAAAAMCQAAAAAECQAAAAAKAQAAAAACHgAAAAAFBAAAAAADBAAAAAACBAAAAAAIAwAAAAAHBAAAAAALBAAAAAAEHgAAAAAECQAAAAADCQAAAAALCQAAAAADCQAAAAABCQAAAAAECQAAAAAICQAAAAANHgAAAAAEHgAAAAADHgAAAAAFHgAAAAAFHAAAAAACHAAAAAADHgAAAAABHgAAAAACHgAAAAAECQAAAAAGCQAAAAAFCQAAAAAMCQAAAAAICQAAAAAFCQAAAAACCQAAAAAKHgAAAAADHgAAAAAEHgAAAAAAHAAAAAAFHAAAAAACHAAAAAAFHgAAAAAEHQAAAAABHgAAAAAFCQAAAAAFCQAAAAACCQAAAAAFCQAAAAAGCQAAAAACCQAAAAAECQAAAAABHQAAAAAEHQAAAAAEHQAAAAABHAAAAAACHAAAAAAFHgAAAAABHgAAAAABHgAAAAACHgAAAAADCQAAAAAGCQAAAAAHCQAAAAABCQAAAAAACQAAAAAMCQAAAAABCQAAAAAKHAAAAAAFHQAAAAACHAAAAAAAHAAAAAACHgAAAAAEHgAAAAACHgAAAAABHgAAAAAEHgAAAAABCQAAAAAHCQAAAAACCQAAAAAACQAAAAAFCQAAAAAFCQAAAAAICQAAAAACHAAAAAABHAAAAAADHAAAAAABHgAAAAAFHgAAAAAAHgAAAAABHgAAAAAAHQAAAAAEHQAAAAADCQAAAAAKCQAAAAAGCQAAAAAFCQAAAAAMCQAAAAAICQAAAAACCQAAAAAKHAAAAAABHAAAAAADHgAAAAABHgAAAAAFHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHQAAAAABCQAAAAALCQAAAAALCQAAAAAJCQAAAAAGCQAAAAAGCQAAAAANCQAAAAAIAwAAAAAHAwAAAAAHHgAAAAACBAAAAAAABAAAAAACBQAAAAACBAAAAAADBAAAAAAEHQAAAAAACQAAAAAKCQAAAAAECQAAAAAICQAAAAADCQAAAAAJCQAAAAACCQAAAAAB
version: 6
-1,-4:
ind: -1,-4
- tiles: AQAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACCQAAAAAECQAAAAAMCQAAAAAECQAAAAABFgAAAAACAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAACAQAAAAAEAQAAAAADCQAAAAAFCQAAAAABCQAAAAAJCQAAAAALFgAAAAAEAQAAAAAAAQAAAAACAQAAAAADAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAECQAAAAAKCQAAAAACFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAAEAQAAAAACAQAAAAACAQAAAAAACQAAAAACCQAAAAAFFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAAACQAAAAAGCQAAAAALFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAADAQAAAAAACQAAAAAHCQAAAAAKFgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAQAAAAAACQAAAAADCQAAAAANFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAADAQAAAAACCQAAAAAACQAAAAAIGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAADCQAAAAANCQAAAAADGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAAACQAAAAAACQAAAAANFgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAQAAAAAEAQAAAAAEAgAAAAADFwAAAAAAFgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAADAgAAAAAFAgAAAAAIFwAAAAAEFwAAAAAEGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAACAQAAAAAEAQAAAAABAQAAAAAEAgAAAAAFAgAAAAAJFwAAAAADFwAAAAAEGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACAQAAAAABAQAAAAADAQAAAAAAAgAAAAAPAgAAAAAGFwAAAAABFwAAAAABGQAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABCQAAAAADCQAAAAANCQAAAAAKAgAAAAAKAgAAAAAIFwAAAAAFFwAAAAAAGQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACAQAAAAACCQAAAAABCQAAAAAKCQAAAAAHAgAAAAAMAgAAAAAFFwAAAAAAFwAAAAABGQAAAAAB
+ tiles: AQAAAAAEAQAAAAAEAQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAAECQAAAAAJCQAAAAAICQAAAAAHCQAAAAAHHAAAAAACAQAAAAACAQAAAAABAQAAAAADAQAAAAAEAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAACAQAAAAABCQAAAAAHCQAAAAAFCQAAAAAECQAAAAACHAAAAAACAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAAEAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAGCQAAAAAAHAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAACAQAAAAAEAQAAAAAAAQAAAAABCQAAAAAICQAAAAACHAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAADCQAAAAAFCQAAAAAEHAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAAECQAAAAAJCQAAAAAHHAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACAQAAAAAACQAAAAABCQAAAAANHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAACAQAAAAAECQAAAAADCQAAAAAGAwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAQAAAAABCQAAAAANCQAAAAAJAwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAECQAAAAAKCQAAAAAHHAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAAEAgAAAAAOHgAAAAAEHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAABAgAAAAAFAgAAAAAKHgAAAAAEHgAAAAAAAwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAAEAQAAAAAEAgAAAAADAgAAAAALHgAAAAAFHgAAAAAEAwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAADAQAAAAAAAQAAAAACAQAAAAADAgAAAAAGAgAAAAAFHgAAAAAEHgAAAAABAwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABCQAAAAANCQAAAAACCQAAAAAAAgAAAAAJAgAAAAAKHgAAAAAFHgAAAAABAwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAADCQAAAAAICQAAAAAGCQAAAAALAgAAAAAFAgAAAAADHgAAAAAEHgAAAAAEAwAAAAAD
version: 6
0,-4:
ind: 0,-4
- tiles: FgAAAAAACQAAAAALCQAAAAANCQAAAAALCQAAAAAMCQAAAAAICQAAAAACCQAAAAAFCQAAAAACCQAAAAACCQAAAAACCQAAAAAKFgAAAAAFFgAAAAACFgAAAAAFFgAAAAAFFgAAAAAFFwAAAAAECQAAAAANCQAAAAAICQAAAAAHCQAAAAAJCQAAAAALCQAAAAABFgAAAAAEFgAAAAAACQAAAAAHFgAAAAAFFgAAAAAEFgAAAAADFgAAAAAAFgAAAAAEFgAAAAAACQAAAAACCQAAAAAICQAAAAAACQAAAAAEFgAAAAABFgAAAAAACQAAAAAHCQAAAAAFCQAAAAAMFwAAAAABFwAAAAAABAAAAAAEBQAAAAAABAAAAAAJBAAAAAAMFgAAAAAEFgAAAAACFgAAAAABFgAAAAABCQAAAAANCQAAAAACCQAAAAANCQAAAAAJCQAAAAAFCQAAAAAKFwAAAAAAFwAAAAAFBAAAAAAGBQAAAAABBQAAAAADBQAAAAACFgAAAAACFgAAAAAAFgAAAAACCQAAAAALCQAAAAAACQAAAAAJCQAAAAAECQAAAAAHCQAAAAAKCQAAAAAAFwAAAAAAFwAAAAADBAAAAAAIBQAAAAACBQAAAAABBQAAAAADFgAAAAACCQAAAAAACQAAAAAGCQAAAAADCQAAAAACCQAAAAADCQAAAAAJCQAAAAAACQAAAAAFCQAAAAAHFwAAAAAAFwAAAAAABAAAAAADBQAAAAAABAAAAAAHBAAAAAALFgAAAAADCQAAAAAHCQAAAAAGCQAAAAALCQAAAAAFCQAAAAAHCQAAAAAICQAAAAAJCQAAAAAKCQAAAAALFwAAAAAAFwAAAAAEFwAAAAAEGAAAAAADGAAAAAAFAgAAAAADFgAAAAAECQAAAAACCQAAAAADCQAAAAAMCQAAAAALCQAAAAAICQAAAAACCQAAAAALCQAAAAAGCQAAAAAHCQAAAAAIFwAAAAAAFwAAAAABGAAAAAAFGAAAAAAAGAAAAAAAFgAAAAAFCQAAAAAFCQAAAAAFCQAAAAABCQAAAAAACQAAAAAICQAAAAAECQAAAAALHAAAAAADHAAAAAADHAAAAAAFFwAAAAACFwAAAAAEFwAAAAAFAgAAAAAGGAAAAAAEFgAAAAAEFwAAAAAEAgAAAAALAgAAAAAJAgAAAAAPCQAAAAAHCQAAAAAACQAAAAACHAAAAAADHAAAAAABHAAAAAABFwAAAAAFFwAAAAAAFwAAAAADFwAAAAADAgAAAAAHFgAAAAACFwAAAAADAgAAAAAOCQAAAAABCQAAAAAJCQAAAAACCQAAAAADCQAAAAAHCQAAAAABHAAAAAABHAAAAAAAFwAAAAAAFwAAAAABFwAAAAAEAgAAAAAKAgAAAAAPGQAAAAAHFwAAAAAFBAAAAAAABAAAAAALCQAAAAAECQAAAAAGCQAAAAANCQAAAAAACQAAAAAAHAAAAAACHAAAAAADFwAAAAADFwAAAAAFAgAAAAAHAgAAAAAEAgAAAAABGQAAAAADBAAAAAABBAAAAAAJBAAAAAAGBAAAAAADCQAAAAAFCQAAAAACCQAAAAAKCQAAAAACCQAAAAAJHAAAAAAFHAAAAAABFwAAAAAFFwAAAAACFwAAAAABCQAAAAAAGQAAAAAIBAAAAAADBAAAAAAEBAAAAAAEBAAAAAAJCQAAAAAICQAAAAADCQAAAAAMCQAAAAAJCQAAAAACHAAAAAACHAAAAAAEHAAAAAADHAAAAAAAFwAAAAAAFwAAAAAFGQAAAAAAFwAAAAADBAAAAAADBAAAAAAECQAAAAAKCQAAAAAGCQAAAAABCQAAAAAEHAAAAAAEHAAAAAAEHAAAAAADHAAAAAAEHAAAAAAEHAAAAAAFFwAAAAAAFwAAAAAEGQAAAAAFFwAAAAAAFwAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAAEHAAAAAAAHAAAAAADHAAAAAAEHAAAAAABHAAAAAAFHAAAAAADFwAAAAACFwAAAAAE
+ tiles: HAAAAAAACQAAAAALCQAAAAAJCQAAAAAMCQAAAAANCQAAAAAACQAAAAABCQAAAAAACQAAAAAFCQAAAAAJCQAAAAAECQAAAAAJHAAAAAAAHAAAAAAEHAAAAAABHAAAAAAEHAAAAAABHgAAAAAACQAAAAAJCQAAAAACCQAAAAAECQAAAAAECQAAAAAICQAAAAAGHAAAAAAEHAAAAAAACQAAAAAHHAAAAAAEHAAAAAACHAAAAAABHAAAAAAAHAAAAAADHAAAAAADCQAAAAADCQAAAAAGCQAAAAABCQAAAAABHAAAAAACHAAAAAACCQAAAAAHCQAAAAADCQAAAAABHgAAAAADHgAAAAAEBAAAAAACBQAAAAAABAAAAAABBAAAAAAGHAAAAAABHAAAAAAAHAAAAAABHAAAAAABCQAAAAALCQAAAAAICQAAAAAMCQAAAAAJCQAAAAABCQAAAAAIHgAAAAAFHgAAAAADBAAAAAAEBQAAAAACBQAAAAABBQAAAAABHAAAAAAAHAAAAAABHAAAAAAECQAAAAACCQAAAAAJCQAAAAAGCQAAAAAJCQAAAAAICQAAAAAFCQAAAAACHgAAAAACHgAAAAACBAAAAAAFBQAAAAABBQAAAAABBQAAAAACHAAAAAAACQAAAAAJCQAAAAANCQAAAAAMCQAAAAAFCQAAAAABCQAAAAABCQAAAAAGCQAAAAANCQAAAAAFHgAAAAAFHgAAAAAABAAAAAAMBQAAAAACBAAAAAABBAAAAAADHAAAAAABCQAAAAABCQAAAAAHCQAAAAAECQAAAAACCQAAAAALCQAAAAAECQAAAAAGCQAAAAAICQAAAAAEHgAAAAAEHgAAAAAFHgAAAAAEHQAAAAADHQAAAAADAgAAAAAKHAAAAAADCQAAAAAHCQAAAAACCQAAAAALCQAAAAACCQAAAAAACQAAAAAECQAAAAADCQAAAAAECQAAAAABCQAAAAAEHgAAAAADHgAAAAACHQAAAAABHQAAAAACHQAAAAABHAAAAAAACQAAAAAJCQAAAAAGCQAAAAAGCQAAAAANCQAAAAAKCQAAAAAGCQAAAAAJHAAAAAAAHAAAAAABHAAAAAABHgAAAAADHgAAAAAFHgAAAAADAgAAAAAPHQAAAAACHAAAAAAFHgAAAAADAgAAAAANAgAAAAALAgAAAAAKCQAAAAANCQAAAAALCQAAAAAMHAAAAAAFHAAAAAABHAAAAAAAHgAAAAAFHgAAAAAAHgAAAAAAHgAAAAABAgAAAAAOHAAAAAACHgAAAAAFAgAAAAAOCQAAAAAMCQAAAAAICQAAAAADCQAAAAAHCQAAAAAHCQAAAAAMHAAAAAADHAAAAAAEHgAAAAAEHgAAAAACHgAAAAACAgAAAAALAgAAAAAHAwAAAAACHgAAAAAFBAAAAAACBAAAAAADCQAAAAAHCQAAAAAMCQAAAAABCQAAAAAICQAAAAAAHAAAAAAEHAAAAAADHgAAAAACHgAAAAAEAgAAAAAKAgAAAAAHAgAAAAANAwAAAAAEBAAAAAAIBAAAAAANBAAAAAAEBAAAAAACCQAAAAAHCQAAAAALCQAAAAADCQAAAAAFCQAAAAAJHAAAAAAAHAAAAAAEHgAAAAABHgAAAAABHgAAAAACCQAAAAAJAwAAAAAIBAAAAAAHBAAAAAACBAAAAAADBAAAAAAMCQAAAAAKCQAAAAAMCQAAAAACCQAAAAAKCQAAAAAJHAAAAAADHAAAAAAAHAAAAAADHAAAAAAFHgAAAAAFHgAAAAAFAwAAAAABHgAAAAABBAAAAAAABAAAAAAMCQAAAAAACQAAAAAICQAAAAAKCQAAAAAFHAAAAAACHAAAAAACHAAAAAABHAAAAAAEHAAAAAABHAAAAAADHgAAAAAAHgAAAAADAwAAAAAIFgAAAAACHgAAAAAEHAAAAAABHAAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAAEHAAAAAAEHAAAAAAFHAAAAAADHAAAAAABHgAAAAAFHgAAAAAA
version: 6
-1,-5:
ind: -1,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAEAQAAAAABAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAADAQAAAAADAQAAAAADAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAEAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAAAAQAAAAACAQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAACAQAAAAACAQAAAAAAAQAAAAAEAQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAACAQAAAAAEAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAEAQAAAAABAQAAAAABAQAAAAACAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAEAQAAAAACAQAAAAACAQAAAAAAAQAAAAACCQAAAAALCQAAAAADCQAAAAAHCQAAAAAICQAAAAAJCQAAAAAGCQAAAAAHCQAAAAAJCQAAAAAHCQAAAAAGCQAAAAANCQAAAAADCQAAAAANCQAAAAAJCQAAAAANCQAAAAAKCQAAAAAHCQAAAAALCQAAAAAFCQAAAAAICQAAAAAFCQAAAAACCQAAAAAGCQAAAAAMCQAAAAAJCQAAAAAGCQAAAAAGCQAAAAACCQAAAAAFCQAAAAAJCQAAAAAACQAAAAACCQAAAAAKCQAAAAAJCQAAAAALCQAAAAAACQAAAAABCQAAAAAKCQAAAAAJCQAAAAAACQAAAAAMCQAAAAAAFgAAAAABFgAAAAAFFgAAAAAFFgAAAAAAFgAAAAAFCQAAAAACCQAAAAALCQAAAAAGCQAAAAABCQAAAAAKCQAAAAADCQAAAAAACQAAAAAFCQAAAAAMCQAAAAAGCQAAAAAIFgAAAAACFgAAAAAEFgAAAAAFFgAAAAAFFgAAAAAFFgAAAAAAFgAAAAACFgAAAAAEFgAAAAAFFgAAAAAAFgAAAAAEFgAAAAABCQAAAAAECQAAAAAJCQAAAAAJCQAAAAABFwAAAAADFwAAAAAFFwAAAAAFFwAAAAAEFgAAAAADFgAAAAABFgAAAAABFgAAAAAAFgAAAAADFgAAAAAFFgAAAAAEFgAAAAABFgAAAAABFgAAAAABCQAAAAAGCQAAAAAIFwAAAAAAFwAAAAAEFwAAAAABFwAAAAABCQAAAAAJCQAAAAAECQAAAAAMCQAAAAAKCQAAAAAECQAAAAAIFgAAAAACFgAAAAAEFgAAAAADFgAAAAABFgAAAAAACQAAAAAHCQAAAAAECQAAAAAACQAAAAALCQAAAAAICQAAAAAMCQAAAAAHCQAAAAALCQAAAAAKCQAAAAAKCQAAAAANCQAAAAAMCQAAAAAECQAAAAABFgAAAAAEFgAAAAADFgAAAAADAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAADAQAAAAABCQAAAAAICQAAAAACCQAAAAAGCQAAAAALCQAAAAALCQAAAAAHCQAAAAABCQAAAAALCQAAAAACFgAAAAAEFgAAAAAF
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAAAAQAAAAACAQAAAAAEAQAAAAADAQAAAAAEAQAAAAABAQAAAAADAQAAAAABAQAAAAAAAQAAAAAEAQAAAAABAQAAAAADAQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAQAAAAACAQAAAAAEAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAACAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEAQAAAAACAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAEAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAACAQAAAAAEAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAEAQAAAAAAAQAAAAACAQAAAAABAQAAAAAEAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAAEAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAACAQAAAAABAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAAEAQAAAAACAQAAAAACAQAAAAABAQAAAAAEAQAAAAAAAQAAAAACAQAAAAAEAQAAAAADAQAAAAADCQAAAAAACQAAAAAACQAAAAAHCQAAAAACCQAAAAAICQAAAAAFCQAAAAAGCQAAAAADCQAAAAACCQAAAAAJCQAAAAAMCQAAAAAFCQAAAAAJCQAAAAABCQAAAAADCQAAAAAGCQAAAAAHCQAAAAANCQAAAAAGCQAAAAAGCQAAAAAKCQAAAAAHCQAAAAADCQAAAAAFCQAAAAAACQAAAAAGCQAAAAABCQAAAAAGCQAAAAACCQAAAAAGCQAAAAAACQAAAAAACQAAAAADCQAAAAAICQAAAAAACQAAAAAKCQAAAAAMCQAAAAAACQAAAAAFCQAAAAAJCQAAAAAGCQAAAAAKHAAAAAACHAAAAAAFHAAAAAABHAAAAAAAHAAAAAADCQAAAAACCQAAAAAHCQAAAAACCQAAAAADCQAAAAAECQAAAAANCQAAAAAACQAAAAAECQAAAAAFCQAAAAANCQAAAAAJHAAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAAEHAAAAAAFHAAAAAAFHAAAAAABHAAAAAADHAAAAAAECQAAAAADCQAAAAAFCQAAAAAECQAAAAABHgAAAAAAHgAAAAAAHgAAAAAEHgAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAAAHAAAAAAFHAAAAAADHAAAAAACHAAAAAAAHAAAAAAFHAAAAAAACQAAAAAICQAAAAAJHgAAAAACHgAAAAAEHgAAAAADHgAAAAADCQAAAAAICQAAAAAGCQAAAAABCQAAAAALCQAAAAALCQAAAAACHAAAAAADHAAAAAADHAAAAAAAHAAAAAAEHAAAAAACCQAAAAAGCQAAAAAACQAAAAAICQAAAAAICQAAAAANCQAAAAANCQAAAAACCQAAAAADCQAAAAAFCQAAAAAMCQAAAAAICQAAAAAECQAAAAADCQAAAAAHHAAAAAAAHAAAAAADHAAAAAAFAQAAAAACAQAAAAACAQAAAAADAQAAAAABAQAAAAACCQAAAAAJCQAAAAAGCQAAAAAFCQAAAAAACQAAAAAFCQAAAAAECQAAAAAFCQAAAAAECQAAAAAMHAAAAAABHAAAAAAC
version: 6
0,-5:
ind: 0,-5
- tiles: AQAAAAACAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACAQAAAAADAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAADAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAAEAQAAAAABAQAAAAADAQAAAAACAQAAAAAEAQAAAAADAQAAAAACAQAAAAACAAAAAAAAAQAAAAAEAQAAAAACAQAAAAADAQAAAAABAQAAAAABAQAAAAACAQAAAAAEAQAAAAABAQAAAAADAQAAAAADAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAACAAAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAEAQAAAAAEAQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAADAQAAAAACCQAAAAALCQAAAAAACQAAAAAKAQAAAAAEAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAAEAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAACQAAAAAECQAAAAAECQAAAAAMCQAAAAALCQAAAAACCQAAAAAICQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAACAQAAAAACCQAAAAACCQAAAAAFCQAAAAAECQAAAAABCQAAAAAICQAAAAAHCQAAAAANCQAAAAABAQAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAECQAAAAAGCQAAAAAICQAAAAANCQAAAAAGCQAAAAAACQAAAAABCQAAAAADCQAAAAABAQAAAAAEAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAADCQAAAAAGCQAAAAAJCQAAAAAACQAAAAAJCQAAAAALCQAAAAAGCQAAAAAECQAAAAAKAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAABCQAAAAAMCQAAAAAECQAAAAAHCQAAAAANCQAAAAABCQAAAAAKCQAAAAAICQAAAAAMAQAAAAADAQAAAAAAAQAAAAABAQAAAAAEAQAAAAABAQAAAAADAQAAAAADAQAAAAABCQAAAAAKCQAAAAAKCQAAAAACCQAAAAALCQAAAAAFCQAAAAAACQAAAAABCQAAAAAFAQAAAAAEAQAAAAADAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAABAQAAAAADCQAAAAAECQAAAAAICQAAAAACCQAAAAACCQAAAAAICQAAAAAHCQAAAAANCQAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAAEAQAAAAABAQAAAAADAQAAAAAAAQAAAAACFgAAAAADCQAAAAAHCQAAAAACCQAAAAAFCQAAAAABCQAAAAAKCQAAAAACCQAAAAABAQAAAAADAQAAAAACAQAAAAABAQAAAAAEAQAAAAAAAQAAAAABAQAAAAAEAgAAAAAB
+ tiles: AQAAAAADAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAEAQAAAAAAAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAAEAQAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAACAQAAAAAEAQAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAAAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAAEAQAAAAADAQAAAAADAQAAAAAEAQAAAAACAQAAAAADAQAAAAABAAAAAAAAAQAAAAAEAQAAAAADAQAAAAADAQAAAAABAQAAAAABAQAAAAAEAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAEAQAAAAABAQAAAAABAQAAAAADCQAAAAAGCQAAAAACCQAAAAAKAQAAAAAEAQAAAAADAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAAEAQAAAAABAQAAAAABAQAAAAAACQAAAAAJCQAAAAAJCQAAAAAMCQAAAAAFCQAAAAALCQAAAAADCQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAABCQAAAAAJCQAAAAACCQAAAAAFCQAAAAAJCQAAAAALCQAAAAAJCQAAAAAKCQAAAAAAAQAAAAAEAQAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAAEAQAAAAABAQAAAAADCQAAAAAECQAAAAABCQAAAAAICQAAAAABCQAAAAAACQAAAAABCQAAAAAGCQAAAAAMAQAAAAAEAQAAAAABAQAAAAAAAQAAAAABAQAAAAAAAQAAAAABAQAAAAADAQAAAAABCQAAAAAHCQAAAAAACQAAAAAMCQAAAAANCQAAAAAHCQAAAAALCQAAAAACCQAAAAAIAQAAAAACAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAAAQAAAAABCQAAAAADCQAAAAABCQAAAAAGCQAAAAALCQAAAAAJCQAAAAAMCQAAAAAICQAAAAAHAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAQAAAAABCQAAAAACCQAAAAAFCQAAAAABCQAAAAAECQAAAAAKCQAAAAANCQAAAAAICQAAAAAFAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAACCQAAAAACCQAAAAAJCQAAAAAICQAAAAADCQAAAAADCQAAAAAGCQAAAAAKCQAAAAAJAQAAAAAEAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAABAQAAAAACHAAAAAAACQAAAAAKCQAAAAAECQAAAAANCQAAAAAGCQAAAAADCQAAAAAICQAAAAAFAQAAAAAEAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAgAAAAAP
version: 6
-2,-4:
ind: -2,-4
- tiles: AQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAAEAQAAAAABAQAAAAAEAQAAAAACAQAAAAABAQAAAAAEAQAAAAADAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAEAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AQAAAAACAQAAAAADAQAAAAAEAQAAAAACAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAADAQAAAAADAQAAAAAEAQAAAAACAQAAAAACAQAAAAADAQAAAAADAQAAAAAEAQAAAAADAQAAAAACAQAAAAACAQAAAAAEAQAAAAADAQAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAAEAQAAAAACAQAAAAAEAQAAAAABAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAACAQAAAAADAQAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAABAQAAAAAEAQAAAAACAQAAAAAEAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,-5:
ind: -2,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAADAQAAAAACAQAAAAACAQAAAAAEAQAAAAAAAQAAAAACAQAAAAADAQAAAAAEAQAAAAAAAQAAAAACAQAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAADAQAAAAAEAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAEAQAAAAABAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAACAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAAEAQAAAAADAQAAAAACAQAAAAADAQAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAAEAQAAAAACAQAAAAADAQAAAAAEAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAAEAQAAAAABAQAAAAABAQAAAAABAQAAAAACAQAAAAACAQAAAAABAQAAAAABFwAAAAAEFwAAAAADFwAAAAACFwAAAAAAFwAAAAAEFwAAAAABFwAAAAAEAQAAAAAAAQAAAAACAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAAAQAAAAADFwAAAAAFFwAAAAAFBAAAAAAIAwAAAAAIAwAAAAABAwAAAAAGBAAAAAAJFwAAAAAFFwAAAAACAQAAAAABAQAAAAABAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAABAQAAAAACFwAAAAACBAAAAAADBAAAAAAJAwAAAAAEDQAAAAAAAwAAAAAFBAAAAAAJBAAAAAABFwAAAAABAQAAAAABCQAAAAAKCQAAAAAECQAAAAAHCQAAAAABCQAAAAACCQAAAAAMFwAAAAAFBAAAAAAIAwAAAAAHAwAAAAAGDQAAAAAAAwAAAAACAwAAAAAGBAAAAAAMFgAAAAABCQAAAAAHCQAAAAANCQAAAAAJCQAAAAABCQAAAAAGCQAAAAAJCQAAAAADFwAAAAADBAAAAAANDQAAAAAADQAAAAAAEQAAAAAADQAAAAAADQAAAAAAAwAAAAAIFgAAAAABFgAAAAAAFgAAAAACFgAAAAABFgAAAAABFgAAAAAACQAAAAAICQAAAAANFwAAAAACBAAAAAAHAwAAAAABAwAAAAAEDQAAAAAAAwAAAAAIAwAAAAAGBAAAAAADFgAAAAAFFgAAAAABFgAAAAAAFgAAAAAEFgAAAAACFgAAAAAECQAAAAAGCQAAAAAJFwAAAAABBAAAAAADBAAAAAAKAwAAAAADDQAAAAAAAwAAAAAGBAAAAAADBAAAAAAJFwAAAAAACQAAAAADFwAAAAAEFwAAAAAFFwAAAAAAFwAAAAACCQAAAAADCQAAAAALFwAAAAACFwAAAAACBAAAAAAMAwAAAAACAwAAAAAFAwAAAAAEBAAAAAAEFwAAAAADFwAAAAADCQAAAAAHFwAAAAABFwAAAAACFwAAAAAFFwAAAAACAQAAAAAAAQAAAAACCQAAAAAHFwAAAAACFwAAAAAEFwAAAAAFFwAAAAAEFwAAAAABFwAAAAADFwAAAAADCQAAAAAKCQAAAAANCQAAAAANCQAAAAAICQAAAAAHCQAAAAAEAQAAAAABAQAAAAACAQAAAAACAQAAAAABAQAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAEAQAAAAAEAQAAAAAE
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAABAQAAAAAEAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAACAQAAAAABAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAADAQAAAAACAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAEAQAAAAABAQAAAAACAQAAAAACAQAAAAABAQAAAAAEAQAAAAADAQAAAAADAQAAAAACAQAAAAACAQAAAAACAQAAAAAEAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAACAQAAAAADAQAAAAADAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAAAQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAACAQAAAAAEAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAAEAQAAAAABAQAAAAAEHgAAAAAFHgAAAAADBAAAAAAGAwAAAAAFAwAAAAAHAwAAAAAGBAAAAAALHgAAAAAEHgAAAAAFAQAAAAAEAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABHgAAAAAEBAAAAAAIBAAAAAAMAwAAAAACDQAAAAAAAwAAAAACBAAAAAALBAAAAAAAHgAAAAAFAQAAAAAECQAAAAALCQAAAAABCQAAAAABCQAAAAALCQAAAAAICQAAAAAMHgAAAAAEBAAAAAAHAwAAAAAHAwAAAAAFDQAAAAAAAwAAAAACAwAAAAAEBAAAAAACHAAAAAAFCQAAAAAHCQAAAAACCQAAAAAECQAAAAAFCQAAAAAKCQAAAAAFCQAAAAAEHgAAAAAABAAAAAAIDQAAAAAADQAAAAAAEQAAAAAADQAAAAAADQAAAAAAAwAAAAABHAAAAAAEHAAAAAACHAAAAAAEHAAAAAAEHAAAAAADHAAAAAAECQAAAAACCQAAAAAFHgAAAAAABAAAAAAJAwAAAAACAwAAAAAHDQAAAAAAAwAAAAADAwAAAAABBAAAAAACHAAAAAACHAAAAAAFHAAAAAAEHAAAAAABHAAAAAADHAAAAAABCQAAAAAECQAAAAAAHgAAAAABBAAAAAACBAAAAAAKAwAAAAADDQAAAAAAAwAAAAACBAAAAAAMBAAAAAAJHgAAAAAFCQAAAAAMHgAAAAACHgAAAAAFHgAAAAABHgAAAAACCQAAAAACCQAAAAAGHgAAAAADHgAAAAACBAAAAAAEAwAAAAAEAwAAAAAIAwAAAAAHBAAAAAAEHgAAAAABHgAAAAAFCQAAAAALHgAAAAAAHgAAAAACHgAAAAAEHgAAAAAAAQAAAAAEAQAAAAABCQAAAAAFHgAAAAACHgAAAAAFHgAAAAACHgAAAAAFHgAAAAAFHgAAAAAFHgAAAAADCQAAAAACCQAAAAAECQAAAAADCQAAAAAJCQAAAAADCQAAAAAGAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAADAQAAAAAD
version: 6
-3,-5:
ind: -3,-5
- tiles: AQAAAAABAQAAAAACAQAAAAAEAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAAAQAAAAADAQAAAAACAQAAAAACGAAAAAABGAAAAAABGAAAAAADGAAAAAACCQAAAAANCQAAAAAHCQAAAAANAQAAAAADAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAAEAQAAAAADAQAAAAAEGAAAAAAEGAAAAAACGAAAAAAEGAAAAAABCQAAAAAACQAAAAABCQAAAAABAQAAAAACAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAABGAAAAAABGAAAAAACGAAAAAAEGAAAAAAFCQAAAAAECQAAAAAMCQAAAAALCQAAAAAECQAAAAAHCQAAAAAKCQAAAAAACQAAAAAACQAAAAAHAQAAAAACAQAAAAACAQAAAAADGAAAAAABGAAAAAAAGAAAAAAFGAAAAAAACQAAAAADCQAAAAACCQAAAAAKCQAAAAAICQAAAAAKCQAAAAACCQAAAAAGCQAAAAAFCQAAAAAHCQAAAAAKCQAAAAACCQAAAAAIGAAAAAAFGAAAAAAFGAAAAAAEGAAAAAACCQAAAAAACQAAAAABCQAAAAANCQAAAAAICQAAAAABCQAAAAAJCQAAAAAHCQAAAAAECQAAAAACCQAAAAALCQAAAAAJCQAAAAAFGAAAAAABGAAAAAAAGAAAAAACGAAAAAAFCQAAAAAJCQAAAAAJCQAAAAAECQAAAAAFCQAAAAAKCQAAAAAICQAAAAAFCQAAAAAECQAAAAAHCQAAAAADCQAAAAACCQAAAAABGAAAAAAFGAAAAAABGAAAAAADGAAAAAAACQAAAAAJCQAAAAAMCQAAAAAGCQAAAAABCQAAAAAKCQAAAAANCQAAAAAACQAAAAAGCQAAAAAICQAAAAANCQAAAAAHCQAAAAACGAAAAAAAGAAAAAADGAAAAAAEGAAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAECQAAAAAGCQAAAAAACQAAAAAFCQAAAAAICQAAAAAJCQAAAAACCQAAAAALCQAAAAABCQAAAAAJCQAAAAACCQAAAAAHCQAAAAAMCQAAAAAMCQAAAAACCQAAAAANCQAAAAAICQAAAAANCQAAAAANCQAAAAAACQAAAAAECQAAAAAACQAAAAACCQAAAAADCQAAAAADAQAAAAAACQAAAAAJCQAAAAACCQAAAAADCQAAAAADCQAAAAALCQAAAAADCQAAAAAGCQAAAAAFCQAAAAAKCQAAAAALCQAAAAANCQAAAAAECQAAAAAECQAAAAANCQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAACQAAAAAECQAAAAAKCQAAAAAHCQAAAAAFCQAAAAALCQAAAAACCQAAAAAACQAAAAAMCQAAAAACCQAAAAAHAQAAAAADAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAAEAQAAAAABCQAAAAAJCQAAAAAMCQAAAAAACQAAAAAACQAAAAAHAQAAAAABAQAAAAADAQAAAAACAQAAAAAAAQAAAAAEAQAAAAACAQAAAAACAQAAAAACAQAAAAADAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAEAQAAAAAEAQAAAAAECQAAAAANAQAAAAADAQAAAAACAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAABAQAAAAADAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAABAQAAAAAEAQAAAAAEAQAAAAACAQAAAAACAQAAAAADAQAAAAADAQAAAAAEAQAAAAAE
+ tiles: AQAAAAABAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAACAQAAAAADAQAAAAADAQAAAAABAQAAAAABAQAAAAABHQAAAAAFHQAAAAADHQAAAAABHQAAAAADCQAAAAADCQAAAAAHCQAAAAAFAQAAAAABAQAAAAAEAQAAAAABAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAACCQAAAAADCQAAAAAACQAAAAAHAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAEAQAAAAABAQAAAAACHQAAAAAEHQAAAAAEHQAAAAAAHQAAAAADCQAAAAAICQAAAAACCQAAAAADCQAAAAAECQAAAAALCQAAAAANCQAAAAAACQAAAAAFCQAAAAAHAQAAAAADAQAAAAADAQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAAFCQAAAAALCQAAAAAICQAAAAACCQAAAAAGCQAAAAAFCQAAAAABCQAAAAAJCQAAAAANCQAAAAAKCQAAAAAKCQAAAAAJCQAAAAAEHQAAAAAEHQAAAAAFHQAAAAACHQAAAAABCQAAAAAJCQAAAAAMCQAAAAAKCQAAAAAFCQAAAAAACQAAAAAKCQAAAAAMCQAAAAAJCQAAAAAGCQAAAAABCQAAAAAACQAAAAAKHQAAAAADHQAAAAABHQAAAAAAHQAAAAABCQAAAAAGCQAAAAAICQAAAAANCQAAAAAKCQAAAAADCQAAAAAKCQAAAAANCQAAAAALCQAAAAABCQAAAAABCQAAAAAECQAAAAAFHQAAAAABHQAAAAACHQAAAAAAHQAAAAAECQAAAAAACQAAAAAACQAAAAAHCQAAAAAJCQAAAAAGCQAAAAALCQAAAAAHCQAAAAAJCQAAAAAKCQAAAAAICQAAAAADCQAAAAADHQAAAAAEHQAAAAAFHQAAAAADHQAAAAAECQAAAAAMCQAAAAACCQAAAAAMCQAAAAAGCQAAAAALCQAAAAACCQAAAAALCQAAAAAMCQAAAAALCQAAAAAACQAAAAAFCQAAAAAICQAAAAAFCQAAAAAHCQAAAAAFCQAAAAADCQAAAAAACQAAAAAMCQAAAAAKCQAAAAAECQAAAAAECQAAAAAMCQAAAAAFCQAAAAACCQAAAAANCQAAAAAECQAAAAANCQAAAAAFAQAAAAAACQAAAAAGCQAAAAADCQAAAAAGCQAAAAAFCQAAAAAJCQAAAAAECQAAAAACCQAAAAAFCQAAAAANCQAAAAAACQAAAAAACQAAAAAICQAAAAADCQAAAAAFCQAAAAADAQAAAAADAQAAAAADAQAAAAAAAQAAAAACAQAAAAACCQAAAAAGCQAAAAAFCQAAAAAFCQAAAAAFCQAAAAAECQAAAAAKCQAAAAAJCQAAAAAECQAAAAAFCQAAAAAHCQAAAAABAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAEAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAAACQAAAAAFCQAAAAALCQAAAAAACQAAAAAKCQAAAAAKAQAAAAACAQAAAAAEAQAAAAACAQAAAAADAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAEAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAAACQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAAEAQAAAAADAQAAAAACAQAAAAAEAQAAAAACAQAAAAABAQAAAAADAQAAAAAAAQAAAAADAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAEAQAAAAABAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAAE
version: 6
-3,-4:
ind: -3,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAACAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,-5:
ind: -4,-5
- tiles: AQAAAAAEAQAAAAAAAQAAAAACAQAAAAADAQAAAAABAQAAAAAEAQAAAAABAQAAAAACAQAAAAABAQAAAAAEAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAADAQAAAAAEAQAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAADGAAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAABAQAAAAADAQAAAAADAQAAAAAAAQAAAAADAQAAAAACAQAAAAAEAQAAAAAEAQAAAAACAQAAAAABAQAAAAABAQAAAAABGAAAAAAFAQAAAAAEAQAAAAAAAQAAAAACAQAAAAAEAQAAAAAAAQAAAAABAQAAAAAEAQAAAAABAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAAAGAAAAAAEAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAAEAQAAAAAAAQAAAAACAQAAAAADAQAAAAABAQAAAAABAQAAAAAAGAAAAAAFAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAADGAAAAAAEAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAAEAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACGAAAAAADAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAAEAQAAAAACAQAAAAAAAQAAAAAEAQAAAAABAQAAAAACAQAAAAADAQAAAAAAGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAECQAAAAADCQAAAAACCQAAAAAHCQAAAAAGCQAAAAAACQAAAAAJCQAAAAAFGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAADAQAAAAAAAQAAAAABCQAAAAAACQAAAAAKCQAAAAAFCQAAAAAECQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAADAQAAAAADAQAAAAACAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAAEAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AQAAAAADAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAACAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAADAQAAAAAEAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAEHQAAAAADAQAAAAAEAQAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAADAQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAAEAQAAAAAEHQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAADAQAAAAACAQAAAAADAQAAAAAAAQAAAAADAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAACHQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAEAQAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAABAQAAAAADAQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAAEAQAAAAAEAQAAAAACHQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAAEAQAAAAABAQAAAAADAQAAAAAEAQAAAAADAQAAAAABAQAAAAACAQAAAAABAQAAAAAEAQAAAAACAQAAAAACAQAAAAAEHQAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEAQAAAAADHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACCQAAAAAECQAAAAAKCQAAAAAGCQAAAAAICQAAAAABCQAAAAABCQAAAAABHQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAEAQAAAAAEAQAAAAACCQAAAAANCQAAAAAMCQAAAAAGCQAAAAAJCQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAAEAQAAAAAEAQAAAAADAQAAAAABAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAEAQAAAAABAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-5:
ind: -5,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAQAAAAAEAQAAAAABAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAAEAQAAAAADAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAEAQAAAAAAAQAAAAACAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAAEAQAAAAADAQAAAAACAQAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAAAAQAAAAACAQAAAAAEAQAAAAABAQAAAAAEAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAEAQAAAAACAQAAAAADAQAAAAADAQAAAAAEAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAACAQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACAQAAAAABAQAAAAADAQAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAEAQAAAAACAQAAAAABAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAAEAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAEAQAAAAABAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAAAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-6:
ind: -5,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAADAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAABAQAAAAACAQAAAAADAQAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAAC
version: 6
-4,-6:
ind: -4,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACAQAAAAABAQAAAAACAQAAAAAEAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAACAQAAAAACAQAAAAAEAQAAAAACAQAAAAACAQAAAAAEAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAAEAQAAAAACAQAAAAAEAQAAAAACAQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAABAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAQAAAAACAQAAAAABAQAAAAABAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAAAAQAAAAADAQAAAAAEAQAAAAABAQAAAAAEAQAAAAADAQAAAAABAQAAAAADAQAAAAACAQAAAAADAQAAAAADAQAAAAABAQAAAAABAQAAAAACAQAAAAAEAQAAAAACAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAACAQAAAAABAQAAAAAEAQAAAAADAQAAAAABAQAAAAAEAQAAAAACAQAAAAACAQAAAAABAQAAAAABAQAAAAAD
version: 6
-3,-6:
ind: -3,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAABAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAAEAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAABAQAAAAADAQAAAAAEAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAAEAQAAAAAAAQAAAAADAQAAAAADAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAAEAQAAAAAAAQAAAAACAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,1:
ind: -4,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAACFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAABFQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAACFQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEFQAAAAADFQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAABAQAAAAADAQAAAAAEAQAAAAACAQAAAAABAQAAAAACAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAEAQAAAAAAAQAAAAADAQAAAAABAQAAAAAEAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAABAQAAAAAAAQAAAAABBAAAAAALBgAAAAAABAAAAAAKBAAAAAAIAQAAAAAEAQAAAAACAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAADAQAAAAADAQAAAAABAQAAAAADEwAAAAADEwAAAAAAEwAAAAACBAAAAAAJFwAAAAACFwAAAAACFwAAAAAFCQAAAAAHCQAAAAADCQAAAAAECQAAAAABCQAAAAAJCQAAAAADCQAAAAAICQAAAAAKCQAAAAABEwAAAAADEwAAAAABEwAAAAACBAAAAAANFwAAAAAFFwAAAAADFwAAAAAACQAAAAAJCQAAAAACCQAAAAABCQAAAAAGCQAAAAAFCQAAAAAECQAAAAABCQAAAAANCQAAAAALEwAAAAADEwAAAAACEwAAAAAABAAAAAADFwAAAAAAFwAAAAAECQAAAAAFCQAAAAAICQAAAAAHCQAAAAAKCQAAAAAKCQAAAAAFCQAAAAANCQAAAAAECQAAAAABCQAAAAALEwAAAAACEwAAAAABEwAAAAAABAAAAAAAFwAAAAAEFwAAAAAFCQAAAAAFCQAAAAAKCQAAAAABCQAAAAADCQAAAAAICQAAAAADCQAAAAAMCQAAAAALCQAAAAAECQAAAAAHBAAAAAAJBAAAAAABBAAAAAANBAAAAAACFwAAAAAAHAAAAAACCQAAAAALCQAAAAAJCQAAAAACCQAAAAAFCQAAAAAACQAAAAAICQAAAAALCQAAAAAHCQAAAAAMCQAAAAAIFwAAAAACFwAAAAADFwAAAAAAFwAAAAADFwAAAAAEHAAAAAACCQAAAAAECQAAAAABCQAAAAAJCQAAAAAGCQAAAAAKCQAAAAAFCQAAAAAKCQAAAAAFCQAAAAAICQAAAAAMCQAAAAAGCQAAAAABCQAAAAAACQAAAAAMCQAAAAAECQAAAAALCQAAAAAICQAAAAALCQAAAAAGCQAAAAAJCQAAAAAFCQAAAAACCQAAAAAKCQAAAAAICQAAAAACCQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAAAFQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAABFQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAADFQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAAAACFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAFQAAAAADFQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAAAQAAAAACAQAAAAAEAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAACAQAAAAADAQAAAAAEAQAAAAACAQAAAAAEAQAAAAADAQAAAAACAQAAAAABAQAAAAADBAAAAAAABgAAAAAABAAAAAANBAAAAAAIAQAAAAABAQAAAAACAQAAAAABAQAAAAADAQAAAAABAQAAAAAEAQAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAABAQAAAAACEwAAAAABEwAAAAABEwAAAAAABAAAAAAGHgAAAAAEHgAAAAABHgAAAAAFCQAAAAANCQAAAAANCQAAAAADCQAAAAAACQAAAAAECQAAAAAACQAAAAAKCQAAAAAHCQAAAAADEwAAAAABEwAAAAABEwAAAAACBAAAAAAFHgAAAAAFHgAAAAABHgAAAAADCQAAAAAICQAAAAACCQAAAAALCQAAAAAHCQAAAAANCQAAAAAICQAAAAABCQAAAAAMCQAAAAAIEwAAAAACEwAAAAADEwAAAAADBAAAAAAGHgAAAAADHgAAAAABCQAAAAACCQAAAAALCQAAAAAACQAAAAAJCQAAAAAJCQAAAAANCQAAAAAKCQAAAAAGCQAAAAAGCQAAAAACEwAAAAAAEwAAAAACEwAAAAAABAAAAAALHgAAAAAFHgAAAAACCQAAAAACCQAAAAAECQAAAAAECQAAAAAGCQAAAAABCQAAAAANCQAAAAANCQAAAAADCQAAAAAFCQAAAAAEBAAAAAALBAAAAAAKBAAAAAAIBAAAAAAJHgAAAAAFHAAAAAADCQAAAAAMCQAAAAAECQAAAAAICQAAAAAACQAAAAALCQAAAAABCQAAAAADCQAAAAAECQAAAAAECQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAAFHgAAAAAFHAAAAAABCQAAAAAMCQAAAAALCQAAAAAGCQAAAAAMCQAAAAAKCQAAAAAFCQAAAAAMCQAAAAAICQAAAAAMCQAAAAAECQAAAAAECQAAAAAICQAAAAAGCQAAAAAACQAAAAAHCQAAAAAMCQAAAAAJCQAAAAADCQAAAAALCQAAAAAKCQAAAAAHCQAAAAANCQAAAAAICQAAAAAFCQAAAAAGCQAAAAAM
version: 6
-5,1:
ind: -5,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAACAQAAAAACAQAAAAACAQAAAAAEAQAAAAABAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAAEAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAAEAQAAAAACAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAACAQAAAAABCQAAAAANCQAAAAAKCQAAAAAFCQAAAAANCQAAAAAIAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAABAQAAAAACCQAAAAACCQAAAAAKCQAAAAAFCQAAAAABCQAAAAADCQAAAAAFCQAAAAABCQAAAAAKCQAAAAADCQAAAAACAQAAAAABAQAAAAAEFwAAAAAFAQAAAAADAQAAAAABAQAAAAADCQAAAAALCQAAAAAECQAAAAAHCQAAAAADCQAAAAAMCQAAAAAICQAAAAAGCQAAAAALCQAAAAAJFwAAAAABFwAAAAABFwAAAAAFFwAAAAAEFwAAAAAFBAAAAAALBAAAAAAGCQAAAAAMCQAAAAAGCQAAAAAGCQAAAAABCQAAAAANCQAAAAACCQAAAAANCQAAAAAIFwAAAAAFFwAAAAAAAgAAAAANAgAAAAAJFwAAAAABFwAAAAADBAAAAAANEwAAAAABCQAAAAALCQAAAAAHCQAAAAABCQAAAAADCQAAAAACCQAAAAAFCQAAAAADCQAAAAAEFwAAAAACAgAAAAAGAgAAAAAFAgAAAAAIFwAAAAABFwAAAAACBAAAAAAGEwAAAAACCQAAAAALCQAAAAAACQAAAAADCQAAAAAMCQAAAAACCQAAAAAGCQAAAAAECQAAAAABFwAAAAADAgAAAAAMAgAAAAAJAgAAAAALFwAAAAABFwAAAAACBAAAAAAEEwAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAAJCQAAAAACCQAAAAAACQAAAAALFwAAAAAFAgAAAAAAAgAAAAAKFwAAAAABFwAAAAAFFwAAAAABBAAAAAALEwAAAAADCQAAAAAMCQAAAAAHCQAAAAABCQAAAAABCQAAAAACCQAAAAAKCQAAAAALCQAAAAANCQAAAAALFwAAAAACFwAAAAAAFwAAAAABFwAAAAAEFwAAAAAEBAAAAAADBAAAAAADCQAAAAAACQAAAAADCQAAAAANCQAAAAAJCQAAAAAKCQAAAAAMCQAAAAACCQAAAAAFCQAAAAAECQAAAAAKCQAAAAADFwAAAAADFwAAAAACFwAAAAAAFwAAAAACFwAAAAADCQAAAAAHCQAAAAAGCQAAAAALCQAAAAADCQAAAAAICQAAAAAICQAAAAAKCQAAAAAICQAAAAADCQAAAAAICQAAAAADCQAAAAANCQAAAAAKCQAAAAAACQAAAAACCQAAAAAL
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAAEAQAAAAACAQAAAAAAAQAAAAACAQAAAAAEAQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAAEAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAQAAAAAACQAAAAAHCQAAAAANCQAAAAALCQAAAAAICQAAAAABAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAAECQAAAAAJCQAAAAAICQAAAAAKCQAAAAAJCQAAAAAMCQAAAAAMCQAAAAAICQAAAAABCQAAAAAFCQAAAAABAQAAAAACAQAAAAABHgAAAAAFAQAAAAACAQAAAAACAQAAAAAECQAAAAALCQAAAAAFCQAAAAADCQAAAAAGCQAAAAAJCQAAAAAICQAAAAADCQAAAAAJCQAAAAAIHgAAAAADHgAAAAAFHgAAAAAEHgAAAAAFHgAAAAABBAAAAAANBAAAAAAICQAAAAAFCQAAAAABCQAAAAAKCQAAAAAJCQAAAAAKCQAAAAADCQAAAAAICQAAAAAJHgAAAAAFHgAAAAACAgAAAAAPAgAAAAAPHgAAAAADHgAAAAAFBAAAAAAAEwAAAAADCQAAAAAKCQAAAAAHCQAAAAAMCQAAAAADCQAAAAABCQAAAAAKCQAAAAANCQAAAAALHgAAAAABAgAAAAAGAgAAAAAKAgAAAAAMHgAAAAABHgAAAAADBAAAAAAKEwAAAAAACQAAAAANCQAAAAAJCQAAAAAFCQAAAAAKCQAAAAAFCQAAAAADCQAAAAAECQAAAAABHgAAAAAAAgAAAAAPAgAAAAAHAgAAAAAJHgAAAAADHgAAAAAEBAAAAAAHEwAAAAADCQAAAAADCQAAAAAACQAAAAAECQAAAAAMCQAAAAAACQAAAAACCQAAAAAICQAAAAAIHgAAAAADAgAAAAAFAgAAAAAMHgAAAAAAHgAAAAAAHgAAAAAABAAAAAAMEwAAAAABCQAAAAABCQAAAAAJCQAAAAAGCQAAAAAECQAAAAAJCQAAAAAHCQAAAAADCQAAAAAICQAAAAAMHgAAAAACHgAAAAADHgAAAAACHgAAAAACHgAAAAABBAAAAAAJBAAAAAAGCQAAAAAECQAAAAAKCQAAAAAACQAAAAAHCQAAAAABCQAAAAANCQAAAAALCQAAAAAHCQAAAAAMCQAAAAACCQAAAAAJHgAAAAADHgAAAAACHgAAAAABHgAAAAAAHgAAAAADCQAAAAALCQAAAAAACQAAAAAACQAAAAAHCQAAAAAHCQAAAAADCQAAAAADCQAAAAAKCQAAAAABCQAAAAANCQAAAAAMCQAAAAANCQAAAAAGCQAAAAALCQAAAAAECQAAAAAI
version: 6
-6,1:
ind: -6,1
- tiles: AQAAAAAEAQAAAAAAAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAADAQAAAAADAQAAAAABAQAAAAAEAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAAEAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAACCQAAAAAKAQAAAAACAQAAAAACAQAAAAADAQAAAAABAQAAAAAEAQAAAAADAQAAAAAAAQAAAAADAQAAAAADAQAAAAAAAQAAAAABCQAAAAADCQAAAAAECQAAAAABCQAAAAADCQAAAAAKAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAACAQAAAAACAQAAAAAEAQAAAAADAQAAAAACAQAAAAADCQAAAAAACQAAAAAFCQAAAAAACQAAAAAICQAAAAAECQAAAAABCQAAAAALCQAAAAAFCQAAAAAJCQAAAAANCQAAAAAMCQAAAAABCQAAAAACAQAAAAAAAQAAAAAAAQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAAICQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAANCQAAAAAACQAAAAANCQAAAAANCQAAAAAACQAAAAACCQAAAAAACQAAAAAHCQAAAAAECQAAAAAGCQAAAAAICQAAAAAJCQAAAAAJCQAAAAANCQAAAAACCQAAAAAACQAAAAAJCQAAAAAECQAAAAAECQAAAAAECQAAAAACCQAAAAAJCQAAAAADCQAAAAABCQAAAAAJCQAAAAAMCQAAAAADCQAAAAADCQAAAAAJCQAAAAAICQAAAAAHCQAAAAANCQAAAAABCQAAAAAHCQAAAAAACQAAAAAMCQAAAAAHCQAAAAAICQAAAAANCQAAAAAGCQAAAAAKCQAAAAAGCQAAAAAECQAAAAAGCQAAAAANCQAAAAABCQAAAAAFCQAAAAAGCQAAAAACCQAAAAACCQAAAAAFCQAAAAALCQAAAAAACQAAAAAICQAAAAAACQAAAAAICQAAAAAECQAAAAAGCQAAAAALCQAAAAAGCQAAAAACCQAAAAALCQAAAAANCQAAAAAICQAAAAAACQAAAAANCQAAAAAFCQAAAAALCQAAAAAECQAAAAABCQAAAAAHCQAAAAADCQAAAAACCQAAAAADCQAAAAALCQAAAAAACQAAAAADCQAAAAAACQAAAAAICQAAAAAECQAAAAANCQAAAAABCQAAAAADCQAAAAAJCQAAAAAACQAAAAAKCQAAAAAKCQAAAAACCQAAAAAJCQAAAAAFCQAAAAAICQAAAAAKCQAAAAABCQAAAAAMCQAAAAAFCQAAAAAKCQAAAAAICQAAAAAHCQAAAAABCQAAAAAKCQAAAAAMCQAAAAAMCQAAAAAECQAAAAAICQAAAAAMCQAAAAAKCQAAAAAMCQAAAAAFCQAAAAADCQAAAAAECQAAAAALCQAAAAACCQAAAAAHCQAAAAADCQAAAAAHCQAAAAAGCQAAAAANCQAAAAAECQAAAAALCQAAAAACCQAAAAAFCQAAAAAFCQAAAAACCQAAAAAFCQAAAAABCQAAAAABCQAAAAAJCQAAAAAHCQAAAAAJCQAAAAACCQAAAAAMCQAAAAALCQAAAAAHCQAAAAACCQAAAAABCQAAAAANCQAAAAAECQAAAAAMCQAAAAAACQAAAAAKCQAAAAANCQAAAAABCQAAAAAECQAAAAAJCQAAAAAECQAAAAAMCQAAAAAJCQAAAAAACQAAAAAKCQAAAAAH
+ tiles: AQAAAAADAQAAAAACAQAAAAAEAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAABAQAAAAAEAQAAAAACAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAAEAQAAAAABAQAAAAAEAQAAAAADAQAAAAACAQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAACCQAAAAAHAQAAAAABAQAAAAAEAQAAAAAEAQAAAAABAQAAAAACAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAACQAAAAAGCQAAAAAHCQAAAAALCQAAAAACCQAAAAAMAQAAAAACAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAAECQAAAAAFCQAAAAABCQAAAAABCQAAAAADCQAAAAAKCQAAAAAECQAAAAAACQAAAAAGCQAAAAAJCQAAAAAECQAAAAALCQAAAAABCQAAAAAAAQAAAAAAAQAAAAADAQAAAAACCQAAAAAECQAAAAAJCQAAAAAECQAAAAANCQAAAAACCQAAAAAHCQAAAAAICQAAAAAGCQAAAAAKCQAAAAAKCQAAAAAACQAAAAANCQAAAAANCQAAAAALCQAAAAAFCQAAAAAICQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAJCQAAAAAMCQAAAAAICQAAAAAECQAAAAACCQAAAAANCQAAAAACCQAAAAALCQAAAAADCQAAAAAGCQAAAAAGCQAAAAAJCQAAAAAGCQAAAAAFCQAAAAAFCQAAAAALCQAAAAAGCQAAAAAHCQAAAAAJCQAAAAALCQAAAAAGCQAAAAAACQAAAAAKCQAAAAAMCQAAAAAACQAAAAALCQAAAAAECQAAAAALCQAAAAAGCQAAAAAJCQAAAAAECQAAAAAECQAAAAAECQAAAAADCQAAAAALCQAAAAALCQAAAAAACQAAAAAHCQAAAAAICQAAAAANCQAAAAAHCQAAAAABCQAAAAAFCQAAAAAFCQAAAAAKCQAAAAAHCQAAAAAKCQAAAAANCQAAAAAKCQAAAAAGCQAAAAAICQAAAAAMCQAAAAACCQAAAAAECQAAAAAGCQAAAAAKCQAAAAACCQAAAAABCQAAAAAGCQAAAAAJCQAAAAAMCQAAAAAFCQAAAAAECQAAAAACCQAAAAAACQAAAAAMCQAAAAAFCQAAAAALCQAAAAALCQAAAAAMCQAAAAANCQAAAAAACQAAAAAICQAAAAAJCQAAAAAJCQAAAAAKCQAAAAAICQAAAAALCQAAAAAACQAAAAAGCQAAAAAJCQAAAAACCQAAAAABCQAAAAAMCQAAAAABCQAAAAAECQAAAAAJCQAAAAALCQAAAAAFCQAAAAAHCQAAAAAGCQAAAAALCQAAAAACCQAAAAAKCQAAAAADCQAAAAAFCQAAAAAFCQAAAAANCQAAAAAECQAAAAAJCQAAAAADCQAAAAAGCQAAAAACCQAAAAAMCQAAAAAMCQAAAAAICQAAAAAICQAAAAADCQAAAAAACQAAAAALCQAAAAAFCQAAAAADCQAAAAAECQAAAAAKCQAAAAABCQAAAAANCQAAAAAHCQAAAAAFCQAAAAAGCQAAAAAECQAAAAADCQAAAAACCQAAAAACCQAAAAAGCQAAAAACCQAAAAALCQAAAAAFCQAAAAAMCQAAAAAHCQAAAAABCQAAAAACCQAAAAAECQAAAAAECQAAAAALCQAAAAAFCQAAAAAACQAAAAAJCQAAAAAD
version: 6
-7,1:
ind: -7,1
- tiles: AQAAAAADAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAACAQAAAAAEAQAAAAACAQAAAAABAQAAAAABCQAAAAANAQAAAAAEAQAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAACAQAAAAACAQAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAAECQAAAAABAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAEAQAAAAABAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAACCQAAAAAMCQAAAAAACQAAAAAICQAAAAACCQAAAAAICQAAAAABCQAAAAALAQAAAAABAQAAAAAACQAAAAAECQAAAAAHCQAAAAAKCQAAAAAKCQAAAAAACQAAAAAACQAAAAAFCQAAAAANCQAAAAADCQAAAAAACQAAAAAJCQAAAAALCQAAAAACCQAAAAABCQAAAAAICQAAAAACCQAAAAAICQAAAAANCQAAAAAHCQAAAAAMCQAAAAANCQAAAAAMCQAAAAALCQAAAAAFCQAAAAAICQAAAAAACQAAAAAICQAAAAAGCQAAAAAGCQAAAAABCQAAAAAMCQAAAAABCQAAAAADCQAAAAAJCQAAAAALCQAAAAALCQAAAAAMCQAAAAAKCQAAAAAJCQAAAAANCQAAAAAHCQAAAAAECQAAAAANCQAAAAABCQAAAAAMCQAAAAAKCQAAAAAMCQAAAAANCQAAAAALCQAAAAAACQAAAAAFCQAAAAAACQAAAAAGCQAAAAAKCQAAAAAECQAAAAAMCQAAAAACCQAAAAAMCQAAAAADCQAAAAAMCQAAAAAECQAAAAADCQAAAAAACQAAAAAHCQAAAAADCQAAAAADCQAAAAAICQAAAAAKCQAAAAADCQAAAAAGCQAAAAAMCQAAAAAJCQAAAAAHCQAAAAABCQAAAAAJCQAAAAAACQAAAAALCQAAAAAECQAAAAACCQAAAAAJAQAAAAADCQAAAAAECQAAAAABCQAAAAAICQAAAAAJCQAAAAALCQAAAAAHCQAAAAAICQAAAAALCQAAAAAKCQAAAAADCQAAAAAGCQAAAAACCQAAAAAFCQAAAAAGCQAAAAAKAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAACCQAAAAAECQAAAAAGCQAAAAAICQAAAAAGCQAAAAAKCQAAAAAACQAAAAAHCQAAAAAFCQAAAAAMCQAAAAAIAQAAAAAEAQAAAAABAQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAADCQAAAAALCQAAAAAKCQAAAAAICQAAAAAECQAAAAAKCQAAAAAECQAAAAAACQAAAAAKAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEAQAAAAADAQAAAAABAQAAAAADAQAAAAAAAQAAAAADCQAAAAAICQAAAAAKCQAAAAAACQAAAAAKCQAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAECQAAAAAICQAAAAADCQAAAAADCQAAAAAJCQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAEAQAAAAAAAQAAAAABAQAAAAADAQAAAAADCQAAAAAJCQAAAAAMCQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAAAAQAAAAADAQAAAAABCQAAAAAG
+ tiles: AQAAAAAEAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAAEAQAAAAAEAQAAAAABAQAAAAABAQAAAAACAQAAAAAEAQAAAAACAQAAAAACAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAACAQAAAAAEAQAAAAABCQAAAAABAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAACAQAAAAADAQAAAAABAQAAAAAEAQAAAAACAQAAAAADAQAAAAACAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACCQAAAAAMAQAAAAADAQAAAAADAQAAAAACAQAAAAACAQAAAAADAQAAAAACAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAACCQAAAAADCQAAAAACCQAAAAAMCQAAAAADCQAAAAAMCQAAAAAHCQAAAAAAAQAAAAADAQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAICQAAAAAICQAAAAANCQAAAAADCQAAAAAECQAAAAAECQAAAAAGCQAAAAAKCQAAAAAFCQAAAAAHCQAAAAAJCQAAAAAKCQAAAAAICQAAAAAFCQAAAAALCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAALCQAAAAAMCQAAAAALCQAAAAAACQAAAAAICQAAAAAICQAAAAANCQAAAAALCQAAAAAFCQAAAAABCQAAAAACCQAAAAAKCQAAAAADCQAAAAAGCQAAAAAHCQAAAAAMCQAAAAALCQAAAAAECQAAAAAHCQAAAAAKCQAAAAALCQAAAAAMCQAAAAAKCQAAAAAJCQAAAAADCQAAAAAFCQAAAAALCQAAAAACCQAAAAACCQAAAAAFCQAAAAAJCQAAAAAACQAAAAABCQAAAAAFCQAAAAADCQAAAAAECQAAAAALCQAAAAAKCQAAAAANCQAAAAADCQAAAAAFCQAAAAAFCQAAAAAJCQAAAAALCQAAAAABCQAAAAAACQAAAAAECQAAAAAACQAAAAANCQAAAAAECQAAAAAACQAAAAAJCQAAAAAACQAAAAAFCQAAAAABCQAAAAAGAQAAAAABCQAAAAAHCQAAAAADCQAAAAAMCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAAMCQAAAAAJCQAAAAADCQAAAAAACQAAAAAECQAAAAAFCQAAAAALCQAAAAAIAQAAAAAAAQAAAAAEAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAECQAAAAAHCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAAJCQAAAAABCQAAAAAICQAAAAAHCQAAAAALAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAAEAQAAAAABCQAAAAAFCQAAAAABCQAAAAALCQAAAAAKCQAAAAAGCQAAAAABCQAAAAAFCQAAAAAIAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAACAQAAAAAEAQAAAAADAQAAAAAEAQAAAAAEAQAAAAABCQAAAAADCQAAAAABCQAAAAAGCQAAAAAACQAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAAEAQAAAAADAQAAAAAAAQAAAAACAQAAAAAEAQAAAAABCQAAAAALCQAAAAAKCQAAAAAHCQAAAAAKCQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAEAQAAAAAEAQAAAAACAQAAAAABAQAAAAACCQAAAAANCQAAAAAECQAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAAECQAAAAAJ
version: 6
1,-5:
ind: 1,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAAAAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,0:
ind: -7,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAAEAQAAAAAEAQAAAAACAQAAAAACAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAAEAAAAAAAA
version: 6
1,-4:
ind: 1,-4
- tiles: FgAAAAAFFgAAAAAFFgAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAFFgAAAAAEFgAAAAAAFwAAAAADAQAAAAADAQAAAAADAQAAAAAEAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAAKBAAAAAANFwAAAAAAFwAAAAACFwAAAAAAFwAAAAADAQAAAAADAQAAAAAEAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAAEAQAAAAADAQAAAAAEBQAAAAADBQAAAAADBAAAAAAAFwAAAAADAQAAAAADAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAAEAQAAAAABAQAAAAACAQAAAAAAAQAAAAACAQAAAAACBQAAAAAABQAAAAAABAAAAAAJFwAAAAACCQAAAAANAQAAAAAEAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAAAAQAAAAABBAAAAAAJBAAAAAAGBAAAAAAGFwAAAAADCQAAAAAFCQAAAAAACQAAAAACCQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAABAQAAAAACAQAAAAABAQAAAAAAAQAAAAAEAgAAAAAOAgAAAAACAgAAAAALFwAAAAAFCQAAAAAGCQAAAAAJCQAAAAALCQAAAAAJCQAAAAAACQAAAAAKAQAAAAADAQAAAAADAQAAAAADAQAAAAADAQAAAAADAQAAAAAAGAAAAAAFGAAAAAAFGAAAAAACFwAAAAADCQAAAAAJCQAAAAABCQAAAAALCQAAAAAJCQAAAAAECQAAAAANCQAAAAADCQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAGAAAAAADGAAAAAAAGAAAAAAFFwAAAAADCQAAAAAKCQAAAAAFCQAAAAAMCQAAAAAKCQAAAAAHCQAAAAAKCQAAAAAFCQAAAAAFCQAAAAACCQAAAAAACQAAAAAJCQAAAAAGGAAAAAACGAAAAAABAgAAAAAAFwAAAAADCQAAAAAKCQAAAAAICQAAAAALCQAAAAAECQAAAAAICQAAAAAMCQAAAAALCQAAAAADCQAAAAALCQAAAAANCQAAAAAFCQAAAAAGGAAAAAAEGAAAAAAEAgAAAAAHFwAAAAAACQAAAAAJCQAAAAAJCQAAAAAKCQAAAAAACQAAAAALCQAAAAANCQAAAAAFCQAAAAAFCQAAAAAHCQAAAAAACQAAAAANCQAAAAAFGAAAAAAAGAAAAAAAAgAAAAAJFwAAAAAECQAAAAAICQAAAAAHCQAAAAAHCQAAAAAACQAAAAAHCQAAAAAKCQAAAAADCQAAAAAACQAAAAAECQAAAAAKCQAAAAALCQAAAAABCQAAAAANCQAAAAAFCQAAAAACFwAAAAABCQAAAAALCQAAAAAICQAAAAAHCQAAAAAICQAAAAAKCQAAAAACCQAAAAAKCQAAAAAKCQAAAAACCQAAAAAFCQAAAAALCQAAAAAKFwAAAAAEFwAAAAAFFwAAAAAEFwAAAAAFCQAAAAAMCQAAAAACCQAAAAAMCQAAAAAKCQAAAAAACQAAAAAGCQAAAAAACQAAAAACCQAAAAANCQAAAAAHCQAAAAAECQAAAAAEFwAAAAABFwAAAAAAFwAAAAACFwAAAAAAFwAAAAAEFwAAAAACFwAAAAAEFwAAAAADFwAAAAACCQAAAAAMCQAAAAADCQAAAAAJCQAAAAAHCQAAAAAICQAAAAAICQAAAAAAFwAAAAACFwAAAAAEFwAAAAAAFwAAAAACFwAAAAAAFwAAAAAAFwAAAAACFwAAAAAEFwAAAAAFCQAAAAAECQAAAAAMCQAAAAALCQAAAAAACQAAAAAJCQAAAAAFCQAAAAAD
+ tiles: HAAAAAAAHAAAAAAAHAAAAAAFAQAAAAACAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHgAAAAAAAQAAAAADAQAAAAAEAQAAAAABAQAAAAADAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAAEBAAAAAAMHgAAAAABHgAAAAAEHgAAAAAAHgAAAAAFAQAAAAAEAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAAEBQAAAAABBQAAAAADBAAAAAAEHgAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAAEAQAAAAACBQAAAAADBQAAAAABBAAAAAAGHgAAAAABHgAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAAEAQAAAAADAQAAAAAEAQAAAAABAQAAAAABAQAAAAABBAAAAAALBAAAAAAIBAAAAAAEHgAAAAADHgAAAAAACQAAAAANCQAAAAAGCQAAAAAHAQAAAAAAAQAAAAAEAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAAEAQAAAAAEAgAAAAAIAgAAAAANAgAAAAABHgAAAAADHgAAAAAACQAAAAAGCQAAAAALCQAAAAABCQAAAAAMCQAAAAAJAQAAAAABAQAAAAAAAQAAAAABAQAAAAAEAQAAAAABAQAAAAAAHQAAAAAEHQAAAAAFHQAAAAAEHgAAAAADCQAAAAAKCQAAAAANCQAAAAAECQAAAAANCQAAAAANCQAAAAAKCQAAAAAMCQAAAAAAAQAAAAADAQAAAAAEAQAAAAABAQAAAAABHQAAAAAFHQAAAAACHQAAAAAEHgAAAAAACQAAAAAECQAAAAAHCQAAAAAMCQAAAAAJCQAAAAAECQAAAAAGCQAAAAAGCQAAAAAGCQAAAAABCQAAAAABCQAAAAAHCQAAAAAKHQAAAAAFHQAAAAABAgAAAAAIHgAAAAABCQAAAAAICQAAAAAHCQAAAAAHCQAAAAAMCQAAAAAMCQAAAAAFCQAAAAAACQAAAAABCQAAAAADCQAAAAAICQAAAAAKCQAAAAABHQAAAAABHQAAAAACAgAAAAACHgAAAAACCQAAAAAMCQAAAAAJCQAAAAAMCQAAAAAICQAAAAAKCQAAAAACCQAAAAAACQAAAAALCQAAAAAJCQAAAAAJCQAAAAABCQAAAAAEHQAAAAADHQAAAAADAgAAAAAMHgAAAAAECQAAAAAJCQAAAAAMCQAAAAADCQAAAAAICQAAAAAKCQAAAAACCQAAAAAJCQAAAAALCQAAAAAECQAAAAAMCQAAAAAHCQAAAAAKCQAAAAADCQAAAAAFCQAAAAAGHgAAAAAFCQAAAAAGCQAAAAAHCQAAAAAECQAAAAACCQAAAAAFCQAAAAADCQAAAAAMCQAAAAADCQAAAAALCQAAAAAHCQAAAAANCQAAAAAEHgAAAAACHgAAAAAEHgAAAAABHgAAAAACCQAAAAAACQAAAAALCQAAAAABCQAAAAAHCQAAAAALCQAAAAABCQAAAAAGCQAAAAAACQAAAAAGCQAAAAAKCQAAAAAACQAAAAAKHgAAAAADHgAAAAACHgAAAAAFHgAAAAAEHgAAAAACHgAAAAABHgAAAAABHgAAAAAFHgAAAAAFCQAAAAALCQAAAAAHCQAAAAAJCQAAAAAHCQAAAAAMCQAAAAAHCQAAAAAIHgAAAAACHgAAAAAEHgAAAAAEHgAAAAADHgAAAAAFHgAAAAAEHgAAAAAEHgAAAAAAHgAAAAAACQAAAAAGCQAAAAAMCQAAAAAFCQAAAAAECQAAAAAHCQAAAAAHCQAAAAAG
version: 6
-8,1:
ind: -8,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACAQAAAAAAAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAADAQAAAAAEAQAAAAADAQAAAAACAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAACAQAAAAADAQAAAAAEAAAAAAAAAQAAAAAEAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAAEAQAAAAACAQAAAAADAQAAAAAAAQAAAAADCQAAAAALCQAAAAADAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAEAQAAAAACCQAAAAAACQAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAQAAAAACAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAACCQAAAAANCQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAEAQAAAAACAQAAAAACAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAADAQAAAAACCQAAAAAJCQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACAQAAAAADAQAAAAABCQAAAAAGCQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAEAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAAEAQAAAAAAAQAAAAACAQAAAAAEAQAAAAAAAQAAAAADAQAAAAADAQAAAAAEAAAAAAAAAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACAQAAAAABAQAAAAADAQAAAAADAQAAAAADAQAAAAADAQAAAAAEAQAAAAACAQAAAAACAQAAAAADCQAAAAAACQAAAAAEAQAAAAACAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAACAQAAAAACCQAAAAAJCQAAAAAMAAAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAAEAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAAEAQAAAAAACQAAAAAGCQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAABAQAAAAAACQAAAAAGCQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAABAQAAAAACAQAAAAACAQAAAAABCQAAAAACCQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAAEAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,-4:
ind: 2,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAAEAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAMAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAECQAAAAAFAQAAAAABAQAAAAAAAQAAAAACAQAAAAAEAQAAAAACAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAGCQAAAAAACQAAAAAHCQAAAAACAQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAADAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAACCQAAAAAICQAAAAAACQAAAAANAQAAAAABAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACAQAAAAADAQAAAAADAQAAAAACAQAAAAAEAQAAAAAAAAAAAAAAAAAAAAAACQAAAAAJCQAAAAAICQAAAAAICQAAAAALCQAAAAAACQAAAAAGAQAAAAADAQAAAAAEAQAAAAACAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAACQAAAAADCQAAAAAHCQAAAAAHCQAAAAACCQAAAAACCQAAAAABCQAAAAAKCQAAAAAFCQAAAAALAQAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAACAQAAAAAEAQAAAAAECQAAAAALCQAAAAAGCQAAAAAKCQAAAAAKCQAAAAALCQAAAAAICQAAAAAGCQAAAAABCQAAAAAECQAAAAAMAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAQAAAAAACQAAAAAHCQAAAAAKCQAAAAACCQAAAAACCQAAAAAICQAAAAAGCQAAAAAECQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAFCQAAAAAKAQAAAAABAQAAAAAEAQAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAABAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAKCQAAAAANAQAAAAADAQAAAAADAQAAAAAEAQAAAAABAQAAAAACAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAKCQAAAAAKCQAAAAACCQAAAAAIAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAEAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAGCQAAAAALCQAAAAAECQAAAAAEAQAAAAAEAQAAAAAAAQAAAAABAQAAAAACAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAABAAAAAAAAAAAAAAAACQAAAAAACQAAAAACCQAAAAAGCQAAAAALCQAAAAAACQAAAAAMAQAAAAAEAQAAAAABAQAAAAACAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAABAQAAAAABAAAAAAAACQAAAAAGCQAAAAACCQAAAAALCQAAAAAHCQAAAAAACQAAAAAFCQAAAAAECQAAAAABCQAAAAAIAQAAAAABAQAAAAAEAQAAAAADAQAAAAABAQAAAAACAQAAAAABAQAAAAAECQAAAAAICQAAAAAKCQAAAAAGCQAAAAAKCQAAAAALCQAAAAABCQAAAAABCQAAAAAFCQAAAAAICQAAAAALAQAAAAABAQAAAAADAQAAAAABAQAAAAACAQAAAAAEAQAAAAACCQAAAAAKCQAAAAAJCQAAAAAKCQAAAAAHCQAAAAAGCQAAAAAKCQAAAAAKCQAAAAAHCQAAAAACCQAAAAAJCQAAAAAFCQAAAAANCQAAAAAEAQAAAAADAQAAAAADAQAAAAAA
version: 6
2,-3:
ind: 2,-3
- tiles: CQAAAAAJCQAAAAAECQAAAAAACQAAAAAHCQAAAAAACQAAAAAMCQAAAAACCQAAAAADCQAAAAALCQAAAAANCQAAAAAGCQAAAAAKCQAAAAACCQAAAAAMAQAAAAADAQAAAAADCQAAAAAECQAAAAAACQAAAAAKCQAAAAANCQAAAAABCQAAAAAECQAAAAADCQAAAAAHCQAAAAAKCQAAAAAICQAAAAANCQAAAAAKCQAAAAACCQAAAAALCQAAAAAMCQAAAAAHCQAAAAAICQAAAAAJCQAAAAAFCQAAAAANCQAAAAABCQAAAAABCQAAAAAMCQAAAAANCQAAAAABCQAAAAAACQAAAAAGCQAAAAANCQAAAAANCQAAAAAICQAAAAAACQAAAAAICQAAAAAICQAAAAAECQAAAAAMCQAAAAAGCQAAAAACCQAAAAABCQAAAAAGCQAAAAAACQAAAAAACQAAAAAFCQAAAAAGCQAAAAAECQAAAAAKCQAAAAAACQAAAAANCQAAAAAECQAAAAADCQAAAAAMCQAAAAALCQAAAAAICQAAAAALCQAAAAAKCQAAAAAACQAAAAAICQAAAAAGCQAAAAALCQAAAAAKCQAAAAAFCQAAAAAMCQAAAAAACQAAAAANCQAAAAADCQAAAAAICQAAAAAICQAAAAAACQAAAAAKCQAAAAABCQAAAAAFCQAAAAABCQAAAAANCQAAAAANCQAAAAADCQAAAAAFCQAAAAALCQAAAAAFCQAAAAAFCQAAAAAACQAAAAALCQAAAAACCQAAAAADCQAAAAABCQAAAAANCQAAAAAKCQAAAAAECQAAAAAACQAAAAAHCQAAAAACCQAAAAAHCQAAAAADCQAAAAALCQAAAAADCQAAAAAFCQAAAAABCQAAAAACCQAAAAALCQAAAAAGCQAAAAAKCQAAAAAKCQAAAAACCQAAAAALCQAAAAALCQAAAAANCQAAAAANCQAAAAAGCQAAAAAGCQAAAAAFCQAAAAAGCQAAAAAICQAAAAABCQAAAAAACQAAAAABCQAAAAANCQAAAAAJCQAAAAAACQAAAAAECQAAAAAECQAAAAAKCQAAAAAACQAAAAAJCQAAAAABCQAAAAAJCQAAAAAACQAAAAACCQAAAAAMCQAAAAAMCQAAAAAACQAAAAAMCQAAAAADCQAAAAAFCQAAAAAJCQAAAAALCQAAAAAICQAAAAAGCQAAAAALCQAAAAABCQAAAAAACQAAAAAKCQAAAAANCQAAAAAFCQAAAAAHCQAAAAAJCQAAAAAACQAAAAANCQAAAAACCQAAAAALCQAAAAANCQAAAAAACQAAAAAFCQAAAAABCQAAAAACCQAAAAALCQAAAAADCQAAAAANCQAAAAAACQAAAAANCQAAAAACCQAAAAAICQAAAAAFCQAAAAABCQAAAAABCQAAAAANCQAAAAAFCQAAAAALCQAAAAADCQAAAAAHCQAAAAABCQAAAAAKCQAAAAAJCQAAAAACCQAAAAAHCQAAAAALCQAAAAACCQAAAAALCQAAAAAECQAAAAABCQAAAAABCQAAAAAKCQAAAAAACQAAAAAJCQAAAAAJCQAAAAAJCQAAAAAGCQAAAAAECQAAAAAECQAAAAANCQAAAAAICQAAAAAACQAAAAAGCQAAAAADCQAAAAAGCQAAAAAKCQAAAAAHCQAAAAACCQAAAAAFCQAAAAADCQAAAAAGCQAAAAAMCQAAAAANCQAAAAACCQAAAAAECQAAAAADCQAAAAANCQAAAAALCQAAAAANCQAAAAADCQAAAAAICQAAAAAGCQAAAAAKCQAAAAAGCQAAAAAECQAAAAAGCQAAAAADCQAAAAAKCQAAAAABCQAAAAALCQAAAAANCQAAAAAFCQAAAAAGCQAAAAAKCQAAAAADCQAAAAAMCQAAAAADCQAAAAAGCQAAAAAKCQAAAAAMCQAAAAANCQAAAAAKCQAAAAAICQAAAAAACQAAAAAGCQAAAAAJCQAAAAAMCQAAAAANCQAAAAAJCQAAAAABCQAAAAALCQAAAAAICQAAAAAN
+ tiles: CQAAAAAHCQAAAAALCQAAAAAMCQAAAAAHCQAAAAAACQAAAAAJCQAAAAAKCQAAAAAHCQAAAAAFCQAAAAABCQAAAAALCQAAAAAGCQAAAAANCQAAAAANAQAAAAAEAQAAAAABCQAAAAAFCQAAAAAACQAAAAAFCQAAAAAECQAAAAAGCQAAAAAECQAAAAAICQAAAAAHCQAAAAACCQAAAAAICQAAAAAECQAAAAAECQAAAAAKCQAAAAACCQAAAAAACQAAAAANCQAAAAAJCQAAAAAGCQAAAAADCQAAAAAKCQAAAAALCQAAAAAGCQAAAAANCQAAAAACCQAAAAAACQAAAAAFCQAAAAALCQAAAAANCQAAAAAKCQAAAAAKCQAAAAAFCQAAAAALCQAAAAADCQAAAAALCQAAAAADCQAAAAAFCQAAAAAECQAAAAALCQAAAAAKCQAAAAAHCQAAAAAICQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAANCQAAAAAICQAAAAANCQAAAAAHCQAAAAALCQAAAAABCQAAAAADCQAAAAAKCQAAAAAKCQAAAAAACQAAAAAMCQAAAAAICQAAAAAGCQAAAAAGCQAAAAAHCQAAAAADCQAAAAAECQAAAAAACQAAAAAMCQAAAAAICQAAAAAJCQAAAAANCQAAAAALCQAAAAAGCQAAAAABCQAAAAACCQAAAAALCQAAAAAECQAAAAAICQAAAAAJCQAAAAABCQAAAAAICQAAAAACCQAAAAAHCQAAAAABCQAAAAAKCQAAAAAGCQAAAAABCQAAAAAICQAAAAANCQAAAAALCQAAAAAHCQAAAAABCQAAAAAMCQAAAAAMCQAAAAAICQAAAAAMCQAAAAALCQAAAAAACQAAAAANCQAAAAABCQAAAAACCQAAAAANCQAAAAANCQAAAAAFCQAAAAAGCQAAAAAACQAAAAAKCQAAAAADCQAAAAAHCQAAAAAACQAAAAAACQAAAAADCQAAAAAGCQAAAAAGCQAAAAAECQAAAAAKCQAAAAAACQAAAAANCQAAAAAGCQAAAAAFCQAAAAACCQAAAAAMCQAAAAAJCQAAAAAICQAAAAAECQAAAAAECQAAAAAHCQAAAAACCQAAAAANCQAAAAAFCQAAAAAHCQAAAAAHCQAAAAAMCQAAAAAJCQAAAAAGCQAAAAAMCQAAAAAGCQAAAAAECQAAAAAFCQAAAAABCQAAAAANCQAAAAAACQAAAAACCQAAAAACCQAAAAAICQAAAAALCQAAAAAFCQAAAAAGCQAAAAADCQAAAAAECQAAAAAICQAAAAAFCQAAAAAKCQAAAAABCQAAAAACCQAAAAAMCQAAAAANCQAAAAADCQAAAAABCQAAAAAFCQAAAAANCQAAAAAICQAAAAAJCQAAAAAACQAAAAAJCQAAAAAJCQAAAAAFCQAAAAALCQAAAAAGCQAAAAAFCQAAAAALCQAAAAADCQAAAAACCQAAAAAJCQAAAAAHCQAAAAADCQAAAAAJCQAAAAACCQAAAAALCQAAAAAACQAAAAAGCQAAAAAHCQAAAAAICQAAAAAKCQAAAAACCQAAAAAJCQAAAAAECQAAAAAJCQAAAAAMCQAAAAAHCQAAAAAGCQAAAAAKCQAAAAAFCQAAAAAMCQAAAAAJCQAAAAAFCQAAAAAGCQAAAAAJCQAAAAAFCQAAAAAFCQAAAAACCQAAAAAMCQAAAAAICQAAAAANCQAAAAANCQAAAAAICQAAAAAJCQAAAAADCQAAAAAICQAAAAABCQAAAAANCQAAAAAMCQAAAAALCQAAAAAFCQAAAAANCQAAAAAICQAAAAACCQAAAAAECQAAAAAFCQAAAAAMCQAAAAAMCQAAAAAJCQAAAAABCQAAAAABCQAAAAAECQAAAAAJCQAAAAAMCQAAAAAKCQAAAAAHCQAAAAAGCQAAAAAECQAAAAAKCQAAAAAGCQAAAAAICQAAAAAECQAAAAABCQAAAAAJCQAAAAAHCQAAAAANCQAAAAABCQAAAAALCQAAAAANCQAAAAAK
version: 6
3,-4:
ind: 3,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAAEAQAAAAACAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAEAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAABAQAAAAAEAQAAAAABAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,-3:
ind: 3,-3
- tiles: AQAAAAACAQAAAAAAAQAAAAACAQAAAAAEAQAAAAAEAQAAAAACAQAAAAADAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADAQAAAAAEAQAAAAADAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAFAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAAEAQAAAAAEAQAAAAABAQAAAAADAQAAAAADAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAHCQAAAAAFAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADCQAAAAAECQAAAAALCQAAAAAJAQAAAAAEAQAAAAABAQAAAAACAQAAAAAAAQAAAAACAQAAAAABAQAAAAAEAQAAAAABAQAAAAACAQAAAAADAAAAAAAAAAAAAAAACQAAAAAKCQAAAAAACQAAAAAKCQAAAAAKAQAAAAACAQAAAAACAQAAAAABAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAADAQAAAAADAQAAAAAEAAAAAAAACQAAAAAGCQAAAAANCQAAAAAFCQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAAAAAAAACQAAAAAACQAAAAAECQAAAAAACQAAAAAACQAAAAALCQAAAAALCQAAAAALAQAAAAADAQAAAAACAQAAAAADAQAAAAADAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAAAAAAAAAACQAAAAAJCQAAAAAHCQAAAAAHCQAAAAAHCQAAAAANCQAAAAALCQAAAAAEAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAABAQAAAAABCQAAAAAICQAAAAANCQAAAAANCQAAAAADCQAAAAABCQAAAAAICQAAAAAFAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAEAQAAAAABCQAAAAAACQAAAAADCQAAAAAMCQAAAAAECQAAAAAGCQAAAAAECQAAAAAJAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAABAQAAAAAAAQAAAAADAQAAAAACCQAAAAAJCQAAAAACCQAAAAAGCQAAAAABCQAAAAAHCQAAAAAGCQAAAAAGCQAAAAAICQAAAAABCQAAAAADCQAAAAANAQAAAAACAQAAAAADAQAAAAACAQAAAAADAQAAAAAECQAAAAAMCQAAAAAKCQAAAAABCQAAAAANCQAAAAACCQAAAAAACQAAAAAHCQAAAAAKCQAAAAANCQAAAAACCQAAAAAJAQAAAAACAQAAAAAEAQAAAAABAQAAAAADAQAAAAAECQAAAAAACQAAAAAECQAAAAADCQAAAAAFCQAAAAAFCQAAAAAJCQAAAAACCQAAAAAFCQAAAAAFCQAAAAADCQAAAAANAQAAAAACAQAAAAAEAQAAAAACAQAAAAACAQAAAAADCQAAAAACCQAAAAAFCQAAAAAGCQAAAAANCQAAAAAFCQAAAAAMCQAAAAAACQAAAAAJCQAAAAACCQAAAAAMAQAAAAACAQAAAAAAAQAAAAAEAQAAAAABAQAAAAADAQAAAAAECQAAAAAHCQAAAAAMCQAAAAACCQAAAAAMCQAAAAAICQAAAAAICQAAAAAICQAAAAACCQAAAAAGCQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAAAAAAAA
+ tiles: AQAAAAADAQAAAAAEAQAAAAACAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAFAQAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAANAQAAAAACAQAAAAACAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAACCQAAAAALAQAAAAACAQAAAAAEAQAAAAABAQAAAAADAQAAAAADAQAAAAAEAQAAAAABAQAAAAACAQAAAAADAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADCQAAAAAHCQAAAAAMCQAAAAANAQAAAAADAQAAAAABAQAAAAADAQAAAAAEAQAAAAADAQAAAAAEAQAAAAADAQAAAAADAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAACQAAAAALCQAAAAADCQAAAAAKCQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAAAAAAAACQAAAAAFCQAAAAAJCQAAAAAFCQAAAAAKAQAAAAACAQAAAAAEAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAABAAAAAAAACQAAAAAKCQAAAAACCQAAAAAHCQAAAAAECQAAAAAHCQAAAAAMCQAAAAACAQAAAAAEAQAAAAAEAQAAAAADAQAAAAADAQAAAAABAQAAAAABAQAAAAACAQAAAAAEAAAAAAAACQAAAAAKCQAAAAAFCQAAAAAFCQAAAAAJCQAAAAAHCQAAAAAFCQAAAAAEAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAACAQAAAAAEAQAAAAABAQAAAAABAQAAAAADCQAAAAAACQAAAAAFCQAAAAAJCQAAAAAMCQAAAAAACQAAAAACCQAAAAAJAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAAEAQAAAAABCQAAAAAHCQAAAAAKCQAAAAAKCQAAAAAHCQAAAAAACQAAAAADCQAAAAAIAQAAAAABAQAAAAAEAQAAAAACAQAAAAAEAQAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAADCQAAAAAFCQAAAAALCQAAAAADCQAAAAAMCQAAAAAJCQAAAAANCQAAAAAECQAAAAAMCQAAAAAACQAAAAAGCQAAAAAMAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAAACQAAAAABCQAAAAAJCQAAAAAMCQAAAAADCQAAAAANCQAAAAAKCQAAAAADCQAAAAAGCQAAAAANCQAAAAAHCQAAAAAFAQAAAAABAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAECQAAAAAFCQAAAAAACQAAAAAECQAAAAAACQAAAAAMCQAAAAAECQAAAAABCQAAAAADCQAAAAAJCQAAAAAJCQAAAAADAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAACQAAAAACCQAAAAABCQAAAAAECQAAAAAMCQAAAAAECQAAAAALCQAAAAAKCQAAAAAGCQAAAAAHCQAAAAAIAQAAAAADAQAAAAAAAQAAAAAEAQAAAAADAQAAAAADAQAAAAAECQAAAAACCQAAAAAFCQAAAAALCQAAAAAJCQAAAAACCQAAAAAKCQAAAAALCQAAAAAACQAAAAALCQAAAAAJAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAAAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: CQAAAAAHCQAAAAAECQAAAAAICQAAAAACCQAAAAAFCQAAAAAHCQAAAAABCQAAAAAGCQAAAAAMCQAAAAAMAQAAAAACAQAAAAADAQAAAAAAAQAAAAAEAAAAAAAAAAAAAAAACQAAAAAJCQAAAAAKCQAAAAADCQAAAAAJCQAAAAABCQAAAAACCQAAAAAKCQAAAAAMCQAAAAAKCQAAAAAHAQAAAAABAQAAAAADAQAAAAAAAQAAAAAEAAAAAAAAAAAAAAAACQAAAAABCQAAAAABCQAAAAAICQAAAAABCQAAAAAICQAAAAACCQAAAAAEAQAAAAABAQAAAAAEAQAAAAABAQAAAAACAQAAAAABAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAACQAAAAABCQAAAAABCQAAAAAICQAAAAABCQAAAAACCQAAAAANCQAAAAAFAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAEAQAAAAABAQAAAAADAAAAAAAAAAAAAAAACQAAAAAACQAAAAAICQAAAAABCQAAAAAMCQAAAAADCQAAAAAHCQAAAAALAQAAAAACAQAAAAABAQAAAAABAQAAAAAEAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAMCQAAAAAACQAAAAADCQAAAAAECQAAAAAFCQAAAAAACQAAAAAMAQAAAAADAQAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAFCQAAAAAMCQAAAAAKCQAAAAABCQAAAAAICQAAAAAMCQAAAAABAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAGCQAAAAAECQAAAAAHCQAAAAAECQAAAAAJCQAAAAAJCQAAAAAEAQAAAAADAQAAAAACAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAHCQAAAAAACQAAAAAFCQAAAAAICQAAAAALCQAAAAALCQAAAAAEAQAAAAABAQAAAAAEAQAAAAAAAQAAAAADAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADCQAAAAALCQAAAAAECQAAAAAACQAAAAAHCQAAAAAACQAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAICQAAAAACCQAAAAADCQAAAAANCQAAAAANCQAAAAABCQAAAAAMAQAAAAAAAQAAAAACAQAAAAAEAQAAAAABAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAACQAAAAALCQAAAAAECQAAAAAGCQAAAAAMCQAAAAALCQAAAAABCQAAAAAKAQAAAAACAQAAAAACAQAAAAACAQAAAAAEAQAAAAAEAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAABEwAAAAABCQAAAAAACQAAAAAGCQAAAAADCQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAEHAAAAAADEwAAAAABCQAAAAAGCQAAAAAICQAAAAAJAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAABHAAAAAABEwAAAAADCQAAAAAKCQAAAAAFCQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAADAQAAAAABAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAADEwAAAAAACQAAAAADCQAAAAAGCQAAAAABAQAAAAACAQAAAAAEAQAAAAADAQAAAAADAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: CQAAAAAFCQAAAAAMCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAAGCQAAAAAKCQAAAAAICQAAAAALAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAACQAAAAANCQAAAAALCQAAAAANCQAAAAANCQAAAAAGCQAAAAAGCQAAAAAACQAAAAAMCQAAAAAJCQAAAAAJAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAACQAAAAAECQAAAAABCQAAAAAGCQAAAAADCQAAAAAECQAAAAANCQAAAAAKAQAAAAADAQAAAAAEAQAAAAAEAQAAAAABAQAAAAADAQAAAAABAQAAAAACAAAAAAAAAAAAAAAACQAAAAAFCQAAAAAECQAAAAALCQAAAAAHCQAAAAABCQAAAAALCQAAAAADAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAADAQAAAAACAQAAAAABAAAAAAAAAAAAAAAACQAAAAAFCQAAAAACCQAAAAANCQAAAAANCQAAAAALCQAAAAACCQAAAAAIAQAAAAABAQAAAAABAQAAAAABAQAAAAAEAQAAAAABAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADCQAAAAAGCQAAAAAKCQAAAAAKCQAAAAAECQAAAAACCQAAAAADAQAAAAAEAQAAAAAEAQAAAAABAQAAAAABAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAHCQAAAAAECQAAAAADCQAAAAAJCQAAAAAICQAAAAAICQAAAAAAAQAAAAAEAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAKCQAAAAAFCQAAAAAHCQAAAAAMCQAAAAALCQAAAAAACQAAAAABAQAAAAACAQAAAAACAQAAAAABAQAAAAACAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAHCQAAAAACCQAAAAAFCQAAAAAKCQAAAAAICQAAAAAHCQAAAAACAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAEAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAMCQAAAAALCQAAAAABCQAAAAACCQAAAAABCQAAAAAGCQAAAAANAQAAAAACAQAAAAABAQAAAAADAQAAAAAEAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAECQAAAAAFCQAAAAAHCQAAAAAGCQAAAAACCQAAAAAJCQAAAAAGAQAAAAABAQAAAAADAQAAAAADAQAAAAAEAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAECQAAAAABCQAAAAALCQAAAAAFCQAAAAALCQAAAAACCQAAAAAJAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAABEwAAAAAAEwAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAAFAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAACHAAAAAADEwAAAAABCQAAAAANCQAAAAAGCQAAAAAHAQAAAAACAQAAAAAEAQAAAAAEAQAAAAACAQAAAAAEAQAAAAAEAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAABEwAAAAADCQAAAAAFCQAAAAAMCQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAACEwAAAAADEwAAAAADCQAAAAAECQAAAAAGCQAAAAALAQAAAAAEAQAAAAACAQAAAAABAQAAAAACAQAAAAAEAQAAAAAAAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: EwAAAAADEwAAAAAAEwAAAAADCQAAAAAHCQAAAAABCQAAAAAJAQAAAAAEAQAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAHAAAAAAEHAAAAAABEwAAAAAACQAAAAAFCQAAAAAGCQAAAAAACQAAAAAECQAAAAAMCQAAAAAICQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAABAAAAAAAAHAAAAAAAHAAAAAACEwAAAAACCQAAAAAACQAAAAAHCQAAAAACCQAAAAAFCQAAAAABCQAAAAALCQAAAAAFAQAAAAACAQAAAAABAQAAAAACAQAAAAAEAQAAAAAAAQAAAAACEwAAAAABEwAAAAACEwAAAAACCQAAAAAFCQAAAAABCQAAAAAHCQAAAAADCQAAAAAGCQAAAAALCQAAAAALAQAAAAAEAQAAAAAEAQAAAAADAQAAAAABAQAAAAAEAQAAAAAACQAAAAAACQAAAAAHCQAAAAAHCQAAAAAACQAAAAALCQAAAAAICQAAAAALCQAAAAAFCQAAAAAFCQAAAAANCQAAAAAKAQAAAAABAQAAAAACAQAAAAABAQAAAAAAAQAAAAAACQAAAAAHCQAAAAAMCQAAAAAHCQAAAAANCQAAAAAECQAAAAAACQAAAAABCQAAAAAICQAAAAALCQAAAAAFCQAAAAAHCQAAAAAACQAAAAALCQAAAAANAQAAAAAEAQAAAAABCQAAAAAKCQAAAAAJCQAAAAADCQAAAAALCQAAAAAGCQAAAAAACQAAAAAFCQAAAAAMCQAAAAAFCQAAAAAMCQAAAAAICQAAAAACCQAAAAAJCQAAAAAJAQAAAAAEAQAAAAABCQAAAAAACQAAAAAACQAAAAAGCQAAAAABCQAAAAADCQAAAAAECQAAAAAICQAAAAAGCQAAAAABCQAAAAAECQAAAAANCQAAAAAKCQAAAAAICQAAAAADAQAAAAADAQAAAAAECQAAAAAGCQAAAAAKCQAAAAAICQAAAAAECQAAAAALCQAAAAAACQAAAAAKCQAAAAAECQAAAAAHCQAAAAAHCQAAAAAMCQAAAAALCQAAAAACCQAAAAAKAQAAAAABAQAAAAACCQAAAAALCQAAAAABCQAAAAAJCQAAAAAMCQAAAAAFCQAAAAALCQAAAAACCQAAAAACCQAAAAAICQAAAAAHCQAAAAAKCQAAAAAMCQAAAAAECQAAAAABAQAAAAAAAQAAAAACCQAAAAAECQAAAAAGCQAAAAABCQAAAAAICQAAAAADCQAAAAANCQAAAAALCQAAAAAHCQAAAAACCQAAAAAJCQAAAAAFCQAAAAADCQAAAAADCQAAAAACCQAAAAACAQAAAAADCQAAAAAGCQAAAAAJCQAAAAAGCQAAAAADCQAAAAAACQAAAAADCQAAAAAFCQAAAAANCQAAAAAMCQAAAAANCQAAAAAGCQAAAAAACQAAAAAICQAAAAAKCQAAAAACAQAAAAADCQAAAAAJCQAAAAADCQAAAAALCQAAAAAFCQAAAAANCQAAAAAACQAAAAAFCQAAAAAECQAAAAANCQAAAAAGCQAAAAAICQAAAAANCQAAAAANCQAAAAABAQAAAAADAQAAAAAACQAAAAAECQAAAAAFCQAAAAAJCQAAAAADCQAAAAAMCQAAAAAACQAAAAAMCQAAAAADCQAAAAAHCQAAAAAFCQAAAAALCQAAAAAECQAAAAAICQAAAAANAQAAAAABAQAAAAAACQAAAAAGCQAAAAAJCQAAAAADCQAAAAACCQAAAAAJCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAAHCQAAAAABCQAAAAAICQAAAAAACQAAAAABAQAAAAADAQAAAAADCQAAAAACCQAAAAALCQAAAAALCQAAAAALCQAAAAAECQAAAAADCQAAAAAHCQAAAAAGCQAAAAAKCQAAAAAECQAAAAAHCQAAAAABCQAAAAAMCQAAAAAFAQAAAAACAQAAAAAC
+ tiles: EwAAAAAAEwAAAAABEwAAAAADCQAAAAAFCQAAAAAJCQAAAAABAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAHAAAAAABHAAAAAABEwAAAAAACQAAAAACCQAAAAACCQAAAAAMCQAAAAAJCQAAAAAICQAAAAADCQAAAAALAQAAAAADAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAAAAAAAAAAHAAAAAABHAAAAAAEEwAAAAABCQAAAAAHCQAAAAAECQAAAAABCQAAAAAECQAAAAAICQAAAAAJCQAAAAADAQAAAAAEAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAACEwAAAAAAEwAAAAAAEwAAAAAACQAAAAAGCQAAAAAFCQAAAAAGCQAAAAALCQAAAAAMCQAAAAALCQAAAAAEAQAAAAACAQAAAAADAQAAAAAEAQAAAAABAQAAAAAAAQAAAAAACQAAAAAHCQAAAAABCQAAAAADCQAAAAABCQAAAAAECQAAAAACCQAAAAAICQAAAAAJCQAAAAAECQAAAAAHCQAAAAAEAQAAAAAEAQAAAAACAQAAAAAEAQAAAAABAQAAAAADCQAAAAANCQAAAAAJCQAAAAAJCQAAAAAACQAAAAAFCQAAAAAFCQAAAAAJCQAAAAALCQAAAAAECQAAAAAFCQAAAAAICQAAAAAICQAAAAACCQAAAAAHAQAAAAADAQAAAAADCQAAAAAKCQAAAAAJCQAAAAAACQAAAAAICQAAAAAJCQAAAAAECQAAAAAACQAAAAAJCQAAAAAFCQAAAAAJCQAAAAAICQAAAAALCQAAAAAMCQAAAAAKAQAAAAAEAQAAAAACCQAAAAABCQAAAAAGCQAAAAALCQAAAAAMCQAAAAADCQAAAAAACQAAAAANCQAAAAAACQAAAAAFCQAAAAAECQAAAAAJCQAAAAALCQAAAAAECQAAAAACAQAAAAABAQAAAAAECQAAAAAHCQAAAAAHCQAAAAAICQAAAAAHCQAAAAANCQAAAAAJCQAAAAAICQAAAAAJCQAAAAAHCQAAAAAKCQAAAAALCQAAAAADCQAAAAAECQAAAAAAAQAAAAACAQAAAAABCQAAAAALCQAAAAADCQAAAAAFCQAAAAANCQAAAAAKCQAAAAAICQAAAAADCQAAAAAACQAAAAAMCQAAAAAFCQAAAAANCQAAAAAECQAAAAAHCQAAAAADAQAAAAADAQAAAAADCQAAAAAACQAAAAAHCQAAAAAKCQAAAAANCQAAAAAHCQAAAAAKCQAAAAAHCQAAAAADCQAAAAAECQAAAAANCQAAAAABCQAAAAANCQAAAAADCQAAAAACCQAAAAAKAQAAAAAACQAAAAAMCQAAAAACCQAAAAAMCQAAAAADCQAAAAADCQAAAAAJCQAAAAABCQAAAAAJCQAAAAAACQAAAAAJCQAAAAAFCQAAAAACCQAAAAADCQAAAAABCQAAAAACAQAAAAACCQAAAAAACQAAAAAHCQAAAAAMCQAAAAALCQAAAAALCQAAAAAMCQAAAAACCQAAAAAECQAAAAABCQAAAAANCQAAAAAICQAAAAAACQAAAAAMCQAAAAAFAQAAAAACAQAAAAADCQAAAAACCQAAAAAGCQAAAAANCQAAAAAGCQAAAAAACQAAAAAKCQAAAAAKCQAAAAACCQAAAAAHCQAAAAAGCQAAAAAHCQAAAAAKCQAAAAAACQAAAAADAQAAAAAEAQAAAAADCQAAAAAKCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAALCQAAAAAGCQAAAAAHCQAAAAAFCQAAAAAKCQAAAAAACQAAAAAKCQAAAAAEAQAAAAACAQAAAAABCQAAAAACCQAAAAAECQAAAAAJCQAAAAAHCQAAAAALCQAAAAAICQAAAAAJCQAAAAAECQAAAAADCQAAAAANCQAAAAAFCQAAAAAGCQAAAAAICQAAAAAKAQAAAAACAQAAAAAD
version: 6
2,-2:
ind: 2,-2
- tiles: CQAAAAAMCQAAAAAICQAAAAAJCQAAAAAGCQAAAAAHCQAAAAAKCQAAAAAACQAAAAADCQAAAAANCQAAAAABCQAAAAAACQAAAAAICQAAAAAJCQAAAAAJCQAAAAACCQAAAAANCQAAAAAECQAAAAAICQAAAAAECQAAAAAFCQAAAAABCQAAAAABCQAAAAAKCQAAAAAGCQAAAAAMCQAAAAAMCQAAAAAFCQAAAAACCQAAAAADCQAAAAALCQAAAAADCQAAAAAKCQAAAAAJCQAAAAAICQAAAAAMCQAAAAABCQAAAAAACQAAAAAACQAAAAAHCQAAAAAJCQAAAAAFCQAAAAAHCQAAAAAGCQAAAAAHCQAAAAAHCQAAAAANCQAAAAAKCQAAAAAECQAAAAABCQAAAAACCQAAAAAKCQAAAAAECQAAAAADCQAAAAAGCQAAAAAJCQAAAAAKCQAAAAAKCQAAAAAHCQAAAAANCQAAAAAECQAAAAALCQAAAAALCQAAAAAFCQAAAAACCQAAAAADCQAAAAAMCQAAAAALCQAAAAABCQAAAAANCQAAAAANCQAAAAALCQAAAAAGCQAAAAACCQAAAAADCQAAAAAICQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAALCQAAAAAMCQAAAAABCQAAAAAMCQAAAAAHCQAAAAAFCQAAAAADCQAAAAAMCQAAAAAACQAAAAANCQAAAAABCQAAAAABCQAAAAAHCQAAAAADCQAAAAALCQAAAAANCQAAAAANCQAAAAAKCQAAAAABCQAAAAAKCQAAAAACCQAAAAAJCQAAAAALCQAAAAAJCQAAAAANCQAAAAAHCQAAAAAACQAAAAACCQAAAAAMCQAAAAAFCQAAAAANCQAAAAAGCQAAAAAACQAAAAANCQAAAAAECQAAAAAFCQAAAAAKCQAAAAADCQAAAAABCQAAAAAJCQAAAAAGCQAAAAANCQAAAAAKCQAAAAABCQAAAAAMCQAAAAAHCQAAAAAECQAAAAACCQAAAAAJCQAAAAAKCQAAAAALCQAAAAALCQAAAAAGCQAAAAABCQAAAAAJCQAAAAAKCQAAAAAJCQAAAAAMCQAAAAAGCQAAAAACCQAAAAAGCQAAAAAKCQAAAAACCQAAAAAACQAAAAAGCQAAAAAFCQAAAAAGCQAAAAAFCQAAAAAGCQAAAAAECQAAAAACCQAAAAADCQAAAAAICQAAAAADCQAAAAANCQAAAAAICQAAAAABCQAAAAAICQAAAAAMCQAAAAABCQAAAAAJCQAAAAADCQAAAAABCQAAAAAGCQAAAAABCQAAAAANCQAAAAADCQAAAAAGCQAAAAALCQAAAAAJCQAAAAAJCQAAAAAECQAAAAAICQAAAAALCQAAAAAMCQAAAAAGCQAAAAAECQAAAAAMCQAAAAAMCQAAAAAJCQAAAAAJCQAAAAAMCQAAAAAICQAAAAAFCQAAAAANCQAAAAAJCQAAAAAGCQAAAAANCQAAAAAKCQAAAAAKCQAAAAAFCQAAAAAJCQAAAAAFCQAAAAAMCQAAAAABCQAAAAAMCQAAAAAKCQAAAAALCQAAAAAECQAAAAANCQAAAAAHCQAAAAAFCQAAAAAEEwAAAAACEwAAAAABEwAAAAAAEwAAAAAAEwAAAAACEwAAAAADCQAAAAANCQAAAAAJCQAAAAAFCQAAAAAFCQAAAAAACQAAAAAICQAAAAAMCQAAAAAMCQAAAAANCQAAAAAJEwAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAAEHAAAAAAECQAAAAAECQAAAAADCQAAAAAFCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAAFCQAAAAADCQAAAAADEwAAAAADHAAAAAACHAAAAAAFHAAAAAACHAAAAAAAHAAAAAABCQAAAAACCQAAAAAHCQAAAAADCQAAAAACCQAAAAAFCQAAAAABCQAAAAAMCQAAAAAFCQAAAAAECQAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAACEwAAAAABEwAAAAAB
+ tiles: CQAAAAAMCQAAAAAACQAAAAACCQAAAAAGCQAAAAACCQAAAAAGCQAAAAAECQAAAAAKCQAAAAABCQAAAAAFCQAAAAAGCQAAAAALCQAAAAAACQAAAAABCQAAAAADCQAAAAAHCQAAAAANCQAAAAAFCQAAAAAKCQAAAAAMCQAAAAAMCQAAAAAACQAAAAABCQAAAAAGCQAAAAALCQAAAAAMCQAAAAABCQAAAAABCQAAAAANCQAAAAAECQAAAAAJCQAAAAANCQAAAAADCQAAAAAJCQAAAAABCQAAAAANCQAAAAAFCQAAAAANCQAAAAAICQAAAAAECQAAAAAECQAAAAAHCQAAAAANCQAAAAANCQAAAAAICQAAAAAJCQAAAAABCQAAAAAGCQAAAAADCQAAAAADCQAAAAABCQAAAAAFCQAAAAAACQAAAAAMCQAAAAAICQAAAAAECQAAAAALCQAAAAAECQAAAAALCQAAAAANCQAAAAAICQAAAAAMCQAAAAAKCQAAAAAACQAAAAAJCQAAAAAGCQAAAAADCQAAAAACCQAAAAAACQAAAAALCQAAAAAMCQAAAAAICQAAAAANCQAAAAAJCQAAAAANCQAAAAAFCQAAAAADCQAAAAAICQAAAAAHCQAAAAADCQAAAAACCQAAAAAMCQAAAAAJCQAAAAABCQAAAAAECQAAAAAKCQAAAAADCQAAAAAFCQAAAAAECQAAAAAHCQAAAAABCQAAAAAJCQAAAAAECQAAAAAACQAAAAADCQAAAAAJCQAAAAAGCQAAAAAICQAAAAAACQAAAAAACQAAAAAECQAAAAAKCQAAAAAECQAAAAAACQAAAAAMCQAAAAAGCQAAAAAGCQAAAAAHCQAAAAAMCQAAAAAJCQAAAAALCQAAAAAKCQAAAAAJCQAAAAAACQAAAAAGCQAAAAAACQAAAAACCQAAAAALCQAAAAAACQAAAAAJCQAAAAACCQAAAAAGCQAAAAAECQAAAAADCQAAAAAMCQAAAAAHCQAAAAAGCQAAAAAECQAAAAAHCQAAAAACCQAAAAAHCQAAAAAECQAAAAAGCQAAAAABCQAAAAAKCQAAAAAGCQAAAAALCQAAAAADCQAAAAACCQAAAAAJCQAAAAADCQAAAAAHCQAAAAANCQAAAAAMCQAAAAAHCQAAAAAECQAAAAABCQAAAAAECQAAAAAJCQAAAAADCQAAAAALCQAAAAAACQAAAAACCQAAAAADCQAAAAANCQAAAAAGCQAAAAAICQAAAAALCQAAAAALCQAAAAACCQAAAAAKCQAAAAANCQAAAAAACQAAAAADCQAAAAAACQAAAAANCQAAAAAGCQAAAAAKCQAAAAANCQAAAAALCQAAAAADCQAAAAACCQAAAAAFCQAAAAAACQAAAAAJCQAAAAAACQAAAAAECQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAAJCQAAAAAACQAAAAAGCQAAAAAECQAAAAALCQAAAAAFCQAAAAAGCQAAAAAJCQAAAAAICQAAAAALCQAAAAAMCQAAAAADCQAAAAAICQAAAAAECQAAAAAKCQAAAAAHCQAAAAAFCQAAAAACEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAACCQAAAAAICQAAAAAFCQAAAAAACQAAAAAGCQAAAAABCQAAAAAKCQAAAAAJCQAAAAAGCQAAAAAGCQAAAAAGEwAAAAAAHAAAAAACHAAAAAAAHAAAAAAEHAAAAAAAHAAAAAADCQAAAAABCQAAAAANCQAAAAAMCQAAAAADCQAAAAANCQAAAAAICQAAAAALCQAAAAADCQAAAAAMCQAAAAAIEwAAAAACHAAAAAAFHAAAAAAFHAAAAAABHAAAAAAFHAAAAAACCQAAAAAECQAAAAAJCQAAAAACCQAAAAADCQAAAAAECQAAAAAICQAAAAAECQAAAAAFCQAAAAAKCQAAAAAEEwAAAAABEwAAAAACEwAAAAACEwAAAAABEwAAAAAAEwAAAAAB
version: 6
2,-1:
ind: 2,-1
- tiles: CQAAAAAFCQAAAAAJCQAAAAAJCQAAAAABCQAAAAAACQAAAAADCQAAAAAKCQAAAAACCQAAAAAHCQAAAAACEwAAAAADEwAAAAABEwAAAAABEwAAAAAAEwAAAAABEwAAAAADCQAAAAAICQAAAAANCQAAAAAGCQAAAAAICQAAAAACCQAAAAAMCQAAAAACCQAAAAAJCQAAAAANCQAAAAABEwAAAAACHAAAAAAEHAAAAAADHAAAAAAEHAAAAAADHAAAAAAFCQAAAAAECQAAAAAJCQAAAAAGCQAAAAANCQAAAAANCQAAAAAGCQAAAAAKCQAAAAAJCQAAAAAACQAAAAAFEwAAAAABHAAAAAAAHAAAAAAAHAAAAAAEHAAAAAACHAAAAAAECQAAAAADCQAAAAAGCQAAAAADCQAAAAAICQAAAAACCQAAAAALCQAAAAAFCQAAAAAKCQAAAAAECQAAAAABEwAAAAABEwAAAAABEwAAAAAAEwAAAAABEwAAAAACEwAAAAAACQAAAAAKCQAAAAAMCQAAAAAHCQAAAAAICQAAAAAFCQAAAAAFCQAAAAACCQAAAAAMCQAAAAANCQAAAAAHCQAAAAAACQAAAAACCQAAAAAHCQAAAAAHCQAAAAAFCQAAAAAHCQAAAAACCQAAAAAHCQAAAAAHCQAAAAACCQAAAAANCQAAAAAGCQAAAAAKCQAAAAAICQAAAAADCQAAAAADCQAAAAAHCQAAAAAJCQAAAAAECQAAAAANCQAAAAAFCQAAAAAJCQAAAAADCQAAAAAJCQAAAAALCQAAAAAGCQAAAAAJCQAAAAAFCQAAAAAJCQAAAAAECQAAAAANCQAAAAAICQAAAAAJCQAAAAAECQAAAAAKCQAAAAAGCQAAAAABCQAAAAAICQAAAAAJCQAAAAABCQAAAAAECQAAAAABCQAAAAANCQAAAAAMCQAAAAAFCQAAAAAHCQAAAAAJCQAAAAAJCQAAAAAHCQAAAAAJCQAAAAANCQAAAAANCQAAAAALCQAAAAAICQAAAAAMCQAAAAADCQAAAAAJCQAAAAAGCQAAAAAGCQAAAAAECQAAAAALCQAAAAAFCQAAAAAECQAAAAAICQAAAAAMCQAAAAADCQAAAAAGCQAAAAAICQAAAAAJCQAAAAACCQAAAAADCQAAAAAFCQAAAAAICQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAJCQAAAAAACQAAAAAICQAAAAAACQAAAAANCQAAAAADCQAAAAADCQAAAAAKCQAAAAAJCQAAAAAGCQAAAAALCQAAAAAECQAAAAAECQAAAAALCQAAAAAICQAAAAAACQAAAAAJCQAAAAALCQAAAAAECQAAAAACCQAAAAAKCQAAAAAJCQAAAAAKCQAAAAADCQAAAAAECQAAAAACCQAAAAADCQAAAAABCQAAAAAJCQAAAAAFCQAAAAACCQAAAAAKCQAAAAAGCQAAAAAFCQAAAAAACQAAAAAGCQAAAAAECQAAAAACCQAAAAAHCQAAAAADCQAAAAACCQAAAAAMCQAAAAAKCQAAAAAFCQAAAAABCQAAAAAMCQAAAAADCQAAAAAHCQAAAAAHCQAAAAAACQAAAAABCQAAAAAHCQAAAAALCQAAAAAJCQAAAAALCQAAAAAFCQAAAAADCQAAAAAJCQAAAAANCQAAAAAICQAAAAAFCQAAAAAFCQAAAAAECQAAAAAICQAAAAAHCQAAAAALCQAAAAANCQAAAAAACQAAAAANCQAAAAAICQAAAAANCQAAAAALCQAAAAACCQAAAAAFCQAAAAAECQAAAAAACQAAAAAHCQAAAAALCQAAAAANCQAAAAAHCQAAAAAJCQAAAAAECQAAAAABCQAAAAALCQAAAAAGCQAAAAACCQAAAAAECQAAAAAKCQAAAAAFCQAAAAAGCQAAAAAKCQAAAAAKCQAAAAANCQAAAAAECQAAAAAICQAAAAAECQAAAAAHCQAAAAABCQAAAAADCQAAAAAGCQAAAAACCQAAAAADCQAAAAANCQAAAAABCQAAAAAE
+ tiles: CQAAAAAHCQAAAAAICQAAAAALCQAAAAAACQAAAAAECQAAAAAFCQAAAAAICQAAAAAMCQAAAAAECQAAAAADEwAAAAABEwAAAAABEwAAAAABEwAAAAADEwAAAAADEwAAAAABCQAAAAALCQAAAAADCQAAAAAECQAAAAAGCQAAAAABCQAAAAALCQAAAAANCQAAAAAFCQAAAAABCQAAAAAJEwAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADCQAAAAAACQAAAAANCQAAAAANCQAAAAAKCQAAAAAECQAAAAAJCQAAAAAECQAAAAADCQAAAAAHCQAAAAALEwAAAAAAHAAAAAAEHAAAAAACHAAAAAAEHAAAAAABHAAAAAACCQAAAAAICQAAAAAGCQAAAAADCQAAAAAICQAAAAAMCQAAAAAACQAAAAAJCQAAAAAACQAAAAADCQAAAAAKEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAACQAAAAALCQAAAAAHCQAAAAALCQAAAAACCQAAAAANCQAAAAAGCQAAAAAHCQAAAAAGCQAAAAAFCQAAAAAICQAAAAAMCQAAAAAACQAAAAACCQAAAAACCQAAAAAMCQAAAAAACQAAAAALCQAAAAAKCQAAAAAACQAAAAAFCQAAAAAICQAAAAAICQAAAAAHCQAAAAACCQAAAAAMCQAAAAAKCQAAAAAKCQAAAAAKCQAAAAAFCQAAAAACCQAAAAAFCQAAAAABCQAAAAAACQAAAAAGCQAAAAAMCQAAAAAECQAAAAAHCQAAAAAGCQAAAAALCQAAAAAICQAAAAAKCQAAAAAICQAAAAAACQAAAAAKCQAAAAAKCQAAAAABCQAAAAAFCQAAAAABCQAAAAAMCQAAAAANCQAAAAAMCQAAAAALCQAAAAAJCQAAAAANCQAAAAACCQAAAAAACQAAAAABCQAAAAANCQAAAAANCQAAAAAFCQAAAAAJCQAAAAAACQAAAAAGCQAAAAAFCQAAAAAICQAAAAAJCQAAAAAACQAAAAAKCQAAAAAMCQAAAAANCQAAAAAECQAAAAAHCQAAAAAKCQAAAAAECQAAAAALCQAAAAAFCQAAAAAICQAAAAAICQAAAAACCQAAAAAGCQAAAAANCQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAKCQAAAAAFCQAAAAAKCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAAMCQAAAAACCQAAAAANCQAAAAALCQAAAAAICQAAAAALCQAAAAACCQAAAAALCQAAAAADCQAAAAAECQAAAAAKCQAAAAACCQAAAAAKCQAAAAAGCQAAAAALCQAAAAAECQAAAAAKCQAAAAACCQAAAAAKCQAAAAAHCQAAAAAICQAAAAAECQAAAAAJCQAAAAAHCQAAAAAKCQAAAAAMCQAAAAAKCQAAAAAICQAAAAAFCQAAAAADCQAAAAADCQAAAAACCQAAAAAECQAAAAABCQAAAAADCQAAAAAMCQAAAAAMCQAAAAAICQAAAAACCQAAAAAHCQAAAAAMCQAAAAAJCQAAAAAMCQAAAAAECQAAAAACCQAAAAAHCQAAAAABCQAAAAAECQAAAAADCQAAAAAACQAAAAAECQAAAAAHCQAAAAAACQAAAAAACQAAAAAMCQAAAAAKCQAAAAACCQAAAAAMCQAAAAAECQAAAAABCQAAAAANCQAAAAAHCQAAAAALCQAAAAABCQAAAAAKCQAAAAALCQAAAAADCQAAAAAMCQAAAAANCQAAAAAMCQAAAAAJCQAAAAAKCQAAAAAICQAAAAABCQAAAAALCQAAAAALCQAAAAAJCQAAAAAHCQAAAAAGCQAAAAANCQAAAAAHCQAAAAALCQAAAAAICQAAAAADCQAAAAACCQAAAAAMCQAAAAADCQAAAAALCQAAAAAICQAAAAAKCQAAAAAFCQAAAAACCQAAAAAACQAAAAANCQAAAAAGCQAAAAAECQAAAAAHCQAAAAAJCQAAAAAK
version: 6
2,0:
ind: 2,0
- tiles: CQAAAAAICQAAAAAMCQAAAAAACQAAAAAFCQAAAAAKCQAAAAAICQAAAAAFCQAAAAANCQAAAAAMCQAAAAAFCQAAAAAJCQAAAAACCQAAAAAECQAAAAAFCQAAAAADCQAAAAADCQAAAAACCQAAAAAKCQAAAAAICQAAAAAGCQAAAAAKCQAAAAAJCQAAAAADCQAAAAANCQAAAAAGCQAAAAACCQAAAAAECQAAAAAICQAAAAAECQAAAAALCQAAAAADCQAAAAAKCQAAAAADCQAAAAABCQAAAAAFCQAAAAACCQAAAAAJCQAAAAAACQAAAAAICQAAAAAFCQAAAAAECQAAAAAGCQAAAAABCQAAAAABCQAAAAAHCQAAAAABCQAAAAALCQAAAAAMCQAAAAAICQAAAAACCQAAAAAHCQAAAAACCQAAAAAHCQAAAAABCQAAAAANCQAAAAABCQAAAAAKCQAAAAALCQAAAAAMCQAAAAAGCQAAAAANCQAAAAAICQAAAAAJCQAAAAAJCQAAAAAHCQAAAAABHAAAAAADHAAAAAADCQAAAAAACQAAAAADCQAAAAAMCQAAAAAJCQAAAAAFCQAAAAANCQAAAAAICQAAAAACCQAAAAAHCQAAAAAKCQAAAAANCQAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAAACQAAAAAICQAAAAAGCQAAAAACCQAAAAAJCQAAAAAHCQAAAAAJCQAAAAAACQAAAAAJCQAAAAAECQAAAAABCQAAAAADHAAAAAAEHAAAAAAAHAAAAAAFHAAAAAACHAAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAAKCQAAAAANCQAAAAAHCQAAAAACCQAAAAACCQAAAAAFCQAAAAAHCQAAAAAHFwAAAAADFwAAAAAAHAAAAAAAHAAAAAABFwAAAAABFwAAAAABFwAAAAAFFwAAAAAFFwAAAAACFwAAAAAECQAAAAACCQAAAAAKCQAAAAAHCQAAAAABCQAAAAANCQAAAAABGQAAAAAFGQAAAAAFGQAAAAAFGQAAAAACGQAAAAADGQAAAAAAGQAAAAACFgAAAAABFgAAAAAAFgAAAAACFgAAAAAEFgAAAAACCQAAAAAGCQAAAAAIFgAAAAAAFgAAAAACGQAAAAAEGQAAAAAIGQAAAAAHGQAAAAAHGQAAAAAIGQAAAAAIGQAAAAAEGQAAAAAAFgAAAAAECQAAAAAECQAAAAADFgAAAAACFgAAAAACFgAAAAADFgAAAAAFFgAAAAAEFwAAAAADFwAAAAABFwAAAAADFwAAAAAAGAAAAAACFwAAAAABFwAAAAACFwAAAAAFCQAAAAAMCQAAAAANCQAAAAAJCQAAAAAMCQAAAAAECQAAAAAJCQAAAAACCQAAAAALFwAAAAAEFwAAAAACFwAAAAADFwAAAAAFHAAAAAAAFwAAAAAAFwAAAAABCQAAAAAACQAAAAAICQAAAAAJCQAAAAAECQAAAAAACQAAAAAJCQAAAAAGCQAAAAAICQAAAAAGFwAAAAAEFwAAAAAAFwAAAAAFFwAAAAAAHAAAAAAFCQAAAAAACQAAAAAFCQAAAAAACQAAAAAJCQAAAAANCQAAAAAGCQAAAAACCQAAAAALCQAAAAANCQAAAAAECQAAAAALBAAAAAAIBAAAAAAFBAAAAAAIFwAAAAADCQAAAAAFCQAAAAAJCQAAAAACCQAAAAAFCQAAAAABCQAAAAAFCQAAAAAICQAAAAAKCQAAAAALCQAAAAAACQAAAAACCQAAAAAADQAAAAAADQAAAAAABAAAAAACFwAAAAAFCQAAAAAFCQAAAAAFCQAAAAAJCQAAAAAHCQAAAAAICQAAAAABCQAAAAAMCQAAAAAMCQAAAAAICQAAAAAMCQAAAAACCQAAAAALDQAAAAAADQAAAAAABAAAAAAKFwAAAAAECQAAAAAJCQAAAAAECQAAAAANCQAAAAABCQAAAAAACQAAAAANCQAAAAAACQAAAAAECQAAAAAMCQAAAAADCQAAAAAHCQAAAAAB
+ tiles: CQAAAAAHCQAAAAAGCQAAAAAJCQAAAAAECQAAAAADCQAAAAANCQAAAAACCQAAAAAFCQAAAAAGCQAAAAANCQAAAAAGCQAAAAADCQAAAAAJCQAAAAAHCQAAAAAACQAAAAANCQAAAAAICQAAAAAACQAAAAAECQAAAAAFCQAAAAAFCQAAAAABCQAAAAAGCQAAAAAMCQAAAAAGCQAAAAABCQAAAAAKCQAAAAAHCQAAAAALCQAAAAAKCQAAAAAECQAAAAAFCQAAAAANCQAAAAAFCQAAAAACCQAAAAAACQAAAAAACQAAAAANCQAAAAAJCQAAAAANCQAAAAABCQAAAAAGCQAAAAANCQAAAAABCQAAAAAHCQAAAAAFCQAAAAANCQAAAAANCQAAAAAKCQAAAAAHCQAAAAALCQAAAAAACQAAAAAGCQAAAAAHCQAAAAAECQAAAAAACQAAAAANCQAAAAANCQAAAAAACQAAAAAGCQAAAAAMCQAAAAALCQAAAAAMCQAAAAAICQAAAAAACQAAAAALHAAAAAAEHAAAAAAFCQAAAAAACQAAAAACCQAAAAAECQAAAAALCQAAAAALCQAAAAAJCQAAAAABCQAAAAAICQAAAAAMCQAAAAAFCQAAAAADCQAAAAAGHAAAAAAFHAAAAAAEHAAAAAAFHAAAAAAAHAAAAAAACQAAAAAICQAAAAADCQAAAAACCQAAAAAKCQAAAAAJCQAAAAAICQAAAAABCQAAAAAICQAAAAAHCQAAAAAMCQAAAAAGHAAAAAAFHAAAAAAEHAAAAAABHAAAAAABHAAAAAADCQAAAAAICQAAAAALCQAAAAAHCQAAAAAJCQAAAAAGCQAAAAAECQAAAAAHCQAAAAABCQAAAAAACQAAAAAACQAAAAAHHgAAAAABHgAAAAACHAAAAAAFHAAAAAAFHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAACHgAAAAABCQAAAAALCQAAAAANCQAAAAACCQAAAAALCQAAAAADCQAAAAABAwAAAAAHAwAAAAAHAwAAAAAFAwAAAAAAAwAAAAAHAwAAAAAFAwAAAAABHAAAAAADHAAAAAAAHAAAAAAFHAAAAAAFHAAAAAADCQAAAAALCQAAAAAMHAAAAAAAHAAAAAABAwAAAAADAwAAAAAFAwAAAAABAwAAAAAEAwAAAAABAwAAAAAIAwAAAAAHAwAAAAAGHAAAAAACCQAAAAADCQAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAAEHgAAAAACHgAAAAACHgAAAAAEHgAAAAACHQAAAAAAHgAAAAADHgAAAAADHgAAAAABCQAAAAAKCQAAAAALCQAAAAAACQAAAAAACQAAAAABCQAAAAALCQAAAAANCQAAAAAKAgAAAAALAgAAAAADAgAAAAAAHgAAAAAAHAAAAAABHgAAAAADHgAAAAACCQAAAAAECQAAAAANCQAAAAADCQAAAAADCQAAAAAFCQAAAAAGCQAAAAAMCQAAAAAECQAAAAAGAgAAAAAHAgAAAAAEAgAAAAAEHgAAAAABHAAAAAAFCQAAAAAICQAAAAAKCQAAAAAKCQAAAAAHCQAAAAABCQAAAAAFCQAAAAABCQAAAAAMCQAAAAABCQAAAAAJCQAAAAAJBAAAAAAIBAAAAAADBAAAAAAAHgAAAAACCQAAAAAMCQAAAAAICQAAAAADCQAAAAAKCQAAAAAECQAAAAADCQAAAAACCQAAAAAACQAAAAAFCQAAAAAHCQAAAAAJCQAAAAAGDQAAAAAADQAAAAAABAAAAAAFHgAAAAABCQAAAAAKCQAAAAAACQAAAAACCQAAAAAMCQAAAAAMCQAAAAAGCQAAAAAKCQAAAAADCQAAAAAHCQAAAAAICQAAAAAFCQAAAAAJDQAAAAAADQAAAAAABAAAAAABHgAAAAAACQAAAAAHCQAAAAACCQAAAAAMCQAAAAACCQAAAAAKCQAAAAAKCQAAAAABCQAAAAACCQAAAAANCQAAAAAMCQAAAAALCQAAAAAL
version: 6
3,0:
ind: 3,0
- tiles: CQAAAAADCQAAAAAHCQAAAAANCQAAAAAMCQAAAAABCQAAAAAFCQAAAAACCQAAAAABCQAAAAAACQAAAAALCQAAAAALCQAAAAAJCQAAAAABCQAAAAAIAQAAAAAAAQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAANCQAAAAAECQAAAAAGCQAAAAAACQAAAAALCQAAAAAHCQAAAAAKCQAAAAADCQAAAAAHCQAAAAAJCQAAAAAAAQAAAAABAQAAAAACCQAAAAABCQAAAAABCQAAAAAFCQAAAAAJCQAAAAAICQAAAAAFCQAAAAAECQAAAAAFCQAAAAAACQAAAAABCQAAAAABCQAAAAAKCQAAAAAKCQAAAAALCQAAAAAKCQAAAAABCQAAAAAFCQAAAAADCQAAAAABCQAAAAABCQAAAAANCQAAAAABCQAAAAALCQAAAAALCQAAAAAHCQAAAAAFCQAAAAADCQAAAAAKCQAAAAADCQAAAAALCQAAAAAJCQAAAAAGCQAAAAABCQAAAAAJCQAAAAAJCQAAAAAICQAAAAAFCQAAAAADCQAAAAAACQAAAAAACQAAAAAJCQAAAAANCQAAAAALCQAAAAACCQAAAAAICQAAAAAGCQAAAAAICQAAAAAICQAAAAANCQAAAAADCQAAAAAHCQAAAAAICQAAAAAECQAAAAAKCQAAAAABCQAAAAALCQAAAAAFCQAAAAAGCQAAAAANCQAAAAALCQAAAAAACQAAAAALCQAAAAAGCQAAAAAFCQAAAAAHCQAAAAAKCQAAAAAMCQAAAAABCQAAAAAKCQAAAAAACQAAAAAACQAAAAANCQAAAAAJCQAAAAAFCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAJCQAAAAAJCQAAAAABCQAAAAAKCQAAAAAACQAAAAAKCQAAAAAMCQAAAAALCQAAAAAGCQAAAAADCQAAAAABCQAAAAANCQAAAAAECQAAAAAICQAAAAANCQAAAAAICQAAAAADCQAAAAADFgAAAAAEFgAAAAAEFgAAAAAEFgAAAAACCQAAAAAACQAAAAAJCQAAAAACCQAAAAAHCQAAAAADCQAAAAAKCQAAAAADCQAAAAAACQAAAAANCQAAAAABCQAAAAAKCQAAAAAHFgAAAAAFCQAAAAAKCQAAAAABFgAAAAACFgAAAAAECQAAAAAKCQAAAAABCQAAAAACCQAAAAAKCQAAAAAECQAAAAAMCQAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAALCQAAAAANCQAAAAAECQAAAAAFCQAAAAAMCQAAAAABCQAAAAADCQAAAAAICQAAAAALCQAAAAAGCQAAAAAGCQAAAAABCQAAAAAFCQAAAAAECQAAAAADCQAAAAADCQAAAAABCQAAAAAICQAAAAADCQAAAAACCQAAAAAGCQAAAAAACQAAAAAGCQAAAAAFCQAAAAAHCQAAAAAECQAAAAAFCQAAAAAGCQAAAAALCQAAAAAECQAAAAAHCQAAAAAMCQAAAAAKCQAAAAANCQAAAAAICQAAAAAKCQAAAAAICQAAAAACCQAAAAAACQAAAAAICQAAAAAFCQAAAAAKCQAAAAAGCQAAAAANCQAAAAADCQAAAAAACQAAAAAECQAAAAACCQAAAAANCQAAAAAFCQAAAAANCQAAAAAHCQAAAAAMCQAAAAAKCQAAAAALCQAAAAAECQAAAAAHCQAAAAAHCQAAAAACCQAAAAAACQAAAAAGCQAAAAAKCQAAAAABCQAAAAAHCQAAAAAFCQAAAAALCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAAHCQAAAAAACQAAAAAECQAAAAALCQAAAAANCQAAAAAJCQAAAAAFCQAAAAANCQAAAAAJCQAAAAAKCQAAAAAECQAAAAAKCQAAAAAGCQAAAAABCQAAAAACCQAAAAAMCQAAAAABCQAAAAAJCQAAAAAGCQAAAAAACQAAAAAACQAAAAALCQAAAAAICQAAAAACCQAAAAAM
+ tiles: CQAAAAAICQAAAAAFCQAAAAAGCQAAAAAJCQAAAAAKCQAAAAAMCQAAAAAJCQAAAAAACQAAAAAECQAAAAANCQAAAAABCQAAAAAECQAAAAADCQAAAAADAQAAAAAEAQAAAAADCQAAAAAGCQAAAAAMCQAAAAAGCQAAAAANCQAAAAAICQAAAAAECQAAAAAHCQAAAAANCQAAAAAGCQAAAAAHCQAAAAAICQAAAAAICQAAAAACCQAAAAABAQAAAAABAQAAAAACCQAAAAAMCQAAAAAMCQAAAAADCQAAAAANCQAAAAADCQAAAAAMCQAAAAAICQAAAAAACQAAAAABCQAAAAAECQAAAAAECQAAAAAMCQAAAAAJCQAAAAAKCQAAAAAJCQAAAAAKCQAAAAAKCQAAAAAECQAAAAAECQAAAAAMCQAAAAAACQAAAAADCQAAAAAJCQAAAAANCQAAAAAJCQAAAAAMCQAAAAAICQAAAAAKCQAAAAALCQAAAAAMCQAAAAAFCQAAAAADCQAAAAADCQAAAAAFCQAAAAADCQAAAAAHCQAAAAAECQAAAAAHCQAAAAALCQAAAAAECQAAAAABCQAAAAADCQAAAAAKCQAAAAAECQAAAAADCQAAAAAHCQAAAAADCQAAAAAHCQAAAAAICQAAAAAGCQAAAAANCQAAAAACCQAAAAAMCQAAAAALCQAAAAAJCQAAAAADCQAAAAANCQAAAAAFCQAAAAAKCQAAAAAKCQAAAAANCQAAAAACCQAAAAAKCQAAAAAJCQAAAAAGCQAAAAAHCQAAAAABCQAAAAANCQAAAAAJCQAAAAAGCQAAAAALCQAAAAANCQAAAAAMCQAAAAAICQAAAAAECQAAAAAFCQAAAAAACQAAAAACCQAAAAAJCQAAAAACCQAAAAADCQAAAAAACQAAAAAMCQAAAAAACQAAAAAICQAAAAAHCQAAAAAECQAAAAABCQAAAAANCQAAAAAGCQAAAAAJCQAAAAAICQAAAAAJCQAAAAABCQAAAAAFCQAAAAABHAAAAAAFHAAAAAAEHAAAAAABHAAAAAAECQAAAAAACQAAAAAJCQAAAAAACQAAAAACCQAAAAAJCQAAAAAJCQAAAAAGCQAAAAANCQAAAAAMCQAAAAAICQAAAAAKCQAAAAALHAAAAAADCQAAAAANCQAAAAAIHAAAAAACHAAAAAADCQAAAAAJCQAAAAAMCQAAAAALCQAAAAAECQAAAAANCQAAAAAICQAAAAAKCQAAAAABCQAAAAABCQAAAAAFCQAAAAAECQAAAAAFCQAAAAADCQAAAAAECQAAAAAKCQAAAAAKCQAAAAAICQAAAAAFCQAAAAAHCQAAAAAACQAAAAAICQAAAAAICQAAAAADCQAAAAAJCQAAAAAMCQAAAAAJCQAAAAALCQAAAAAHCQAAAAADCQAAAAANCQAAAAANCQAAAAAJCQAAAAAFCQAAAAALCQAAAAAGCQAAAAAACQAAAAAGCQAAAAAECQAAAAACCQAAAAAGCQAAAAAICQAAAAAFCQAAAAAICQAAAAAFCQAAAAABCQAAAAABCQAAAAAKCQAAAAAFCQAAAAADCQAAAAAMCQAAAAAECQAAAAAJCQAAAAAJCQAAAAABCQAAAAAACQAAAAAACQAAAAAHCQAAAAAGCQAAAAABCQAAAAAHCQAAAAALCQAAAAALCQAAAAAECQAAAAAICQAAAAAHCQAAAAALCQAAAAAHCQAAAAAICQAAAAABCQAAAAAFCQAAAAAACQAAAAAECQAAAAAFCQAAAAAECQAAAAADCQAAAAAMCQAAAAALCQAAAAAKCQAAAAAFCQAAAAADCQAAAAACCQAAAAAKCQAAAAAJCQAAAAAFCQAAAAAFCQAAAAAFCQAAAAAMCQAAAAAHCQAAAAAJCQAAAAANCQAAAAAGCQAAAAABCQAAAAALCQAAAAAGCQAAAAAECQAAAAAMCQAAAAANCQAAAAADCQAAAAABCQAAAAABCQAAAAALCQAAAAAMCQAAAAANCQAAAAAICQAAAAALCQAAAAABCQAAAAAE
version: 6
3,1:
ind: 3,1
- tiles: CQAAAAADCQAAAAAGCQAAAAAFCQAAAAANCQAAAAADCQAAAAAKCQAAAAAKCQAAAAAICQAAAAAFCQAAAAANCQAAAAAECQAAAAADCQAAAAAHCQAAAAAACQAAAAAMCQAAAAAMCQAAAAAFCQAAAAAJCQAAAAAJCQAAAAAHCQAAAAAJCQAAAAACCQAAAAALCQAAAAAACQAAAAALCQAAAAAKCQAAAAAECQAAAAAJCQAAAAAFCQAAAAAMCQAAAAAGCQAAAAAGCQAAAAABCQAAAAAMCQAAAAAMCQAAAAAACQAAAAAECQAAAAAGCQAAAAABCQAAAAAKCQAAAAAKCQAAAAACCQAAAAACCQAAAAABCQAAAAAJCQAAAAAKCQAAAAAKCQAAAAADCQAAAAAGCQAAAAALCQAAAAAACQAAAAAMCQAAAAACCQAAAAABCQAAAAACCQAAAAAICQAAAAAMCQAAAAALCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAECQAAAAANCQAAAAAICQAAAAALCQAAAAAECQAAAAAFCQAAAAAGCQAAAAAECQAAAAAICQAAAAAECQAAAAAFCQAAAAAGCQAAAAAKCQAAAAACCQAAAAAJCQAAAAAHCQAAAAAACQAAAAADCQAAAAAGCQAAAAAACQAAAAACCQAAAAAFCQAAAAABCQAAAAAECQAAAAADCQAAAAAACQAAAAAICQAAAAACCQAAAAANCQAAAAAACQAAAAAKCQAAAAAHCQAAAAACCQAAAAANCQAAAAAECQAAAAALCQAAAAAMCQAAAAACCQAAAAAACQAAAAADCQAAAAAHCQAAAAALCQAAAAAMCQAAAAAICQAAAAAFCQAAAAAHCQAAAAAICQAAAAAMCQAAAAAMCQAAAAABCQAAAAAICQAAAAAICQAAAAAFCQAAAAAACQAAAAANCQAAAAAMCQAAAAAJCQAAAAAJCQAAAAAECQAAAAAJCQAAAAAJCQAAAAAJCQAAAAAJCQAAAAAHCQAAAAAECQAAAAAICQAAAAADCQAAAAAJCQAAAAACCQAAAAANCQAAAAALCQAAAAABCQAAAAAHCQAAAAACCQAAAAANCQAAAAAACQAAAAALCQAAAAAHCQAAAAAICQAAAAAMCQAAAAAECQAAAAAICQAAAAAJCQAAAAACCQAAAAAHCQAAAAAKCQAAAAAACQAAAAAACQAAAAANCQAAAAAGCQAAAAACCQAAAAABCQAAAAACCQAAAAANCQAAAAAHCQAAAAADCQAAAAAJCQAAAAAICQAAAAAGCQAAAAAGCQAAAAALCQAAAAAKCQAAAAADCQAAAAAHCQAAAAABCQAAAAAGCQAAAAAGCQAAAAAGCQAAAAALCQAAAAACCQAAAAACCQAAAAAFCQAAAAAKCQAAAAACCQAAAAADCQAAAAAGCQAAAAAMCQAAAAAKCQAAAAACCQAAAAAECQAAAAAECQAAAAAMCQAAAAAMCQAAAAAJCQAAAAADCQAAAAAJCQAAAAAJCQAAAAAECQAAAAAJCQAAAAABCQAAAAAHCQAAAAADCQAAAAAJCQAAAAANCQAAAAAJCQAAAAAFCQAAAAAHCQAAAAAACQAAAAAICQAAAAAICQAAAAAACQAAAAABCQAAAAAFCQAAAAADCQAAAAADCQAAAAANCQAAAAAFCQAAAAADCQAAAAAICQAAAAAMCQAAAAAACQAAAAAICQAAAAABCQAAAAAICQAAAAAMCQAAAAAHCQAAAAANCQAAAAAFCQAAAAAJCQAAAAAJCQAAAAABCQAAAAAECQAAAAAECQAAAAAHCQAAAAAACQAAAAACCQAAAAAHCQAAAAAFCQAAAAANCQAAAAAMCQAAAAAICQAAAAAKCQAAAAAJCQAAAAALCQAAAAAMCQAAAAAACQAAAAAECQAAAAAHCQAAAAANCQAAAAALCQAAAAAMCQAAAAAHCQAAAAAGCQAAAAANCQAAAAAJCQAAAAAFCQAAAAADCQAAAAAECQAAAAADCQAAAAAACQAAAAAJCQAAAAADCQAAAAAFCQAAAAAM
+ tiles: CQAAAAANCQAAAAAGCQAAAAAFCQAAAAAMCQAAAAAGCQAAAAAECQAAAAANCQAAAAALCQAAAAAJCQAAAAAFCQAAAAALCQAAAAAACQAAAAAECQAAAAALCQAAAAACCQAAAAADCQAAAAAHCQAAAAAHCQAAAAACCQAAAAAKCQAAAAAHCQAAAAAGCQAAAAACCQAAAAAECQAAAAALCQAAAAAMCQAAAAAGCQAAAAAGCQAAAAALCQAAAAAJCQAAAAAACQAAAAAKCQAAAAAACQAAAAADCQAAAAALCQAAAAAICQAAAAAFCQAAAAAKCQAAAAAGCQAAAAAKCQAAAAANCQAAAAACCQAAAAANCQAAAAAKCQAAAAAGCQAAAAAMCQAAAAAECQAAAAANCQAAAAAICQAAAAAACQAAAAAFCQAAAAAICQAAAAAFCQAAAAAJCQAAAAANCQAAAAAHCQAAAAAGCQAAAAAMCQAAAAAFCQAAAAAICQAAAAAHCQAAAAALCQAAAAANCQAAAAALCQAAAAAECQAAAAAHCQAAAAADCQAAAAALCQAAAAAHCQAAAAAFCQAAAAAHCQAAAAAECQAAAAABCQAAAAADCQAAAAAICQAAAAADCQAAAAADCQAAAAAMCQAAAAANCQAAAAAMCQAAAAAACQAAAAAHCQAAAAAMCQAAAAAACQAAAAAECQAAAAAFCQAAAAAKCQAAAAAICQAAAAALCQAAAAAKCQAAAAABCQAAAAAKCQAAAAABCQAAAAAHCQAAAAABCQAAAAACCQAAAAANCQAAAAAICQAAAAACCQAAAAACCQAAAAACCQAAAAAMCQAAAAAGCQAAAAADCQAAAAAACQAAAAACCQAAAAAECQAAAAAECQAAAAAACQAAAAACCQAAAAALCQAAAAANCQAAAAADCQAAAAABCQAAAAAFCQAAAAAACQAAAAAHCQAAAAACCQAAAAABCQAAAAAHCQAAAAALCQAAAAAMCQAAAAAHCQAAAAAKCQAAAAAICQAAAAANCQAAAAAJCQAAAAAHCQAAAAAECQAAAAABCQAAAAAFCQAAAAAKCQAAAAAGCQAAAAACCQAAAAAHCQAAAAACCQAAAAAJCQAAAAAFCQAAAAAMCQAAAAANCQAAAAAICQAAAAAFCQAAAAABCQAAAAAJCQAAAAADCQAAAAAICQAAAAACCQAAAAALCQAAAAAKCQAAAAANCQAAAAACCQAAAAAJCQAAAAAHCQAAAAAMCQAAAAAKCQAAAAAFCQAAAAACCQAAAAANCQAAAAAKCQAAAAAFCQAAAAAECQAAAAALCQAAAAAGCQAAAAAMCQAAAAABCQAAAAAECQAAAAADCQAAAAAJCQAAAAACCQAAAAAFCQAAAAAECQAAAAAMCQAAAAADCQAAAAAACQAAAAAHCQAAAAACCQAAAAAKCQAAAAAACQAAAAAJCQAAAAAFCQAAAAAECQAAAAAKCQAAAAAMCQAAAAABCQAAAAAACQAAAAACCQAAAAALCQAAAAABCQAAAAAECQAAAAAACQAAAAACCQAAAAAGCQAAAAAMCQAAAAACCQAAAAAICQAAAAANCQAAAAAACQAAAAAMCQAAAAACCQAAAAAKCQAAAAAKCQAAAAAJCQAAAAAECQAAAAAMCQAAAAAGCQAAAAANCQAAAAANCQAAAAANCQAAAAADCQAAAAACCQAAAAAKCQAAAAACCQAAAAAACQAAAAABCQAAAAAGCQAAAAAACQAAAAAMCQAAAAAKCQAAAAAGCQAAAAACCQAAAAAMCQAAAAAICQAAAAAFCQAAAAAGCQAAAAAJCQAAAAAKCQAAAAAECQAAAAAFCQAAAAAICQAAAAABCQAAAAAHCQAAAAAFCQAAAAABCQAAAAACCQAAAAALCQAAAAADCQAAAAABCQAAAAALCQAAAAANCQAAAAADCQAAAAALCQAAAAAMCQAAAAALCQAAAAANCQAAAAAKCQAAAAACCQAAAAADCQAAAAAHCQAAAAALCQAAAAAECQAAAAACCQAAAAAICQAAAAAGCQAAAAADCQAAAAAHCQAAAAAB
version: 6
3,2:
ind: 3,2
- tiles: CQAAAAAMCQAAAAAGCQAAAAANCQAAAAAMCQAAAAAKCQAAAAAKCQAAAAAICQAAAAAFCQAAAAAFCQAAAAAICQAAAAAMCQAAAAALCQAAAAAECQAAAAAMCQAAAAANCQAAAAALCQAAAAAACQAAAAANCQAAAAANCQAAAAAHCQAAAAAGCQAAAAACCQAAAAAKCQAAAAAGCQAAAAACCQAAAAAECQAAAAALCQAAAAAECQAAAAALCQAAAAAICQAAAAALCQAAAAAICQAAAAAACQAAAAAECQAAAAACCQAAAAAFCQAAAAAFCQAAAAADCQAAAAAFCQAAAAAMCQAAAAADCQAAAAANCQAAAAAGCQAAAAACCQAAAAALCQAAAAAICQAAAAAJCQAAAAAICQAAAAAJCQAAAAANCQAAAAAKCQAAAAAACQAAAAAHCQAAAAANCQAAAAAJCQAAAAANCQAAAAAJCQAAAAADCQAAAAABCQAAAAAICQAAAAADCQAAAAAFCQAAAAABCQAAAAAGCQAAAAANCQAAAAAMCQAAAAAKCQAAAAAHCQAAAAAICQAAAAAJCQAAAAALCQAAAAALCQAAAAAICQAAAAABCQAAAAAMCQAAAAABCQAAAAAFCQAAAAAKCQAAAAABCQAAAAANCQAAAAAHCQAAAAABCQAAAAAKCQAAAAAJCQAAAAALCQAAAAANCQAAAAAICQAAAAAICQAAAAAGCQAAAAAECQAAAAAMCQAAAAABCQAAAAADCQAAAAAICQAAAAAKCQAAAAAECQAAAAAFCQAAAAACCQAAAAADCQAAAAADCQAAAAALCQAAAAAACQAAAAAMCQAAAAAJCQAAAAAJCQAAAAAGCQAAAAAICQAAAAADCQAAAAAACQAAAAAKCQAAAAANCQAAAAAHCQAAAAAGCQAAAAANCQAAAAAJCQAAAAAMCQAAAAABCQAAAAACCQAAAAADCQAAAAAGCQAAAAAFCQAAAAAHCQAAAAAFCQAAAAAECQAAAAAECQAAAAAGCQAAAAANCQAAAAAJCQAAAAAGCQAAAAAKCQAAAAACCQAAAAAGCQAAAAAJCQAAAAAGCQAAAAAKCQAAAAAECQAAAAALCQAAAAAHCQAAAAADCQAAAAAKCQAAAAAICQAAAAAFCQAAAAAICQAAAAAGCQAAAAAJCQAAAAAJCQAAAAAGCQAAAAANCQAAAAAECQAAAAAJCQAAAAAMCQAAAAAJCQAAAAALCQAAAAAKCQAAAAAKCQAAAAABCQAAAAAGCQAAAAALCQAAAAACCQAAAAAACQAAAAAICQAAAAABCQAAAAAECQAAAAAMCQAAAAACCQAAAAAMCQAAAAADCQAAAAAECQAAAAALCQAAAAABCQAAAAAECQAAAAAJCQAAAAAFCQAAAAAGCQAAAAABCQAAAAAICQAAAAAECQAAAAADCQAAAAAECQAAAAAACQAAAAAGCQAAAAAKCQAAAAAKCQAAAAABCQAAAAABCQAAAAAHCQAAAAADCQAAAAAGCQAAAAAACQAAAAAFCQAAAAAFCQAAAAAHCQAAAAADCQAAAAAACQAAAAAHCQAAAAANCQAAAAACCQAAAAAFCQAAAAAFCQAAAAADCQAAAAAJCQAAAAAFCQAAAAAHCQAAAAAKCQAAAAACCQAAAAABCQAAAAAFCQAAAAAMCQAAAAABCQAAAAANCQAAAAANCQAAAAAGCQAAAAANCQAAAAAHCQAAAAAMCQAAAAACCQAAAAALCQAAAAAMCQAAAAANCQAAAAAMCQAAAAALCQAAAAALCQAAAAANCQAAAAANCQAAAAADCQAAAAAGCQAAAAAFCQAAAAAICQAAAAAJCQAAAAAACQAAAAAGCQAAAAAHCQAAAAAMCQAAAAABCQAAAAABCQAAAAAHCQAAAAALCQAAAAAECQAAAAADCQAAAAANCQAAAAANCQAAAAALCQAAAAAHCQAAAAANCQAAAAAJCQAAAAAECQAAAAAGCQAAAAAECQAAAAANCQAAAAANCQAAAAAKCQAAAAAECQAAAAAGCQAAAAAECQAAAAAJCQAAAAAK
+ tiles: CQAAAAAACQAAAAAKCQAAAAAHCQAAAAADCQAAAAAECQAAAAAFCQAAAAACCQAAAAALCQAAAAAACQAAAAACCQAAAAANCQAAAAAKCQAAAAAFCQAAAAADCQAAAAAACQAAAAAFCQAAAAAHCQAAAAAGCQAAAAAACQAAAAALCQAAAAANCQAAAAACCQAAAAAECQAAAAACCQAAAAAHCQAAAAAHCQAAAAADCQAAAAAICQAAAAADCQAAAAAKCQAAAAADCQAAAAAHCQAAAAAMCQAAAAAGCQAAAAAJCQAAAAAFCQAAAAAGCQAAAAALCQAAAAAICQAAAAABCQAAAAALCQAAAAAMCQAAAAALCQAAAAAFCQAAAAAHCQAAAAAFCQAAAAAECQAAAAAICQAAAAAGCQAAAAAGCQAAAAAICQAAAAAHCQAAAAAHCQAAAAAECQAAAAANCQAAAAAMCQAAAAABCQAAAAAGCQAAAAACCQAAAAAICQAAAAADCQAAAAAECQAAAAAKCQAAAAAFCQAAAAAECQAAAAAKCQAAAAABCQAAAAAFCQAAAAAKCQAAAAALCQAAAAAMCQAAAAABCQAAAAABCQAAAAAGCQAAAAAJCQAAAAACCQAAAAAICQAAAAAFCQAAAAAECQAAAAAMCQAAAAAHCQAAAAAMCQAAAAAHCQAAAAABCQAAAAANCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAAICQAAAAAMCQAAAAAACQAAAAAHCQAAAAALCQAAAAAFCQAAAAAGCQAAAAABCQAAAAAKCQAAAAAFCQAAAAAICQAAAAAICQAAAAAHCQAAAAALCQAAAAAGCQAAAAAKCQAAAAAJCQAAAAAJCQAAAAAICQAAAAAGCQAAAAADCQAAAAAKCQAAAAAKCQAAAAAGCQAAAAANCQAAAAAHCQAAAAANCQAAAAAFCQAAAAAICQAAAAADCQAAAAAACQAAAAANCQAAAAAICQAAAAAHCQAAAAAICQAAAAAGCQAAAAALCQAAAAACCQAAAAAKCQAAAAAHCQAAAAAHCQAAAAAACQAAAAADCQAAAAADCQAAAAAJCQAAAAAICQAAAAAECQAAAAAMCQAAAAADCQAAAAAHCQAAAAANCQAAAAANCQAAAAALCQAAAAAACQAAAAAACQAAAAAMCQAAAAACCQAAAAAACQAAAAALCQAAAAAECQAAAAAHCQAAAAAACQAAAAAACQAAAAAGCQAAAAAGCQAAAAAACQAAAAAKCQAAAAABCQAAAAAACQAAAAAECQAAAAABCQAAAAAKCQAAAAAKCQAAAAAMCQAAAAAFCQAAAAAJCQAAAAAACQAAAAAHCQAAAAANCQAAAAABCQAAAAAFCQAAAAALCQAAAAAKCQAAAAACCQAAAAAFCQAAAAALCQAAAAAKCQAAAAABCQAAAAAJCQAAAAAECQAAAAAACQAAAAAHCQAAAAAJCQAAAAAICQAAAAADCQAAAAAJCQAAAAANCQAAAAAECQAAAAAJCQAAAAADCQAAAAALCQAAAAALCQAAAAAECQAAAAAACQAAAAALCQAAAAABCQAAAAAKCQAAAAAKCQAAAAADCQAAAAAHCQAAAAAICQAAAAAFCQAAAAACCQAAAAABCQAAAAAACQAAAAAICQAAAAAKCQAAAAALCQAAAAAGCQAAAAAKCQAAAAAACQAAAAAHCQAAAAANCQAAAAAMCQAAAAAACQAAAAAACQAAAAAJCQAAAAAACQAAAAAECQAAAAAKCQAAAAAFCQAAAAAMCQAAAAALCQAAAAAICQAAAAAJCQAAAAAGCQAAAAAKCQAAAAANCQAAAAAACQAAAAAMCQAAAAAICQAAAAABCQAAAAAGCQAAAAAJCQAAAAADCQAAAAAACQAAAAAJCQAAAAANCQAAAAACCQAAAAALCQAAAAAFCQAAAAAKCQAAAAAKCQAAAAAFCQAAAAAECQAAAAADCQAAAAAGCQAAAAAACQAAAAACCQAAAAAMCQAAAAAECQAAAAAKCQAAAAACCQAAAAAACQAAAAAACQAAAAAN
version: 6
2,1:
ind: 2,1
- tiles: DQAAAAAADQAAAAAABAAAAAACFwAAAAAACQAAAAACCQAAAAAGCQAAAAAICQAAAAACCQAAAAACCQAAAAAMCQAAAAAECQAAAAAFCQAAAAAICQAAAAAHCQAAAAAGCQAAAAAKDQAAAAAABAAAAAACBAAAAAAFFwAAAAABCQAAAAAACQAAAAAJCQAAAAAACQAAAAAJCQAAAAANCQAAAAAFCQAAAAAECQAAAAAGCQAAAAALCQAAAAAHCQAAAAAACQAAAAAKFwAAAAAEFwAAAAAAFwAAAAADFwAAAAACCQAAAAACCQAAAAAICQAAAAAJCQAAAAAMCQAAAAAGCQAAAAAFCQAAAAALCQAAAAACCQAAAAAECQAAAAAGCQAAAAAHCQAAAAANCQAAAAANCQAAAAACCQAAAAADCQAAAAAACQAAAAANCQAAAAAKCQAAAAAECQAAAAANCQAAAAAECQAAAAAICQAAAAACCQAAAAADCQAAAAACCQAAAAAMCQAAAAACCQAAAAALCQAAAAAICQAAAAANCQAAAAAGCQAAAAAGCQAAAAAJCQAAAAAKCQAAAAAICQAAAAADCQAAAAAACQAAAAALCQAAAAAFCQAAAAAHCQAAAAAMCQAAAAAKCQAAAAABCQAAAAANCQAAAAADCQAAAAAGCQAAAAAGCQAAAAABCQAAAAAICQAAAAAICQAAAAAGCQAAAAAHCQAAAAAGCQAAAAAKCQAAAAAJCQAAAAAJCQAAAAANCQAAAAAJCQAAAAAGCQAAAAAICQAAAAAECQAAAAAECQAAAAANCQAAAAAKCQAAAAACCQAAAAANCQAAAAALCQAAAAAFCQAAAAAICQAAAAALCQAAAAACCQAAAAAGCQAAAAACCQAAAAANCQAAAAAICQAAAAAECQAAAAAGCQAAAAAGCQAAAAANCQAAAAADCQAAAAALCQAAAAACCQAAAAALCQAAAAAGCQAAAAAHCQAAAAAACQAAAAALCQAAAAAMCQAAAAADCQAAAAAFCQAAAAABCQAAAAAICQAAAAAICQAAAAAACQAAAAAFCQAAAAAKCQAAAAANCQAAAAAICQAAAAABCQAAAAABCQAAAAAGCQAAAAAKCQAAAAANCQAAAAAMCQAAAAAMCQAAAAACCQAAAAAACQAAAAAHCQAAAAANCQAAAAAHCQAAAAAFCQAAAAAFCQAAAAAICQAAAAABCQAAAAAACQAAAAAACQAAAAAKCQAAAAAECQAAAAANCQAAAAAHCQAAAAAHCQAAAAAJCQAAAAAGCQAAAAAKCQAAAAALCQAAAAAECQAAAAANCQAAAAAMCQAAAAAKCQAAAAAGCQAAAAAFCQAAAAANCQAAAAACCQAAAAANCQAAAAABCQAAAAAKCQAAAAAECQAAAAAJCQAAAAAMCQAAAAADCQAAAAAGCQAAAAAHCQAAAAAJCQAAAAAFCQAAAAANCQAAAAAICQAAAAAACQAAAAAJCQAAAAAKCQAAAAAFCQAAAAAFCQAAAAAKCQAAAAADCQAAAAAACQAAAAAICQAAAAANCQAAAAAMCQAAAAAJCQAAAAAICQAAAAADCQAAAAAFCQAAAAADCQAAAAAMCQAAAAAHCQAAAAAMCQAAAAACCQAAAAAICQAAAAACCQAAAAAJCQAAAAAHCQAAAAAACQAAAAACCQAAAAAMCQAAAAAECQAAAAALCQAAAAAHCQAAAAABCQAAAAAICQAAAAANCQAAAAADCQAAAAAFCQAAAAAFCQAAAAAHCQAAAAAICQAAAAAMCQAAAAAFCQAAAAANCQAAAAAICQAAAAAACQAAAAANCQAAAAAGCQAAAAAICQAAAAAECQAAAAANCQAAAAALCQAAAAALCQAAAAAHCQAAAAADCQAAAAAGCQAAAAAHCQAAAAAJCQAAAAAACQAAAAAGCQAAAAADCQAAAAAICQAAAAAECQAAAAAMCQAAAAALCQAAAAANCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAANCQAAAAAMCQAAAAANCQAAAAALCQAAAAACCQAAAAAACQAAAAAE
+ tiles: DQAAAAAADQAAAAAABAAAAAAJHgAAAAAFCQAAAAAFCQAAAAAICQAAAAAHCQAAAAANCQAAAAABCQAAAAAJCQAAAAAICQAAAAAFCQAAAAAICQAAAAAJCQAAAAABCQAAAAABDQAAAAAABAAAAAAEBAAAAAAKHgAAAAAFCQAAAAACCQAAAAAECQAAAAAECQAAAAAHCQAAAAAMCQAAAAAECQAAAAAKCQAAAAAMCQAAAAAGCQAAAAAICQAAAAALCQAAAAACHgAAAAABHgAAAAAEHgAAAAAFHgAAAAABCQAAAAANCQAAAAAICQAAAAAFCQAAAAALCQAAAAAICQAAAAAHCQAAAAAACQAAAAADCQAAAAACCQAAAAAFCQAAAAANCQAAAAAJCQAAAAAECQAAAAAHCQAAAAAJCQAAAAAKCQAAAAAGCQAAAAAHCQAAAAALCQAAAAAGCQAAAAACCQAAAAALCQAAAAALCQAAAAAMCQAAAAAGCQAAAAAACQAAAAABCQAAAAAFCQAAAAAICQAAAAADCQAAAAADCQAAAAAHCQAAAAACCQAAAAAECQAAAAABCQAAAAALCQAAAAAGCQAAAAAGCQAAAAAFCQAAAAAFCQAAAAAKCQAAAAAACQAAAAANCQAAAAAMCQAAAAANCQAAAAADCQAAAAAHCQAAAAABCQAAAAANCQAAAAAGCQAAAAANCQAAAAANCQAAAAACCQAAAAAGCQAAAAAECQAAAAAGCQAAAAANCQAAAAAICQAAAAADCQAAAAAACQAAAAANCQAAAAAICQAAAAANCQAAAAAGCQAAAAAJCQAAAAALCQAAAAAKCQAAAAADCQAAAAADCQAAAAAFCQAAAAADCQAAAAAGCQAAAAANCQAAAAACCQAAAAAHCQAAAAAKCQAAAAANCQAAAAALCQAAAAAACQAAAAAICQAAAAAECQAAAAAFCQAAAAACCQAAAAABCQAAAAALCQAAAAALCQAAAAAKCQAAAAALCQAAAAAHCQAAAAAACQAAAAAHCQAAAAABCQAAAAANCQAAAAAMCQAAAAAHCQAAAAAGCQAAAAAFCQAAAAABCQAAAAAHCQAAAAAICQAAAAAFCQAAAAADCQAAAAAMCQAAAAANCQAAAAACCQAAAAAJCQAAAAAKCQAAAAABCQAAAAALCQAAAAALCQAAAAACCQAAAAAMCQAAAAAFCQAAAAACCQAAAAACCQAAAAANCQAAAAAACQAAAAAFCQAAAAACCQAAAAAGCQAAAAAJCQAAAAADCQAAAAANCQAAAAAHCQAAAAAACQAAAAABCQAAAAADCQAAAAAICQAAAAADCQAAAAANCQAAAAACCQAAAAANCQAAAAANCQAAAAAGCQAAAAAMCQAAAAALCQAAAAAICQAAAAAECQAAAAAGCQAAAAAHCQAAAAACCQAAAAAICQAAAAANCQAAAAADCQAAAAAECQAAAAAECQAAAAAMCQAAAAAJCQAAAAAFCQAAAAACCQAAAAANCQAAAAAHCQAAAAAMCQAAAAAJCQAAAAAJCQAAAAAKCQAAAAAECQAAAAANCQAAAAABCQAAAAAICQAAAAAICQAAAAAECQAAAAAGCQAAAAAFCQAAAAAHCQAAAAAJCQAAAAAGCQAAAAAECQAAAAANCQAAAAAFCQAAAAACCQAAAAALCQAAAAADCQAAAAAECQAAAAAKCQAAAAAFCQAAAAABCQAAAAAHCQAAAAAHCQAAAAACCQAAAAAICQAAAAAKCQAAAAAECQAAAAAJCQAAAAAHCQAAAAANCQAAAAAMCQAAAAANCQAAAAAJCQAAAAALCQAAAAAKCQAAAAAFCQAAAAALCQAAAAABCQAAAAAFCQAAAAAECQAAAAAKCQAAAAALCQAAAAAFCQAAAAABCQAAAAAFCQAAAAAHCQAAAAAMCQAAAAAECQAAAAADCQAAAAAICQAAAAAECQAAAAAFCQAAAAAKCQAAAAANCQAAAAABCQAAAAABCQAAAAAKCQAAAAAICQAAAAAACQAAAAALCQAAAAACCQAAAAAGCQAAAAAHCQAAAAAL
version: 6
2,2:
ind: 2,2
- tiles: CQAAAAAHCQAAAAAMCQAAAAAHCQAAAAAMCQAAAAAMCQAAAAAGCQAAAAAICQAAAAAJCQAAAAABCQAAAAACCQAAAAAKCQAAAAAMCQAAAAAMCQAAAAABCQAAAAAHCQAAAAAGCQAAAAAKCQAAAAADCQAAAAAICQAAAAAKCQAAAAANCQAAAAAHCQAAAAACCQAAAAAHCQAAAAANCQAAAAAHCQAAAAAICQAAAAAICQAAAAAICQAAAAANCQAAAAABCQAAAAAACQAAAAAJCQAAAAAHCQAAAAAFCQAAAAACCQAAAAAMCQAAAAAECQAAAAAMCQAAAAAACQAAAAADCQAAAAAKCQAAAAACCQAAAAAKCQAAAAAFCQAAAAAACQAAAAAKCQAAAAAECQAAAAAJCQAAAAABCQAAAAAGCQAAAAAJCQAAAAANCQAAAAAECQAAAAABCQAAAAAICQAAAAALCQAAAAAKCQAAAAAGCQAAAAABCQAAAAAKCQAAAAAHCQAAAAAKCQAAAAAMCQAAAAAKCQAAAAAMCQAAAAAICQAAAAADCQAAAAAMCQAAAAAACQAAAAACCQAAAAAFCQAAAAAACQAAAAAHCQAAAAAJCQAAAAALCQAAAAABCQAAAAABCQAAAAANCQAAAAAFCQAAAAAJCQAAAAADCQAAAAAHCQAAAAABCQAAAAADCQAAAAADCQAAAAAKCQAAAAAMCQAAAAAFCQAAAAAJCQAAAAAICQAAAAADCQAAAAAICQAAAAAGCQAAAAAMCQAAAAALCQAAAAADCQAAAAAHCQAAAAAJCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAAMCQAAAAACCQAAAAANCQAAAAAKCQAAAAAICQAAAAAMCQAAAAAKCQAAAAADCQAAAAAFCQAAAAAJCQAAAAACCQAAAAALCQAAAAACCQAAAAACCQAAAAALCQAAAAAMCQAAAAAACQAAAAAGCQAAAAAGCQAAAAAECQAAAAAMCQAAAAADCQAAAAAECQAAAAANCQAAAAAKCQAAAAAHCQAAAAAMCQAAAAAICQAAAAAGCQAAAAAGCQAAAAABCQAAAAAJCQAAAAALCQAAAAACCQAAAAAFCQAAAAAKCQAAAAANCQAAAAAICQAAAAALCQAAAAAICQAAAAALCQAAAAAFCQAAAAANCQAAAAAICQAAAAADCQAAAAAMCQAAAAAHCQAAAAAKCQAAAAAJCQAAAAALCQAAAAACCQAAAAAFCQAAAAANCQAAAAALCQAAAAAKCQAAAAAGCQAAAAANCQAAAAAECQAAAAADCQAAAAAJCQAAAAAJCQAAAAAICQAAAAAKCQAAAAABCQAAAAACCQAAAAAJCQAAAAADCQAAAAAJCQAAAAALCQAAAAACCQAAAAACCQAAAAAMCQAAAAANCQAAAAADCQAAAAAACQAAAAAKCQAAAAALCQAAAAAHCQAAAAANCQAAAAAECQAAAAAKCQAAAAAFCQAAAAAKCQAAAAANCQAAAAAFCQAAAAAKCQAAAAAKCQAAAAAGCQAAAAABCQAAAAADCQAAAAABCQAAAAAMCQAAAAALCQAAAAADCQAAAAAGCQAAAAABCQAAAAAECQAAAAAACQAAAAANCQAAAAAICQAAAAAFCQAAAAALCQAAAAAGCQAAAAAGCQAAAAAACQAAAAAECQAAAAAECQAAAAAGCQAAAAAFCQAAAAAJCQAAAAAKCQAAAAALCQAAAAADCQAAAAAKCQAAAAACCQAAAAAGCQAAAAAACQAAAAAMCQAAAAAFCQAAAAAJCQAAAAAKCQAAAAAGCQAAAAAJCQAAAAAMCQAAAAADCQAAAAAHCQAAAAAJCQAAAAALCQAAAAALCQAAAAAICQAAAAAFCQAAAAAHCQAAAAAHCQAAAAABCQAAAAADCQAAAAANCQAAAAAGCQAAAAAECQAAAAANCQAAAAAJCQAAAAAACQAAAAACCQAAAAAKCQAAAAAHCQAAAAAJCQAAAAALCQAAAAAKCQAAAAALCQAAAAAFCQAAAAAACQAAAAAACQAAAAAECQAAAAAA
+ tiles: CQAAAAAFCQAAAAAGCQAAAAAMCQAAAAAJCQAAAAAMCQAAAAAECQAAAAAACQAAAAAGCQAAAAAMCQAAAAAFCQAAAAAKCQAAAAAFCQAAAAADCQAAAAAACQAAAAADCQAAAAAECQAAAAABCQAAAAAJCQAAAAAFCQAAAAACCQAAAAAGCQAAAAAJCQAAAAAFCQAAAAABCQAAAAADCQAAAAANCQAAAAAHCQAAAAAHCQAAAAABCQAAAAADCQAAAAAGCQAAAAAJCQAAAAADCQAAAAAGCQAAAAACCQAAAAANCQAAAAAHCQAAAAAICQAAAAACCQAAAAAMCQAAAAAMCQAAAAABCQAAAAAFCQAAAAAGCQAAAAADCQAAAAAICQAAAAAFCQAAAAAJCQAAAAAJCQAAAAAKCQAAAAAHCQAAAAANCQAAAAAKCQAAAAANCQAAAAACCQAAAAAHCQAAAAABCQAAAAABCQAAAAAHCQAAAAAJCQAAAAACCQAAAAALCQAAAAAECQAAAAAKCQAAAAABCQAAAAAFCQAAAAAGCQAAAAAICQAAAAAJCQAAAAABCQAAAAAHCQAAAAAKCQAAAAAICQAAAAAECQAAAAAHCQAAAAAECQAAAAACCQAAAAAGCQAAAAAECQAAAAAICQAAAAABCQAAAAABCQAAAAALCQAAAAAECQAAAAAHCQAAAAABCQAAAAABCQAAAAAGCQAAAAAICQAAAAAACQAAAAAFCQAAAAAICQAAAAAKCQAAAAAJCQAAAAALCQAAAAALCQAAAAAFCQAAAAAGCQAAAAAMCQAAAAAMCQAAAAANCQAAAAABCQAAAAALCQAAAAAACQAAAAALCQAAAAAFCQAAAAANCQAAAAADCQAAAAADCQAAAAAICQAAAAADCQAAAAAJCQAAAAABCQAAAAAJCQAAAAAGCQAAAAANCQAAAAACCQAAAAAMCQAAAAALCQAAAAAKCQAAAAAMCQAAAAANCQAAAAAKCQAAAAABCQAAAAAFCQAAAAADCQAAAAAKCQAAAAACCQAAAAAACQAAAAAJCQAAAAAECQAAAAAICQAAAAAGCQAAAAAECQAAAAABCQAAAAAGCQAAAAACCQAAAAAKCQAAAAACCQAAAAAECQAAAAAICQAAAAAFCQAAAAAECQAAAAACCQAAAAAHCQAAAAALCQAAAAAKCQAAAAABCQAAAAAHCQAAAAAKCQAAAAAECQAAAAACCQAAAAACCQAAAAAECQAAAAADCQAAAAAFCQAAAAAHCQAAAAAECQAAAAAHCQAAAAAFCQAAAAADCQAAAAAACQAAAAAMCQAAAAAHCQAAAAACCQAAAAABCQAAAAAJCQAAAAAFCQAAAAAMCQAAAAAACQAAAAAGCQAAAAALCQAAAAANCQAAAAADCQAAAAAFCQAAAAAKCQAAAAADCQAAAAADCQAAAAADCQAAAAALCQAAAAAMCQAAAAADCQAAAAAGCQAAAAAFCQAAAAABCQAAAAAMCQAAAAADCQAAAAAECQAAAAANCQAAAAAICQAAAAAFCQAAAAANCQAAAAANCQAAAAADCQAAAAAACQAAAAAACQAAAAAHCQAAAAAKCQAAAAABCQAAAAAMCQAAAAAECQAAAAAICQAAAAAACQAAAAAICQAAAAACCQAAAAANCQAAAAAGCQAAAAAFCQAAAAACCQAAAAAICQAAAAABCQAAAAAECQAAAAAGCQAAAAAFCQAAAAAECQAAAAAKCQAAAAAICQAAAAABCQAAAAALCQAAAAADCQAAAAAHCQAAAAAACQAAAAAHCQAAAAAICQAAAAACCQAAAAADCQAAAAAKCQAAAAAJCQAAAAANCQAAAAAGCQAAAAAMCQAAAAAECQAAAAANCQAAAAALCQAAAAAMCQAAAAADCQAAAAAGCQAAAAAECQAAAAANCQAAAAAECQAAAAAJCQAAAAAICQAAAAAJCQAAAAAICQAAAAAJCQAAAAABCQAAAAAJCQAAAAAKCQAAAAAICQAAAAAGCQAAAAAMCQAAAAAJCQAAAAACCQAAAAANCQAAAAAKCQAAAAAJ
version: 6
-7,2:
ind: -7,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,2:
ind: -6,2
- tiles: AQAAAAABAQAAAAADCQAAAAALCQAAAAALCQAAAAANCQAAAAAKCQAAAAAECQAAAAAKCQAAAAAGCQAAAAAACQAAAAAMCQAAAAAGCQAAAAAHCQAAAAAJCQAAAAAACQAAAAAEAQAAAAACAQAAAAAEAQAAAAAEAQAAAAACAQAAAAADAQAAAAABAQAAAAACAQAAAAADAQAAAAABCQAAAAAECQAAAAACCQAAAAAACQAAAAADCQAAAAAICQAAAAAMCQAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAAAQAAAAADAQAAAAABAQAAAAAEAQAAAAAEAQAAAAACAQAAAAAECQAAAAAICQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AQAAAAAEAQAAAAAECQAAAAACCQAAAAAICQAAAAALCQAAAAAECQAAAAADCQAAAAAGCQAAAAAICQAAAAACCQAAAAAHCQAAAAALCQAAAAABCQAAAAABCQAAAAAJCQAAAAADAQAAAAABAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAEAQAAAAABAQAAAAACAQAAAAAEAQAAAAACCQAAAAAMCQAAAAAKCQAAAAANCQAAAAALCQAAAAANCQAAAAACCQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAACAQAAAAAAAQAAAAACCQAAAAALCQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAAEAQAAAAACAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,2:
ind: -5,2
- tiles: CQAAAAADCQAAAAADCQAAAAAICQAAAAAMCQAAAAAKCQAAAAAHCQAAAAAKCQAAAAAJCQAAAAALCQAAAAAACQAAAAAACQAAAAANCQAAAAAGCQAAAAAFCQAAAAAACQAAAAAGCQAAAAAACQAAAAAMCQAAAAAHCQAAAAAHCQAAAAADCQAAAAACCQAAAAACCQAAAAAHCQAAAAAMCQAAAAAGCQAAAAAGCQAAAAAGCQAAAAAACQAAAAAGCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAICQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAANCQAAAAAJCQAAAAAKCQAAAAAHCQAAAAAFCQAAAAADCQAAAAAACQAAAAAACQAAAAAICQAAAAAACQAAAAABCQAAAAAHCQAAAAAKCQAAAAAGCQAAAAAACQAAAAAJCQAAAAANCQAAAAALCQAAAAAMCQAAAAAECQAAAAADCQAAAAALCQAAAAANCQAAAAABAQAAAAACAQAAAAABAQAAAAABCQAAAAAECQAAAAAICQAAAAACCQAAAAAFCQAAAAANCQAAAAALCQAAAAAMCQAAAAAGCQAAAAALCQAAAAAKCQAAAAAECQAAAAAECQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAECQAAAAALCQAAAAABCQAAAAAJCQAAAAALCQAAAAALCQAAAAAGCQAAAAAACQAAAAAFCQAAAAACCQAAAAAECQAAAAAMAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAEAQAAAAABAQAAAAACAQAAAAAEAQAAAAAACQAAAAALCQAAAAANCQAAAAAFCQAAAAAFCQAAAAABCQAAAAANCQAAAAANAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAECQAAAAABCQAAAAAGCQAAAAAJAQAAAAAEAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAADAQAAAAAEAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: CQAAAAANCQAAAAALCQAAAAAECQAAAAAKCQAAAAAACQAAAAANCQAAAAAHCQAAAAADCQAAAAAJCQAAAAAKCQAAAAABCQAAAAAGCQAAAAACCQAAAAAJCQAAAAACCQAAAAADCQAAAAALCQAAAAAMCQAAAAAACQAAAAAKCQAAAAAGCQAAAAAICQAAAAAFCQAAAAACCQAAAAADCQAAAAAICQAAAAAHCQAAAAAACQAAAAAJCQAAAAANCQAAAAALCQAAAAALCQAAAAAHCQAAAAAICQAAAAAKCQAAAAABCQAAAAAGCQAAAAACCQAAAAAACQAAAAAMCQAAAAAGCQAAAAABCQAAAAAHCQAAAAAGCQAAAAAICQAAAAABCQAAAAALCQAAAAAECQAAAAAGCQAAAAANCQAAAAAGCQAAAAAECQAAAAAGCQAAAAAECQAAAAABCQAAAAAICQAAAAADCQAAAAAACQAAAAAECQAAAAADCQAAAAALCQAAAAAMCQAAAAAACQAAAAAIAQAAAAACAQAAAAACAQAAAAABCQAAAAALCQAAAAAMCQAAAAAFCQAAAAAKCQAAAAACCQAAAAAMCQAAAAAMCQAAAAAICQAAAAAECQAAAAANCQAAAAAFCQAAAAAECQAAAAABAQAAAAAEAQAAAAACAQAAAAABAQAAAAAAAQAAAAADCQAAAAANCQAAAAAMCQAAAAAFCQAAAAANCQAAAAAACQAAAAADCQAAAAANCQAAAAAACQAAAAANCQAAAAABCQAAAAADAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAABAQAAAAABAQAAAAABAQAAAAABCQAAAAAICQAAAAACCQAAAAAJCQAAAAAACQAAAAALCQAAAAAFCQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAADCQAAAAANCQAAAAABCQAAAAAFAQAAAAABAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAAEAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAAEAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,2:
ind: -4,2
- tiles: CQAAAAAJCQAAAAABCQAAAAALCQAAAAAECQAAAAAFCQAAAAABCQAAAAAGCQAAAAAACQAAAAALCQAAAAAMCQAAAAAICQAAAAAKCQAAAAACCQAAAAAFCQAAAAAFCQAAAAAHCQAAAAAECQAAAAAECQAAAAALCQAAAAANCQAAAAALCQAAAAAKCQAAAAAKCQAAAAAGCQAAAAAKCQAAAAAJCQAAAAAKCQAAAAAJCQAAAAANCQAAAAALCQAAAAAFCQAAAAAKCQAAAAAICQAAAAAFCQAAAAALCQAAAAAECQAAAAAJCQAAAAAGCQAAAAAFCQAAAAAECQAAAAAFCQAAAAANCQAAAAAJCQAAAAABCQAAAAAICQAAAAABCQAAAAAFCQAAAAAICQAAAAAECQAAAAADCQAAAAAICQAAAAAACQAAAAAGCQAAAAAHCQAAAAALCQAAAAAJCQAAAAAJCQAAAAAKCQAAAAAKCQAAAAAHCQAAAAACCQAAAAALCQAAAAAICQAAAAANCQAAAAAFCQAAAAAHCQAAAAADCQAAAAAECQAAAAAECQAAAAAICQAAAAAMCQAAAAAJCQAAAAAGCQAAAAALCQAAAAAECQAAAAAMCQAAAAACCQAAAAAJCQAAAAAKCQAAAAAKCQAAAAAKCQAAAAALCQAAAAAGCQAAAAAECQAAAAAACQAAAAAGCQAAAAADCQAAAAADCQAAAAAHCQAAAAAJCQAAAAAACQAAAAAGCQAAAAANCQAAAAACCQAAAAAMCQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAADCQAAAAAICQAAAAACCQAAAAAJCQAAAAALCQAAAAAGCQAAAAAJCQAAAAAMCQAAAAABCQAAAAAKCQAAAAANCQAAAAAICQAAAAABAQAAAAADAQAAAAAEAQAAAAABAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAACAQAAAAACAQAAAAABCQAAAAANCQAAAAAGCQAAAAADCQAAAAAHCQAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAAECQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAEAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: CQAAAAAECQAAAAAFCQAAAAALCQAAAAAHCQAAAAANCQAAAAANCQAAAAAACQAAAAAFCQAAAAAGCQAAAAAMCQAAAAAHCQAAAAANCQAAAAAGCQAAAAAJCQAAAAAGCQAAAAACCQAAAAAFCQAAAAAHCQAAAAAHCQAAAAAACQAAAAAHCQAAAAAICQAAAAAECQAAAAAACQAAAAAGCQAAAAAMCQAAAAAMCQAAAAAICQAAAAAMCQAAAAAICQAAAAAECQAAAAALCQAAAAADCQAAAAAJCQAAAAANCQAAAAAICQAAAAAJCQAAAAAHCQAAAAALCQAAAAAMCQAAAAAECQAAAAAGCQAAAAABCQAAAAABCQAAAAAGCQAAAAAJCQAAAAAICQAAAAAJCQAAAAADCQAAAAAKCQAAAAAMCQAAAAAKCQAAAAAGCQAAAAAFCQAAAAAKCQAAAAAJCQAAAAANCQAAAAAJCQAAAAAICQAAAAAICQAAAAAICQAAAAANCQAAAAAECQAAAAAJCQAAAAAJCQAAAAAFCQAAAAAHCQAAAAAMCQAAAAAGCQAAAAANCQAAAAAHCQAAAAABCQAAAAANCQAAAAAACQAAAAALCQAAAAANCQAAAAAKCQAAAAADCQAAAAADCQAAAAALCQAAAAALCQAAAAAGCQAAAAAJCQAAAAAACQAAAAAJCQAAAAAECQAAAAAECQAAAAABCQAAAAAMCQAAAAAJCQAAAAAECQAAAAAFCQAAAAAJCQAAAAAGCQAAAAAFCQAAAAAGAQAAAAAEAQAAAAAEAQAAAAACAQAAAAAECQAAAAAGCQAAAAAICQAAAAACCQAAAAAECQAAAAAECQAAAAAKCQAAAAANCQAAAAAACQAAAAADCQAAAAAJCQAAAAAJCQAAAAAKAQAAAAADAQAAAAACAQAAAAABAQAAAAABAQAAAAAEAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAACCQAAAAAICQAAAAAHCQAAAAALCQAAAAACCQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAAECQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,3:
ind: -2,3
- tiles: AAAAAAAAAAAAAAAACQAAAAABCQAAAAAICQAAAAAFCQAAAAADCQAAAAACCQAAAAAHCQAAAAAKCQAAAAAJCQAAAAAKCQAAAAAJCQAAAAADCQAAAAAICQAAAAAFCQAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAMCQAAAAAGCQAAAAAHCQAAAAALCQAAAAAHCQAAAAAACQAAAAAKCQAAAAALCQAAAAABCQAAAAAECQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAACCQAAAAAGCQAAAAAJCQAAAAAICQAAAAADCQAAAAAACQAAAAANCQAAAAAHCQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAADCQAAAAAGCQAAAAAKCQAAAAAHCQAAAAANCQAAAAACCQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAACQAAAAAICQAAAAAKCQAAAAANCQAAAAAHCQAAAAAACQAAAAANCQAAAAAICQAAAAALCQAAAAAKCQAAAAAMCQAAAAAACQAAAAANCQAAAAANCQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAICQAAAAADCQAAAAADCQAAAAAMCQAAAAAJCQAAAAAECQAAAAAFCQAAAAADCQAAAAANCQAAAAAECQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAGCQAAAAACCQAAAAAGCQAAAAAMCQAAAAABCQAAAAAFCQAAAAAJCQAAAAAKCQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADCQAAAAABCQAAAAAGCQAAAAALCQAAAAAGCQAAAAABCQAAAAAMCQAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,3:
ind: -1,3
- tiles: CQAAAAAKCQAAAAAHCQAAAAAHCQAAAAALCQAAAAAGCQAAAAAICQAAAAAMCQAAAAAECQAAAAAICQAAAAAHCQAAAAAHCQAAAAAJCQAAAAAKCQAAAAAECQAAAAAECQAAAAACCQAAAAAMCQAAAAANCQAAAAANCQAAAAAJCQAAAAAJCQAAAAACCQAAAAAMCQAAAAAFCQAAAAANCQAAAAAGCQAAAAACCQAAAAALCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAECQAAAAAKCQAAAAAECQAAAAAMCQAAAAANCQAAAAALCQAAAAAKCQAAAAAKCQAAAAAJCQAAAAAGCQAAAAAKCQAAAAAICQAAAAABCQAAAAAGCQAAAAACCQAAAAAHCQAAAAABCQAAAAAACQAAAAAECQAAAAAFCQAAAAABCQAAAAADCQAAAAAGCQAAAAAGCQAAAAAECQAAAAAGCQAAAAAFCQAAAAAHCQAAAAABCQAAAAACCQAAAAAGCQAAAAACCQAAAAABCQAAAAAICQAAAAAECQAAAAAGCQAAAAAICQAAAAAMCQAAAAAECQAAAAABCQAAAAABCQAAAAALCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAFCQAAAAAIAAAAAAAACQAAAAAICQAAAAACCQAAAAAECQAAAAACCQAAAAAECQAAAAABCQAAAAAECQAAAAANCQAAAAABCQAAAAAGCQAAAAAFCQAAAAAHCQAAAAABCQAAAAAACQAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAANCQAAAAABCQAAAAAACQAAAAAICQAAAAADCQAAAAAFCQAAAAAACQAAAAAKCQAAAAAMCQAAAAAJCQAAAAAJCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAABCQAAAAAICQAAAAAKCQAAAAAICQAAAAANCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: CQAAAAAICQAAAAALCQAAAAALCQAAAAALCQAAAAAFCQAAAAAGCQAAAAAFCQAAAAAICQAAAAACCQAAAAAGCQAAAAACCQAAAAAICQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAAGCQAAAAAGCQAAAAAGCQAAAAAICQAAAAAECQAAAAAJCQAAAAAGCQAAAAAECQAAAAAECQAAAAAMCQAAAAANCQAAAAABCQAAAAAFCQAAAAAGCQAAAAAMCQAAAAAECQAAAAADCQAAAAABCQAAAAAECQAAAAABCQAAAAABCQAAAAAHCQAAAAAJCQAAAAANCQAAAAAHCQAAAAAACQAAAAAECQAAAAACCQAAAAAJCQAAAAAICQAAAAAMCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAANCQAAAAAECQAAAAADCQAAAAAGCQAAAAANCQAAAAALCQAAAAAMCQAAAAAGCQAAAAANCQAAAAALCQAAAAANCQAAAAAFCQAAAAAFCQAAAAAMCQAAAAANCQAAAAAMCQAAAAANCQAAAAALCQAAAAAACQAAAAALCQAAAAAGCQAAAAADCQAAAAAKCQAAAAAJCQAAAAANCQAAAAAHAAAAAAAACQAAAAAGCQAAAAAGCQAAAAADCQAAAAAICQAAAAACCQAAAAADCQAAAAAMCQAAAAAECQAAAAALCQAAAAAACQAAAAAMCQAAAAAGCQAAAAAJCQAAAAAGCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAECQAAAAAJCQAAAAAHCQAAAAAMCQAAAAADCQAAAAADCQAAAAAGCQAAAAAKCQAAAAAMCQAAAAAGCQAAAAAJCQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADCQAAAAALCQAAAAAACQAAAAAACQAAAAAFCQAAAAAHCQAAAAAHCQAAAAAMCQAAAAAKCQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,3:
ind: 0,3
- tiles: CQAAAAAJCQAAAAAHCQAAAAAMCQAAAAANCQAAAAAMCQAAAAANCQAAAAAFCQAAAAAHCQAAAAAICQAAAAANCQAAAAAGCQAAAAAMCQAAAAALCQAAAAACCQAAAAABCQAAAAACCQAAAAAKCQAAAAACCQAAAAAMCQAAAAACCQAAAAAKCQAAAAABCQAAAAAECQAAAAAGCQAAAAALCQAAAAAFCQAAAAAKCQAAAAAACQAAAAAGCQAAAAAFCQAAAAAKCQAAAAAHCQAAAAABCQAAAAANCQAAAAAFCQAAAAAACQAAAAAFCQAAAAAGCQAAAAAKCQAAAAAHCQAAAAAKCQAAAAAMCQAAAAAACQAAAAADCQAAAAAMCQAAAAADCQAAAAAHCQAAAAACCQAAAAANCQAAAAAHCQAAAAAICQAAAAAGCQAAAAANCQAAAAACCQAAAAANCQAAAAAECQAAAAAGCQAAAAAHCQAAAAAGCQAAAAAGCQAAAAADCQAAAAABCQAAAAAMCQAAAAAMCQAAAAAKCQAAAAAJCQAAAAAHCQAAAAALCQAAAAAGCQAAAAABCQAAAAACCQAAAAAFCQAAAAADCQAAAAAECQAAAAABCQAAAAAACQAAAAALCQAAAAANCQAAAAABCQAAAAADCQAAAAAICQAAAAANCQAAAAAJCQAAAAAICQAAAAAJCQAAAAAECQAAAAANCQAAAAABCQAAAAAFCQAAAAADCQAAAAAFCQAAAAAICQAAAAAKCQAAAAAJCQAAAAACCQAAAAACCQAAAAAMCQAAAAALCQAAAAACCQAAAAAACQAAAAABCQAAAAAECQAAAAAGCQAAAAAHCQAAAAAFCQAAAAACCQAAAAAMCQAAAAAHCQAAAAAJCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAGCQAAAAACCQAAAAAACQAAAAAHCQAAAAAICQAAAAAMCQAAAAADCQAAAAABCQAAAAAHCQAAAAAACQAAAAABCQAAAAAJCQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAJCQAAAAADCQAAAAAICQAAAAAGCQAAAAABCQAAAAAACQAAAAAJCQAAAAABCQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAANCQAAAAACCQAAAAAFCQAAAAALCQAAAAAICQAAAAAJCQAAAAANCQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: CQAAAAAJCQAAAAAECQAAAAAHCQAAAAAHCQAAAAAACQAAAAACCQAAAAAMCQAAAAADCQAAAAAJCQAAAAALCQAAAAAJCQAAAAAACQAAAAAECQAAAAAHCQAAAAABCQAAAAAHCQAAAAABCQAAAAAACQAAAAAGCQAAAAACCQAAAAALCQAAAAAHCQAAAAAMCQAAAAAACQAAAAAJCQAAAAAMCQAAAAAICQAAAAAACQAAAAABCQAAAAABCQAAAAAFCQAAAAAJCQAAAAADCQAAAAAGCQAAAAAHCQAAAAAGCQAAAAAKCQAAAAADCQAAAAABCQAAAAAHCQAAAAAGCQAAAAAKCQAAAAAICQAAAAAGCQAAAAAICQAAAAAFCQAAAAAECQAAAAAJCQAAAAAICQAAAAAACQAAAAAGCQAAAAALCQAAAAAFCQAAAAAFCQAAAAABCQAAAAAMCQAAAAANCQAAAAACCQAAAAALCQAAAAALCQAAAAACCQAAAAAJCQAAAAAJCQAAAAACCQAAAAALCQAAAAAJCQAAAAAHCQAAAAAJCQAAAAADCQAAAAALCQAAAAAECQAAAAAICQAAAAACCQAAAAABCQAAAAACCQAAAAAHCQAAAAAMCQAAAAAHCQAAAAAFCQAAAAAICQAAAAAKCQAAAAAECQAAAAAGCQAAAAAFCQAAAAAECQAAAAABCQAAAAAFCQAAAAALCQAAAAAHCQAAAAAFCQAAAAANCQAAAAAFCQAAAAAJCQAAAAAACQAAAAAFCQAAAAANCQAAAAAICQAAAAAFCQAAAAAFCQAAAAACCQAAAAAMCQAAAAAICQAAAAALCQAAAAAMCQAAAAAGCQAAAAAGCQAAAAABCQAAAAACCQAAAAAHCQAAAAACCQAAAAAFCQAAAAAKCQAAAAAGCQAAAAANCQAAAAADCQAAAAAMCQAAAAAJCQAAAAANCQAAAAAKCQAAAAAJCQAAAAABCQAAAAADCQAAAAAHCQAAAAAKCQAAAAALCQAAAAAFCQAAAAABCQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAALCQAAAAAICQAAAAAACQAAAAABCQAAAAAHCQAAAAALCQAAAAAJCQAAAAADCQAAAAAICQAAAAAJCQAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAHCQAAAAAKCQAAAAAMCQAAAAACCQAAAAACCQAAAAAICQAAAAACCQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,3:
ind: 1,3
- tiles: CQAAAAAHCQAAAAALCQAAAAAICQAAAAAHCQAAAAAHCQAAAAABCQAAAAAHCQAAAAAGCQAAAAAMCQAAAAALCQAAAAAECQAAAAALCQAAAAANCQAAAAABCQAAAAAMCQAAAAAECQAAAAAMCQAAAAAECQAAAAAHCQAAAAACCQAAAAAJCQAAAAAHCQAAAAAACQAAAAACCQAAAAADCQAAAAAHCQAAAAALCQAAAAAGCQAAAAAJCQAAAAAJCQAAAAAFCQAAAAAMCQAAAAAJCQAAAAAACQAAAAABCQAAAAACCQAAAAAKCQAAAAAECQAAAAAICQAAAAABCQAAAAAKCQAAAAALCQAAAAAECQAAAAAJCQAAAAAECQAAAAABCQAAAAAGCQAAAAACCQAAAAAICQAAAAAFCQAAAAABCQAAAAAGCQAAAAAACQAAAAALCQAAAAAECQAAAAABCQAAAAACCQAAAAAGCQAAAAALCQAAAAAACQAAAAAICQAAAAAGCQAAAAANCQAAAAANCQAAAAAFCQAAAAAFCQAAAAAGCQAAAAAFCQAAAAAHCQAAAAABCQAAAAACCQAAAAAKCQAAAAAMCQAAAAAGCQAAAAAACQAAAAANCQAAAAAICQAAAAAACQAAAAAHCQAAAAADCQAAAAAACQAAAAAJCQAAAAABCQAAAAALCQAAAAAJCQAAAAALCQAAAAAACQAAAAAKCQAAAAAHCQAAAAAJCQAAAAAICQAAAAALCQAAAAAHCQAAAAAFCQAAAAADCQAAAAACCQAAAAAFCQAAAAAJCQAAAAAACQAAAAAHCQAAAAANCQAAAAAECQAAAAACCQAAAAAKCQAAAAAJCQAAAAAKCQAAAAAMCQAAAAAACQAAAAAACQAAAAAICQAAAAAACQAAAAAFCQAAAAABCQAAAAAECQAAAAACCQAAAAALCQAAAAAFCQAAAAAJCQAAAAAMCQAAAAADCQAAAAAKCQAAAAAGCQAAAAABCQAAAAAFCQAAAAAGCQAAAAAKCQAAAAAFCQAAAAAMCQAAAAADCQAAAAABCQAAAAAMCQAAAAAACQAAAAALCQAAAAAHCQAAAAAECQAAAAAICQAAAAAFCQAAAAAKCQAAAAAKCQAAAAANCQAAAAAKCQAAAAAFCQAAAAAICQAAAAACCQAAAAANCQAAAAAECQAAAAAKCQAAAAAECQAAAAAHCQAAAAAGCQAAAAAICQAAAAANCQAAAAABCQAAAAADCQAAAAAICQAAAAAKCQAAAAABCQAAAAADCQAAAAABCQAAAAAIAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAAAQAAAAACCQAAAAAECQAAAAAMCQAAAAAJCQAAAAAJCQAAAAAICQAAAAAJCQAAAAAMCQAAAAAFCQAAAAAKCQAAAAALCQAAAAAGAQAAAAABAQAAAAACAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAADCQAAAAAGCQAAAAAMCQAAAAAHCQAAAAANCQAAAAABCQAAAAABCQAAAAACCQAAAAAGCQAAAAAAAAAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAAEAQAAAAABAQAAAAADAQAAAAAECQAAAAAMCQAAAAAJCQAAAAANCQAAAAAHCQAAAAAACQAAAAADCQAAAAAECQAAAAACAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAAEAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAAEAQAAAAABAQAAAAABAQAAAAACAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAACAQAAAAACAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAACAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAE
+ tiles: CQAAAAALCQAAAAAKCQAAAAABCQAAAAACCQAAAAANCQAAAAACCQAAAAACCQAAAAAACQAAAAAKCQAAAAAGCQAAAAABCQAAAAAJCQAAAAANCQAAAAABCQAAAAAACQAAAAADCQAAAAAMCQAAAAAGCQAAAAAFCQAAAAAGCQAAAAANCQAAAAADCQAAAAADCQAAAAALCQAAAAANCQAAAAADCQAAAAADCQAAAAAHCQAAAAANCQAAAAAGCQAAAAALCQAAAAAKCQAAAAANCQAAAAAGCQAAAAAACQAAAAAJCQAAAAABCQAAAAAHCQAAAAAGCQAAAAAMCQAAAAAACQAAAAAGCQAAAAAECQAAAAAMCQAAAAADCQAAAAAHCQAAAAAECQAAAAAKCQAAAAAICQAAAAAKCQAAAAAACQAAAAAICQAAAAAGCQAAAAAFCQAAAAABCQAAAAAICQAAAAACCQAAAAAJCQAAAAAECQAAAAANCQAAAAABCQAAAAAICQAAAAANCQAAAAABCQAAAAACCQAAAAAGCQAAAAAFCQAAAAAGCQAAAAAMCQAAAAAKCQAAAAAACQAAAAAKCQAAAAADCQAAAAABCQAAAAAFCQAAAAAFCQAAAAABCQAAAAAJCQAAAAABCQAAAAAHCQAAAAAJCQAAAAAFCQAAAAAGCQAAAAAJCQAAAAACCQAAAAAICQAAAAAJCQAAAAALCQAAAAAICQAAAAAGCQAAAAAKCQAAAAALCQAAAAAACQAAAAAKCQAAAAAKCQAAAAAACQAAAAABCQAAAAAFCQAAAAAMCQAAAAANCQAAAAACCQAAAAAMCQAAAAAMCQAAAAAKCQAAAAAFCQAAAAADCQAAAAAFCQAAAAADCQAAAAAKCQAAAAAMCQAAAAAKCQAAAAAHCQAAAAADCQAAAAAICQAAAAADCQAAAAAJCQAAAAAACQAAAAAKCQAAAAAMCQAAAAAHCQAAAAAJCQAAAAAKCQAAAAAKCQAAAAABCQAAAAAHCQAAAAAECQAAAAACCQAAAAALCQAAAAAICQAAAAAJCQAAAAAECQAAAAANCQAAAAAFCQAAAAAFCQAAAAAGCQAAAAAECQAAAAAECQAAAAAMCQAAAAAECQAAAAADCQAAAAAJCQAAAAAACQAAAAAICQAAAAACCQAAAAAKCQAAAAAGCQAAAAACCQAAAAAMCQAAAAAACQAAAAAKCQAAAAAGCQAAAAAACQAAAAAHCQAAAAACCQAAAAAKCQAAAAAICQAAAAANCQAAAAADCQAAAAABCQAAAAALAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACCQAAAAALCQAAAAAACQAAAAAGCQAAAAAHCQAAAAADCQAAAAAICQAAAAANCQAAAAACCQAAAAAKCQAAAAACCQAAAAAEAQAAAAAAAQAAAAADAQAAAAAEAQAAAAABAQAAAAACAQAAAAABAQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAALCQAAAAAGCQAAAAAICQAAAAANCQAAAAAKCQAAAAAKAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAABAQAAAAAECQAAAAADCQAAAAAJCQAAAAAGCQAAAAADCQAAAAAGCQAAAAAACQAAAAAGCQAAAAAIAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAABAQAAAAAEAQAAAAABAQAAAAADAQAAAAABAQAAAAAAAQAAAAACAQAAAAABAQAAAAACAQAAAAADAQAAAAACAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAQAAAAACAQAAAAAAAQAAAAACAQAAAAAEAQAAAAACAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAAEAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAEAQAAAAACAQAAAAADAQAAAAACAQAAAAACAQAAAAADAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAD
version: 6
1,4:
ind: 1,4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAAEAQAAAAAEAQAAAAADAQAAAAADAQAAAAAEAQAAAAADAQAAAAABAQAAAAABAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAQAAAAAAAQAAAAACAQAAAAAEAQAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAABAQAAAAAEAQAAAAACAQAAAAAEAQAAAAACAQAAAAACAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAADAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACAQAAAAACAQAAAAABAQAAAAADAQAAAAADAQAAAAAEAQAAAAAAAQAAAAACAQAAAAADAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAACAQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAACAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,3:
ind: 2,3
- tiles: CQAAAAACCQAAAAAACQAAAAALCQAAAAAHCQAAAAABCQAAAAAJCQAAAAAKCQAAAAAMCQAAAAAMCQAAAAACCQAAAAACCQAAAAANCQAAAAAGCQAAAAABCQAAAAAGCQAAAAAICQAAAAAKCQAAAAALCQAAAAAECQAAAAAFCQAAAAACCQAAAAAECQAAAAAMCQAAAAACCQAAAAADCQAAAAAACQAAAAAECQAAAAAKCQAAAAACCQAAAAAFCQAAAAAKCQAAAAALCQAAAAAACQAAAAAACQAAAAABCQAAAAANCQAAAAANCQAAAAAFCQAAAAALCQAAAAAKCQAAAAAHCQAAAAAMCQAAAAACCQAAAAALCQAAAAAKCQAAAAAFCQAAAAAICQAAAAAMCQAAAAAJCQAAAAAMCQAAAAAFCQAAAAACCQAAAAAICQAAAAAHCQAAAAAJCQAAAAAMCQAAAAALCQAAAAAACQAAAAALCQAAAAAGCQAAAAABCQAAAAAKCQAAAAAJCQAAAAADCQAAAAAKCQAAAAAJCQAAAAAFCQAAAAAECQAAAAAFCQAAAAABCQAAAAAJCQAAAAAICQAAAAALCQAAAAADCQAAAAAACQAAAAAHCQAAAAALCQAAAAAMCQAAAAADCQAAAAABCQAAAAAHCQAAAAADCQAAAAANCQAAAAAMCQAAAAAECQAAAAAACQAAAAALCQAAAAAHCQAAAAAGCQAAAAAMCQAAAAAFCQAAAAAFCQAAAAAACQAAAAAKCQAAAAAKCQAAAAAGCQAAAAACCQAAAAAJCQAAAAAACQAAAAAGCQAAAAAHCQAAAAALCQAAAAADCQAAAAAHCQAAAAAGCQAAAAANCQAAAAAKCQAAAAAACQAAAAAECQAAAAAECQAAAAAECQAAAAAICQAAAAABCQAAAAAECQAAAAAKCQAAAAABCQAAAAAHCQAAAAABCQAAAAABCQAAAAAHCQAAAAADCQAAAAABCQAAAAANCQAAAAAHCQAAAAALCQAAAAAKCQAAAAAGCQAAAAAACQAAAAANCQAAAAAJCQAAAAAKCQAAAAAECQAAAAACCQAAAAAECQAAAAAECQAAAAAFCQAAAAACCQAAAAAKCQAAAAAGCQAAAAAECQAAAAAMCQAAAAAKCQAAAAAHCQAAAAANCQAAAAABCQAAAAALCQAAAAANCQAAAAAACQAAAAAICQAAAAALCQAAAAANCQAAAAAICQAAAAAJCQAAAAADCQAAAAAFCQAAAAALCQAAAAAACQAAAAAGCQAAAAAECQAAAAAMCQAAAAAKCQAAAAACCQAAAAADCQAAAAAICQAAAAAKCQAAAAAHCQAAAAAKCQAAAAAFCQAAAAANCQAAAAAICQAAAAAACQAAAAABCQAAAAAKCQAAAAAECQAAAAADCQAAAAAGCQAAAAAECQAAAAABCQAAAAAMCQAAAAAJCQAAAAAECQAAAAAKCQAAAAADCQAAAAAFCQAAAAANCQAAAAAFCQAAAAANCQAAAAAHCQAAAAABCQAAAAACCQAAAAAHCQAAAAADCQAAAAAECQAAAAAGCQAAAAAGCQAAAAACCQAAAAABCQAAAAADCQAAAAAKCQAAAAAGCQAAAAACCQAAAAABCQAAAAANCQAAAAAKCQAAAAAGCQAAAAAACQAAAAAECQAAAAAJCQAAAAAKCQAAAAAFCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAAICQAAAAAACQAAAAAJCQAAAAAICQAAAAAECQAAAAACCQAAAAABCQAAAAAHCQAAAAAECQAAAAANCQAAAAAMCQAAAAALCQAAAAAFCQAAAAAHCQAAAAADCQAAAAAKCQAAAAAICQAAAAALCQAAAAAKCQAAAAAJCQAAAAABCQAAAAAFCQAAAAAFCQAAAAAKAQAAAAACAQAAAAAACQAAAAAICQAAAAACCQAAAAAECQAAAAAGCQAAAAANCQAAAAABCQAAAAAHCQAAAAAICQAAAAALCQAAAAAJCQAAAAAECQAAAAACCQAAAAABCQAAAAAL
+ tiles: CQAAAAAECQAAAAAKCQAAAAAMCQAAAAAGCQAAAAACCQAAAAALCQAAAAANCQAAAAAFCQAAAAAJCQAAAAAMCQAAAAADCQAAAAACCQAAAAAFCQAAAAAMCQAAAAAFCQAAAAAICQAAAAAFCQAAAAAACQAAAAAHCQAAAAAHCQAAAAALCQAAAAAJCQAAAAAHCQAAAAAACQAAAAAHCQAAAAAKCQAAAAAACQAAAAADCQAAAAAECQAAAAAKCQAAAAAFCQAAAAAACQAAAAAKCQAAAAALCQAAAAAHCQAAAAAJCQAAAAACCQAAAAACCQAAAAAJCQAAAAAGCQAAAAABCQAAAAALCQAAAAAHCQAAAAAMCQAAAAADCQAAAAAHCQAAAAAJCQAAAAADCQAAAAANCQAAAAALCQAAAAADCQAAAAAKCQAAAAACCQAAAAAGCQAAAAAECQAAAAAGCQAAAAAECQAAAAALCQAAAAAJCQAAAAAKCQAAAAAHCQAAAAANCQAAAAANCQAAAAAFCQAAAAAMCQAAAAAICQAAAAAFCQAAAAANCQAAAAAFCQAAAAABCQAAAAABCQAAAAAFCQAAAAAHCQAAAAALCQAAAAANCQAAAAANCQAAAAAICQAAAAAICQAAAAAFCQAAAAAJCQAAAAABCQAAAAAFCQAAAAAHCQAAAAABCQAAAAABCQAAAAAJCQAAAAALCQAAAAANCQAAAAANCQAAAAACCQAAAAAFCQAAAAABCQAAAAANCQAAAAAECQAAAAAJCQAAAAADCQAAAAAGCQAAAAAFCQAAAAAFCQAAAAANCQAAAAAFCQAAAAACCQAAAAAGCQAAAAAHCQAAAAAHCQAAAAAICQAAAAAACQAAAAAECQAAAAADCQAAAAAGCQAAAAAICQAAAAALCQAAAAAMCQAAAAABCQAAAAALCQAAAAACCQAAAAAGCQAAAAABCQAAAAAJCQAAAAAKCQAAAAADCQAAAAAKCQAAAAAECQAAAAANCQAAAAABCQAAAAAFCQAAAAAECQAAAAAGCQAAAAAICQAAAAANCQAAAAAECQAAAAAJCQAAAAAMCQAAAAAMCQAAAAAMCQAAAAAMCQAAAAAMCQAAAAAJCQAAAAAKCQAAAAAGCQAAAAADCQAAAAAJCQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAFCQAAAAAMCQAAAAAECQAAAAAJCQAAAAALCQAAAAAICQAAAAAACQAAAAAICQAAAAALCQAAAAAFCQAAAAAMCQAAAAAJCQAAAAAICQAAAAACCQAAAAADCQAAAAAGCQAAAAADCQAAAAANCQAAAAALCQAAAAAKCQAAAAAFCQAAAAAICQAAAAAHCQAAAAAGCQAAAAAJCQAAAAAGCQAAAAAMCQAAAAAFCQAAAAAACQAAAAAACQAAAAANCQAAAAACCQAAAAAHCQAAAAAHCQAAAAAGCQAAAAAJCQAAAAABCQAAAAAGCQAAAAALCQAAAAANCQAAAAAFCQAAAAAKCQAAAAAECQAAAAAJCQAAAAAKCQAAAAAHCQAAAAAFCQAAAAAJCQAAAAADCQAAAAANCQAAAAAGCQAAAAACCQAAAAAACQAAAAAICQAAAAALCQAAAAABCQAAAAAHCQAAAAAHCQAAAAAMCQAAAAAACQAAAAAACQAAAAALCQAAAAAHCQAAAAAMCQAAAAAFCQAAAAAICQAAAAABCQAAAAAICQAAAAAKCQAAAAAJCQAAAAACCQAAAAAJCQAAAAAMCQAAAAADCQAAAAAMCQAAAAAACQAAAAALCQAAAAAFCQAAAAAHCQAAAAADCQAAAAAMCQAAAAAFCQAAAAACCQAAAAAHCQAAAAACCQAAAAAMCQAAAAAICQAAAAAACQAAAAAACQAAAAAFCQAAAAANCQAAAAAJCQAAAAALCQAAAAACAQAAAAADAQAAAAABCQAAAAACCQAAAAADCQAAAAALCQAAAAAHCQAAAAACCQAAAAAMCQAAAAAFCQAAAAALCQAAAAADCQAAAAAHCQAAAAAFCQAAAAADCQAAAAAACQAAAAAH
version: 6
3,3:
ind: 3,3
- tiles: CQAAAAAKCQAAAAADCQAAAAAICQAAAAAHCQAAAAAACQAAAAAECQAAAAAJCQAAAAAICQAAAAAICQAAAAAICQAAAAABCQAAAAABCQAAAAAMCQAAAAAHCQAAAAADCQAAAAAECQAAAAAFCQAAAAAMCQAAAAAFCQAAAAABCQAAAAADCQAAAAANCQAAAAABCQAAAAANCQAAAAAACQAAAAAFCQAAAAANCQAAAAAGCQAAAAAFCQAAAAAICQAAAAADCQAAAAAFCQAAAAAFCQAAAAANCQAAAAAICQAAAAADCQAAAAANCQAAAAAKCQAAAAAECQAAAAAECQAAAAAGCQAAAAAKCQAAAAAMCQAAAAAHCQAAAAALCQAAAAAJCQAAAAAMCQAAAAALCQAAAAAHCQAAAAAACQAAAAABCQAAAAANCQAAAAADCQAAAAAKCQAAAAAECQAAAAALCQAAAAAECQAAAAAJCQAAAAANCQAAAAAECQAAAAAECQAAAAAECQAAAAADCQAAAAAICQAAAAAACQAAAAAGCQAAAAAJCQAAAAAJCQAAAAAECQAAAAADCQAAAAAKCQAAAAAGCQAAAAADCQAAAAACCQAAAAACCQAAAAAHCQAAAAAACQAAAAAGCQAAAAAHCQAAAAALCQAAAAACCQAAAAABCQAAAAAGCQAAAAABCQAAAAAJCQAAAAANCQAAAAAICQAAAAANCQAAAAADCQAAAAAGCQAAAAABCQAAAAAHCQAAAAAICQAAAAABCQAAAAAJCQAAAAAHCQAAAAAICQAAAAAICQAAAAAMCQAAAAACCQAAAAABCQAAAAANCQAAAAALCQAAAAANCQAAAAACCQAAAAAECQAAAAALCQAAAAANCQAAAAACCQAAAAAACQAAAAALCQAAAAAJCQAAAAAMCQAAAAANCQAAAAACCQAAAAAICQAAAAAMCQAAAAAGCQAAAAAFCQAAAAAMCQAAAAAACQAAAAAFCQAAAAANCQAAAAANCQAAAAAKCQAAAAAJCQAAAAAKCQAAAAAFCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAAHCQAAAAAECQAAAAADCQAAAAAMCQAAAAAFCQAAAAAMCQAAAAAMCQAAAAAFCQAAAAAECQAAAAAECQAAAAAMCQAAAAAJCQAAAAAFCQAAAAAGCQAAAAAKCQAAAAANCQAAAAACCQAAAAAHCQAAAAAKCQAAAAACCQAAAAACCQAAAAANCQAAAAABCQAAAAACCQAAAAAICQAAAAABCQAAAAAKCQAAAAAFCQAAAAAICQAAAAAMCQAAAAAGCQAAAAAMCQAAAAAECQAAAAAMCQAAAAAKCQAAAAAMCQAAAAADCQAAAAAICQAAAAAECQAAAAANCQAAAAACCQAAAAALCQAAAAAGCQAAAAAECQAAAAAGCQAAAAAFCQAAAAAKCQAAAAAFCQAAAAAMCQAAAAAFCQAAAAAMGAAAAAADGAAAAAAFGAAAAAAEGAAAAAAAGAAAAAACCQAAAAAHCQAAAAAFCQAAAAAFCQAAAAAICQAAAAACCQAAAAAFCQAAAAAJCQAAAAAHCQAAAAAFCQAAAAACCQAAAAANGAAAAAAAGAAAAAADGAAAAAAEGAAAAAABGAAAAAABCQAAAAAGCQAAAAADCQAAAAAECQAAAAAKCQAAAAABCQAAAAAJCQAAAAAICQAAAAADCQAAAAAACQAAAAAICQAAAAAAGAAAAAADGAAAAAABGAAAAAAAGAAAAAABGAAAAAACCQAAAAALCQAAAAAHCQAAAAAHCQAAAAABCQAAAAANCQAAAAANCQAAAAAJCQAAAAAACQAAAAAICQAAAAAFCQAAAAABGAAAAAAEGAAAAAABGAAAAAAEGAAAAAAAGAAAAAADCQAAAAACCQAAAAAHCQAAAAACCQAAAAANCQAAAAAGCQAAAAAKCQAAAAABCQAAAAADCQAAAAAFCQAAAAALCQAAAAADGAAAAAAEGAAAAAAEGAAAAAAAGAAAAAADGAAAAAADCQAAAAAMCQAAAAAKCQAAAAADCQAAAAAD
+ tiles: CQAAAAAICQAAAAAJCQAAAAAJCQAAAAAECQAAAAAFCQAAAAAJCQAAAAAECQAAAAAHCQAAAAAECQAAAAAECQAAAAAGCQAAAAALCQAAAAANCQAAAAABCQAAAAAICQAAAAAHCQAAAAAHCQAAAAADCQAAAAAMCQAAAAALCQAAAAALCQAAAAANCQAAAAACCQAAAAAICQAAAAAJCQAAAAAHCQAAAAAFCQAAAAAJCQAAAAABCQAAAAAICQAAAAAICQAAAAAMCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAAECQAAAAAGCQAAAAANCQAAAAAHCQAAAAAICQAAAAAFCQAAAAACCQAAAAADCQAAAAAGCQAAAAADCQAAAAAACQAAAAANCQAAAAAFCQAAAAAMCQAAAAAACQAAAAAECQAAAAABCQAAAAAFCQAAAAABCQAAAAAECQAAAAAKCQAAAAAMCQAAAAAKCQAAAAAKCQAAAAAFCQAAAAAICQAAAAAHCQAAAAAJCQAAAAAHCQAAAAAGCQAAAAAICQAAAAADCQAAAAABCQAAAAALCQAAAAANCQAAAAAECQAAAAAJCQAAAAAKCQAAAAANCQAAAAANCQAAAAACCQAAAAAGCQAAAAAMCQAAAAAHCQAAAAAFCQAAAAACCQAAAAAFCQAAAAAICQAAAAAKCQAAAAAACQAAAAAGCQAAAAACCQAAAAAMCQAAAAAMCQAAAAACCQAAAAACCQAAAAAMCQAAAAAFCQAAAAAKCQAAAAAGCQAAAAAECQAAAAAGCQAAAAABCQAAAAAMCQAAAAALCQAAAAAECQAAAAAACQAAAAAACQAAAAABCQAAAAAHCQAAAAAFCQAAAAAICQAAAAABCQAAAAADCQAAAAAACQAAAAAECQAAAAANCQAAAAAECQAAAAAMCQAAAAAECQAAAAALCQAAAAACCQAAAAAHCQAAAAALCQAAAAALCQAAAAAICQAAAAAGCQAAAAALCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAANCQAAAAAICQAAAAADCQAAAAAMCQAAAAAMCQAAAAABCQAAAAAFCQAAAAACCQAAAAADCQAAAAAKCQAAAAADCQAAAAAGCQAAAAAMCQAAAAADCQAAAAAMCQAAAAACCQAAAAAICQAAAAALCQAAAAAGCQAAAAADCQAAAAALCQAAAAAMCQAAAAAJCQAAAAADCQAAAAAKCQAAAAAMCQAAAAAGCQAAAAACCQAAAAAJCQAAAAAMCQAAAAAECQAAAAAJCQAAAAAKCQAAAAAJCQAAAAAECQAAAAABCQAAAAAHCQAAAAAACQAAAAACCQAAAAAMCQAAAAAJCQAAAAAFCQAAAAADCQAAAAALCQAAAAABCQAAAAAHCQAAAAAFCQAAAAALCQAAAAAACQAAAAAGCQAAAAADCQAAAAANCQAAAAADHQAAAAAFHQAAAAAEHQAAAAAFHQAAAAAAHQAAAAAACQAAAAADCQAAAAAMCQAAAAAICQAAAAAHCQAAAAAJCQAAAAAGCQAAAAACCQAAAAAACQAAAAAFCQAAAAAECQAAAAALHQAAAAAFHQAAAAAEHQAAAAAAHQAAAAABHQAAAAABCQAAAAAICQAAAAAHCQAAAAAACQAAAAAJCQAAAAABCQAAAAABCQAAAAAKCQAAAAAICQAAAAANCQAAAAAECQAAAAAGHQAAAAADHQAAAAAFHQAAAAACHQAAAAAFHQAAAAADCQAAAAAJCQAAAAADCQAAAAAFCQAAAAAHCQAAAAAFCQAAAAAJCQAAAAAKCQAAAAACCQAAAAAJCQAAAAAJCQAAAAAMHQAAAAAEHQAAAAADHQAAAAADHQAAAAAAHQAAAAAFCQAAAAAECQAAAAAACQAAAAAJCQAAAAAKCQAAAAAKCQAAAAAMCQAAAAAACQAAAAAFCQAAAAACCQAAAAAHCQAAAAAGHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACCQAAAAAMCQAAAAAICQAAAAAICQAAAAAC
version: 6
2,4:
ind: 2,4
- tiles: AQAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAAECQAAAAADCQAAAAAHAQAAAAACAQAAAAAAAQAAAAACAQAAAAADAQAAAAAEAQAAAAAEAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAAEAQAAAAAACQAAAAAECQAAAAAEAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAEAQAAAAACAQAAAAACAQAAAAAEAQAAAAADAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAEAQAAAAACAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAACAQAAAAADAQAAAAAEAQAAAAACAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAEAQAAAAAEAQAAAAACAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAADAQAAAAABAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAADAQAAAAAEAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAAEAQAAAAADAQAAAAAEAQAAAAACAQAAAAAEAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAABAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AQAAAAADAQAAAAADAQAAAAABAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAEAQAAAAACAQAAAAACAQAAAAABAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAACQAAAAAICQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAAEAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAABCQAAAAACCQAAAAANAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEAQAAAAABAQAAAAABAQAAAAAEAQAAAAACAQAAAAABAQAAAAACAQAAAAADAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAEAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAACAQAAAAAEAQAAAAAEAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAADAQAAAAAEAQAAAAADAQAAAAACAQAAAAADAQAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAADAQAAAAAAAQAAAAABAQAAAAAEAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAAEAQAAAAAEAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAADAQAAAAADAQAAAAAEAQAAAAADAQAAAAABAQAAAAAEAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAAEAQAAAAAAAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAACAQAAAAAEAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,4:
ind: 3,4
- tiles: CQAAAAANCQAAAAAJCQAAAAAECQAAAAABCQAAAAACCQAAAAAMCQAAAAAACQAAAAAGCQAAAAAECQAAAAAFCQAAAAAMCQAAAAAMCQAAAAAECQAAAAABCQAAAAABCQAAAAADCQAAAAANCQAAAAAACQAAAAAECQAAAAAJCQAAAAAICQAAAAALCQAAAAAGCQAAAAANCQAAAAAJCQAAAAAGCQAAAAAFCQAAAAAICQAAAAAMCQAAAAAACQAAAAACAQAAAAADAQAAAAAEAQAAAAADAQAAAAADAQAAAAACAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAAEAQAAAAAEAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAAAQAAAAAEAQAAAAADAQAAAAACAQAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAAEAQAAAAABAQAAAAACAQAAAAACAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAACAQAAAAAEAQAAAAAEAQAAAAACAQAAAAAAAQAAAAADAQAAAAAEAQAAAAABAQAAAAADAQAAAAAEAQAAAAABAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAADAQAAAAACAQAAAAACAQAAAAAEAQAAAAADAQAAAAAEAQAAAAACAQAAAAADAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAAEAQAAAAAEAQAAAAACAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAAEAQAAAAABAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAADAQAAAAABAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAEAQAAAAADAQAAAAAEAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAAEAQAAAAACAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAADAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: CQAAAAAACQAAAAADCQAAAAAGCQAAAAAFCQAAAAAECQAAAAADCQAAAAAACQAAAAAECQAAAAAFCQAAAAABCQAAAAAGCQAAAAAICQAAAAAFCQAAAAAKCQAAAAABCQAAAAAECQAAAAAHCQAAAAAICQAAAAAJCQAAAAAFCQAAAAALCQAAAAADCQAAAAALCQAAAAAECQAAAAAECQAAAAABCQAAAAALCQAAAAANCQAAAAAJCQAAAAAECQAAAAAAAQAAAAAEAQAAAAABAQAAAAACAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAAEAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAAAAQAAAAADAQAAAAADAQAAAAAEAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAEAQAAAAABAQAAAAABAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAACAQAAAAACAQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAAEAQAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAABAQAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAADAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAADAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAEAQAAAAADAQAAAAADAQAAAAAEAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAAEAQAAAAADAQAAAAAEAQAAAAADAQAAAAACAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAADAQAAAAADAQAAAAACAQAAAAAEAQAAAAACAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,4:
ind: 4,4
- tiles: CQAAAAANCQAAAAAJCQAAAAALCQAAAAAMAQAAAAACAQAAAAABAQAAAAAEAQAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAADAQAAAAADAQAAAAABAQAAAAAEAQAAAAACAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAABAQAAAAACAQAAAAAEAQAAAAAEAQAAAAABAQAAAAADAQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAEAQAAAAACAQAAAAAEAQAAAAACAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAACAQAAAAABAQAAAAAEAQAAAAABAQAAAAACAQAAAAAEAQAAAAAEAQAAAAADAQAAAAACAQAAAAADAQAAAAACAQAAAAACAQAAAAAEAQAAAAADAQAAAAAEAQAAAAAEAQAAAAABAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: CQAAAAAJCQAAAAAJCQAAAAALCQAAAAAEAQAAAAABAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAACAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAADAQAAAAAEAQAAAAACAQAAAAACAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAAEAQAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAAEAQAAAAADAQAAAAAEAQAAAAADAQAAAAAEAQAAAAABAQAAAAADAQAAAAAEAQAAAAADAQAAAAACAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,4:
ind: 5,4
- tiles: AQAAAAAAAQAAAAAEAQAAAAAAAQAAAAABAQAAAAACAQAAAAAEAQAAAAABAQAAAAAEAQAAAAADCQAAAAAECQAAAAABAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAAEAQAAAAABAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAAEAQAAAAACAQAAAAADAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAACAQAAAAAEAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAAEAQAAAAACAQAAAAACAQAAAAADAQAAAAAEAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAABAQAAAAADAQAAAAACAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAADAQAAAAABAQAAAAADAQAAAAACAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAAEAQAAAAACAQAAAAAAAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAAEAQAAAAAEAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AQAAAAADAQAAAAAEAQAAAAADAQAAAAACAQAAAAABAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAACQAAAAAHCQAAAAALAQAAAAABAQAAAAABAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAEAQAAAAACAQAAAAABAQAAAAABAQAAAAADAQAAAAADAQAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAADAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAADAQAAAAADAQAAAAAEAQAAAAADAQAAAAADAQAAAAAEAQAAAAACAQAAAAABAQAAAAADAQAAAAAAAQAAAAADAQAAAAADAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAEAQAAAAAAAQAAAAADAQAAAAABAQAAAAAEAQAAAAAEAQAAAAABAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAABAQAAAAABAQAAAAACAQAAAAAEAQAAAAABAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAABAQAAAAADAQAAAAAEAQAAAAACAQAAAAADAQAAAAAEAQAAAAADAQAAAAACAQAAAAACAQAAAAADAQAAAAACAQAAAAAEAQAAAAABAQAAAAADAQAAAAADAQAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAEAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,3:
ind: 5,3
- tiles: CQAAAAAFCQAAAAAECQAAAAAICQAAAAAJCQAAAAAMCQAAAAAICQAAAAAKCQAAAAALCQAAAAAHCQAAAAAHCQAAAAAJCQAAAAAECQAAAAAMCQAAAAAFCQAAAAABCQAAAAAGCQAAAAAICQAAAAAACQAAAAAJCQAAAAACCQAAAAAICQAAAAAACQAAAAAFCQAAAAALCQAAAAACCQAAAAAHCQAAAAALCQAAAAADCQAAAAAACQAAAAAJCQAAAAAMCQAAAAANCQAAAAAICQAAAAAMCQAAAAAFCQAAAAAJCQAAAAALCQAAAAAGCQAAAAANCQAAAAADCQAAAAABCQAAAAAACQAAAAAGCQAAAAACCQAAAAAGCQAAAAADCQAAAAADCQAAAAANCQAAAAABCQAAAAAKCQAAAAAGCQAAAAAJCQAAAAACCQAAAAAMCQAAAAANCQAAAAAHCQAAAAALCQAAAAAHCQAAAAABCQAAAAAJCQAAAAAJCQAAAAALCQAAAAAGCQAAAAAICQAAAAALCQAAAAAKCQAAAAAHCQAAAAACCQAAAAADCQAAAAALCQAAAAAECQAAAAAICQAAAAADCQAAAAAHCQAAAAAHCQAAAAAHCQAAAAANCQAAAAABCQAAAAAKCQAAAAABCQAAAAAMCQAAAAAKCQAAAAAHCQAAAAAGCQAAAAADCQAAAAAGCQAAAAAFCQAAAAAECQAAAAABCQAAAAAMCQAAAAAECQAAAAAICQAAAAAGCQAAAAAECQAAAAAICQAAAAAGCQAAAAAICQAAAAAECQAAAAAMCQAAAAABCQAAAAACCQAAAAAJCQAAAAAICQAAAAAHCQAAAAABCQAAAAANCQAAAAAKCQAAAAABCQAAAAAMCQAAAAAKCQAAAAAGCQAAAAAACQAAAAAMCQAAAAADCQAAAAAJCQAAAAAFCQAAAAAHCQAAAAAECQAAAAABCQAAAAAECQAAAAAICQAAAAANCQAAAAABCQAAAAAICQAAAAAGCQAAAAADCQAAAAAACQAAAAAFCQAAAAADCQAAAAAICQAAAAACCQAAAAANCQAAAAACCQAAAAADCQAAAAALCQAAAAAKCQAAAAAECQAAAAAJCQAAAAACCQAAAAAICQAAAAADCQAAAAADCQAAAAAMCQAAAAALCQAAAAAGCQAAAAAACQAAAAABCQAAAAAFCQAAAAACCQAAAAAJCQAAAAAGCQAAAAAJCQAAAAAJCQAAAAAICQAAAAAICQAAAAAKCQAAAAAMCQAAAAAKCQAAAAAHCQAAAAAECQAAAAABCQAAAAAICQAAAAABCQAAAAAECQAAAAAECQAAAAAECQAAAAAFCQAAAAAMCQAAAAABCQAAAAALCQAAAAABCQAAAAAECQAAAAAACQAAAAACCQAAAAACCQAAAAAJAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAABAQAAAAAECQAAAAAFCQAAAAAHCQAAAAAICQAAAAAECQAAAAAHCQAAAAALCQAAAAAEAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAQAAAAAECQAAAAALCQAAAAAFCQAAAAAICQAAAAAGCQAAAAAACQAAAAALCQAAAAAEAQAAAAAEAQAAAAACAQAAAAAAAQAAAAAEAQAAAAACAQAAAAACAQAAAAABAQAAAAAEAQAAAAABCQAAAAAGCQAAAAAJCQAAAAAJCQAAAAAKCQAAAAAMCQAAAAACCQAAAAAMAQAAAAAEAQAAAAACAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAADCQAAAAAFCQAAAAAICQAAAAAHCQAAAAALCQAAAAABCQAAAAAJAQAAAAAEAQAAAAACAQAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAAGCQAAAAALAQAAAAAA
+ tiles: CQAAAAAHCQAAAAABCQAAAAADCQAAAAALCQAAAAACCQAAAAAHCQAAAAAGCQAAAAAFCQAAAAACCQAAAAANCQAAAAANCQAAAAAICQAAAAACCQAAAAAFCQAAAAANCQAAAAAKCQAAAAAGCQAAAAAFCQAAAAAKCQAAAAADCQAAAAALCQAAAAADCQAAAAAKCQAAAAAFCQAAAAAACQAAAAAJCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAANCQAAAAACCQAAAAAGCQAAAAAICQAAAAALCQAAAAAACQAAAAAKCQAAAAAHCQAAAAAGCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAAMCQAAAAANCQAAAAACCQAAAAAMCQAAAAAJCQAAAAAHCQAAAAAECQAAAAABCQAAAAAFCQAAAAABCQAAAAAECQAAAAAGCQAAAAALCQAAAAANCQAAAAABCQAAAAAGCQAAAAADCQAAAAAHCQAAAAANCQAAAAAECQAAAAACCQAAAAAMCQAAAAABCQAAAAACCQAAAAACCQAAAAAMCQAAAAABCQAAAAANCQAAAAAFCQAAAAAECQAAAAALCQAAAAAKCQAAAAAICQAAAAAFCQAAAAAKCQAAAAAGCQAAAAACCQAAAAAICQAAAAAHCQAAAAABCQAAAAAMCQAAAAANCQAAAAAMCQAAAAALCQAAAAACCQAAAAAGCQAAAAAACQAAAAALCQAAAAAKCQAAAAAHCQAAAAACCQAAAAALCQAAAAAKCQAAAAAICQAAAAACCQAAAAAHCQAAAAAFCQAAAAAECQAAAAAICQAAAAAFCQAAAAABCQAAAAABCQAAAAAICQAAAAAFCQAAAAAECQAAAAAFCQAAAAAACQAAAAAHCQAAAAAACQAAAAADCQAAAAABCQAAAAALCQAAAAAMCQAAAAAKCQAAAAAICQAAAAAMCQAAAAAFCQAAAAAHCQAAAAAKCQAAAAAECQAAAAAHCQAAAAAKCQAAAAADCQAAAAABCQAAAAAHCQAAAAABCQAAAAACCQAAAAAFCQAAAAAKCQAAAAAGCQAAAAANCQAAAAAACQAAAAAHCQAAAAAMCQAAAAAJCQAAAAAHCQAAAAAECQAAAAAFCQAAAAAMCQAAAAAFCQAAAAABCQAAAAACCQAAAAALCQAAAAAJCQAAAAADCQAAAAAFCQAAAAALCQAAAAAMCQAAAAAFCQAAAAAMCQAAAAACCQAAAAAKCQAAAAAHCQAAAAAACQAAAAAFCQAAAAAFCQAAAAAICQAAAAAFCQAAAAACCQAAAAACCQAAAAAJCQAAAAAECQAAAAABCQAAAAAHCQAAAAAJCQAAAAANCQAAAAAGCQAAAAAICQAAAAAMCQAAAAAFCQAAAAAFAQAAAAABAQAAAAAEAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAABCQAAAAAHCQAAAAAICQAAAAALCQAAAAAMCQAAAAANCQAAAAAMCQAAAAAMAQAAAAAAAQAAAAACAQAAAAAEAQAAAAABAQAAAAAEAQAAAAACAQAAAAAEAQAAAAAEAQAAAAAACQAAAAAKCQAAAAACCQAAAAADCQAAAAALCQAAAAACCQAAAAAJCQAAAAAFAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAEAQAAAAADAQAAAAADCQAAAAACCQAAAAAACQAAAAAJCQAAAAAFCQAAAAAJCQAAAAAFCQAAAAAEAQAAAAACAQAAAAABAQAAAAACAQAAAAAEAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAAECQAAAAAKCQAAAAAACQAAAAAACQAAAAAGCQAAAAADCQAAAAADAQAAAAACAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAADAQAAAAADAQAAAAABCQAAAAAFCQAAAAALCQAAAAADCQAAAAABCQAAAAAHCQAAAAAGAQAAAAAA
version: 6
5,2:
ind: 5,2
- tiles: CQAAAAADCQAAAAAHCQAAAAABCQAAAAADCQAAAAALCQAAAAADCQAAAAAGCQAAAAABCQAAAAAICQAAAAAGCQAAAAAKAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAFCQAAAAAJCQAAAAAGCQAAAAAHCQAAAAAJCQAAAAAJCQAAAAAMCQAAAAAICQAAAAAJCQAAAAAHCQAAAAAJCQAAAAANCQAAAAAJAQAAAAADAQAAAAAEAQAAAAAACQAAAAAACQAAAAALCQAAAAAICQAAAAADCQAAAAAFCQAAAAACCQAAAAAECQAAAAANCQAAAAAHCQAAAAACCQAAAAAGCQAAAAAECQAAAAADAQAAAAACAQAAAAABAQAAAAADCQAAAAAHCQAAAAALCQAAAAAACQAAAAAJCQAAAAADCQAAAAAHCQAAAAAICQAAAAAGCQAAAAAKCQAAAAANCQAAAAALCQAAAAAKCQAAAAALAQAAAAAAAQAAAAAAAQAAAAAECQAAAAAACQAAAAAGCQAAAAAECQAAAAAICQAAAAADCQAAAAAFCQAAAAACCQAAAAAJCQAAAAAACQAAAAALCQAAAAAKCQAAAAALCQAAAAAJAQAAAAADAQAAAAADAQAAAAADCQAAAAALCQAAAAAHCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAAECQAAAAAECQAAAAAMCQAAAAAKCQAAAAALCQAAAAAECQAAAAAFCQAAAAANCQAAAAACCQAAAAAJGAAAAAABGAAAAAACFwAAAAADFwAAAAACFwAAAAAACQAAAAAJCQAAAAALCQAAAAANCQAAAAACCQAAAAAJCQAAAAANCQAAAAADCQAAAAAICQAAAAADCQAAAAACCQAAAAAFAwAAAAAGAwAAAAABAwAAAAAGBAAAAAALFwAAAAAACQAAAAAMCQAAAAADCQAAAAALCQAAAAAKCQAAAAAKCQAAAAAFCQAAAAANCQAAAAACCQAAAAALCQAAAAAECQAAAAAHDQAAAAAADQAAAAAADQAAAAAAAwAAAAAEGAAAAAAFCQAAAAALCQAAAAAICQAAAAADCQAAAAAMCQAAAAABCQAAAAAHCQAAAAAGCQAAAAAJCQAAAAANCQAAAAANCQAAAAABDQAAAAAAEQAAAAAADQAAAAAAAwAAAAACGAAAAAABCQAAAAANCQAAAAAHCQAAAAALCQAAAAADCQAAAAAACQAAAAACCQAAAAAHCQAAAAAECQAAAAAICQAAAAAHCQAAAAAADQAAAAAADQAAAAAADQAAAAAAAwAAAAADGAAAAAAACQAAAAACCQAAAAAKCQAAAAAICQAAAAALCQAAAAAECQAAAAAACQAAAAACCQAAAAAGCQAAAAAMCQAAAAAMCQAAAAAIAwAAAAAEAwAAAAACAwAAAAAABAAAAAALGAAAAAADCQAAAAABCQAAAAAECQAAAAAFCQAAAAABCQAAAAAKCQAAAAAICQAAAAANCQAAAAAMCQAAAAAKCQAAAAALCQAAAAAJGAAAAAABGAAAAAABFwAAAAAFFwAAAAABGAAAAAAFCQAAAAAECQAAAAAJCQAAAAACCQAAAAAJCQAAAAAGCQAAAAANCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAAMCQAAAAAACQAAAAAJCQAAAAAECQAAAAAECQAAAAAGCQAAAAADCQAAAAACCQAAAAAFCQAAAAAFCQAAAAANCQAAAAALCQAAAAAECQAAAAAHCQAAAAALCQAAAAAFCQAAAAAGCQAAAAAMCQAAAAAMCQAAAAAJCQAAAAAICQAAAAAMCQAAAAAACQAAAAAFCQAAAAABCQAAAAALCQAAAAAECQAAAAAKCQAAAAADCQAAAAAICQAAAAAMCQAAAAAMCQAAAAAACQAAAAABCQAAAAAECQAAAAAJCQAAAAANCQAAAAAGCQAAAAADCQAAAAAFCQAAAAAACQAAAAACCQAAAAAICQAAAAABCQAAAAAGCQAAAAALCQAAAAAICQAAAAAMCQAAAAAM
+ tiles: CQAAAAAJCQAAAAALCQAAAAAKCQAAAAAHCQAAAAABCQAAAAANCQAAAAAFCQAAAAAJCQAAAAAECQAAAAABCQAAAAANAQAAAAABAQAAAAABAQAAAAABAQAAAAAEAQAAAAADCQAAAAAICQAAAAAECQAAAAAKCQAAAAAACQAAAAALCQAAAAAMCQAAAAAJCQAAAAAKCQAAAAABCQAAAAAJCQAAAAAGCQAAAAABCQAAAAAGAQAAAAAAAQAAAAAAAQAAAAACCQAAAAAACQAAAAALCQAAAAADCQAAAAAECQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAALCQAAAAADCQAAAAABCQAAAAALCQAAAAAKAQAAAAACAQAAAAACAQAAAAABCQAAAAAACQAAAAAACQAAAAAKCQAAAAAECQAAAAAKCQAAAAAHCQAAAAACCQAAAAAACQAAAAAFCQAAAAABCQAAAAAACQAAAAADCQAAAAAHAQAAAAACAQAAAAABAQAAAAAECQAAAAABCQAAAAAJCQAAAAAGCQAAAAACCQAAAAANCQAAAAABCQAAAAAHCQAAAAADCQAAAAAMCQAAAAAHCQAAAAAJCQAAAAALCQAAAAAKAQAAAAACAQAAAAABAQAAAAACCQAAAAAHCQAAAAAGCQAAAAABCQAAAAAACQAAAAANCQAAAAAMCQAAAAABCQAAAAACCQAAAAAACQAAAAAGCQAAAAAKCQAAAAANCQAAAAAECQAAAAACCQAAAAADCQAAAAAEHQAAAAADHQAAAAAFHgAAAAADHgAAAAAEHgAAAAAFCQAAAAAMCQAAAAANCQAAAAAECQAAAAAGCQAAAAAACQAAAAAACQAAAAADCQAAAAAGCQAAAAAFCQAAAAAFCQAAAAAFAwAAAAAEAwAAAAAEAwAAAAACBAAAAAALHgAAAAACCQAAAAAACQAAAAADCQAAAAAJCQAAAAANCQAAAAABCQAAAAACCQAAAAALCQAAAAAACQAAAAAMCQAAAAAJCQAAAAAFDQAAAAAADQAAAAAADQAAAAAAAwAAAAAHHQAAAAAACQAAAAANCQAAAAAGCQAAAAAHCQAAAAAFCQAAAAAKCQAAAAANCQAAAAAHCQAAAAAKCQAAAAAMCQAAAAAGCQAAAAAJDQAAAAAAEQAAAAAADQAAAAAAAwAAAAAAHQAAAAAFCQAAAAACCQAAAAADCQAAAAAFCQAAAAAGCQAAAAAGCQAAAAAMCQAAAAAFCQAAAAAJCQAAAAANCQAAAAABCQAAAAAGDQAAAAAADQAAAAAADQAAAAAAAwAAAAADHQAAAAABCQAAAAAJCQAAAAAACQAAAAABCQAAAAAFCQAAAAAKCQAAAAAGCQAAAAAHCQAAAAAGCQAAAAAECQAAAAACCQAAAAABAwAAAAAIAwAAAAAEAwAAAAAHBAAAAAANHQAAAAAECQAAAAADCQAAAAAJCQAAAAABCQAAAAADCQAAAAABCQAAAAAHCQAAAAAHCQAAAAAHCQAAAAAACQAAAAAECQAAAAAFHQAAAAAAHQAAAAADHgAAAAAEHgAAAAADHQAAAAADCQAAAAALCQAAAAAFCQAAAAAKCQAAAAAHCQAAAAACCQAAAAANCQAAAAADCQAAAAAECQAAAAAFCQAAAAALCQAAAAANCQAAAAADCQAAAAAECQAAAAABCQAAAAAECQAAAAAICQAAAAACCQAAAAACCQAAAAAFCQAAAAADCQAAAAAICQAAAAAECQAAAAABCQAAAAAMCQAAAAAFCQAAAAAGCQAAAAACCQAAAAAACQAAAAACCQAAAAAFCQAAAAAGCQAAAAABCQAAAAAICQAAAAAHCQAAAAANCQAAAAABCQAAAAABCQAAAAAJCQAAAAACCQAAAAAJCQAAAAAKCQAAAAAICQAAAAAACQAAAAAACQAAAAAJCQAAAAADCQAAAAAKCQAAAAAFCQAAAAAJCQAAAAAJCQAAAAAACQAAAAADCQAAAAAJCQAAAAALCQAAAAAACQAAAAANCQAAAAAICQAAAAAGCQAAAAAD
version: 6
4,3:
ind: 4,3
- tiles: CQAAAAAFCQAAAAADCQAAAAAHCQAAAAAFCQAAAAAACQAAAAABCQAAAAACCQAAAAAKCQAAAAAFCQAAAAAHCQAAAAABCQAAAAAGCQAAAAADCQAAAAAFCQAAAAAMCQAAAAANCQAAAAAFCQAAAAAJCQAAAAAACQAAAAABCQAAAAANCQAAAAAGCQAAAAANCQAAAAANCQAAAAAHCQAAAAANCQAAAAACCQAAAAANCQAAAAANCQAAAAAMCQAAAAAHCQAAAAAGCQAAAAADCQAAAAAHCQAAAAAGCQAAAAADCQAAAAACCQAAAAAFCQAAAAAMCQAAAAAHCQAAAAADCQAAAAAKCQAAAAAHCQAAAAAECQAAAAAKCQAAAAAMCQAAAAAHCQAAAAACCQAAAAAGCQAAAAAFCQAAAAAFCQAAAAABCQAAAAAACQAAAAAJCQAAAAADCQAAAAAHCQAAAAADCQAAAAAGCQAAAAAFCQAAAAABCQAAAAADCQAAAAAFCQAAAAALCQAAAAALCQAAAAADCQAAAAAECQAAAAANCQAAAAANCQAAAAABCQAAAAAECQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAAJCQAAAAAMCQAAAAAFCQAAAAAGCQAAAAACCQAAAAAICQAAAAANCQAAAAAICQAAAAAMCQAAAAAKCQAAAAAACQAAAAACCQAAAAACCQAAAAANCQAAAAAACQAAAAAICQAAAAAKCQAAAAAICQAAAAACCQAAAAAMCQAAAAACCQAAAAADCQAAAAALCQAAAAAICQAAAAADCQAAAAAECQAAAAADCQAAAAABCQAAAAAJCQAAAAAHCQAAAAADCQAAAAAMCQAAAAALCQAAAAACCQAAAAADCQAAAAAJCQAAAAAHCQAAAAAKCQAAAAAKCQAAAAAACQAAAAAHCQAAAAAICQAAAAADCQAAAAAMCQAAAAACCQAAAAAHCQAAAAAJCQAAAAAACQAAAAAECQAAAAABCQAAAAALCQAAAAAECQAAAAABCQAAAAAHCQAAAAAKCQAAAAAACQAAAAAHCQAAAAABCQAAAAAICQAAAAAACQAAAAAHCQAAAAAFCQAAAAALCQAAAAADCQAAAAACCQAAAAAACQAAAAAKCQAAAAANCQAAAAAHCQAAAAACCQAAAAANCQAAAAAACQAAAAAICQAAAAAGCQAAAAAGCQAAAAANCQAAAAANCQAAAAAHCQAAAAAMCQAAAAAJCQAAAAAJCQAAAAANCQAAAAAFCQAAAAANCQAAAAACCQAAAAADCQAAAAAJCQAAAAAJCQAAAAAKCQAAAAAJCQAAAAAFCQAAAAAHCQAAAAAGCQAAAAAJCQAAAAAGCQAAAAAICQAAAAAMCQAAAAAMCQAAAAABCQAAAAALCQAAAAADCQAAAAAMCQAAAAAJCQAAAAABCQAAAAAHCQAAAAALCQAAAAANCQAAAAAGCQAAAAAJCQAAAAACCQAAAAAICQAAAAACCQAAAAAHCQAAAAAGAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAAACQAAAAADCQAAAAABCQAAAAAKCQAAAAAMCQAAAAADCQAAAAAMCQAAAAAGCQAAAAANCQAAAAAHCQAAAAAKCQAAAAALCQAAAAACAQAAAAABAQAAAAABAQAAAAABAQAAAAAECQAAAAANCQAAAAADCQAAAAAFCQAAAAAACQAAAAAICQAAAAAKCQAAAAAFCQAAAAAECQAAAAADCQAAAAAFCQAAAAACCQAAAAAHAQAAAAADAQAAAAAEAQAAAAABAQAAAAACCQAAAAAGCQAAAAAGCQAAAAAKCQAAAAAHAQAAAAAEAQAAAAADAQAAAAADAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAAECQAAAAAMCQAAAAABCQAAAAABCQAAAAAHAQAAAAAEAQAAAAACAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAEAQAAAAACAQAAAAAEAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAA
+ tiles: CQAAAAAHCQAAAAACCQAAAAALCQAAAAAGCQAAAAAJCQAAAAABCQAAAAANCQAAAAAKCQAAAAAJCQAAAAALCQAAAAAICQAAAAAKCQAAAAANCQAAAAAICQAAAAABCQAAAAAACQAAAAAICQAAAAAKCQAAAAAHCQAAAAADCQAAAAAECQAAAAAKCQAAAAABCQAAAAACCQAAAAABCQAAAAAGCQAAAAANCQAAAAAFCQAAAAAJCQAAAAALCQAAAAAHCQAAAAAKCQAAAAAFCQAAAAAGCQAAAAAFCQAAAAAKCQAAAAAGCQAAAAAGCQAAAAAECQAAAAAJCQAAAAAACQAAAAALCQAAAAABCQAAAAADCQAAAAAICQAAAAAECQAAAAAACQAAAAAECQAAAAAHCQAAAAAMCQAAAAABCQAAAAAMCQAAAAAMCQAAAAADCQAAAAAKCQAAAAAMCQAAAAAKCQAAAAACCQAAAAAKCQAAAAALCQAAAAABCQAAAAADCQAAAAAGCQAAAAABCQAAAAABCQAAAAAACQAAAAAKCQAAAAACCQAAAAANCQAAAAAHCQAAAAALCQAAAAAHCQAAAAADCQAAAAAKCQAAAAAHCQAAAAAJCQAAAAAHCQAAAAAMCQAAAAANCQAAAAAACQAAAAANCQAAAAALCQAAAAAACQAAAAALCQAAAAANCQAAAAABCQAAAAACCQAAAAAACQAAAAAICQAAAAAJCQAAAAAACQAAAAALCQAAAAAKCQAAAAAFCQAAAAANCQAAAAAMCQAAAAACCQAAAAAACQAAAAANCQAAAAAECQAAAAAICQAAAAAGCQAAAAAFCQAAAAABCQAAAAADCQAAAAALCQAAAAAECQAAAAAFCQAAAAAFCQAAAAAGCQAAAAACCQAAAAAECQAAAAAHCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAAHCQAAAAAJCQAAAAADCQAAAAAMCQAAAAAICQAAAAABCQAAAAAECQAAAAAICQAAAAAECQAAAAAJCQAAAAAMCQAAAAANCQAAAAADCQAAAAAGCQAAAAACCQAAAAAFCQAAAAALCQAAAAAGCQAAAAADCQAAAAAKCQAAAAAKCQAAAAAKCQAAAAAICQAAAAAACQAAAAAACQAAAAANCQAAAAAICQAAAAAGCQAAAAAGCQAAAAABCQAAAAALCQAAAAANCQAAAAAICQAAAAACCQAAAAAHCQAAAAAJCQAAAAAGCQAAAAABCQAAAAALCQAAAAAACQAAAAANCQAAAAAACQAAAAADCQAAAAAICQAAAAACCQAAAAACCQAAAAAICQAAAAADCQAAAAALCQAAAAANCQAAAAAECQAAAAAFCQAAAAANCQAAAAALCQAAAAAMCQAAAAAACQAAAAAACQAAAAACCQAAAAAICQAAAAACCQAAAAADCQAAAAAECQAAAAAMCQAAAAAKCQAAAAAACQAAAAALCQAAAAAHCQAAAAAICQAAAAAACQAAAAAJCQAAAAANAQAAAAABAQAAAAABAQAAAAAEAQAAAAABCQAAAAAACQAAAAAFCQAAAAANCQAAAAALCQAAAAAECQAAAAAACQAAAAAGCQAAAAAECQAAAAAMCQAAAAAMCQAAAAACCQAAAAACAQAAAAABAQAAAAADAQAAAAADAQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAJCQAAAAAICQAAAAALCQAAAAACCQAAAAAMCQAAAAAFCQAAAAABCQAAAAAHCQAAAAAHAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAABCQAAAAAGCQAAAAADCQAAAAANCQAAAAAEAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAAEAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAQAAAAABCQAAAAAFCQAAAAANCQAAAAAMCQAAAAAJAQAAAAAEAQAAAAAEAQAAAAACAQAAAAACAQAAAAAEAQAAAAADAQAAAAADAQAAAAABAQAAAAADAQAAAAAEAQAAAAACAQAAAAAE
version: 6
4,2:
ind: 4,2
- tiles: CQAAAAAGCQAAAAADCQAAAAAACQAAAAAICQAAAAAFCQAAAAAFCQAAAAAMCQAAAAAGCQAAAAAFCQAAAAADCQAAAAAJCQAAAAAFCQAAAAANCQAAAAAECQAAAAACCQAAAAAECQAAAAABCQAAAAALCQAAAAAJCQAAAAAMCQAAAAAECQAAAAABCQAAAAAMCQAAAAANCQAAAAAECQAAAAACCQAAAAAFCQAAAAABCQAAAAAKCQAAAAAACQAAAAAHCQAAAAAMCQAAAAACCQAAAAAJCQAAAAANCQAAAAAECQAAAAAGCQAAAAAICQAAAAAMCQAAAAAACQAAAAAKCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAAICQAAAAALCQAAAAAECQAAAAABCQAAAAAHCQAAAAAACQAAAAAKCQAAAAALCQAAAAACCQAAAAALCQAAAAAACQAAAAAKCQAAAAANCQAAAAALCQAAAAADCQAAAAAICQAAAAAECQAAAAADCQAAAAAHCQAAAAAACQAAAAACCQAAAAAMCQAAAAANCQAAAAAMCQAAAAALCQAAAAALCQAAAAAECQAAAAAHCQAAAAACCQAAAAABCQAAAAABCQAAAAAMCQAAAAAFCQAAAAADCQAAAAAMCQAAAAAMCQAAAAAICQAAAAAACQAAAAAECQAAAAAKCQAAAAALCQAAAAAACQAAAAAFCQAAAAAKCQAAAAAECQAAAAAECQAAAAAECQAAAAAJCQAAAAAECQAAAAALCQAAAAALCQAAAAABCQAAAAAMCQAAAAAKCQAAAAAMCQAAAAADCQAAAAAHCQAAAAADCQAAAAACCQAAAAANCQAAAAAHCQAAAAANCQAAAAAMCQAAAAAECQAAAAAGFwAAAAAAFwAAAAADCQAAAAAHCQAAAAABCQAAAAALCQAAAAAJCQAAAAAMCQAAAAAKCQAAAAAFCQAAAAAMCQAAAAANCQAAAAACCQAAAAADCQAAAAAKCQAAAAAHCQAAAAADFwAAAAAFBAAAAAAECQAAAAAJCQAAAAACCQAAAAALCQAAAAAGCQAAAAAICQAAAAADCQAAAAAECQAAAAAHCQAAAAABCQAAAAAICQAAAAAGCQAAAAAKCQAAAAAICQAAAAAJFwAAAAABAwAAAAAFCQAAAAAHCQAAAAAJCQAAAAANCQAAAAAACQAAAAAMCQAAAAAACQAAAAADCQAAAAAMCQAAAAAECQAAAAADCQAAAAAFCQAAAAAACQAAAAACCQAAAAAHGAAAAAABAwAAAAACCQAAAAALCQAAAAAKCQAAAAAMCQAAAAAMCQAAAAANCQAAAAAFCQAAAAABCQAAAAAICQAAAAAHCQAAAAACCQAAAAAMCQAAAAABCQAAAAAHCQAAAAABGAAAAAACAwAAAAAHCQAAAAAKCQAAAAACCQAAAAAKCQAAAAABCQAAAAALCQAAAAAICQAAAAAICQAAAAABCQAAAAAACQAAAAAMCQAAAAACCQAAAAAHCQAAAAAACQAAAAAGFwAAAAACBAAAAAANCQAAAAAFCQAAAAAJCQAAAAAMCQAAAAAGCQAAAAAECQAAAAAICQAAAAAFCQAAAAAECQAAAAAFCQAAAAAMCQAAAAANCQAAAAAACQAAAAADCQAAAAAKGAAAAAAAGAAAAAAFCQAAAAACCQAAAAAECQAAAAADCQAAAAANCQAAAAABCQAAAAALCQAAAAAGCQAAAAANCQAAAAAHCQAAAAAHCQAAAAANCQAAAAAHCQAAAAAHCQAAAAAECQAAAAACCQAAAAAJCQAAAAAJCQAAAAALCQAAAAAGCQAAAAANCQAAAAABCQAAAAAKCQAAAAACCQAAAAAHCQAAAAABCQAAAAAICQAAAAAGCQAAAAAMCQAAAAAACQAAAAABCQAAAAAECQAAAAANCQAAAAAICQAAAAANCQAAAAAGCQAAAAAKCQAAAAANCQAAAAAFCQAAAAAECQAAAAAHCQAAAAAECQAAAAALCQAAAAAMCQAAAAADCQAAAAAGCQAAAAADCQAAAAACCQAAAAAI
+ tiles: CQAAAAAKCQAAAAAHCQAAAAAFCQAAAAADCQAAAAAKCQAAAAANCQAAAAALCQAAAAADCQAAAAADCQAAAAALCQAAAAALCQAAAAAHCQAAAAAECQAAAAAFCQAAAAAMCQAAAAAJCQAAAAANCQAAAAAJCQAAAAAMCQAAAAAJCQAAAAAGCQAAAAAMCQAAAAAGCQAAAAACCQAAAAAICQAAAAAHCQAAAAAKCQAAAAAACQAAAAANCQAAAAABCQAAAAANCQAAAAAACQAAAAACCQAAAAAICQAAAAAGCQAAAAAFCQAAAAADCQAAAAADCQAAAAAECQAAAAACCQAAAAAICQAAAAAGCQAAAAAJCQAAAAAMCQAAAAACCQAAAAAKCQAAAAAKCQAAAAABCQAAAAAMCQAAAAAACQAAAAAFCQAAAAAGCQAAAAAJCQAAAAAKCQAAAAACCQAAAAABCQAAAAAMCQAAAAAACQAAAAAICQAAAAAMCQAAAAAHCQAAAAABCQAAAAAECQAAAAAECQAAAAAICQAAAAABCQAAAAABCQAAAAAGCQAAAAAGCQAAAAAGCQAAAAACCQAAAAALCQAAAAALCQAAAAAECQAAAAAJCQAAAAAKCQAAAAALCQAAAAAHCQAAAAAJCQAAAAAKCQAAAAAHCQAAAAANCQAAAAALCQAAAAABCQAAAAABCQAAAAAECQAAAAAJCQAAAAANCQAAAAAFCQAAAAADCQAAAAAICQAAAAAJCQAAAAAJCQAAAAAJCQAAAAAHCQAAAAAFCQAAAAAECQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAJCQAAAAACCQAAAAAKCQAAAAAJCQAAAAAMCQAAAAAMCQAAAAADCQAAAAAMCQAAAAABHgAAAAABHgAAAAADCQAAAAALCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAMCQAAAAAKCQAAAAANCQAAAAAACQAAAAAACQAAAAACCQAAAAAICQAAAAAKCQAAAAAGHgAAAAADBAAAAAAACQAAAAALCQAAAAAICQAAAAACCQAAAAAKCQAAAAAJCQAAAAAICQAAAAAHCQAAAAAMCQAAAAAHCQAAAAAICQAAAAAKCQAAAAABCQAAAAAHCQAAAAAHHgAAAAAEAwAAAAAFCQAAAAAKCQAAAAADCQAAAAAACQAAAAAKCQAAAAANCQAAAAAKCQAAAAAGCQAAAAAACQAAAAAECQAAAAAFCQAAAAABCQAAAAAICQAAAAAECQAAAAAJHQAAAAAEAwAAAAACCQAAAAAECQAAAAAMCQAAAAADCQAAAAAGCQAAAAABCQAAAAANCQAAAAAFCQAAAAALCQAAAAAHCQAAAAALCQAAAAAFCQAAAAAKCQAAAAAFCQAAAAAKHQAAAAABAwAAAAACCQAAAAABCQAAAAABCQAAAAAHCQAAAAALCQAAAAADCQAAAAANCQAAAAAKCQAAAAAKCQAAAAAJCQAAAAAKCQAAAAACCQAAAAACCQAAAAACCQAAAAAMHgAAAAAABAAAAAAJCQAAAAAHCQAAAAAACQAAAAAMCQAAAAABCQAAAAAJCQAAAAAMCQAAAAAJCQAAAAAGCQAAAAACCQAAAAAICQAAAAAGCQAAAAAICQAAAAAKCQAAAAADHQAAAAAAHQAAAAAACQAAAAACCQAAAAAKCQAAAAAECQAAAAAECQAAAAAKCQAAAAACCQAAAAAKCQAAAAANCQAAAAALCQAAAAAJCQAAAAAHCQAAAAAACQAAAAAJCQAAAAAHCQAAAAAJCQAAAAAMCQAAAAALCQAAAAAHCQAAAAAECQAAAAAACQAAAAAICQAAAAAGCQAAAAAGCQAAAAAJCQAAAAAHCQAAAAALCQAAAAAJCQAAAAABCQAAAAAJCQAAAAAICQAAAAAJCQAAAAAJCQAAAAAFCQAAAAADCQAAAAANCQAAAAAACQAAAAAKCQAAAAACCQAAAAAJCQAAAAAGCQAAAAAFCQAAAAABCQAAAAACCQAAAAAJCQAAAAACCQAAAAAICQAAAAAICQAAAAAN
version: 6
4,-1:
ind: 4,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAADAQAAAAACAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAEAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAAEAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAEAQAAAAAEAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,0:
ind: 4,0
- tiles: AQAAAAADAQAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAABAQAAAAABAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAIAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAEAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAADAQAAAAACAQAAAAABAQAAAAACAQAAAAAAAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAGAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAACQAAAAAGCQAAAAAICQAAAAALAQAAAAADAQAAAAADAQAAAAADAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAACCQAAAAAICQAAAAAMCQAAAAAIAQAAAAACAQAAAAAAAQAAAAACAQAAAAABAQAAAAAEAQAAAAADAQAAAAAEAQAAAAACAQAAAAACAQAAAAADAQAAAAADAQAAAAAEAQAAAAACCQAAAAAGCQAAAAAGCQAAAAAMCQAAAAAJCQAAAAADCQAAAAAKAQAAAAAEAQAAAAACAQAAAAABAQAAAAADAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAABCQAAAAANCQAAAAAFCQAAAAAMCQAAAAAJCQAAAAACCQAAAAACCQAAAAAFCQAAAAANAQAAAAADAQAAAAADAQAAAAACAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAADAQAAAAADCQAAAAACCQAAAAAFCQAAAAAMCQAAAAABCQAAAAAACQAAAAABCQAAAAAKCQAAAAACCQAAAAADCQAAAAAIAQAAAAABAQAAAAACAQAAAAAEAQAAAAADAQAAAAAEAQAAAAADCQAAAAAACQAAAAALCQAAAAAGCQAAAAAGCQAAAAAECQAAAAADCQAAAAAECQAAAAADCQAAAAAKCQAAAAAKCQAAAAAJCQAAAAANCQAAAAAECQAAAAAFAQAAAAABAQAAAAABCQAAAAADCQAAAAALCQAAAAAICQAAAAAECQAAAAAACQAAAAACCQAAAAANCQAAAAAECQAAAAAMCQAAAAAKCQAAAAALCQAAAAAECQAAAAAHCQAAAAAFAQAAAAAAAQAAAAAECQAAAAABCQAAAAABCQAAAAACCQAAAAAHCQAAAAAACQAAAAACCQAAAAANCQAAAAAACQAAAAACCQAAAAAHCQAAAAAJCQAAAAAHCQAAAAAICQAAAAADCQAAAAAGCQAAAAACCQAAAAANCQAAAAAMCQAAAAAECQAAAAAJCQAAAAABCQAAAAAMCQAAAAAACQAAAAAJCQAAAAAKCQAAAAAACQAAAAAKCQAAAAAFCQAAAAAMCQAAAAALCQAAAAAMCQAAAAADCQAAAAABCQAAAAACCQAAAAAMCQAAAAAGCQAAAAACCQAAAAAFCQAAAAAGCQAAAAAECQAAAAAACQAAAAABCQAAAAAACQAAAAAFCQAAAAAGCQAAAAAICQAAAAAHCQAAAAAK
+ tiles: AQAAAAAEAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAQAAAAAEAQAAAAADAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAABAQAAAAAEAQAAAAACAQAAAAACAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAACAQAAAAACAQAAAAADAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAACAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAHAQAAAAACAQAAAAAEAQAAAAADAQAAAAABAQAAAAAEAQAAAAADAQAAAAADAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAACQAAAAALAQAAAAACAQAAAAAEAQAAAAABAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAAAAQAAAAADAQAAAAAEAAAAAAAAAAAAAAAACQAAAAAECQAAAAAFCQAAAAAJAQAAAAACAQAAAAACAQAAAAAEAQAAAAACAQAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAADAQAAAAAEAQAAAAADAQAAAAACAQAAAAADCQAAAAACCQAAAAAACQAAAAABAQAAAAAAAQAAAAABAQAAAAAEAQAAAAACAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAAEAQAAAAACAQAAAAADAQAAAAADCQAAAAABCQAAAAAGCQAAAAACCQAAAAANCQAAAAAHCQAAAAAEAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAAECQAAAAAICQAAAAAFCQAAAAAKCQAAAAAECQAAAAABCQAAAAAICQAAAAAJCQAAAAAJAQAAAAACAQAAAAABAQAAAAACAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAABCQAAAAAFCQAAAAAECQAAAAALCQAAAAAKCQAAAAAACQAAAAANCQAAAAAECQAAAAAICQAAAAADCQAAAAANAQAAAAADAQAAAAACAQAAAAACAQAAAAABAQAAAAAEAQAAAAAECQAAAAAMCQAAAAAMCQAAAAAMCQAAAAACCQAAAAAGCQAAAAAICQAAAAACCQAAAAAGCQAAAAAMCQAAAAACCQAAAAAGCQAAAAAGCQAAAAAECQAAAAAIAQAAAAAEAQAAAAACCQAAAAAGCQAAAAAICQAAAAADCQAAAAAGCQAAAAABCQAAAAABCQAAAAANCQAAAAACCQAAAAAFCQAAAAAACQAAAAAICQAAAAABCQAAAAAICQAAAAACAQAAAAADAQAAAAAACQAAAAALCQAAAAAKCQAAAAALCQAAAAAICQAAAAAICQAAAAAGCQAAAAAHCQAAAAAGCQAAAAAFCQAAAAAACQAAAAAKCQAAAAANCQAAAAAJCQAAAAAACQAAAAAHCQAAAAADCQAAAAANCQAAAAAACQAAAAAJCQAAAAABCQAAAAAGCQAAAAAKCQAAAAAFCQAAAAADCQAAAAAACQAAAAACCQAAAAANCQAAAAAACQAAAAAGCQAAAAAFCQAAAAAFCQAAAAAGCQAAAAACCQAAAAADCQAAAAADCQAAAAAICQAAAAABCQAAAAAFCQAAAAAGCQAAAAAJCQAAAAAJCQAAAAAJCQAAAAAFCQAAAAAKCQAAAAAECQAAAAADCQAAAAALCQAAAAAF
version: 6
4,1:
ind: 4,1
- tiles: CQAAAAAFCQAAAAAKCQAAAAAKCQAAAAAMCQAAAAAJCQAAAAAICQAAAAACCQAAAAADCQAAAAAFCQAAAAAJCQAAAAACCQAAAAALCQAAAAAKCQAAAAAICQAAAAAGCQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAJCQAAAAABCQAAAAABCQAAAAAECQAAAAAMCQAAAAACCQAAAAALCQAAAAAACQAAAAALCQAAAAAFCQAAAAAFCQAAAAANCQAAAAAICQAAAAAMCQAAAAAACQAAAAAJCQAAAAAECQAAAAAHCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAAICQAAAAALCQAAAAANCQAAAAAFCQAAAAACCQAAAAAMCQAAAAAECQAAAAAMCQAAAAAMCQAAAAAFCQAAAAAKCQAAAAAJCQAAAAAICQAAAAABCQAAAAAHCQAAAAAJCQAAAAABCQAAAAAACQAAAAAMCQAAAAABCQAAAAAJCQAAAAAACQAAAAAICQAAAAAJCQAAAAAICQAAAAAKCQAAAAAACQAAAAAMCQAAAAADCQAAAAAFCQAAAAALCQAAAAAICQAAAAAKCQAAAAACCQAAAAAMCQAAAAAHCQAAAAABCQAAAAAFCQAAAAAICQAAAAAHCQAAAAALCQAAAAAECQAAAAAMCQAAAAACCQAAAAAGCQAAAAAACQAAAAADCQAAAAAHCQAAAAABCQAAAAAICQAAAAAECQAAAAAFCQAAAAAACQAAAAAACQAAAAAFCQAAAAAECQAAAAAMCQAAAAAFCQAAAAANCQAAAAAFCQAAAAALCQAAAAABCQAAAAAECQAAAAANCQAAAAAICQAAAAAJCQAAAAAMCQAAAAAFCQAAAAAECQAAAAABCQAAAAAJCQAAAAAICQAAAAACCQAAAAAFCQAAAAAFCQAAAAABCQAAAAAMCQAAAAAGCQAAAAAFCQAAAAALCQAAAAABCQAAAAANCQAAAAAJCQAAAAANCQAAAAAJCQAAAAABCQAAAAALCQAAAAAFCQAAAAAHCQAAAAALCQAAAAAKCQAAAAAECQAAAAADCQAAAAANCQAAAAAFCQAAAAAACQAAAAADCQAAAAALCQAAAAAKCQAAAAABCQAAAAALCQAAAAANCQAAAAADCQAAAAAACQAAAAAICQAAAAACCQAAAAAACQAAAAAFCQAAAAAKCQAAAAAJCQAAAAACCQAAAAAMCQAAAAAMCQAAAAAACQAAAAAECQAAAAAECQAAAAAECQAAAAAFCQAAAAAJCQAAAAANCQAAAAAACQAAAAAKCQAAAAAICQAAAAANCQAAAAAFCQAAAAABCQAAAAAKCQAAAAAJCQAAAAAGCQAAAAAJCQAAAAANCQAAAAAICQAAAAAHCQAAAAACCQAAAAAMCQAAAAADCQAAAAAFCQAAAAAICQAAAAAMCQAAAAAMCQAAAAALCQAAAAADCQAAAAALCQAAAAAKCQAAAAADCQAAAAALCQAAAAANCQAAAAAECQAAAAALCQAAAAAJCQAAAAAGCQAAAAAGCQAAAAANCQAAAAAACQAAAAANCQAAAAAECQAAAAACCQAAAAAGCQAAAAAMCQAAAAALCQAAAAAMCQAAAAAGCQAAAAABCQAAAAAJCQAAAAAMCQAAAAALCQAAAAADCQAAAAAACQAAAAADCQAAAAANCQAAAAAJCQAAAAAHCQAAAAAICQAAAAADCQAAAAADCQAAAAACCQAAAAALCQAAAAAGCQAAAAAHCQAAAAAMCQAAAAALCQAAAAADCQAAAAANCQAAAAAHCQAAAAAHCQAAAAAICQAAAAANCQAAAAAICQAAAAACCQAAAAAFCQAAAAANCQAAAAAACQAAAAAECQAAAAAICQAAAAAKCQAAAAALCQAAAAAHCQAAAAACCQAAAAAGCQAAAAAFCQAAAAALCQAAAAAGCQAAAAAKCQAAAAAECQAAAAANCQAAAAANCQAAAAAICQAAAAAECQAAAAANCQAAAAAACQAAAAAICQAAAAAFCQAAAAAACQAAAAAE
+ tiles: CQAAAAAECQAAAAAICQAAAAAKCQAAAAALCQAAAAAHCQAAAAABCQAAAAACCQAAAAAACQAAAAALCQAAAAANCQAAAAAKCQAAAAACCQAAAAADCQAAAAAFCQAAAAAACQAAAAANCQAAAAABCQAAAAABCQAAAAAJCQAAAAADCQAAAAANCQAAAAACCQAAAAAECQAAAAACCQAAAAABCQAAAAAMCQAAAAAHCQAAAAAFCQAAAAAICQAAAAAMCQAAAAAFCQAAAAAMCQAAAAAICQAAAAALCQAAAAAJCQAAAAACCQAAAAADCQAAAAAJCQAAAAAKCQAAAAAMCQAAAAAACQAAAAACCQAAAAAMCQAAAAAFCQAAAAAKCQAAAAABCQAAAAAECQAAAAADCQAAAAAHCQAAAAADCQAAAAAICQAAAAAJCQAAAAAECQAAAAAGCQAAAAAFCQAAAAAICQAAAAAACQAAAAAFCQAAAAACCQAAAAADCQAAAAAGCQAAAAAACQAAAAAKCQAAAAANCQAAAAAECQAAAAAGCQAAAAAICQAAAAADCQAAAAAFCQAAAAAHCQAAAAAICQAAAAAICQAAAAANCQAAAAAHCQAAAAABCQAAAAAGCQAAAAAHCQAAAAAHCQAAAAAGCQAAAAAFCQAAAAAHCQAAAAAECQAAAAALCQAAAAACCQAAAAAACQAAAAACCQAAAAAJCQAAAAAHCQAAAAAHCQAAAAAGCQAAAAAKCQAAAAAKCQAAAAAICQAAAAACCQAAAAAICQAAAAAFCQAAAAAECQAAAAAFCQAAAAAHCQAAAAAHCQAAAAAACQAAAAAECQAAAAAECQAAAAABCQAAAAAJCQAAAAAJCQAAAAAKCQAAAAAECQAAAAAFCQAAAAAHCQAAAAAFCQAAAAAKCQAAAAAJCQAAAAAHCQAAAAAFCQAAAAANCQAAAAAKCQAAAAALCQAAAAAJCQAAAAAACQAAAAAJCQAAAAAMCQAAAAAKCQAAAAACCQAAAAAGCQAAAAAHCQAAAAABCQAAAAANCQAAAAAMCQAAAAANCQAAAAADCQAAAAAHCQAAAAAKCQAAAAAMCQAAAAAKCQAAAAABCQAAAAAGCQAAAAAICQAAAAAFCQAAAAAKCQAAAAAJCQAAAAAACQAAAAAKCQAAAAAICQAAAAAJCQAAAAAACQAAAAANCQAAAAAJCQAAAAAJCQAAAAAACQAAAAAMCQAAAAANCQAAAAAMCQAAAAANCQAAAAADCQAAAAALCQAAAAAGCQAAAAAKCQAAAAALCQAAAAACCQAAAAAKCQAAAAANCQAAAAALCQAAAAANCQAAAAAGCQAAAAAHCQAAAAAKCQAAAAAICQAAAAACCQAAAAAJCQAAAAAJCQAAAAABCQAAAAAECQAAAAAMCQAAAAAECQAAAAAKCQAAAAANCQAAAAAGCQAAAAAICQAAAAAHCQAAAAAMCQAAAAALCQAAAAAFCQAAAAALCQAAAAAKCQAAAAAACQAAAAAGCQAAAAACCQAAAAAMCQAAAAANCQAAAAAFCQAAAAAFCQAAAAANCQAAAAAKCQAAAAAICQAAAAANCQAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAAMCQAAAAAMCQAAAAALCQAAAAAECQAAAAALCQAAAAADCQAAAAAJCQAAAAAKCQAAAAAECQAAAAABCQAAAAAKCQAAAAAHCQAAAAAECQAAAAANCQAAAAALCQAAAAAGCQAAAAABCQAAAAALCQAAAAAHCQAAAAAKCQAAAAAKCQAAAAALCQAAAAAGCQAAAAAJCQAAAAALCQAAAAABCQAAAAANCQAAAAAICQAAAAADCQAAAAAHCQAAAAADCQAAAAAKCQAAAAALCQAAAAAACQAAAAAJCQAAAAAMCQAAAAAECQAAAAAHCQAAAAALCQAAAAANCQAAAAAJCQAAAAAFCQAAAAAGCQAAAAADCQAAAAANCQAAAAANCQAAAAAICQAAAAALCQAAAAABCQAAAAAGCQAAAAAKCQAAAAAGCQAAAAAECQAAAAAACQAAAAALCQAAAAAJ
version: 6
5,0:
ind: 5,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAEAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAEAQAAAAADAQAAAAAAAQAAAAACAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAEAQAAAAADAQAAAAAEAQAAAAACAQAAAAAEAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAAEAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAACAQAAAAAAAQAAAAACAQAAAAADAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAAAAQAAAAADAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAECQAAAAABCQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAAEAQAAAAACAQAAAAACAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADCQAAAAAGCQAAAAADAQAAAAACAQAAAAADAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAADAAAAAAAAAAAAAAAACQAAAAAJCQAAAAAACQAAAAAJCQAAAAANCQAAAAALCQAAAAAFAQAAAAACAQAAAAADAQAAAAABAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAABAQAAAAAEAQAAAAABAQAAAAACAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAEAQAAAAABAQAAAAACAQAAAAAEAQAAAAABAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAACAQAAAAAEAQAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAQAAAAAEAQAAAAADAQAAAAADAQAAAAADAQAAAAADAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAADAQAAAAACAQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAMCQAAAAACCQAAAAAEAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAAEAQAAAAABAQAAAAACAQAAAAACAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAACQAAAAADCQAAAAABCQAAAAAMAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAACQAAAAAKCQAAAAANCQAAAAAACQAAAAAMCQAAAAAICQAAAAADAQAAAAABAQAAAAAEAQAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,1:
ind: 5,1
- tiles: CQAAAAACCQAAAAANCQAAAAADCQAAAAABCQAAAAAECQAAAAACAQAAAAAAAQAAAAACAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAACQAAAAAKCQAAAAAECQAAAAAECQAAAAAKCQAAAAAFCQAAAAAFAQAAAAACAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAEAQAAAAACAQAAAAAAAQAAAAAEAQAAAAAAAAAAAAAACQAAAAANCQAAAAAMCQAAAAAFCQAAAAAKCQAAAAAICQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAAEAAAAAAAACQAAAAAKCQAAAAAFCQAAAAAKCQAAAAANCQAAAAAACQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAAEAQAAAAACAQAAAAAEAQAAAAACAQAAAAABAQAAAAACAAAAAAAACQAAAAAICQAAAAACCQAAAAAHCQAAAAAACQAAAAAGCQAAAAAHCQAAAAANCQAAAAADCQAAAAABCQAAAAAMAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAAAQAAAAABAAAAAAAACQAAAAAMCQAAAAALCQAAAAABCQAAAAAKCQAAAAAMCQAAAAAICQAAAAAJCQAAAAACCQAAAAAGCQAAAAAMAQAAAAAEAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAAACQAAAAABCQAAAAAFCQAAAAAJCQAAAAAGCQAAAAABCQAAAAAECQAAAAAECQAAAAACCQAAAAADCQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAADAQAAAAACCQAAAAADCQAAAAAJCQAAAAAGCQAAAAAJCQAAAAAGCQAAAAAMCQAAAAACCQAAAAAFCQAAAAAMCQAAAAABCQAAAAAICQAAAAACAQAAAAAAAQAAAAAEAQAAAAACAQAAAAACCQAAAAANCQAAAAAECQAAAAALCQAAAAANCQAAAAAGCQAAAAAECQAAAAANCQAAAAAACQAAAAAHCQAAAAAECQAAAAAJCQAAAAAMAQAAAAAAAQAAAAAEAQAAAAACAQAAAAABCQAAAAAKCQAAAAAJCQAAAAAKCQAAAAAGCQAAAAAACQAAAAAFCQAAAAAACQAAAAANCQAAAAADCQAAAAAGCQAAAAADCQAAAAAGAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACCQAAAAAMCQAAAAAKCQAAAAABCQAAAAAJCQAAAAAKCQAAAAAMCQAAAAAICQAAAAAKCQAAAAANCQAAAAALCQAAAAAFCQAAAAAMAQAAAAACAQAAAAABAQAAAAABAQAAAAAACQAAAAAGCQAAAAAGCQAAAAAGCQAAAAALCQAAAAAFCQAAAAAGCQAAAAAECQAAAAADCQAAAAAJCQAAAAAACQAAAAAHAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAANCQAAAAAICQAAAAADCQAAAAABCQAAAAADCQAAAAAIAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAACCQAAAAANCQAAAAAFCQAAAAAGCQAAAAAFCQAAAAAJCQAAAAAKCQAAAAAGCQAAAAAGCQAAAAABCQAAAAAICQAAAAAJAQAAAAAEAQAAAAABAQAAAAADAQAAAAAEAQAAAAAECQAAAAAJCQAAAAAECQAAAAAACQAAAAAECQAAAAADCQAAAAAACQAAAAAICQAAAAAJCQAAAAAKCQAAAAAECQAAAAAJAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAACQAAAAAHCQAAAAAICQAAAAAACQAAAAACCQAAAAALCQAAAAAACQAAAAAHCQAAAAADCQAAAAAACQAAAAADCQAAAAALAQAAAAAEAQAAAAACAQAAAAAEAQAAAAAEAQAAAAAE
+ tiles: CQAAAAAKCQAAAAAGCQAAAAADCQAAAAAFCQAAAAAHCQAAAAAEAQAAAAAEAQAAAAABAQAAAAAEAQAAAAACAQAAAAADAQAAAAACAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAACQAAAAADCQAAAAALCQAAAAAGCQAAAAANCQAAAAANCQAAAAAEAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAACAQAAAAABAAAAAAAACQAAAAABCQAAAAAGCQAAAAAJCQAAAAAJCQAAAAAICQAAAAAEAQAAAAAEAQAAAAABAQAAAAACAQAAAAADAQAAAAAAAQAAAAADAQAAAAACAQAAAAADAQAAAAACAAAAAAAACQAAAAAGCQAAAAACCQAAAAAGCQAAAAAKCQAAAAALCQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAEAQAAAAABAQAAAAAAAQAAAAABAQAAAAADAQAAAAABAAAAAAAACQAAAAAECQAAAAAKCQAAAAANCQAAAAAMCQAAAAAMCQAAAAAMCQAAAAACCQAAAAALCQAAAAAMCQAAAAAKAQAAAAACAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAAAAAAAACQAAAAAECQAAAAAHCQAAAAAFCQAAAAAICQAAAAAFCQAAAAAECQAAAAAKCQAAAAACCQAAAAAMCQAAAAAEAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAECQAAAAADCQAAAAADCQAAAAAKCQAAAAAHCQAAAAAKCQAAAAACCQAAAAAMCQAAAAANCQAAAAAJCQAAAAACAQAAAAABAQAAAAABAQAAAAAAAQAAAAAEAQAAAAABAQAAAAACCQAAAAAECQAAAAAHCQAAAAAFCQAAAAAACQAAAAAHCQAAAAABCQAAAAAFCQAAAAACCQAAAAAJCQAAAAACCQAAAAADCQAAAAAGAQAAAAAAAQAAAAABAQAAAAADAQAAAAABCQAAAAAECQAAAAAACQAAAAAACQAAAAAFCQAAAAAKCQAAAAABCQAAAAADCQAAAAAICQAAAAAACQAAAAABCQAAAAABCQAAAAAHAQAAAAACAQAAAAADAQAAAAACAQAAAAADCQAAAAAMCQAAAAAJCQAAAAACCQAAAAABCQAAAAAMCQAAAAAJCQAAAAADCQAAAAAHCQAAAAAHCQAAAAAGCQAAAAAGCQAAAAAHAQAAAAABAQAAAAAAAQAAAAABAQAAAAACCQAAAAAKCQAAAAAHCQAAAAAFCQAAAAACCQAAAAAKCQAAAAAACQAAAAAKCQAAAAAJCQAAAAANCQAAAAAACQAAAAAFCQAAAAACAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAACQAAAAAJCQAAAAADCQAAAAAFCQAAAAAMCQAAAAAACQAAAAAHCQAAAAAGCQAAAAAHCQAAAAAKCQAAAAAHCQAAAAAFAQAAAAAEAQAAAAAEAQAAAAABAQAAAAADAQAAAAACCQAAAAAHCQAAAAAMCQAAAAANCQAAAAANCQAAAAAJCQAAAAAACQAAAAAHCQAAAAAACQAAAAALCQAAAAAICQAAAAAMAQAAAAABAQAAAAABAQAAAAAEAQAAAAAAAQAAAAADCQAAAAALCQAAAAANCQAAAAANCQAAAAANCQAAAAAACQAAAAANCQAAAAAHCQAAAAAECQAAAAAACQAAAAAECQAAAAACAQAAAAAEAQAAAAADAQAAAAAEAQAAAAACAQAAAAAACQAAAAANCQAAAAAHCQAAAAAMCQAAAAABCQAAAAAECQAAAAAGCQAAAAACCQAAAAABCQAAAAAFCQAAAAAGCQAAAAANAQAAAAABAQAAAAACAQAAAAABAQAAAAAEAQAAAAABCQAAAAAHCQAAAAAACQAAAAAGCQAAAAALCQAAAAAJCQAAAAAICQAAAAAECQAAAAALCQAAAAAHCQAAAAAKCQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAAEAQAAAAAD
version: 6
6,1:
ind: 6,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
6,2:
ind: 6,2
- tiles: AQAAAAADAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAABCQAAAAAHAQAAAAAEAQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAJCQAAAAADAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAICQAAAAAKAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAEAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAICQAAAAAACQAAAAAFCQAAAAANCQAAAAAAAQAAAAABAQAAAAAAAQAAAAAEAQAAAAACAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAABCQAAAAAMCQAAAAALCQAAAAAACQAAAAADAQAAAAABAQAAAAABAQAAAAAAAQAAAAAEAQAAAAABAQAAAAAAAQAAAAAEAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAECQAAAAAICQAAAAAECQAAAAAKCQAAAAALCQAAAAAECQAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAAEAQAAAAAAAQAAAAABAQAAAAAEAAAAAAAAAAAAAAAACQAAAAAICQAAAAABCQAAAAACCQAAAAAJCQAAAAAGCQAAAAAECQAAAAAJAQAAAAAEAQAAAAADAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAQAAAAAEAAAAAAAAAAAAAAAACQAAAAANCQAAAAAMCQAAAAANCQAAAAABCQAAAAAICQAAAAAACQAAAAANCQAAAAAACQAAAAADAQAAAAACAQAAAAADAQAAAAADAQAAAAACAQAAAAAEAQAAAAABAAAAAAAACQAAAAAICQAAAAAGCQAAAAAACQAAAAAECQAAAAAICQAAAAAICQAAAAADCQAAAAAACQAAAAAHCQAAAAACCQAAAAALCQAAAAAKAQAAAAADAQAAAAAAAQAAAAACAQAAAAAECQAAAAAHCQAAAAAFCQAAAAAJCQAAAAAECQAAAAACCQAAAAAHCQAAAAAACQAAAAAMCQAAAAAECQAAAAAJCQAAAAACCQAAAAACAQAAAAABAQAAAAADAQAAAAAAAQAAAAACCQAAAAACCQAAAAAKCQAAAAAHCQAAAAAECQAAAAAICQAAAAAMCQAAAAACCQAAAAAACQAAAAABCQAAAAAGCQAAAAAHCQAAAAABAQAAAAACAQAAAAADAQAAAAAAAQAAAAAB
+ tiles: AQAAAAACAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAAEAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAADAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAALCQAAAAACAQAAAAAEAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAGCQAAAAAKAQAAAAAEAQAAAAABAQAAAAABAQAAAAAEAQAAAAACAQAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAGCQAAAAAFAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAADAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAALCQAAAAAGCQAAAAAFCQAAAAAECQAAAAACAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAGCQAAAAAECQAAAAALCQAAAAAECQAAAAAEAQAAAAACAQAAAAAAAQAAAAAEAQAAAAABAQAAAAACAQAAAAABAQAAAAAEAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAICQAAAAAKCQAAAAAFCQAAAAAFCQAAAAALCQAAAAALCQAAAAAJAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAAEAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAACQAAAAAJCQAAAAABCQAAAAAACQAAAAABCQAAAAAKCQAAAAADCQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAACAQAAAAACAQAAAAABAQAAAAAEAAAAAAAAAAAAAAAACQAAAAAECQAAAAAMCQAAAAAECQAAAAAGCQAAAAAHCQAAAAAJCQAAAAADCQAAAAAFCQAAAAACAQAAAAACAQAAAAABAQAAAAAEAQAAAAAEAQAAAAACAQAAAAABAAAAAAAACQAAAAAHCQAAAAAHCQAAAAABCQAAAAAMCQAAAAALCQAAAAAGCQAAAAANCQAAAAABCQAAAAAECQAAAAAMCQAAAAALCQAAAAAAAQAAAAAEAQAAAAAAAQAAAAACAQAAAAACCQAAAAAACQAAAAAMCQAAAAABCQAAAAAICQAAAAACCQAAAAAMCQAAAAALCQAAAAANCQAAAAACCQAAAAAICQAAAAADCQAAAAAEAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAECQAAAAACCQAAAAACCQAAAAAICQAAAAAECQAAAAAECQAAAAAMCQAAAAAMCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAAA
version: 6
6,3:
ind: 6,3
- tiles: CQAAAAAGCQAAAAALCQAAAAAECQAAAAAECQAAAAALCQAAAAAMCQAAAAANCQAAAAAKCQAAAAAICQAAAAAACQAAAAAJCQAAAAAEAQAAAAACAQAAAAABAQAAAAAEAQAAAAADCQAAAAAGCQAAAAAHCQAAAAABCQAAAAACCQAAAAAECQAAAAANCQAAAAAGCQAAAAAICQAAAAANCQAAAAAECQAAAAALCQAAAAAKAQAAAAAEAQAAAAABAQAAAAABAQAAAAACCQAAAAAACQAAAAADCQAAAAANCQAAAAAKCQAAAAAICQAAAAACCQAAAAAGCQAAAAADCQAAAAAFCQAAAAAECQAAAAAFCQAAAAADCQAAAAAECQAAAAAHAQAAAAAEAQAAAAADCQAAAAACCQAAAAAMCQAAAAAHCQAAAAADCQAAAAAFCQAAAAABCQAAAAACCQAAAAAGCQAAAAAGCQAAAAAICQAAAAAKCQAAAAAMCQAAAAAECQAAAAALAQAAAAABAQAAAAADCQAAAAAJCQAAAAAJCQAAAAABCQAAAAAJCQAAAAALCQAAAAABCQAAAAAHCQAAAAAECQAAAAAFCQAAAAAFCQAAAAAFCQAAAAAHCQAAAAAGCQAAAAAKCQAAAAAEAQAAAAABCQAAAAAGCQAAAAAACQAAAAAECQAAAAAACQAAAAAJCQAAAAAKCQAAAAACCQAAAAAHCQAAAAAKCQAAAAAKCQAAAAALCQAAAAALCQAAAAAFCQAAAAAECQAAAAAJCQAAAAAHCQAAAAAHCQAAAAAFCQAAAAAJCQAAAAAACQAAAAAACQAAAAAICQAAAAAHCQAAAAAKCQAAAAALCQAAAAAECQAAAAABCQAAAAAACQAAAAAFCQAAAAAFCQAAAAAGCQAAAAABCQAAAAAACQAAAAANCQAAAAACCQAAAAAKCQAAAAAHCQAAAAAMCQAAAAALCQAAAAAHCQAAAAANCQAAAAAGCQAAAAAGCQAAAAADCQAAAAALCQAAAAAGCQAAAAAECQAAAAAACQAAAAAGCQAAAAAACQAAAAANCQAAAAAACQAAAAAMCQAAAAAACQAAAAAJCQAAAAAECQAAAAALCQAAAAAIGAAAAAAEGAAAAAABGAAAAAAFGAAAAAADGAAAAAABGAAAAAAFCQAAAAAHCQAAAAAACQAAAAANCQAAAAAICQAAAAAHCQAAAAAGCQAAAAAFCQAAAAADCQAAAAABCQAAAAAAGAAAAAAEGAAAAAACGAAAAAADGAAAAAAAGAAAAAADGAAAAAACCQAAAAANCQAAAAAFCQAAAAAJCQAAAAANCQAAAAACGAAAAAABGAAAAAAEGAAAAAACGAAAAAAEGAAAAAAEGAAAAAAEGAAAAAADGAAAAAADGAAAAAAAGAAAAAAEGAAAAAADCQAAAAACCQAAAAALCQAAAAABCQAAAAAMCQAAAAAEGAAAAAAFGAAAAAADGAAAAAACGAAAAAADGAAAAAAFGAAAAAADGAAAAAABGAAAAAAAGAAAAAADGAAAAAADGAAAAAACCQAAAAAMCQAAAAABCQAAAAADCQAAAAABCQAAAAAJGAAAAAAEGAAAAAAFGAAAAAABGAAAAAACGAAAAAADGAAAAAABGAAAAAACGAAAAAAFGAAAAAAFGAAAAAACGAAAAAAECQAAAAADCQAAAAADCQAAAAAACQAAAAALCQAAAAAEGAAAAAADGAAAAAADGAAAAAAEGAAAAAADGAAAAAACGAAAAAABGAAAAAADGAAAAAADGAAAAAAAGAAAAAAAGAAAAAACAQAAAAAEAQAAAAAAAQAAAAACAQAAAAAEAQAAAAADGAAAAAACGAAAAAAFGAAAAAAFGAAAAAAFGAAAAAACGAAAAAAEGAAAAAAAGAAAAAABGAAAAAAAGAAAAAABGAAAAAAEAQAAAAAEAQAAAAACAQAAAAACAQAAAAAEAQAAAAABAQAAAAACAQAAAAAEAQAAAAACCQAAAAADCQAAAAAKCQAAAAAFCQAAAAANCQAAAAAMCQAAAAALCQAAAAAHCQAAAAAD
+ tiles: CQAAAAAKCQAAAAABCQAAAAAJCQAAAAALCQAAAAAECQAAAAAHCQAAAAAICQAAAAAMCQAAAAADCQAAAAADCQAAAAAHCQAAAAACAQAAAAABAQAAAAAEAQAAAAABAQAAAAACCQAAAAAFCQAAAAAICQAAAAANCQAAAAADCQAAAAAECQAAAAAFCQAAAAANCQAAAAAFCQAAAAALCQAAAAANCQAAAAAECQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAAACQAAAAAMCQAAAAADCQAAAAADCQAAAAAHCQAAAAAFCQAAAAALCQAAAAAJCQAAAAAHCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAALCQAAAAADAQAAAAAAAQAAAAAECQAAAAALCQAAAAACCQAAAAALCQAAAAAICQAAAAAKCQAAAAAHCQAAAAAACQAAAAAGCQAAAAAECQAAAAAICQAAAAADCQAAAAAMCQAAAAAHCQAAAAAMAQAAAAAEAQAAAAADCQAAAAAMCQAAAAAKCQAAAAAACQAAAAAKCQAAAAANCQAAAAAHCQAAAAADCQAAAAADCQAAAAANCQAAAAAICQAAAAAFCQAAAAAGCQAAAAAKCQAAAAAFCQAAAAAJAQAAAAABCQAAAAACCQAAAAABCQAAAAALCQAAAAABCQAAAAAKCQAAAAADCQAAAAAJCQAAAAAGCQAAAAACCQAAAAACCQAAAAAACQAAAAANCQAAAAABCQAAAAADCQAAAAADCQAAAAAECQAAAAAMCQAAAAAGCQAAAAABCQAAAAALCQAAAAAKCQAAAAALCQAAAAALCQAAAAAKCQAAAAAMCQAAAAANCQAAAAAGCQAAAAAKCQAAAAAECQAAAAALCQAAAAAICQAAAAAICQAAAAAFCQAAAAACCQAAAAAACQAAAAAACQAAAAAKCQAAAAAKCQAAAAAECQAAAAAECQAAAAAACQAAAAAICQAAAAAFCQAAAAABCQAAAAACCQAAAAAMCQAAAAAKCQAAAAAMCQAAAAAECQAAAAAECQAAAAANCQAAAAAICQAAAAAACQAAAAAHHgAAAAAAHgAAAAAACQAAAAAJCQAAAAANHQAAAAAFHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAECQAAAAAGCQAAAAAKCQAAAAAJCQAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAADCQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAAFHQAAAAABCQAAAAAKCQAAAAAICQAAAAAFCQAAAAABHgAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAFHQAAAAABHQAAAAAFHQAAAAABHQAAAAAAHQAAAAABHQAAAAAFHQAAAAAECQAAAAAJCQAAAAAJCQAAAAAKCQAAAAADHgAAAAAAHQAAAAAFEwAAAAAAEwAAAAAAEwAAAAAAHQAAAAABHQAAAAABHQAAAAAEHQAAAAAAHQAAAAADHQAAAAADHQAAAAAFCQAAAAALCQAAAAAICQAAAAAICQAAAAACHgAAAAAAHQAAAAACEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAHQAAAAAEHQAAAAAAHQAAAAADHQAAAAAFHQAAAAAAHQAAAAAFCQAAAAAJCQAAAAACCQAAAAAFCQAAAAAMCQAAAAAJHQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAAFHQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAABAQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAEHQAAAAAEHQAAAAAEHQAAAAAAHQAAAAACHQAAAAADAQAAAAABAQAAAAABAQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAAEAQAAAAADCQAAAAAFCQAAAAAHCQAAAAALCQAAAAAECQAAAAANCQAAAAACCQAAAAAICQAAAAAE
version: 6
7,2:
ind: 7,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
7,3:
ind: 7,3
- tiles: AQAAAAAEAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAQAAAAAEAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAACAQAAAAABAQAAAAAEAQAAAAABAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAKAQAAAAACAQAAAAACAQAAAAADAQAAAAADAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAGAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAIAQAAAAACAQAAAAACAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAJCQAAAAAJCQAAAAAJCQAAAAAKAQAAAAAAAQAAAAACAQAAAAAEAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAGCQAAAAAJCQAAAAABAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAICQAAAAAGCQAAAAAJCQAAAAABAQAAAAADAQAAAAACAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAMCQAAAAAKCQAAAAAMCQAAAAAKAQAAAAABAQAAAAACAQAAAAADAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAMCQAAAAALCQAAAAABCQAAAAAMAQAAAAABAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAHCQAAAAAKCQAAAAAJCQAAAAAAAQAAAAADAQAAAAABAQAAAAAEAQAAAAAEAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAKCQAAAAALCQAAAAAACQAAAAAHCQAAAAAKAQAAAAADAQAAAAAEAQAAAAACAQAAAAABAQAAAAAEAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAIAQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAFAQAAAAABAQAAAAAEAQAAAAAEAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAMAQAAAAACAQAAAAAEAQAAAAAEAQAAAAADAQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAALAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAEAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAJCQAAAAAGCQAAAAABCQAAAAAJAQAAAAABAQAAAAADAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAICQAAAAABCQAAAAAMCQAAAAABAQAAAAADAQAAAAAEAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAACCQAAAAABCQAAAAAKCQAAAAALAQAAAAAEAQAAAAABAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAJCQAAAAACCQAAAAAKCQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAECQAAAAAACQAAAAAICQAAAAAJAQAAAAAEAQAAAAACAQAAAAACAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAANCQAAAAAECQAAAAAJCQAAAAAIAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAJCQAAAAAGCQAAAAAFCQAAAAALCQAAAAACAQAAAAADAQAAAAABAQAAAAACAQAAAAADAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
6,4:
ind: 6,4
- tiles: AQAAAAAEAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAABAQAAAAAEAQAAAAABAQAAAAACAQAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAAAAQAAAAADAQAAAAADAQAAAAAEAQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAACAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAADAQAAAAAEAQAAAAABAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAAEAQAAAAACAQAAAAABAQAAAAABAQAAAAAEAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAADAQAAAAADAQAAAAAEAQAAAAADAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAACAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAADAQAAAAABAQAAAAACAQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAABAQAAAAADAQAAAAAEAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AQAAAAAEAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAABAQAAAAACAQAAAAAEAQAAAAABAQAAAAABAQAAAAAEAQAAAAAEAQAAAAACAQAAAAADAQAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAACAQAAAAAEAQAAAAACAQAAAAAAAQAAAAADAQAAAAAEAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAACAQAAAAAAAQAAAAAEAQAAAAACAQAAAAACAQAAAAACAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAADAQAAAAACAQAAAAABAQAAAAABAQAAAAAEAQAAAAABAQAAAAADAQAAAAAAAQAAAAADAQAAAAAEAQAAAAACAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAACAQAAAAADAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAADAQAAAAACAQAAAAAEAQAAAAACAQAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAAEAQAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAAEAQAAAAADAQAAAAAEAQAAAAAEAQAAAAACAQAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAACAQAAAAACAQAAAAACAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAADAQAAAAAEAQAAAAABAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAABAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAEAQAAAAABAQAAAAAAAQAAAAACAQAAAAAEAQAAAAABAQAAAAADAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAABAQAAAAAEAQAAAAADAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAABAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAEAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
7,4:
ind: 7,4
- tiles: AQAAAAAEAQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAEAQAAAAAEAQAAAAACAQAAAAACAQAAAAADAQAAAAADAQAAAAAEAQAAAAABAQAAAAACAQAAAAACAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAADAQAAAAAEAQAAAAACAQAAAAADAQAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAACAQAAAAACAQAAAAADAQAAAAAEAQAAAAACAQAAAAACAQAAAAAEAQAAAAADAQAAAAACAQAAAAAEAQAAAAABAQAAAAACAAAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAABAQAAAAABAQAAAAAEAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAAEAAAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAAEAQAAAAABAQAAAAACAQAAAAACAQAAAAAEAQAAAAACAQAAAAABAQAAAAADAQAAAAABAQAAAAAEAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAABAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAADAQAAAAACAQAAAAAEAQAAAAACAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAAEAQAAAAACAQAAAAABAQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAAEAQAAAAABAQAAAAAEAQAAAAADAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAACAQAAAAADAQAAAAACAQAAAAAEAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAAEAQAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAACAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAEAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAABAQAAAAABAQAAAAAEAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAEAQAAAAACAQAAAAADAQAAAAAEAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AQAAAAAEAQAAAAADAQAAAAABAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAADAQAAAAADAQAAAAAEAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAABAQAAAAAEAQAAAAADAQAAAAABAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAAAAAAAAAAAAQAAAAACAQAAAAADAQAAAAABAQAAAAADAQAAAAAEAQAAAAADAQAAAAAEAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAACAQAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAADAQAAAAAAAQAAAAAEAQAAAAACAQAAAAADAQAAAAACAAAAAAAAAQAAAAACAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAACAQAAAAAEAQAAAAAEAQAAAAABAQAAAAACAQAAAAADAQAAAAAEAQAAAAADAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAAEAQAAAAADAQAAAAACAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAEAQAAAAADAQAAAAABAQAAAAACAQAAAAABAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAACAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAAEAQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAABAQAAAAABAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAAAAQAAAAADAQAAAAAEAQAAAAAEAQAAAAABAQAAAAACAQAAAAAAAQAAAAAEAQAAAAADAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAEAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAADAQAAAAADAQAAAAADAQAAAAAEAQAAAAABAQAAAAAEAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEAQAAAAAEAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -522,6 +522,7 @@ entities:
id: CP14BrickTileGrayScaleStoneCornerNw
decals:
187: 26,17
+ 206: 29,4
- node:
color: '#FFFFFFFF'
id: CP14BrickTileGrayScaleStoneCornerNw
@@ -554,6 +555,7 @@ entities:
id: CP14BrickTileGrayScaleStoneCornerSw
decals:
186: 26,16
+ 207: 29,2
- node:
color: '#FFFFFFFF'
id: CP14BrickTileGrayScaleStoneCornerSw
@@ -614,6 +616,7 @@ entities:
79: 12,-25
80: 13,-25
189: 27,17
+ 210: 30,4
- node:
color: '#FFFFFFFF'
id: CP14BrickTileGrayScaleStoneLineN
@@ -645,6 +648,7 @@ entities:
id: CP14BrickTileGrayScaleStoneLineS
decals:
190: 27,16
+ 209: 30,2
- node:
color: '#FFFFFFFF'
id: CP14BrickTileGrayScaleStoneLineS
@@ -676,6 +680,7 @@ entities:
decals:
81: 14,-24
82: 14,-23
+ 208: 29,3
- node:
color: '#FFFFFFFF'
id: CP14BrickTileGrayScaleStoneLineW
@@ -749,6 +754,12 @@ entities:
117: 21,-43
126: 18,-44
127: 18,-43
+ - node:
+ cleanable: True
+ color: '#6EAAEBFF'
+ id: CP14CrayonArrowSkull
+ decals:
+ 224: -15.634241,40.654697
- node:
color: '#D4D4D428'
id: WoodTrimThinGrayScaleBox
@@ -760,6 +771,69 @@ entities:
111: 20,-23
112: 21,-24
113: 20,-25
+ - node:
+ cleanable: True
+ color: '#6EAAEBFF'
+ id: a
+ decals:
+ 213: -17.274866,41.404697
+ 218: -14.618616,41.279697
+ - node:
+ cleanable: True
+ color: '#6EAAEBFF'
+ id: e
+ decals:
+ 221: -17.259241,40.701572
+ 223: -16.243616,40.560947
+ - node:
+ cleanable: True
+ color: '#6EAAEBFF'
+ id: h
+ decals:
+ 220: -17.759241,40.685947
+ - node:
+ cleanable: True
+ color: '#6EAAEBFF'
+ id: i
+ decals:
+ 212: -17.774866,41.545322
+ - node:
+ cleanable: True
+ color: '#6EAAEBFF'
+ id: o
+ decals:
+ 215: -16.462366,41.373447
+ - node:
+ cleanable: True
+ color: '#6EAAEBFF'
+ id: r
+ decals:
+ 216: -16.024866,41.357822
+ 222: -16.743616,40.576572
+ - node:
+ cleanable: True
+ color: '#6EAAEBFF'
+ id: s
+ decals:
+ 219: -14.243616,41.201572
+ - node:
+ cleanable: True
+ color: '#6EAAEBFF'
+ id: t
+ decals:
+ 214: -16.915491,41.435947
+ - node:
+ cleanable: True
+ color: '#6EAAEBFF'
+ id: v
+ decals:
+ 211: -18.212366,41.498447
+ - node:
+ cleanable: True
+ color: '#6EAAEBFF'
+ id: w
+ decals:
+ 217: -15.227991,41.357822
- type: GridAtmosphere
version: 2
data:
@@ -775,13 +849,14 @@ entities:
-1,1:
0: 64733
0,2:
- 0: 4095
+ 0: 61439
-1,2:
0: 8191
0,3:
- 0: 15291
+ 0: 13247
+ 1: 2048
-1,3:
- 0: 56797
+ 0: 64989
0,4:
0: 63675
1,0:
@@ -825,7 +900,7 @@ entities:
4,2:
0: 8191
4,3:
- 0: 56797
+ 0: 53725
0,-4:
0: 65535
0,-5:
@@ -833,7 +908,8 @@ entities:
0,-3:
0: 16383
-1,-4:
- 0: 53367
+ 0: 53351
+ 2: 16
-1,-3:
0: 53197
0,-2:
@@ -895,29 +971,29 @@ entities:
-5,-1:
0: 65309
-3,-4:
- 0: 62395
+ 0: 65521
-3,-3:
0: 16383
-3,-1:
0: 16187
-3,-5:
- 0: 45518
+ 0: 56782
-3,-2:
0: 43562
-3,0:
0: 43690
- -2,-4:
- 0: 57599
-2,-3:
0: 3854
-2,-2:
0: 16333
-2,-1:
0: 53131
- -2,-5:
- 0: 65231
+ -2,-4:
+ 0: 57582
-2,0:
0: 61951
+ -2,-5:
+ 0: 61135
-1,-5:
0: 30471
-4,0:
@@ -955,7 +1031,7 @@ entities:
-2,4:
0: 64733
-1,4:
- 0: 61917
+ 0: 61951
-4,-8:
0: 65309
-4,-9:
@@ -1103,41 +1179,43 @@ entities:
-5,4:
0: 65526
4,4:
- 0: 63345
+ 0: 56797
5,0:
0: 30583
5,1:
0: 63351
5,2:
- 0: 36863
+ 0: 4095
5,3:
- 0: 30579
+ 0: 30327
5,-1:
0: 30711
+ 5,4:
+ 0: 53623
6,0:
- 0: 65520
+ 0: 49148
6,1:
- 0: 61695
+ 0: 61627
6,2:
0: 8191
6,3:
0: 56797
6,-1:
- 0: 47352
+ 0: 61688
6,4:
0: 53725
+ 7,0:
+ 0: 30478
7,1:
- 0: 65262
+ 0: 61559
7,2:
0: 4095
7,3:
0: 61559
- 7,-1:
- 0: 65535
- 7,0:
- 0: 61166
7,4:
0: 64543
+ 7,-1:
+ 0: 61183
8,0:
0: 65535
8,1:
@@ -1211,15 +1289,13 @@ entities:
8,-5:
0: 65535
4,5:
- 0: 65535
+ 0: 65521
3,5:
0: 65398
4,6:
0: 52991
- 5,4:
- 0: 61552
5,5:
- 0: 30719
+ 0: 30716
5,6:
0: 30583
5,7:
@@ -1243,13 +1319,13 @@ entities:
0,5:
0: 65535
-1,5:
- 0: 61439
+ 0: 53247
0,6:
0: 7
-1,6:
0: 8
1,5:
- 0: 15359
+ 0: 16383
2,6:
0: 61182
2,5:
@@ -2878,6 +2954,36 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.14975
+ moles:
+ - 20.078888
+ - 75.53487
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.6852
+ - 81.57766
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
@@ -2952,27 +3058,121 @@ entities:
- type: Transform
pos: -15.5,-19.5
parent: 2
- - uid: 12990
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-31.5
- parent: 2
- uid: 13399
components:
- type: Transform
pos: -13.5,-19.5
parent: 2
- - uid: 15359
+ - uid: 14992
components:
- type: Transform
- pos: -47.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,15.5
parent: 2
- - type: ItemPlacer
- placedEntities:
- - 15363
- proto: CP14Arrow
entities:
+ - uid: 9892
+ components:
+ - type: Transform
+ parent: 17927
+ - type: Physics
+ canCollide: False
+ - uid: 9893
+ components:
+ - type: Transform
+ parent: 17927
+ - type: Physics
+ canCollide: False
+ - uid: 9894
+ components:
+ - type: Transform
+ parent: 17927
+ - type: Physics
+ canCollide: False
+ - uid: 9895
+ components:
+ - type: Transform
+ parent: 17927
+ - type: Physics
+ canCollide: False
+ - uid: 9896
+ components:
+ - type: Transform
+ parent: 17927
+ - type: Physics
+ canCollide: False
+ - uid: 9903
+ components:
+ - type: Transform
+ parent: 17927
+ - type: Physics
+ canCollide: False
+ - uid: 9904
+ components:
+ - type: Transform
+ parent: 17927
+ - type: Physics
+ canCollide: False
+ - uid: 9905
+ components:
+ - type: Transform
+ parent: 17928
+ - type: Physics
+ canCollide: False
+ - uid: 9906
+ components:
+ - type: Transform
+ parent: 17928
+ - type: Physics
+ canCollide: False
+ - uid: 9907
+ components:
+ - type: Transform
+ parent: 17928
+ - type: Physics
+ canCollide: False
+ - uid: 9908
+ components:
+ - type: Transform
+ parent: 17928
+ - type: Physics
+ canCollide: False
+ - uid: 9909
+ components:
+ - type: Transform
+ parent: 17928
+ - type: Physics
+ canCollide: False
+ - uid: 9910
+ components:
+ - type: Transform
+ parent: 17928
+ - type: Physics
+ canCollide: False
+ - uid: 9911
+ components:
+ - type: Transform
+ parent: 17928
+ - type: Physics
+ canCollide: False
+ - uid: 9917
+ components:
+ - type: Transform
+ parent: 17928
+ - type: Physics
+ canCollide: False
+ - uid: 9918
+ components:
+ - type: Transform
+ parent: 17928
+ - type: Physics
+ canCollide: False
+ - uid: 9919
+ components:
+ - type: Transform
+ parent: 17928
+ - type: Physics
+ canCollide: False
- uid: 13955
components:
- type: Transform
@@ -3057,7 +3257,7 @@ entities:
canCollide: False
- proto: CP14BankStorageMarker
entities:
- - uid: 1269
+ - uid: 2252
components:
- type: Transform
pos: -18.5,29.5
@@ -3074,11 +3274,6 @@ entities:
- type: Transform
pos: 22.436327,-30.908672
parent: 2
- - uid: 1369
- components:
- - type: Transform
- pos: -28.629116,20.587132
- parent: 2
- uid: 1604
components:
- type: Transform
@@ -3149,11 +3344,6 @@ entities:
- type: Transform
pos: 26.459435,-10.281905
parent: 2
- - uid: 5548
- components:
- - type: Transform
- pos: 18.372929,15.88641
- parent: 2
- uid: 6140
components:
- type: Transform
@@ -3189,6 +3379,11 @@ entities:
- type: Transform
pos: -14.844218,-14.462033
parent: 2
+ - uid: 14933
+ components:
+ - type: Transform
+ pos: 18.374733,13.573778
+ parent: 2
- proto: CP14BaseBarrel
entities:
- uid: 1768
@@ -3291,11 +3486,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 3.5064907,-6.581194
parent: 2
- - uid: 1409
- components:
- - type: Transform
- pos: -28.09653,20.451582
- parent: 2
- uid: 1616
components:
- type: Transform
@@ -3324,11 +3514,6 @@ entities:
rot: 18.84955592153876 rad
pos: -3.2409186,-30.138302
parent: 2
- - uid: 5547
- components:
- - type: Transform
- pos: 18.721617,15.639033
- parent: 2
- uid: 6064
components:
- type: Transform
@@ -3351,10 +3536,11 @@ entities:
- type: Transform
pos: -15.350649,-14.439544
parent: 2
- - uid: 14861
+ - uid: 15003
components:
- type: Transform
- pos: 25.540224,5.9742117
+ rot: 1.5707963267948966 rad
+ pos: 22.489698,16.453072
parent: 2
- proto: CP14BaseSharpeningStone
entities:
@@ -3400,11 +3586,6 @@ entities:
parent: 2
- proto: CP14BaseSharpeningStoneStructure
entities:
- - uid: 2270
- components:
- - type: Transform
- pos: -6.5,5.5
- parent: 2
- uid: 8608
components:
- type: Transform
@@ -3417,6 +3598,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 26.5,15.5
parent: 2
+ - uid: 14949
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,5.5
+ parent: 2
- proto: CP14BaseShield
entities:
- uid: 619
@@ -3635,10 +3822,15 @@ entities:
- type: Transform
pos: 14.485714,0.5309479
parent: 2
- - uid: 2254
+ - uid: 12339
components:
- type: Transform
- pos: -6.553284,-30.408478
+ pos: -7.4322658,-32.514168
+ parent: 2
+ - uid: 14991
+ components:
+ - type: Transform
+ pos: 18.560522,15.638227
parent: 2
- proto: CP14BenchWood
entities:
@@ -3647,6 +3839,17 @@ entities:
- type: Transform
pos: -10.5,10.5
parent: 2
+ - uid: 9948
+ components:
+ - type: Transform
+ pos: -124.5,21.5
+ parent: 2
+ - uid: 10731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-17.5
+ parent: 2
- uid: 12402
components:
- type: Transform
@@ -14172,28553 +14375,28846 @@ entities:
parent: 2
- proto: CP14BiomeSpawnerGrassland
entities:
+ - uid: 60
+ components:
+ - type: Transform
+ pos: -31.5,-66.5
+ parent: 2
- uid: 861
components:
- type: Transform
pos: 12.5,-51.5
parent: 2
-- proto: CP14BiomeSpawnerSnowland
- entities:
- - uid: 267
+ - uid: 902
components:
- type: Transform
- pos: 118.5,69.5
+ pos: -36.5,-73.5
parent: 2
- - uid: 269
+ - uid: 903
components:
- type: Transform
- pos: 120.5,68.5
+ pos: -36.5,-74.5
parent: 2
- - uid: 411
+ - uid: 910
components:
- type: Transform
- pos: 120.5,69.5
+ pos: -32.5,-67.5
parent: 2
- - uid: 430
- components:
- - type: Transform
- pos: 121.5,69.5
- parent: 2
- - uid: 435
- components:
- - type: Transform
- pos: -61.5,-77.5
- parent: 2
- - uid: 458
- components:
- - type: Transform
- pos: 45.5,8.5
- parent: 2
- - uid: 463
- components:
- - type: Transform
- pos: 44.5,8.5
- parent: 2
- - uid: 466
- components:
- - type: Transform
- pos: -62.5,-77.5
- parent: 2
- - uid: 467
- components:
- - type: Transform
- pos: 42.5,10.5
- parent: 2
- - uid: 468
- components:
- - type: Transform
- pos: 43.5,10.5
- parent: 2
- - uid: 478
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,18.5
- parent: 2
- - uid: 502
- components:
- - type: Transform
- pos: 8.5,-54.5
- parent: 2
- - uid: 526
- components:
- - type: Transform
- pos: 10.5,-49.5
- parent: 2
- - uid: 543
- components:
- - type: Transform
- pos: 10.5,-51.5
- parent: 2
- - uid: 615
- components:
- - type: Transform
- pos: 9.5,-53.5
- parent: 2
- - uid: 712
- components:
- - type: Transform
- pos: -31.5,-67.5
- parent: 2
- - uid: 714
- components:
- - type: Transform
- pos: 9.5,-52.5
- parent: 2
- - uid: 715
- components:
- - type: Transform
- pos: 11.5,-50.5
- parent: 2
- - uid: 728
- components:
- - type: Transform
- pos: 9.5,-48.5
- parent: 2
- - uid: 735
- components:
- - type: Transform
- pos: 10.5,-52.5
- parent: 2
- - uid: 788
- components:
- - type: Transform
- pos: -32.5,-66.5
- parent: 2
- - uid: 802
- components:
- - type: Transform
- pos: -31.5,-66.5
- parent: 2
- - uid: 841
- components:
- - type: Transform
- pos: 8.5,-55.5
- parent: 2
- - uid: 863
- components:
- - type: Transform
- pos: 9.5,-54.5
- parent: 2
- - uid: 871
- components:
- - type: Transform
- pos: 10.5,-53.5
- parent: 2
- - uid: 873
- components:
- - type: Transform
- pos: -4.5,-48.5
- parent: 2
- - uid: 875
- components:
- - type: Transform
- pos: -4.5,-52.5
- parent: 2
- - uid: 877
- components:
- - type: Transform
- pos: 3.5,-54.5
- parent: 2
- - uid: 947
- components:
- - type: Transform
- pos: 2.5,-53.5
- parent: 2
- - uid: 962
- components:
- - type: Transform
- pos: 3.5,-53.5
- parent: 2
- - uid: 966
- components:
- - type: Transform
- pos: 2.5,-54.5
- parent: 2
- - uid: 1009
- components:
- - type: Transform
- pos: 41.5,9.5
- parent: 2
- - uid: 1049
- components:
- - type: Transform
- pos: -33.5,-66.5
- parent: 2
- - uid: 1080
- components:
- - type: Transform
- pos: 10.5,-50.5
- parent: 2
- - uid: 1082
- components:
- - type: Transform
- pos: 11.5,-49.5
- parent: 2
- - uid: 1172
- components:
- - type: Transform
- pos: 10.5,-55.5
- parent: 2
- - uid: 1178
- components:
- - type: Transform
- pos: -18.5,-72.5
- parent: 2
- - uid: 1398
- components:
- - type: Transform
- pos: -18.5,-71.5
- parent: 2
- - uid: 1400
- components:
- - type: Transform
- pos: 9.5,-55.5
- parent: 2
- - uid: 1408
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,18.5
- parent: 2
- - uid: 1449
- components:
- - type: Transform
- pos: 17.5,22.5
- parent: 2
- - uid: 1465
- components:
- - type: Transform
- pos: 22.5,27.5
- parent: 2
- - uid: 1466
- components:
- - type: Transform
- pos: 17.5,26.5
- parent: 2
- - uid: 1468
- components:
- - type: Transform
- pos: 21.5,27.5
- parent: 2
- - uid: 1473
- components:
- - type: Transform
- pos: 16.5,23.5
- parent: 2
- - uid: 1474
- components:
- - type: Transform
- pos: 16.5,21.5
- parent: 2
- - uid: 1475
- components:
- - type: Transform
- pos: 16.5,22.5
- parent: 2
- - uid: 1476
- components:
- - type: Transform
- pos: 22.5,28.5
- parent: 2
- - uid: 1477
- components:
- - type: Transform
- pos: 18.5,26.5
- parent: 2
- - uid: 1478
- components:
- - type: Transform
- pos: 22.5,26.5
- parent: 2
- - uid: 1479
- components:
- - type: Transform
- pos: 18.5,25.5
- parent: 2
- - uid: 1481
- components:
- - type: Transform
- pos: 17.5,25.5
- parent: 2
- - uid: 1482
- components:
- - type: Transform
- pos: 10.5,-54.5
- parent: 2
- - uid: 1486
- components:
- - type: Transform
- pos: -18.5,-70.5
- parent: 2
- - uid: 1487
- components:
- - type: Transform
- pos: -24.5,-25.5
- parent: 2
- - uid: 1488
- components:
- - type: Transform
- pos: -22.5,-25.5
- parent: 2
- - uid: 1489
- components:
- - type: Transform
- pos: -21.5,-25.5
- parent: 2
- - uid: 1490
- components:
- - type: Transform
- pos: -23.5,-25.5
- parent: 2
- - uid: 1493
- components:
- - type: Transform
- pos: -19.5,-25.5
- parent: 2
- - uid: 1494
- components:
- - type: Transform
- pos: -20.5,-25.5
- parent: 2
- - uid: 1508
- components:
- - type: Transform
- pos: -24.5,-26.5
- parent: 2
- - uid: 1526
- components:
- - type: Transform
- pos: -23.5,-26.5
- parent: 2
- - uid: 1535
- components:
- - type: Transform
- pos: -22.5,-26.5
- parent: 2
- - uid: 1617
- components:
- - type: Transform
- pos: -21.5,-26.5
- parent: 2
- - uid: 1709
- components:
- - type: Transform
- pos: -20.5,-26.5
- parent: 2
- - uid: 1725
- components:
- - type: Transform
- pos: -19.5,-26.5
- parent: 2
- - uid: 1784
- components:
- - type: Transform
- pos: -23.5,-27.5
- parent: 2
- - uid: 1789
- components:
- - type: Transform
- pos: -22.5,-27.5
- parent: 2
- - uid: 1791
- components:
- - type: Transform
- pos: -21.5,-27.5
- parent: 2
- - uid: 1794
- components:
- - type: Transform
- pos: -20.5,-27.5
- parent: 2
- - uid: 1805
- components:
- - type: Transform
- pos: -19.5,-27.5
- parent: 2
- - uid: 1839
- components:
- - type: Transform
- pos: -22.5,-28.5
- parent: 2
- - uid: 1886
- components:
- - type: Transform
- pos: -21.5,-28.5
- parent: 2
- - uid: 1909
- components:
- - type: Transform
- pos: -20.5,-28.5
- parent: 2
- - uid: 1925
- components:
- - type: Transform
- pos: -19.5,-28.5
- parent: 2
- - uid: 1936
- components:
- - type: Transform
- pos: -23.5,-28.5
- parent: 2
- - uid: 1937
- components:
- - type: Transform
- pos: -22.5,-29.5
- parent: 2
- - uid: 2037
- components:
- - type: Transform
- pos: -21.5,-29.5
- parent: 2
- - uid: 2053
- components:
- - type: Transform
- pos: -20.5,-29.5
- parent: 2
- - uid: 2054
- components:
- - type: Transform
- pos: -19.5,-29.5
- parent: 2
- - uid: 2063
- components:
- - type: Transform
- pos: -21.5,-30.5
- parent: 2
- - uid: 2077
- components:
- - type: Transform
- pos: -20.5,-30.5
- parent: 2
- - uid: 2078
- components:
- - type: Transform
- pos: -19.5,-30.5
- parent: 2
- - uid: 2079
- components:
- - type: Transform
- pos: -20.5,-31.5
- parent: 2
- - uid: 2080
- components:
- - type: Transform
- pos: -19.5,-31.5
- parent: 2
- - uid: 2081
- components:
- - type: Transform
- pos: -20.5,-32.5
- parent: 2
- - uid: 2082
- components:
- - type: Transform
- pos: -19.5,-32.5
- parent: 2
- - uid: 2083
- components:
- - type: Transform
- pos: -19.5,-33.5
- parent: 2
- - uid: 2084
- components:
- - type: Transform
- pos: -11.5,-39.5
- parent: 2
- - uid: 2085
- components:
- - type: Transform
- pos: -10.5,-39.5
- parent: 2
- - uid: 2086
- components:
- - type: Transform
- pos: -10.5,-38.5
- parent: 2
- - uid: 2087
- components:
- - type: Transform
- pos: -11.5,-40.5
- parent: 2
- - uid: 2088
- components:
- - type: Transform
- pos: -11.5,-42.5
- parent: 2
- - uid: 2089
- components:
- - type: Transform
- pos: -11.5,-43.5
- parent: 2
- - uid: 2090
- components:
- - type: Transform
- pos: -11.5,-41.5
- parent: 2
- - uid: 2091
- components:
- - type: Transform
- pos: -10.5,-40.5
- parent: 2
- - uid: 2092
- components:
- - type: Transform
- pos: -10.5,-42.5
- parent: 2
- - uid: 2093
- components:
- - type: Transform
- pos: -10.5,-41.5
- parent: 2
- - uid: 2094
- components:
- - type: Transform
- pos: -10.5,-43.5
- parent: 2
- - uid: 2095
- components:
- - type: Transform
- pos: -10.5,-44.5
- parent: 2
- - uid: 2096
- components:
- - type: Transform
- pos: -10.5,-45.5
- parent: 2
- - uid: 2097
- components:
- - type: Transform
- pos: -18.5,-67.5
- parent: 2
- - uid: 2098
- components:
- - type: Transform
- pos: -18.5,-66.5
- parent: 2
- - uid: 2099
- components:
- - type: Transform
- pos: -19.5,-71.5
- parent: 2
- - uid: 2100
- components:
- - type: Transform
- pos: -19.5,-66.5
- parent: 2
- - uid: 2101
- components:
- - type: Transform
- pos: 11.5,-51.5
- parent: 2
- - uid: 2102
- components:
- - type: Transform
- pos: 12.5,-50.5
- parent: 2
- - uid: 2103
- components:
- - type: Transform
- pos: 12.5,-49.5
- parent: 2
- - uid: 2104
- components:
- - type: Transform
- pos: 13.5,-50.5
- parent: 2
- - uid: 2105
- components:
- - type: Transform
- pos: -3.5,-50.5
- parent: 2
- - uid: 2106
- components:
- - type: Transform
- pos: 35.5,39.5
- parent: 2
- - uid: 2107
- components:
- - type: Transform
- pos: 35.5,40.5
- parent: 2
- - uid: 2109
- components:
- - type: Transform
- pos: -19.5,-67.5
- parent: 2
- - uid: 2110
- components:
- - type: Transform
- pos: -20.5,-65.5
- parent: 2
- - uid: 2111
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,19.5
- parent: 2
- - uid: 2114
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,20.5
- parent: 2
- - uid: 2131
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,21.5
- parent: 2
- - uid: 2133
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,22.5
- parent: 2
- - uid: 2134
- components:
- - type: Transform
- pos: -20.5,-66.5
- parent: 2
- - uid: 2135
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,20.5
- parent: 2
- - uid: 2136
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,21.5
- parent: 2
- - uid: 2137
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,22.5
- parent: 2
- - uid: 2138
- components:
- - type: Transform
- pos: -21.5,-65.5
- parent: 2
- - uid: 2139
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,21.5
- parent: 2
- - uid: 2140
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,22.5
- parent: 2
- - uid: 2141
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,20.5
- parent: 2
- - uid: 2142
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,23.5
- parent: 2
- - uid: 2143
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,21.5
- parent: 2
- - uid: 2144
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,22.5
- parent: 2
- - uid: 2237
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,23.5
- parent: 2
- - uid: 2246
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,22.5
- parent: 2
- - uid: 2253
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,23.5
- parent: 2
- - uid: 2316
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,24.5
- parent: 2
- - uid: 2317
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,22.5
- parent: 2
- - uid: 2319
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,23.5
- parent: 2
- - uid: 2356
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,24.5
- parent: 2
- - uid: 2396
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,25.5
- parent: 2
- - uid: 2398
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,25.5
- parent: 2
- - uid: 2402
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,24.5
- parent: 2
- - uid: 3017
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,23.5
- parent: 2
- - uid: 3018
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,25.5
- parent: 2
- - uid: 3056
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,24.5
- parent: 2
- - uid: 3085
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,23.5
- parent: 2
- - uid: 3210
- components:
- - type: Transform
- pos: -30.5,-65.5
- parent: 2
- - uid: 3222
- components:
- - type: Transform
- pos: 40.5,-15.5
- parent: 2
- - uid: 3223
- components:
- - type: Transform
- pos: 40.5,-17.5
- parent: 2
- - uid: 3229
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,25.5
- parent: 2
- - uid: 3475
- components:
- - type: Transform
- pos: 40.5,-18.5
- parent: 2
- - uid: 3484
- components:
- - type: Transform
- pos: 40.5,-16.5
- parent: 2
- - uid: 3493
- components:
- - type: Transform
- pos: 40.5,-13.5
- parent: 2
- - uid: 3494
- components:
- - type: Transform
- pos: 40.5,-19.5
- parent: 2
- - uid: 3502
- components:
- - type: Transform
- pos: 40.5,-12.5
- parent: 2
- - uid: 3520
- components:
- - type: Transform
- pos: 40.5,-14.5
- parent: 2
- - uid: 3561
- components:
- - type: Transform
- pos: 41.5,-13.5
- parent: 2
- - uid: 3562
- components:
- - type: Transform
- pos: 41.5,-14.5
- parent: 2
- - uid: 3588
- components:
- - type: Transform
- pos: 42.5,9.5
- parent: 2
- - uid: 3589
- components:
- - type: Transform
- pos: 40.5,7.5
- parent: 2
- - uid: 3590
- components:
- - type: Transform
- pos: 49.5,10.5
- parent: 2
- - uid: 3605
- components:
- - type: Transform
- pos: 50.5,10.5
- parent: 2
- - uid: 4071
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,24.5
- parent: 2
- - uid: 4085
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,23.5
- parent: 2
- - uid: 4118
- components:
- - type: Transform
- pos: -29.5,-65.5
- parent: 2
- - uid: 4150
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,24.5
- parent: 2
- - uid: 4153
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,25.5
- parent: 2
- - uid: 4154
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,25.5
- parent: 2
- - uid: 4155
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,24.5
- parent: 2
- - uid: 4156
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,23.5
- parent: 2
- - uid: 4169
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,23.5
- parent: 2
- - uid: 4170
- components:
- - type: Transform
- pos: -20.5,-67.5
- parent: 2
- - uid: 4171
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,25.5
- parent: 2
- - uid: 4172
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,24.5
- parent: 2
- - uid: 4173
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,23.5
- parent: 2
- - uid: 4174
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,23.5
- parent: 2
- - uid: 4175
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,24.5
- parent: 2
- - uid: 4176
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,25.5
- parent: 2
- - uid: 4177
- components:
- - type: Transform
- pos: -21.5,-73.5
- parent: 2
- - uid: 4178
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,23.5
- parent: 2
- - uid: 4179
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,24.5
- parent: 2
- - uid: 4180
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,25.5
- parent: 2
- - uid: 4181
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,24.5
- parent: 2
- - uid: 4182
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,25.5
- parent: 2
- - uid: 4183
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,24.5
- parent: 2
- - uid: 4184
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,25.5
- parent: 2
- - uid: 4185
- components:
- - type: Transform
- pos: -31.5,-68.5
- parent: 2
- - uid: 4186
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,25.5
- parent: 2
- - uid: 4187
- components:
- - type: Transform
- pos: -31.5,-69.5
- parent: 2
- - uid: 4188
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,24.5
- parent: 2
- - uid: 4189
- components:
- - type: Transform
- pos: -31.5,-70.5
- parent: 2
- - uid: 4190
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,24.5
- parent: 2
- - uid: 4191
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,25.5
- parent: 2
- - uid: 4193
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,26.5
- parent: 2
- - uid: 4194
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,27.5
- parent: 2
- - uid: 4195
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,26.5
- parent: 2
- - uid: 4196
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,27.5
- parent: 2
- - uid: 4198
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,26.5
- parent: 2
- - uid: 4199
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,27.5
- parent: 2
- - uid: 4200
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,26.5
- parent: 2
- - uid: 4201
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,27.5
- parent: 2
- - uid: 4204
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,26.5
- parent: 2
- - uid: 4205
- components:
- - type: Transform
- pos: -30.5,-66.5
- parent: 2
- - uid: 4206
- components:
- - type: Transform
- pos: -30.5,-67.5
- parent: 2
- - uid: 4209
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,24.5
- parent: 2
- - uid: 4210
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,25.5
- parent: 2
- - uid: 4211
- components:
- - type: Transform
- pos: -31.5,-71.5
- parent: 2
- - uid: 4214
- components:
- - type: Transform
- pos: -30.5,-68.5
- parent: 2
- - uid: 4215
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,24.5
- parent: 2
- - uid: 4216
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,25.5
- parent: 2
- - uid: 4217
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,26.5
- parent: 2
- - uid: 4218
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,27.5
- parent: 2
- - uid: 4219
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,28.5
- parent: 2
- - uid: 4220
- components:
- - type: Transform
- pos: -30.5,-69.5
- parent: 2
- - uid: 4223
- components:
- - type: Transform
- pos: -30.5,-70.5
- parent: 2
- - uid: 4224
- components:
- - type: Transform
- pos: -30.5,-71.5
- parent: 2
- - uid: 4225
- components:
- - type: Transform
- pos: -32.5,-72.5
- parent: 2
- - uid: 4227
- components:
- - type: Transform
- pos: -32.5,-71.5
- parent: 2
- - uid: 4228
- components:
- - type: Transform
- pos: -32.5,-69.5
- parent: 2
- - uid: 4229
- components:
- - type: Transform
- pos: -32.5,-68.5
- parent: 2
- - uid: 4230
- components:
- - type: Transform
- pos: -39.5,-70.5
- parent: 2
- - uid: 4232
- components:
- - type: Transform
- pos: -32.5,-70.5
- parent: 2
- - uid: 4233
- components:
- - type: Transform
- pos: -37.5,-77.5
- parent: 2
- - uid: 4234
- components:
- - type: Transform
- pos: -39.5,-69.5
- parent: 2
- - uid: 4237
- components:
- - type: Transform
- pos: -36.5,-77.5
- parent: 2
- - uid: 4238
- components:
- - type: Transform
- pos: -34.5,-76.5
- parent: 2
- - uid: 4239
- components:
- - type: Transform
- pos: -38.5,-71.5
- parent: 2
- - uid: 4240
- components:
- - type: Transform
- pos: -38.5,-69.5
- parent: 2
- - uid: 4242
- components:
- - type: Transform
- pos: -36.5,-67.5
- parent: 2
- - uid: 4243
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,17.5
- parent: 2
- - uid: 4244
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,18.5
- parent: 2
- - uid: 4245
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,19.5
- parent: 2
- - uid: 4249
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,20.5
- parent: 2
- - uid: 4250
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,26.5
- parent: 2
- - uid: 4251
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,28.5
- parent: 2
- - uid: 4252
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,29.5
- parent: 2
- - uid: 4253
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,30.5
- parent: 2
- - uid: 4254
- components:
- - type: Transform
- pos: -34.5,-67.5
- parent: 2
- - uid: 4255
- components:
- - type: Transform
- pos: -38.5,-70.5
- parent: 2
- - uid: 4258
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,17.5
- parent: 2
- - uid: 4259
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,27.5
- parent: 2
- - uid: 4262
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,19.5
- parent: 2
- - uid: 4263
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,20.5
- parent: 2
- - uid: 4265
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,18.5
- parent: 2
- - uid: 4266
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,21.5
- parent: 2
- - uid: 4267
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,22.5
- parent: 2
- - uid: 4268
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,23.5
- parent: 2
- - uid: 4269
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,24.5
- parent: 2
- - uid: 4270
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,25.5
- parent: 2
- - uid: 4271
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,26.5
- parent: 2
- - uid: 4272
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,27.5
- parent: 2
- - uid: 4273
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,28.5
- parent: 2
- - uid: 4274
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,29.5
- parent: 2
- - uid: 4275
- components:
- - type: Transform
- pos: -38.5,-68.5
- parent: 2
- - uid: 4276
- components:
- - type: Transform
- pos: -37.5,-74.5
- parent: 2
- - uid: 4277
- components:
- - type: Transform
- pos: -37.5,-73.5
- parent: 2
- - uid: 4278
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,17.5
- parent: 2
- - uid: 4279
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,18.5
- parent: 2
- - uid: 4280
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,19.5
- parent: 2
- - uid: 4281
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,21.5
- parent: 2
- - uid: 4282
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,20.5
- parent: 2
- - uid: 4283
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,22.5
- parent: 2
- - uid: 4284
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,24.5
- parent: 2
- - uid: 4285
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,25.5
- parent: 2
- - uid: 4286
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,26.5
- parent: 2
- - uid: 4287
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,27.5
- parent: 2
- - uid: 4288
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,28.5
- parent: 2
- - uid: 4289
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,29.5
- parent: 2
- - uid: 4290
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,23.5
- parent: 2
- - uid: 4291
- components:
- - type: Transform
- pos: -35.5,-67.5
- parent: 2
- - uid: 4292
- components:
- - type: Transform
- pos: -33.5,-67.5
- parent: 2
- - uid: 4293
- components:
- - type: Transform
- pos: -37.5,-75.5
- parent: 2
- - uid: 4294
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,17.5
- parent: 2
- - uid: 4295
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,18.5
- parent: 2
- - uid: 4296
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,19.5
- parent: 2
- - uid: 4297
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,20.5
- parent: 2
- - uid: 4298
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,21.5
- parent: 2
- - uid: 4299
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,22.5
- parent: 2
- - uid: 4300
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,23.5
- parent: 2
- - uid: 4301
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,25.5
- parent: 2
- - uid: 4302
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,26.5
- parent: 2
- - uid: 4303
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,27.5
- parent: 2
- - uid: 4304
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,24.5
- parent: 2
- - uid: 4305
- components:
- - type: Transform
- pos: -37.5,-72.5
- parent: 2
- - uid: 4306
- components:
- - type: Transform
- pos: -37.5,-71.5
- parent: 2
- - uid: 4307
- components:
- - type: Transform
- pos: -37.5,-70.5
- parent: 2
- - uid: 4308
- components:
- - type: Transform
- pos: -37.5,-69.5
- parent: 2
- - uid: 4309
- components:
- - type: Transform
- pos: -39.5,-68.5
- parent: 2
- - uid: 4310
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,17.5
- parent: 2
- - uid: 4311
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,20.5
- parent: 2
- - uid: 4317
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,18.5
- parent: 2
- - uid: 4318
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,19.5
- parent: 2
- - uid: 4319
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,22.5
- parent: 2
- - uid: 4320
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,23.5
- parent: 2
- - uid: 4321
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,21.5
- parent: 2
- - uid: 4322
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,24.5
- parent: 2
- - uid: 4323
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,25.5
- parent: 2
- - uid: 4324
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,26.5
- parent: 2
- - uid: 4325
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,27.5
- parent: 2
- - uid: 4326
- components:
- - type: Transform
- pos: -38.5,-74.5
- parent: 2
- - uid: 4327
- components:
- - type: Transform
- pos: -39.5,-76.5
- parent: 2
- - uid: 4328
- components:
- - type: Transform
- pos: -39.5,-72.5
- parent: 2
- - uid: 4329
- components:
- - type: Transform
- pos: -37.5,-68.5
- parent: 2
- - uid: 4330
- components:
- - type: Transform
- pos: -36.5,-75.5
- parent: 2
- - uid: 4331
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,17.5
- parent: 2
- - uid: 4332
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,18.5
- parent: 2
- - uid: 4333
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,19.5
- parent: 2
- - uid: 4334
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,20.5
- parent: 2
- - uid: 4335
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,21.5
- parent: 2
- - uid: 4336
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,22.5
- parent: 2
- - uid: 4337
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,23.5
- parent: 2
- - uid: 4338
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,24.5
- parent: 2
- - uid: 4339
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,25.5
- parent: 2
- - uid: 4340
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,26.5
- parent: 2
- - uid: 4341
+ - uid: 912
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -103.5,27.5
parent: 2
- - uid: 4342
+ - uid: 913
components:
- type: Transform
- pos: -32.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -103.5,26.5
+ parent: 2
+ - uid: 947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,25.5
parent: 2
- - uid: 4343
+ - uid: 962
components:
- type: Transform
- pos: -36.5,-74.5
+ pos: -33.5,-66.5
parent: 2
- - uid: 4344
+ - uid: 966
components:
- type: Transform
- pos: -36.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -103.5,24.5
parent: 2
- - uid: 4345
+ - uid: 992
components:
- type: Transform
- pos: -38.5,-73.5
+ pos: 2.5,-54.5
+ parent: 2
+ - uid: 994
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,23.5
+ parent: 2
+ - uid: 995
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,22.5
+ parent: 2
+ - uid: 996
+ components:
+ - type: Transform
+ pos: 2.5,-53.5
+ parent: 2
+ - uid: 999
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,21.5
+ parent: 2
+ - uid: 1002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,20.5
+ parent: 2
+ - uid: 1003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,19.5
parent: 2
- - uid: 4346
+ - uid: 1005
components:
- type: Transform
- pos: -56.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -103.5,18.5
parent: 2
- - uid: 4347
+ - uid: 1006
components:
- type: Transform
- pos: -57.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -103.5,17.5
parent: 2
- - uid: 4348
+ - uid: 1007
components:
- type: Transform
- pos: -36.5,-72.5
+ pos: -36.5,-75.5
parent: 2
- - uid: 4349
+ - uid: 1008
components:
- type: Transform
- pos: -36.5,-70.5
+ pos: -37.5,-68.5
parent: 2
- - uid: 4350
+ - uid: 1009
components:
- type: Transform
- pos: -38.5,-72.5
+ pos: -39.5,-72.5
parent: 2
- - uid: 4351
+ - uid: 1017
components:
- type: Transform
- pos: -58.5,-75.5
+ pos: -39.5,-76.5
parent: 2
- - uid: 4352
+ - uid: 1049
components:
- type: Transform
- pos: -34.5,-75.5
+ pos: -38.5,-74.5
parent: 2
- - uid: 4353
+ - uid: 1080
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -104.5,27.5
+ pos: -102.5,27.5
parent: 2
- - uid: 4354
+ - uid: 1082
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -104.5,26.5
+ pos: -102.5,26.5
parent: 2
- - uid: 4355
+ - uid: 1172
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -104.5,25.5
+ pos: -102.5,25.5
parent: 2
- - uid: 4356
+ - uid: 1178
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -104.5,24.5
+ pos: -102.5,24.5
parent: 2
- - uid: 4357
+ - uid: 1179
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -104.5,23.5
+ pos: -102.5,21.5
parent: 2
- - uid: 4358
+ - uid: 1181
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -104.5,22.5
+ pos: -102.5,23.5
parent: 2
- - uid: 4359
+ - uid: 1220
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -104.5,21.5
+ pos: -102.5,22.5
parent: 2
- - uid: 4360
+ - uid: 1223
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -104.5,20.5
+ pos: -102.5,19.5
parent: 2
- - uid: 4361
+ - uid: 1224
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -104.5,19.5
+ pos: -102.5,18.5
parent: 2
- - uid: 4362
+ - uid: 1230
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -104.5,18.5
+ pos: -102.5,20.5
parent: 2
- - uid: 4363
+ - uid: 1231
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -104.5,17.5
+ pos: -102.5,17.5
+ parent: 2
+ - uid: 1232
+ components:
+ - type: Transform
+ pos: 41.5,9.5
+ parent: 2
+ - uid: 1233
+ components:
+ - type: Transform
+ pos: -39.5,-68.5
parent: 2
- - uid: 4364
+ - uid: 1239
components:
- type: Transform
- pos: -35.5,-74.5
+ pos: 3.5,-54.5
parent: 2
- - uid: 4365
+ - uid: 1241
components:
- type: Transform
- pos: -35.5,-73.5
+ pos: 3.5,-53.5
parent: 2
- - uid: 4366
+ - uid: 1242
components:
- type: Transform
- pos: -36.5,-69.5
+ pos: -37.5,-69.5
parent: 2
- - uid: 4367
+ - uid: 1243
components:
- type: Transform
- pos: -35.5,-75.5
+ pos: -37.5,-70.5
parent: 2
- - uid: 4368
+ - uid: 1269
+ components:
+ - type: Transform
+ pos: -37.5,-71.5
+ parent: 2
+ - uid: 1270
+ components:
+ - type: Transform
+ pos: -37.5,-72.5
+ parent: 2
+ - uid: 1271
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -105.5,26.5
+ pos: -101.5,24.5
parent: 2
- - uid: 4369
+ - uid: 1272
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -105.5,24.5
+ pos: -101.5,27.5
parent: 2
- - uid: 4370
+ - uid: 1273
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -105.5,23.5
+ pos: -101.5,26.5
parent: 2
- - uid: 4371
+ - uid: 1274
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -105.5,22.5
+ pos: -101.5,25.5
parent: 2
- - uid: 4372
+ - uid: 1282
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -105.5,21.5
+ pos: -101.5,23.5
parent: 2
- - uid: 4373
+ - uid: 1287
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -105.5,25.5
+ pos: -101.5,22.5
parent: 2
- - uid: 4374
+ - uid: 1350
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -105.5,20.5
+ pos: -101.5,21.5
parent: 2
- - uid: 4375
+ - uid: 1351
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -105.5,19.5
+ pos: -101.5,20.5
parent: 2
- - uid: 4376
+ - uid: 1352
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -105.5,18.5
+ pos: -101.5,19.5
parent: 2
- - uid: 4377
+ - uid: 1354
components:
- type: Transform
- pos: -34.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -101.5,18.5
parent: 2
- - uid: 4378
+ - uid: 1356
components:
- type: Transform
- pos: -35.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -101.5,17.5
+ parent: 2
+ - uid: 1357
+ components:
+ - type: Transform
+ pos: -37.5,-75.5
+ parent: 2
+ - uid: 1362
+ components:
+ - type: Transform
+ pos: -33.5,-67.5
parent: 2
- - uid: 4379
+ - uid: 1365
components:
- type: Transform
- pos: -34.5,-73.5
+ pos: -35.5,-67.5
parent: 2
- - uid: 4380
+ - uid: 1367
components:
- type: Transform
- pos: -35.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -100.5,23.5
parent: 2
- - uid: 4381
+ - uid: 1369
components:
- type: Transform
- pos: -35.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -100.5,29.5
parent: 2
- - uid: 4382
+ - uid: 1371
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -106.5,26.5
+ pos: -100.5,28.5
parent: 2
- - uid: 4383
+ - uid: 1373
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -106.5,25.5
+ pos: -100.5,27.5
parent: 2
- - uid: 4384
+ - uid: 1374
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -106.5,24.5
+ pos: -100.5,26.5
+ parent: 2
+ - uid: 1376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,25.5
+ parent: 2
+ - uid: 1377
+ components:
+ - type: Transform
+ pos: -4.5,-52.5
parent: 2
- - uid: 4385
+ - uid: 1378
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -106.5,23.5
+ pos: -100.5,24.5
parent: 2
- - uid: 4386
+ - uid: 1382
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -106.5,22.5
+ pos: -100.5,22.5
parent: 2
- - uid: 4387
+ - uid: 1398
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -106.5,21.5
+ pos: -100.5,20.5
parent: 2
- - uid: 4388
+ - uid: 1399
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -106.5,20.5
+ pos: -100.5,21.5
parent: 2
- - uid: 4389
+ - uid: 1400
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -106.5,18.5
+ pos: -100.5,19.5
parent: 2
- - uid: 4390
+ - uid: 1408
components:
- type: Transform
- pos: -35.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -100.5,18.5
parent: 2
- - uid: 4391
+ - uid: 1409
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -106.5,19.5
+ pos: -100.5,17.5
parent: 2
- - uid: 4392
+ - uid: 1445
components:
- type: Transform
- pos: -34.5,-72.5
+ pos: -37.5,-73.5
parent: 2
- - uid: 4393
+ - uid: 1449
components:
- type: Transform
- pos: -34.5,-71.5
+ pos: -37.5,-74.5
parent: 2
- - uid: 4394
+ - uid: 1454
components:
- type: Transform
- pos: -35.5,-70.5
+ pos: -38.5,-68.5
parent: 2
- - uid: 4395
+ - uid: 1462
components:
- type: Transform
- pos: -37.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -99.5,29.5
parent: 2
- - uid: 4396
+ - uid: 1465
components:
- type: Transform
- pos: -36.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -99.5,28.5
parent: 2
- - uid: 4397
+ - uid: 1466
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -107.5,25.5
+ pos: -99.5,27.5
parent: 2
- - uid: 4398
+ - uid: 1467
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -107.5,23.5
+ pos: -99.5,26.5
parent: 2
- - uid: 4399
+ - uid: 1468
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -107.5,22.5
+ pos: -99.5,25.5
parent: 2
- - uid: 4400
+ - uid: 1469
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -107.5,21.5
+ pos: -99.5,24.5
parent: 2
- - uid: 4401
+ - uid: 1471
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -107.5,24.5
+ pos: -99.5,23.5
parent: 2
- - uid: 4402
+ - uid: 1473
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -107.5,19.5
+ pos: -99.5,22.5
parent: 2
- - uid: 4403
+ - uid: 1474
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -107.5,18.5
+ pos: -99.5,21.5
parent: 2
- - uid: 4404
+ - uid: 1475
components:
- type: Transform
- pos: -34.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -99.5,18.5
parent: 2
- - uid: 4405
+ - uid: 1476
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -107.5,20.5
+ pos: -99.5,20.5
parent: 2
- - uid: 4406
+ - uid: 1477
components:
- type: Transform
- pos: -34.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -99.5,19.5
parent: 2
- - uid: 4407
+ - uid: 1478
components:
- type: Transform
- pos: -35.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -98.5,27.5
parent: 2
- - uid: 4408
+ - uid: 1479
components:
- type: Transform
- pos: -40.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -99.5,17.5
+ parent: 2
+ - uid: 1480
+ components:
+ - type: Transform
+ pos: -38.5,-70.5
parent: 2
- - uid: 4409
+ - uid: 1481
components:
- type: Transform
- pos: -33.5,-75.5
+ pos: -4.5,-48.5
parent: 2
- - uid: 4410
+ - uid: 1482
components:
- type: Transform
- pos: -33.5,-74.5
+ pos: -34.5,-67.5
parent: 2
- - uid: 4411
+ - uid: 1486
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -108.5,25.5
+ pos: -98.5,30.5
parent: 2
- - uid: 4412
+ - uid: 1487
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -108.5,24.5
+ pos: -98.5,29.5
parent: 2
- - uid: 4413
+ - uid: 1488
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -108.5,23.5
+ pos: -98.5,28.5
parent: 2
- - uid: 4414
+ - uid: 1489
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -108.5,22.5
+ pos: -98.5,26.5
parent: 2
- - uid: 4415
+ - uid: 1490
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -108.5,21.5
+ pos: -98.5,20.5
parent: 2
- - uid: 4416
+ - uid: 1492
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -108.5,20.5
+ pos: -98.5,19.5
parent: 2
- - uid: 4417
+ - uid: 1493
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -108.5,19.5
+ pos: -98.5,18.5
parent: 2
- - uid: 4418
+ - uid: 1494
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -108.5,18.5
+ pos: -98.5,17.5
parent: 2
- - uid: 4419
+ - uid: 1498
components:
- type: Transform
- pos: -36.5,-71.5
+ pos: -36.5,-67.5
parent: 2
- - uid: 4420
+ - uid: 1505
components:
- type: Transform
- pos: -36.5,-68.5
+ pos: -38.5,-69.5
parent: 2
- - uid: 4421
+ - uid: 1508
components:
- type: Transform
- pos: -33.5,-73.5
+ pos: -38.5,-71.5
parent: 2
- - uid: 4422
+ - uid: 1512
components:
- type: Transform
- pos: -33.5,-72.5
+ pos: -34.5,-76.5
parent: 2
- - uid: 4423
+ - uid: 1513
components:
- type: Transform
- pos: -40.5,-71.5
+ pos: -36.5,-77.5
parent: 2
- - uid: 4424
+ - uid: 1514
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,25.5
+ pos: -39.5,-69.5
parent: 2
- - uid: 4425
+ - uid: 1522
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,24.5
+ pos: -37.5,-77.5
parent: 2
- - uid: 4426
+ - uid: 1526
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,23.5
+ pos: -32.5,-70.5
parent: 2
- - uid: 4427
+ - uid: 1528
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,22.5
+ pos: -39.5,-70.5
parent: 2
- - uid: 4428
+ - uid: 1529
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,21.5
+ pos: -32.5,-68.5
parent: 2
- - uid: 4429
+ - uid: 1530
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,20.5
+ pos: -32.5,-69.5
parent: 2
- - uid: 4430
+ - uid: 1532
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,19.5
+ pos: -32.5,-71.5
parent: 2
- - uid: 4431
+ - uid: 1533
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -111.5,18.5
+ pos: -32.5,-72.5
parent: 2
- - uid: 4432
+ - uid: 1534
components:
- type: Transform
- pos: -1.5,-55.5
+ pos: -30.5,-71.5
parent: 2
- - uid: 4433
+ - uid: 1535
components:
- type: Transform
- pos: -41.5,-71.5
+ pos: -30.5,-70.5
parent: 2
- - uid: 4434
+ - uid: 1536
components:
- type: Transform
- pos: -52.5,-72.5
+ pos: 10.5,-53.5
parent: 2
- - uid: 4435
+ - uid: 1537
components:
- type: Transform
- pos: -53.5,-72.5
+ pos: -30.5,-69.5
parent: 2
- - uid: 4436
+ - uid: 1542
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -110.5,25.5
+ pos: -49.5,28.5
parent: 2
- - uid: 4437
+ - uid: 1543
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -110.5,24.5
+ pos: -49.5,27.5
parent: 2
- - uid: 4438
+ - uid: 1591
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -110.5,23.5
+ pos: -49.5,26.5
parent: 2
- - uid: 4439
+ - uid: 1592
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -110.5,22.5
+ pos: -49.5,25.5
parent: 2
- - uid: 4440
+ - uid: 1617
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -110.5,21.5
+ pos: -49.5,24.5
+ parent: 2
+ - uid: 1709
+ components:
+ - type: Transform
+ pos: -30.5,-68.5
+ parent: 2
+ - uid: 1725
+ components:
+ - type: Transform
+ pos: -31.5,-71.5
parent: 2
- - uid: 4441
+ - uid: 1732
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -110.5,20.5
+ pos: -48.5,25.5
parent: 2
- - uid: 4442
+ - uid: 1735
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -110.5,19.5
+ pos: -48.5,24.5
parent: 2
- - uid: 4443
+ - uid: 1749
components:
- type: Transform
- pos: -34.5,-68.5
+ pos: -30.5,-67.5
parent: 2
- - uid: 4444
+ - uid: 1784
components:
- type: Transform
- pos: -33.5,-70.5
+ pos: -30.5,-66.5
parent: 2
- - uid: 4445
+ - uid: 1789
components:
- type: Transform
- pos: -40.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,26.5
parent: 2
- - uid: 4446
+ - uid: 1791
components:
- type: Transform
- pos: -53.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,27.5
parent: 2
- - uid: 4447
+ - uid: 1794
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -110.5,18.5
+ pos: -47.5,26.5
parent: 2
- - uid: 4448
+ - uid: 1805
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -109.5,25.5
+ pos: -47.5,27.5
parent: 2
- - uid: 4449
+ - uid: 1839
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -109.5,24.5
+ pos: -46.5,26.5
parent: 2
- - uid: 4450
+ - uid: 1849
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -109.5,23.5
+ pos: -46.5,27.5
parent: 2
- - uid: 4451
+ - uid: 1851
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -109.5,22.5
+ pos: -45.5,26.5
parent: 2
- - uid: 4452
+ - uid: 1852
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -109.5,21.5
+ pos: -45.5,27.5
parent: 2
- - uid: 4453
+ - uid: 1853
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -109.5,20.5
+ pos: -44.5,26.5
parent: 2
- - uid: 4454
+ - uid: 1886
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -109.5,19.5
+ pos: -47.5,25.5
parent: 2
- - uid: 4455
+ - uid: 1909
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -109.5,18.5
+ pos: -47.5,24.5
parent: 2
- - uid: 4456
+ - uid: 1925
components:
- type: Transform
- pos: -54.5,-71.5
+ pos: -31.5,-70.5
parent: 2
- - uid: 4457
+ - uid: 1936
components:
- type: Transform
- pos: -33.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,24.5
parent: 2
- - uid: 4458
+ - uid: 1937
components:
- type: Transform
- pos: -33.5,-71.5
+ pos: -31.5,-69.5
parent: 2
- - uid: 4459
+ - uid: 2037
components:
- type: Transform
- pos: -40.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,25.5
parent: 2
- - uid: 4460
+ - uid: 2053
components:
- type: Transform
- pos: -33.5,-68.5
+ pos: -31.5,-68.5
parent: 2
- - uid: 4461
+ - uid: 2054
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -115.5,23.5
+ pos: -45.5,25.5
parent: 2
- - uid: 4462
+ - uid: 2063
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -115.5,22.5
+ pos: -45.5,24.5
parent: 2
- - uid: 4463
+ - uid: 2077
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -115.5,21.5
+ pos: -44.5,25.5
parent: 2
- - uid: 4464
+ - uid: 2078
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -115.5,20.5
+ pos: -44.5,24.5
parent: 2
- - uid: 4465
+ - uid: 2079
components:
- type: Transform
- pos: -32.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,25.5
parent: 2
- - uid: 4466
+ - uid: 2080
components:
- type: Transform
- pos: -41.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,24.5
parent: 2
- - uid: 4467
+ - uid: 2081
components:
- type: Transform
- pos: -32.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,23.5
parent: 2
- - uid: 4468
+ - uid: 2082
components:
- type: Transform
- pos: -32.5,-73.5
+ pos: -21.5,-73.5
parent: 2
- - uid: 4469
+ - uid: 2083
components:
- type: Transform
- pos: -54.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,25.5
parent: 2
- - uid: 4470
+ - uid: 2084
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -114.5,24.5
+ pos: -42.5,24.5
parent: 2
- - uid: 4471
+ - uid: 2085
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -114.5,23.5
+ pos: -42.5,23.5
parent: 2
- - uid: 4472
+ - uid: 2086
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -114.5,22.5
+ pos: -41.5,23.5
parent: 2
- - uid: 4473
+ - uid: 2087
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -114.5,21.5
+ pos: -41.5,24.5
parent: 2
- - uid: 4474
+ - uid: 2088
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -114.5,20.5
+ pos: -41.5,25.5
parent: 2
- - uid: 4475
+ - uid: 2089
components:
- type: Transform
- pos: -55.5,-71.5
+ pos: -20.5,-67.5
parent: 2
- - uid: 4476
+ - uid: 2090
components:
- type: Transform
- pos: -41.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,23.5
parent: 2
- - uid: 4477
+ - uid: 2091
components:
- type: Transform
- pos: -41.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,23.5
parent: 2
- - uid: 4478
+ - uid: 2092
components:
- type: Transform
- pos: -55.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,24.5
parent: 2
- - uid: 4479
+ - uid: 2093
components:
- type: Transform
- pos: -42.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,25.5
parent: 2
- - uid: 4480
+ - uid: 2094
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -113.5,24.5
+ pos: -39.5,25.5
parent: 2
- - uid: 4481
+ - uid: 2095
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -113.5,22.5
+ pos: -39.5,24.5
parent: 2
- - uid: 4482
+ - uid: 2096
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -113.5,23.5
+ pos: -29.5,-65.5
parent: 2
- - uid: 4483
+ - uid: 2097
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -113.5,20.5
+ pos: -38.5,23.5
parent: 2
- - uid: 4484
+ - uid: 2098
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -113.5,19.5
+ pos: -38.5,24.5
parent: 2
- - uid: 4485
+ - uid: 2099
+ components:
+ - type: Transform
+ pos: 50.5,10.5
+ parent: 2
+ - uid: 2100
+ components:
+ - type: Transform
+ pos: 49.5,10.5
+ parent: 2
+ - uid: 2101
+ components:
+ - type: Transform
+ pos: 40.5,7.5
+ parent: 2
+ - uid: 2102
+ components:
+ - type: Transform
+ pos: 42.5,9.5
+ parent: 2
+ - uid: 2114
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -113.5,21.5
+ pos: -38.5,25.5
parent: 2
- - uid: 4486
+ - uid: 2134
components:
- type: Transform
- pos: -42.5,-70.5
+ pos: -30.5,-65.5
parent: 2
- - uid: 4487
+ - uid: 2135
components:
- type: Transform
- pos: -56.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,23.5
parent: 2
- - uid: 4488
+ - uid: 2136
components:
- type: Transform
- pos: -42.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,24.5
parent: 2
- - uid: 4489
+ - uid: 2137
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -112.5,23.5
+ pos: -37.5,25.5
parent: 2
- - uid: 4490
+ - uid: 2138
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -113.5,18.5
+ pos: -36.5,23.5
parent: 2
- - uid: 4491
+ - uid: 2139
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -112.5,21.5
+ pos: -36.5,24.5
parent: 2
- - uid: 4492
+ - uid: 2140
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -112.5,22.5
+ pos: -36.5,25.5
parent: 2
- - uid: 4493
+ - uid: 2141
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -112.5,20.5
+ pos: -35.5,25.5
parent: 2
- - uid: 4494
+ - uid: 2142
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -112.5,24.5
+ pos: -35.5,24.5
parent: 2
- - uid: 4495
+ - uid: 2143
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -112.5,19.5
+ pos: -35.5,23.5
parent: 2
- - uid: 4496
+ - uid: 2144
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -112.5,18.5
+ pos: -35.5,22.5
parent: 2
- - uid: 4497
+ - uid: 2237
components:
- type: Transform
- pos: -43.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,24.5
parent: 2
- - uid: 4498
+ - uid: 2246
components:
- type: Transform
- pos: -43.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,23.5
parent: 2
- - uid: 4500
+ - uid: 2253
components:
- type: Transform
- pos: -41.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,22.5
parent: 2
- - uid: 4501
+ - uid: 2304
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -116.5,20.5
+ pos: -33.5,23.5
parent: 2
- - uid: 4502
+ - uid: 2316
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -116.5,21.5
+ pos: -33.5,22.5
parent: 2
- - uid: 4503
+ - uid: 2317
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -116.5,22.5
+ pos: -33.5,21.5
parent: 2
- - uid: 4504
+ - uid: 2319
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -116.5,23.5
+ pos: -32.5,23.5
parent: 2
- - uid: 4505
+ - uid: 2356
components:
- type: Transform
- pos: -43.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,20.5
parent: 2
- - uid: 4506
+ - uid: 2396
components:
- type: Transform
- pos: -43.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,22.5
parent: 2
- - uid: 4507
+ - uid: 2398
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -117.5,23.5
+ pos: -32.5,21.5
parent: 2
- - uid: 4508
+ - uid: 2402
+ components:
+ - type: Transform
+ pos: -21.5,-65.5
+ parent: 2
+ - uid: 2411
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -117.5,22.5
+ pos: -31.5,22.5
parent: 2
- - uid: 4509
+ - uid: 2412
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -117.5,21.5
+ pos: -31.5,21.5
parent: 2
- - uid: 4510
+ - uid: 3017
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -117.5,20.5
+ pos: -31.5,20.5
parent: 2
- - uid: 4512
+ - uid: 3018
components:
- type: Transform
- pos: -44.5,-70.5
+ pos: -20.5,-66.5
parent: 2
- - uid: 4513
+ - uid: 3056
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -118.5,23.5
+ pos: -30.5,22.5
parent: 2
- - uid: 4514
+ - uid: 3085
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -118.5,22.5
+ pos: -30.5,21.5
parent: 2
- - uid: 4515
+ - uid: 3210
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -118.5,21.5
+ pos: -30.5,20.5
parent: 2
- - uid: 4516
+ - uid: 3222
components:
- type: Transform
- pos: -42.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,19.5
parent: 2
- - uid: 4517
+ - uid: 3223
components:
- type: Transform
- pos: -45.5,-69.5
+ pos: -20.5,-65.5
parent: 2
- - uid: 4518
+ - uid: 3229
components:
- type: Transform
- pos: -45.5,-70.5
+ pos: -19.5,-67.5
parent: 2
- - uid: 4519
+ - uid: 3475
components:
- type: Transform
- pos: -47.5,-69.5
+ pos: 35.5,40.5
parent: 2
- - uid: 4520
+ - uid: 3484
components:
- type: Transform
- pos: -48.5,-69.5
+ pos: 35.5,39.5
parent: 2
- - uid: 4521
+ - uid: 3493
components:
- type: Transform
- pos: -47.5,-70.5
+ pos: -3.5,-50.5
parent: 2
- - uid: 4522
+ - uid: 3494
components:
- type: Transform
- pos: -44.5,-69.5
+ pos: 13.5,-50.5
parent: 2
- - uid: 4523
+ - uid: 3502
components:
- type: Transform
- pos: -40.5,-68.5
+ pos: 12.5,-49.5
parent: 2
- - uid: 4524
+ - uid: 3520
components:
- type: Transform
- pos: -42.5,-71.5
+ pos: 12.5,-50.5
parent: 2
- - uid: 4526
+ - uid: 3561
components:
- type: Transform
- pos: -48.5,-70.5
+ pos: 11.5,-51.5
parent: 2
- - uid: 4529
+ - uid: 3562
components:
- type: Transform
- pos: -46.5,-69.5
+ pos: -19.5,-66.5
parent: 2
- - uid: 4535
+ - uid: 3588
components:
- type: Transform
- pos: -46.5,-70.5
+ pos: -19.5,-71.5
parent: 2
- - uid: 4536
+ - uid: 3589
components:
- type: Transform
- pos: -49.5,-70.5
+ pos: -18.5,-66.5
parent: 2
- - uid: 4537
+ - uid: 3590
components:
- type: Transform
- pos: -49.5,-72.5
+ pos: -18.5,-67.5
parent: 2
- - uid: 4538
+ - uid: 3605
components:
- type: Transform
- pos: -50.5,-70.5
+ pos: -10.5,-45.5
parent: 2
- - uid: 4539
+ - uid: 4071
components:
- type: Transform
- pos: -50.5,-72.5
+ pos: -10.5,-44.5
parent: 2
- - uid: 4540
+ - uid: 4085
components:
- type: Transform
- pos: -50.5,-71.5
+ pos: -10.5,-43.5
parent: 2
- - uid: 4541
+ - uid: 4086
components:
- type: Transform
- pos: -49.5,-71.5
+ pos: 9.5,-54.5
parent: 2
- - uid: 4542
+ - uid: 4118
components:
- type: Transform
- pos: -51.5,-71.5
+ pos: -10.5,-41.5
parent: 2
- - uid: 4543
+ - uid: 4150
components:
- type: Transform
- pos: -51.5,-72.5
+ pos: 8.5,-55.5
parent: 2
- - uid: 4544
+ - uid: 4153
components:
- type: Transform
- pos: -51.5,-70.5
+ pos: -10.5,-42.5
parent: 2
- - uid: 4545
+ - uid: 4154
components:
- type: Transform
- pos: -52.5,-70.5
+ pos: -10.5,-40.5
parent: 2
- - uid: 4546
+ - uid: 4155
components:
- type: Transform
- pos: -52.5,-71.5
+ pos: -11.5,-41.5
parent: 2
- - uid: 4547
+ - uid: 4156
components:
- type: Transform
- pos: -39.5,-75.5
+ pos: -11.5,-43.5
parent: 2
- - uid: 4548
+ - uid: 4169
components:
- type: Transform
- pos: -39.5,-73.5
+ pos: -11.5,-42.5
parent: 2
- - uid: 4549
+ - uid: 4170
components:
- type: Transform
- pos: -39.5,-71.5
+ pos: -11.5,-40.5
parent: 2
- - uid: 4550
+ - uid: 4171
components:
- type: Transform
- pos: -39.5,-77.5
+ pos: -10.5,-38.5
parent: 2
- - uid: 4551
+ - uid: 4172
components:
- type: Transform
- pos: -39.5,-78.5
+ pos: -10.5,-39.5
parent: 2
- - uid: 4552
+ - uid: 4173
components:
- type: Transform
- pos: -38.5,-76.5
+ pos: -11.5,-39.5
parent: 2
- - uid: 4553
+ - uid: 4174
components:
- type: Transform
- pos: -38.5,-78.5
+ pos: -19.5,-33.5
parent: 2
- - uid: 4554
+ - uid: 4175
components:
- type: Transform
- pos: -38.5,-77.5
+ pos: -19.5,-32.5
parent: 2
- - uid: 4555
+ - uid: 4176
components:
- type: Transform
- pos: -58.5,-78.5
+ pos: -20.5,-32.5
parent: 2
- - uid: 4556
+ - uid: 4177
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,34.5
+ pos: -19.5,-31.5
parent: 2
- - uid: 4557
+ - uid: 4178
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,34.5
+ pos: -20.5,-31.5
parent: 2
- - uid: 4558
+ - uid: 4179
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,18.5
+ pos: -19.5,-30.5
parent: 2
- - uid: 4559
+ - uid: 4180
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,19.5
+ pos: -20.5,-30.5
parent: 2
- - uid: 4560
+ - uid: 4181
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,28.5
+ pos: -21.5,-30.5
parent: 2
- - uid: 4561
+ - uid: 4182
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,29.5
+ pos: -19.5,-29.5
parent: 2
- - uid: 4562
+ - uid: 4183
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,30.5
+ pos: -20.5,-29.5
parent: 2
- - uid: 4563
+ - uid: 4184
components:
- type: Transform
- pos: -60.5,-78.5
+ pos: -21.5,-29.5
parent: 2
- - uid: 4564
+ - uid: 4185
components:
- type: Transform
- pos: -38.5,-75.5
+ pos: -22.5,-29.5
parent: 2
- - uid: 4565
+ - uid: 4186
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,18.5
+ pos: -23.5,-28.5
parent: 2
- - uid: 4566
+ - uid: 4187
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,19.5
+ pos: -19.5,-28.5
parent: 2
- - uid: 4567
+ - uid: 4188
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,29.5
+ pos: -20.5,-28.5
parent: 2
- - uid: 4568
+ - uid: 4189
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,30.5
+ pos: -21.5,-28.5
parent: 2
- - uid: 4569
+ - uid: 4190
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,31.5
+ pos: -22.5,-28.5
parent: 2
- - uid: 4570
+ - uid: 4191
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,18.5
+ pos: -19.5,-27.5
parent: 2
- - uid: 4571
+ - uid: 4193
components:
- type: Transform
- pos: -39.5,-74.5
+ pos: -20.5,-27.5
parent: 2
- - uid: 4572
+ - uid: 4194
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,30.5
+ pos: -21.5,-27.5
parent: 2
- - uid: 4573
+ - uid: 4195
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,29.5
+ pos: -22.5,-27.5
+ parent: 2
+ - uid: 4196
+ components:
+ - type: Transform
+ pos: -23.5,-27.5
+ parent: 2
+ - uid: 4198
+ components:
+ - type: Transform
+ pos: -19.5,-26.5
+ parent: 2
+ - uid: 4199
+ components:
+ - type: Transform
+ pos: -20.5,-26.5
+ parent: 2
+ - uid: 4200
+ components:
+ - type: Transform
+ pos: -21.5,-26.5
+ parent: 2
+ - uid: 4201
+ components:
+ - type: Transform
+ pos: -22.5,-26.5
+ parent: 2
+ - uid: 4204
+ components:
+ - type: Transform
+ pos: -23.5,-26.5
+ parent: 2
+ - uid: 4205
+ components:
+ - type: Transform
+ pos: -24.5,-26.5
+ parent: 2
+ - uid: 4206
+ components:
+ - type: Transform
+ pos: -20.5,-25.5
+ parent: 2
+ - uid: 4209
+ components:
+ - type: Transform
+ pos: -19.5,-25.5
+ parent: 2
+ - uid: 4210
+ components:
+ - type: Transform
+ pos: -23.5,-25.5
+ parent: 2
+ - uid: 4211
+ components:
+ - type: Transform
+ pos: -21.5,-25.5
+ parent: 2
+ - uid: 4214
+ components:
+ - type: Transform
+ pos: -22.5,-25.5
+ parent: 2
+ - uid: 4215
+ components:
+ - type: Transform
+ pos: -24.5,-25.5
parent: 2
- - uid: 4574
+ - uid: 4216
components:
- type: Transform
- pos: -41.5,-77.5
+ pos: -18.5,-70.5
parent: 2
- - uid: 4575
+ - uid: 4217
+ components:
+ - type: Transform
+ pos: 10.5,-54.5
+ parent: 2
+ - uid: 4218
+ components:
+ - type: Transform
+ pos: 17.5,25.5
+ parent: 2
+ - uid: 4219
+ components:
+ - type: Transform
+ pos: 18.5,25.5
+ parent: 2
+ - uid: 4220
+ components:
+ - type: Transform
+ pos: 22.5,26.5
+ parent: 2
+ - uid: 4223
+ components:
+ - type: Transform
+ pos: 18.5,26.5
+ parent: 2
+ - uid: 4224
+ components:
+ - type: Transform
+ pos: 22.5,28.5
+ parent: 2
+ - uid: 4225
+ components:
+ - type: Transform
+ pos: 16.5,22.5
+ parent: 2
+ - uid: 4227
+ components:
+ - type: Transform
+ pos: 16.5,21.5
+ parent: 2
+ - uid: 4228
+ components:
+ - type: Transform
+ pos: 16.5,23.5
+ parent: 2
+ - uid: 4229
+ components:
+ - type: Transform
+ pos: 21.5,27.5
+ parent: 2
+ - uid: 4230
+ components:
+ - type: Transform
+ pos: 17.5,26.5
+ parent: 2
+ - uid: 4232
+ components:
+ - type: Transform
+ pos: 22.5,27.5
+ parent: 2
+ - uid: 4233
+ components:
+ - type: Transform
+ pos: 17.5,22.5
+ parent: 2
+ - uid: 4234
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -95.5,31.5
+ pos: -91.5,18.5
+ parent: 2
+ - uid: 4237
+ components:
+ - type: Transform
+ pos: 9.5,-55.5
+ parent: 2
+ - uid: 4238
+ components:
+ - type: Transform
+ pos: -18.5,-71.5
+ parent: 2
+ - uid: 4239
+ components:
+ - type: Transform
+ pos: -18.5,-72.5
+ parent: 2
+ - uid: 4240
+ components:
+ - type: Transform
+ pos: 10.5,-55.5
+ parent: 2
+ - uid: 4242
+ components:
+ - type: Transform
+ pos: 11.5,-49.5
+ parent: 2
+ - uid: 4243
+ components:
+ - type: Transform
+ pos: 10.5,-50.5
parent: 2
- uid: 4576
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,18.5
+ pos: 8.5,-54.5
parent: 2
- uid: 4577
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -94.5,29.5
+ pos: -30.5,18.5
parent: 2
- uid: 4578
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,30.5
+ pos: 9.5,-48.5
parent: 2
- uid: 4579
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,31.5
+ pos: -31.5,-67.5
parent: 2
- uid: 4580
components:
- type: Transform
- pos: -40.5,-78.5
+ pos: 10.5,-51.5
parent: 2
- uid: 4581
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,30.5
+ pos: 11.5,-50.5
parent: 2
- uid: 4582
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,31.5
- parent: 2
- - uid: 4583
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,32.5
+ pos: 9.5,-53.5
parent: 2
- uid: 4584
components:
- type: Transform
- pos: -40.5,-77.5
+ pos: 9.5,-52.5
parent: 2
- uid: 4585
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,30.5
+ pos: -32.5,-66.5
parent: 2
- uid: 4586
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,32.5
+ pos: 10.5,-52.5
parent: 2
- uid: 4587
components:
- type: Transform
- pos: -56.5,-78.5
- parent: 2
- - uid: 4588
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,31.5
- parent: 2
- - uid: 4589
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,30.5
- parent: 2
- - uid: 4590
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,32.5
- parent: 2
- - uid: 4591
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,31.5
- parent: 2
- - uid: 4592
- components:
- - type: Transform
- pos: -55.5,-78.5
- parent: 2
- - uid: 4593
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,31.5
+ pos: 10.5,-49.5
parent: 2
- uid: 4594
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,32.5
- parent: 2
- - uid: 4595
- components:
- - type: Transform
- pos: -54.5,-78.5
- parent: 2
- - uid: 4596
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,31.5
+ pos: 120.5,68.5
parent: 2
- uid: 4597
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,32.5
+ pos: 120.5,69.5
parent: 2
- uid: 4598
components:
- type: Transform
- pos: -53.5,-78.5
+ pos: 118.5,69.5
parent: 2
- uid: 4599
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,31.5
+ pos: 44.5,8.5
parent: 2
- uid: 4600
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,32.5
+ pos: 45.5,8.5
parent: 2
- uid: 4601
components:
- type: Transform
- pos: -51.5,-78.5
- parent: 2
- - uid: 4602
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,31.5
- parent: 2
- - uid: 4603
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,32.5
- parent: 2
- - uid: 4604
- components:
- - type: Transform
- pos: -50.5,-78.5
+ pos: -61.5,-77.5
parent: 2
- uid: 4605
components:
- type: Transform
- pos: -49.5,-78.5
+ pos: -62.5,-77.5
parent: 2
- uid: 4606
components:
- type: Transform
- pos: -52.5,-78.5
+ pos: 121.5,69.5
parent: 2
- uid: 4607
components:
- type: Transform
- pos: -48.5,-78.5
- parent: 2
- - uid: 4608
- components:
- - type: Transform
- pos: -46.5,-78.5
- parent: 2
- - uid: 4609
- components:
- - type: Transform
- pos: -43.5,-78.5
- parent: 2
- - uid: 4610
- components:
- - type: Transform
- pos: -42.5,-78.5
+ pos: 42.5,10.5
parent: 2
- uid: 4611
components:
- type: Transform
- pos: -42.5,-77.5
- parent: 2
- - uid: 4612
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,33.5
- parent: 2
- - uid: 4613
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,32.5
- parent: 2
- - uid: 4614
- components:
- - type: Transform
- pos: -41.5,-78.5
- parent: 2
- - uid: 4616
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,33.5
- parent: 2
- - uid: 4624
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,32.5
- parent: 2
- - uid: 4625
- components:
- - type: Transform
- pos: -45.5,-78.5
- parent: 2
- - uid: 4626
- components:
- - type: Transform
- pos: -44.5,-78.5
- parent: 2
- - uid: 4627
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,33.5
- parent: 2
- - uid: 4628
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,32.5
- parent: 2
- - uid: 4629
- components:
- - type: Transform
- pos: -59.5,-78.5
- parent: 2
- - uid: 4631
- components:
- - type: Transform
- pos: -59.5,-77.5
- parent: 2
- - uid: 4641
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,33.5
- parent: 2
- - uid: 4642
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,32.5
- parent: 2
- - uid: 4643
- components:
- - type: Transform
- pos: -46.5,-76.5
- parent: 2
- - uid: 4644
- components:
- - type: Transform
- pos: -60.5,-77.5
- parent: 2
- - uid: 4646
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,33.5
- parent: 2
- - uid: 4656
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,32.5
- parent: 2
- - uid: 4658
- components:
- - type: Transform
- pos: -43.5,-77.5
- parent: 2
- - uid: 4659
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,33.5
- parent: 2
- - uid: 4660
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,32.5
- parent: 2
- - uid: 4671
- components:
- - type: Transform
- pos: -43.5,-75.5
- parent: 2
- - uid: 4672
- components:
- - type: Transform
- pos: -43.5,-76.5
- parent: 2
- - uid: 4673
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,33.5
- parent: 2
- - uid: 4674
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,32.5
- parent: 2
- - uid: 4684
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,35.5
- parent: 2
- - uid: 4685
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,34.5
- parent: 2
- - uid: 4686
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,33.5
- parent: 2
- - uid: 4687
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,32.5
- parent: 2
- - uid: 4697
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,35.5
- parent: 2
- - uid: 4698
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,34.5
- parent: 2
- - uid: 4699
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,33.5
- parent: 2
- - uid: 4703
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,32.5
- parent: 2
- - uid: 4710
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,35.5
- parent: 2
- - uid: 4711
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,34.5
- parent: 2
- - uid: 4712
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,33.5
- parent: 2
- - uid: 4713
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,32.5
- parent: 2
- - uid: 4724
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,35.5
- parent: 2
- - uid: 4725
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,34.5
- parent: 2
- - uid: 4726
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,33.5
- parent: 2
- - uid: 4737
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,32.5
- parent: 2
- - uid: 4738
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,31.5
- parent: 2
- - uid: 4739
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,35.5
- parent: 2
- - uid: 4750
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,33.5
- parent: 2
- - uid: 4751
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,34.5
- parent: 2
- - uid: 4752
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,32.5
- parent: 2
- - uid: 4763
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,31.5
- parent: 2
- - uid: 4764
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,35.5
- parent: 2
- - uid: 4765
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,34.5
- parent: 2
- - uid: 4766
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,33.5
- parent: 2
- - uid: 4767
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,32.5
- parent: 2
- - uid: 4768
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,31.5
+ pos: 43.5,10.5
parent: 2
- uid: 4769
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,30.5
+ pos: -38.5,-73.5
parent: 2
- uid: 4771
components:
- type: Transform
- pos: -40.5,-73.5
+ pos: -56.5,-72.5
parent: 2
- uid: 4772
components:
- type: Transform
- pos: -56.5,-74.5
+ pos: -57.5,-74.5
parent: 2
- uid: 4773
components:
- type: Transform
- pos: -56.5,-76.5
+ pos: -36.5,-72.5
parent: 2
- uid: 4774
components:
- type: Transform
- pos: -56.5,-75.5
+ pos: -36.5,-70.5
parent: 2
- uid: 4782
components:
- type: Transform
- pos: -57.5,-76.5
+ pos: -38.5,-72.5
parent: 2
- uid: 4783
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,36.5
+ pos: -58.5,-75.5
parent: 2
- uid: 4784
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,36.5
+ pos: -34.5,-75.5
parent: 2
- uid: 4785
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -74.5,36.5
+ pos: -104.5,27.5
parent: 2
- uid: 4792
components:
- type: Transform
- pos: -58.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -104.5,26.5
parent: 2
- uid: 4793
components:
- type: Transform
- pos: -59.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -104.5,25.5
parent: 2
- uid: 4795
components:
- type: Transform
- pos: -58.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -104.5,24.5
parent: 2
- uid: 4796
components:
- type: Transform
- pos: -42.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -104.5,23.5
parent: 2
- uid: 4804
components:
- type: Transform
- pos: -43.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -104.5,22.5
parent: 2
- uid: 4805
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -74.5,37.5
+ pos: -104.5,21.5
parent: 2
- uid: 4806
components:
- type: Transform
- pos: -43.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -104.5,20.5
parent: 2
- uid: 4807
components:
- type: Transform
- pos: -42.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: -104.5,19.5
parent: 2
- uid: 4815
components:
- type: Transform
- pos: -42.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -104.5,18.5
parent: 2
- uid: 4816
components:
- type: Transform
- pos: -57.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: -104.5,17.5
parent: 2
- uid: 4817
components:
- type: Transform
- pos: -42.5,-73.5
+ pos: -35.5,-74.5
parent: 2
- uid: 4818
components:
- type: Transform
- pos: -41.5,-76.5
+ pos: -35.5,-73.5
parent: 2
- uid: 4826
components:
- type: Transform
- pos: -41.5,-73.5
+ pos: -36.5,-69.5
parent: 2
- uid: 4827
components:
- type: Transform
- pos: -41.5,-75.5
+ pos: -35.5,-75.5
parent: 2
- uid: 4828
components:
- type: Transform
- pos: -40.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -105.5,26.5
parent: 2
- uid: 4829
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,37.5
+ pos: -105.5,24.5
parent: 2
- uid: 4837
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,32.5
+ pos: -105.5,23.5
parent: 2
- uid: 4838
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,31.5
+ pos: -105.5,22.5
parent: 2
- uid: 4839
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,30.5
+ pos: -105.5,21.5
parent: 2
- uid: 4840
components:
- type: Transform
- pos: -41.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -105.5,25.5
parent: 2
- uid: 4848
components:
- type: Transform
- pos: -40.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: -105.5,20.5
parent: 2
- uid: 4849
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -71.5,38.5
+ pos: -105.5,19.5
parent: 2
- uid: 4850
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -71.5,31.5
+ pos: -105.5,18.5
parent: 2
- uid: 4851
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,30.5
+ pos: -34.5,-74.5
+ parent: 2
+ - uid: 4859
+ components:
+ - type: Transform
+ pos: -35.5,-72.5
parent: 2
- uid: 4860
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,38.5
+ pos: -34.5,-73.5
parent: 2
- uid: 4861
components:
- type: Transform
- pos: -40.5,-74.5
+ pos: -35.5,-71.5
parent: 2
- uid: 4862
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,31.5
+ pos: -35.5,-69.5
parent: 2
- uid: 4870
components:
- type: Transform
- pos: -47.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -106.5,26.5
parent: 2
- uid: 4871
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -70.5,30.5
+ pos: -106.5,25.5
parent: 2
- uid: 4872
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -69.5,39.5
+ pos: -106.5,24.5
parent: 2
- uid: 4873
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -69.5,38.5
+ pos: -106.5,23.5
parent: 2
- uid: 4881
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -69.5,31.5
+ pos: -106.5,22.5
parent: 2
- uid: 4882
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -69.5,30.5
+ pos: -106.5,21.5
parent: 2
- uid: 4883
components:
- type: Transform
- pos: -47.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -106.5,20.5
parent: 2
- uid: 4884
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -73.5,37.5
+ pos: -106.5,18.5
parent: 2
- uid: 4885
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,36.5
+ pos: -35.5,-68.5
parent: 2
- uid: 4891
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -73.5,35.5
+ pos: -106.5,19.5
parent: 2
- uid: 4893
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,34.5
+ pos: -34.5,-72.5
parent: 2
- uid: 4894
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,33.5
+ pos: -34.5,-71.5
parent: 2
- uid: 4895
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,32.5
+ pos: -35.5,-70.5
parent: 2
- uid: 4896
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,31.5
+ pos: -37.5,-76.5
parent: 2
- uid: 4903
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,30.5
+ pos: -36.5,-76.5
parent: 2
- uid: 4904
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -73.5,29.5
+ pos: -107.5,25.5
parent: 2
- uid: 4905
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -73.5,28.5
+ pos: -107.5,23.5
parent: 2
- uid: 4906
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -73.5,27.5
+ pos: -107.5,22.5
parent: 2
- uid: 4907
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -73.5,26.5
+ pos: -107.5,21.5
parent: 2
- uid: 4908
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -73.5,25.5
+ pos: -107.5,24.5
parent: 2
- uid: 4914
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,29.5
+ pos: -107.5,19.5
parent: 2
- uid: 4915
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,28.5
+ pos: -107.5,18.5
parent: 2
- uid: 4916
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,27.5
+ pos: -34.5,-69.5
parent: 2
- uid: 4917
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,26.5
+ pos: -107.5,20.5
parent: 2
- uid: 4918
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,25.5
+ pos: -34.5,-70.5
parent: 2
- uid: 4919
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,29.5
+ pos: -35.5,-76.5
parent: 2
- uid: 4920
components:
- type: Transform
- pos: -46.5,-77.5
+ pos: -40.5,-72.5
+ parent: 2
+ - uid: 4921
+ components:
+ - type: Transform
+ pos: -33.5,-75.5
parent: 2
- uid: 4922
components:
- type: Transform
- pos: -45.5,-76.5
+ pos: -33.5,-74.5
parent: 2
- uid: 4923
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -68.5,39.5
+ pos: -108.5,25.5
parent: 2
- uid: 4924
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -68.5,38.5
+ pos: -108.5,24.5
parent: 2
- uid: 4925
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -68.5,31.5
+ pos: -108.5,23.5
+ parent: 2
+ - uid: 4927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,22.5
parent: 2
- uid: 4928
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -67.5,39.5
+ pos: -108.5,21.5
parent: 2
- uid: 4929
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -67.5,38.5
+ pos: -108.5,20.5
parent: 2
- uid: 4930
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -67.5,37.5
+ pos: -108.5,19.5
parent: 2
- uid: 4931
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -67.5,31.5
+ pos: -108.5,18.5
+ parent: 2
+ - uid: 4932
+ components:
+ - type: Transform
+ pos: -36.5,-71.5
+ parent: 2
+ - uid: 4933
+ components:
+ - type: Transform
+ pos: -36.5,-68.5
+ parent: 2
+ - uid: 4934
+ components:
+ - type: Transform
+ pos: -33.5,-73.5
parent: 2
- uid: 4935
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,38.5
+ pos: -33.5,-72.5
parent: 2
- uid: 4936
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,37.5
+ pos: -40.5,-71.5
parent: 2
- uid: 4937
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -66.5,36.5
+ pos: -111.5,25.5
parent: 2
- uid: 4938
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -66.5,32.5
+ pos: -111.5,24.5
parent: 2
- uid: 4943
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -66.5,31.5
+ pos: -111.5,23.5
parent: 2
- uid: 4944
components:
- type: Transform
- pos: 39.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: -111.5,22.5
parent: 2
- uid: 4945
components:
- type: Transform
- pos: -45.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -111.5,21.5
parent: 2
- uid: 4946
components:
- type: Transform
- pos: -44.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -111.5,20.5
parent: 2
- uid: 4947
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,38.5
+ pos: -111.5,19.5
parent: 2
- uid: 4948
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,37.5
+ pos: -111.5,18.5
parent: 2
- uid: 4954
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,36.5
+ pos: -1.5,-55.5
parent: 2
- uid: 4955
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,35.5
+ pos: -41.5,-71.5
parent: 2
- uid: 4957
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,34.5
+ pos: -52.5,-72.5
parent: 2
- uid: 4958
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,33.5
+ pos: -53.5,-72.5
parent: 2
- uid: 4962
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,32.5
+ pos: -110.5,25.5
parent: 2
- uid: 4965
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,31.5
+ pos: -110.5,24.5
parent: 2
- uid: 4967
components:
- type: Transform
- pos: -44.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -110.5,23.5
parent: 2
- uid: 4968
components:
- type: Transform
- pos: -48.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -110.5,22.5
parent: 2
- uid: 4969
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -64.5,37.5
+ pos: -110.5,21.5
parent: 2
- uid: 4971
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -64.5,36.5
+ pos: -110.5,20.5
parent: 2
- uid: 4977
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -64.5,35.5
+ pos: -110.5,19.5
parent: 2
- uid: 4978
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,34.5
+ pos: -34.5,-68.5
parent: 2
- uid: 4979
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,33.5
+ pos: -33.5,-70.5
parent: 2
- uid: 4980
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,32.5
+ pos: -40.5,-69.5
parent: 2
- uid: 4981
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,31.5
+ pos: -53.5,-71.5
parent: 2
- uid: 4982
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -63.5,37.5
+ pos: -110.5,18.5
parent: 2
- uid: 4983
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -63.5,36.5
+ pos: -109.5,25.5
parent: 2
- uid: 4984
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -63.5,35.5
+ pos: -109.5,24.5
parent: 2
- uid: 4985
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -63.5,34.5
+ pos: -109.5,23.5
parent: 2
- uid: 4986
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -63.5,33.5
+ pos: -109.5,22.5
parent: 2
- uid: 4987
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -63.5,32.5
+ pos: -109.5,21.5
parent: 2
- uid: 4988
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -63.5,31.5
+ pos: -109.5,20.5
parent: 2
- uid: 4989
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -62.5,37.5
+ pos: -109.5,19.5
parent: 2
- uid: 4990
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -62.5,36.5
+ pos: -109.5,18.5
parent: 2
- uid: 4991
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,35.5
+ pos: -54.5,-71.5
parent: 2
- uid: 4992
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,34.5
+ pos: -33.5,-69.5
parent: 2
- uid: 4993
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,33.5
+ pos: -33.5,-71.5
parent: 2
- uid: 4994
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,32.5
+ pos: -40.5,-70.5
parent: 2
- uid: 4995
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,31.5
+ pos: -33.5,-68.5
parent: 2
- uid: 4996
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -61.5,37.5
+ pos: -115.5,23.5
parent: 2
- uid: 4997
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -61.5,36.5
+ pos: -115.5,22.5
parent: 2
- uid: 4999
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -61.5,35.5
+ pos: -115.5,21.5
parent: 2
- uid: 5013
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -61.5,34.5
+ pos: -115.5,20.5
parent: 2
- uid: 5014
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,33.5
+ pos: -32.5,-75.5
parent: 2
- uid: 5015
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,31.5
+ pos: -41.5,-72.5
parent: 2
- uid: 5016
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,32.5
+ pos: -32.5,-74.5
parent: 2
- uid: 5017
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,37.5
+ pos: -32.5,-73.5
parent: 2
- uid: 5024
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,36.5
+ pos: -54.5,-72.5
parent: 2
- uid: 5031
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -60.5,35.5
+ pos: -114.5,24.5
parent: 2
- uid: 5032
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -60.5,34.5
+ pos: -114.5,23.5
parent: 2
- uid: 5033
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -60.5,33.5
+ pos: -114.5,22.5
parent: 2
- uid: 5034
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -60.5,32.5
+ pos: -114.5,21.5
parent: 2
- uid: 5035
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -60.5,31.5
+ pos: -114.5,20.5
parent: 2
- uid: 5041
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,38.5
+ pos: -55.5,-71.5
parent: 2
- uid: 5048
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,37.5
+ pos: -41.5,-70.5
parent: 2
- uid: 5049
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,36.5
+ pos: -41.5,-69.5
parent: 2
- uid: 5050
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,35.5
+ pos: -55.5,-72.5
parent: 2
- uid: 5051
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,34.5
+ pos: -42.5,-72.5
parent: 2
- uid: 5052
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -59.5,33.5
+ pos: -113.5,24.5
parent: 2
- uid: 5053
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -59.5,32.5
+ pos: -113.5,22.5
parent: 2
- uid: 5057
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -59.5,31.5
+ pos: -113.5,23.5
parent: 2
- uid: 5058
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -58.5,38.5
+ pos: -113.5,20.5
parent: 2
- uid: 5062
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -58.5,37.5
+ pos: -113.5,19.5
parent: 2
- uid: 5065
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -58.5,36.5
+ pos: -113.5,21.5
parent: 2
- uid: 5066
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,35.5
+ pos: -42.5,-70.5
parent: 2
- uid: 5067
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,34.5
+ pos: -56.5,-73.5
parent: 2
- uid: 5068
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,33.5
+ pos: -42.5,-69.5
parent: 2
- uid: 5069
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -58.5,32.5
+ pos: -112.5,23.5
parent: 2
- uid: 5070
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -58.5,31.5
+ pos: -113.5,18.5
parent: 2
- uid: 5071
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,38.5
+ pos: -112.5,21.5
parent: 2
- uid: 5072
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,37.5
+ pos: -112.5,22.5
parent: 2
- uid: 5073
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,36.5
+ pos: -112.5,20.5
parent: 2
- uid: 5074
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,35.5
+ pos: -112.5,24.5
parent: 2
- uid: 5081
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,34.5
+ pos: -112.5,19.5
parent: 2
- uid: 5082
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,33.5
+ pos: -112.5,18.5
parent: 2
- uid: 5084
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,32.5
+ pos: -43.5,-71.5
parent: 2
- uid: 5085
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,31.5
+ pos: -43.5,-70.5
parent: 2
- uid: 5086
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,30.5
+ pos: -41.5,-68.5
parent: 2
- uid: 5087
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,29.5
+ pos: -116.5,20.5
parent: 2
- uid: 5088
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,28.5
+ pos: -116.5,21.5
parent: 2
- uid: 5089
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,27.5
+ pos: -116.5,22.5
parent: 2
- uid: 5090
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -56.5,38.5
+ pos: -116.5,23.5
parent: 2
- uid: 5097
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,37.5
+ pos: -43.5,-72.5
parent: 2
- uid: 5099
components:
- type: Transform
- pos: -20.5,-73.5
+ pos: -43.5,-69.5
parent: 2
- uid: 5100
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -56.5,36.5
+ pos: -117.5,23.5
parent: 2
- uid: 5101
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -56.5,35.5
+ pos: -117.5,22.5
parent: 2
- uid: 5102
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -56.5,34.5
+ pos: -117.5,21.5
parent: 2
- uid: 5103
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -56.5,33.5
+ pos: -117.5,20.5
parent: 2
- uid: 5104
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,32.5
+ pos: -44.5,-70.5
parent: 2
- uid: 5105
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -56.5,31.5
+ pos: -118.5,23.5
parent: 2
- uid: 5114
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -56.5,30.5
+ pos: -118.5,22.5
parent: 2
- uid: 5115
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -56.5,29.5
+ pos: -118.5,21.5
parent: 2
- uid: 5116
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,28.5
+ pos: -42.5,-68.5
parent: 2
- uid: 5117
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,27.5
+ pos: -45.5,-69.5
parent: 2
- uid: 5118
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,26.5
+ pos: -45.5,-70.5
parent: 2
- uid: 5119
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,25.5
+ pos: -47.5,-69.5
parent: 2
- uid: 5120
components:
- type: Transform
- pos: -29.5,-74.5
+ pos: -48.5,-69.5
parent: 2
- uid: 5129
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,38.5
+ pos: -47.5,-70.5
parent: 2
- uid: 5130
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,37.5
+ pos: -44.5,-69.5
parent: 2
- uid: 5131
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,36.5
+ pos: -40.5,-68.5
parent: 2
- uid: 5132
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,35.5
+ pos: -42.5,-71.5
parent: 2
- uid: 5133
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,34.5
+ pos: -48.5,-70.5
parent: 2
- uid: 5134
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,33.5
+ pos: -46.5,-69.5
parent: 2
- uid: 5135
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,32.5
+ pos: -46.5,-70.5
parent: 2
- uid: 5144
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,31.5
+ pos: -49.5,-70.5
parent: 2
- uid: 5145
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,30.5
+ pos: -49.5,-72.5
parent: 2
- uid: 5146
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,29.5
+ pos: -50.5,-70.5
parent: 2
- uid: 5147
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,28.5
+ pos: -50.5,-72.5
parent: 2
- uid: 5148
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,27.5
+ pos: -50.5,-71.5
parent: 2
- uid: 5149
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,26.5
+ pos: -49.5,-71.5
parent: 2
- uid: 5150
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,25.5
+ pos: -51.5,-71.5
parent: 2
- uid: 5158
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,38.5
+ pos: -51.5,-72.5
parent: 2
- uid: 5159
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,37.5
+ pos: -51.5,-70.5
parent: 2
- uid: 5160
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,36.5
+ pos: -52.5,-70.5
parent: 2
- uid: 5161
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,35.5
+ pos: -52.5,-71.5
parent: 2
- uid: 5162
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,34.5
+ pos: -39.5,-75.5
parent: 2
- uid: 5163
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,33.5
+ pos: -39.5,-73.5
parent: 2
- uid: 5164
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,32.5
+ pos: -39.5,-71.5
parent: 2
- uid: 5165
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,31.5
+ pos: -39.5,-77.5
parent: 2
- uid: 5172
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,30.5
+ pos: -39.5,-78.5
parent: 2
- uid: 5173
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,29.5
+ pos: -38.5,-76.5
parent: 2
- uid: 5174
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,28.5
+ pos: -38.5,-78.5
parent: 2
- uid: 5175
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,27.5
+ pos: -38.5,-77.5
parent: 2
- uid: 5176
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,26.5
+ pos: -58.5,-78.5
parent: 2
- uid: 5177
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -54.5,25.5
+ pos: -81.5,34.5
parent: 2
- uid: 5179
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,38.5
+ pos: -80.5,34.5
parent: 2
- uid: 5180
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,37.5
+ pos: -97.5,18.5
parent: 2
- uid: 5187
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,36.5
+ pos: -97.5,19.5
parent: 2
- uid: 5188
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,35.5
+ pos: -97.5,28.5
parent: 2
- uid: 5190
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,34.5
+ pos: -97.5,29.5
parent: 2
- uid: 5191
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,33.5
+ pos: -97.5,30.5
parent: 2
- uid: 5192
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,32.5
+ pos: -60.5,-78.5
parent: 2
- uid: 5193
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,31.5
+ pos: -38.5,-75.5
parent: 2
- uid: 5194
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,30.5
+ pos: -96.5,18.5
parent: 2
- uid: 5195
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,29.5
+ pos: -96.5,19.5
parent: 2
- uid: 5196
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,28.5
+ pos: -96.5,29.5
parent: 2
- uid: 5197
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,27.5
+ pos: -96.5,30.5
parent: 2
- uid: 5198
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,26.5
+ pos: -96.5,31.5
parent: 2
- uid: 5199
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,25.5
+ pos: -95.5,18.5
parent: 2
- uid: 5202
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,39.5
+ pos: -39.5,-74.5
parent: 2
- uid: 5203
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,38.5
+ pos: -95.5,30.5
parent: 2
- uid: 5204
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,37.5
+ pos: -95.5,29.5
parent: 2
- uid: 5205
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,36.5
+ pos: -41.5,-77.5
parent: 2
- uid: 5206
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,35.5
+ pos: -95.5,31.5
parent: 2
- uid: 5207
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,34.5
+ pos: -94.5,18.5
parent: 2
- uid: 5208
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,33.5
+ pos: -94.5,29.5
parent: 2
- uid: 5209
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,32.5
+ pos: -94.5,30.5
parent: 2
- uid: 5210
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,31.5
+ pos: -94.5,31.5
parent: 2
- uid: 5211
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,30.5
+ pos: -40.5,-78.5
parent: 2
- uid: 5212
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,29.5
+ pos: -93.5,30.5
parent: 2
- uid: 5213
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,28.5
+ pos: -93.5,31.5
parent: 2
- uid: 5214
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,27.5
+ pos: -93.5,32.5
parent: 2
- uid: 5215
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,26.5
+ pos: -40.5,-77.5
parent: 2
- uid: 5216
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,25.5
+ pos: -92.5,30.5
parent: 2
- uid: 5217
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -51.5,39.5
+ pos: -92.5,32.5
parent: 2
- uid: 5218
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,38.5
+ pos: -56.5,-78.5
parent: 2
- uid: 5219
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -51.5,37.5
+ pos: -92.5,31.5
parent: 2
- uid: 5220
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -51.5,36.5
+ pos: -91.5,30.5
parent: 2
- uid: 5221
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -51.5,35.5
+ pos: -91.5,32.5
parent: 2
- uid: 5222
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -51.5,34.5
+ pos: -91.5,31.5
parent: 2
- uid: 5223
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,33.5
+ pos: -55.5,-78.5
parent: 2
- uid: 5224
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -51.5,32.5
+ pos: -90.5,31.5
parent: 2
- uid: 5225
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -51.5,31.5
+ pos: -90.5,32.5
parent: 2
- uid: 5226
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,30.5
+ pos: -54.5,-78.5
parent: 2
- uid: 5227
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -51.5,29.5
+ pos: -89.5,31.5
parent: 2
- uid: 5228
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -51.5,28.5
+ pos: -89.5,32.5
parent: 2
- uid: 5229
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,27.5
+ pos: -53.5,-78.5
parent: 2
- uid: 5230
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -51.5,26.5
+ pos: -88.5,31.5
parent: 2
- uid: 5231
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -51.5,25.5
+ pos: -88.5,32.5
parent: 2
- uid: 5233
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,39.5
+ pos: -51.5,-78.5
parent: 2
- uid: 5234
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -50.5,38.5
+ pos: -87.5,31.5
parent: 2
- uid: 5235
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -50.5,37.5
+ pos: -87.5,32.5
parent: 2
- uid: 5236
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,36.5
+ pos: -50.5,-78.5
parent: 2
- uid: 5237
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,35.5
+ pos: -49.5,-78.5
parent: 2
- uid: 5238
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,34.5
+ pos: -52.5,-78.5
parent: 2
- uid: 5239
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,33.5
+ pos: -48.5,-78.5
parent: 2
- uid: 5240
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,32.5
+ pos: -46.5,-78.5
parent: 2
- uid: 5241
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,31.5
+ pos: -43.5,-78.5
parent: 2
- uid: 5242
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,30.5
+ pos: -42.5,-78.5
parent: 2
- uid: 5243
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,29.5
+ pos: -42.5,-77.5
parent: 2
- uid: 5244
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -50.5,28.5
+ pos: -86.5,33.5
parent: 2
- uid: 5245
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -50.5,27.5
+ pos: -86.5,32.5
parent: 2
- uid: 5246
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,26.5
+ pos: -41.5,-78.5
parent: 2
- uid: 5248
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -50.5,25.5
+ pos: -85.5,33.5
parent: 2
- uid: 5249
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -50.5,24.5
+ pos: -85.5,32.5
parent: 2
- uid: 5250
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,24.5
+ pos: -45.5,-78.5
parent: 2
- uid: 5251
components:
- type: Transform
- pos: -29.5,-73.5
+ pos: -44.5,-78.5
parent: 2
- uid: 5252
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,24.5
+ pos: -84.5,33.5
parent: 2
- uid: 5253
components:
- type: Transform
- pos: -1.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -84.5,32.5
parent: 2
- uid: 5254
components:
- type: Transform
- pos: -20.5,-72.5
+ pos: -59.5,-78.5
parent: 2
- uid: 5255
components:
- type: Transform
- pos: -0.5,-67.5
+ pos: -59.5,-77.5
parent: 2
- uid: 5256
components:
- type: Transform
- pos: 0.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -83.5,33.5
parent: 2
- uid: 5257
components:
- type: Transform
- pos: 0.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -83.5,32.5
parent: 2
- uid: 5258
components:
- type: Transform
- pos: -20.5,-71.5
+ pos: -46.5,-76.5
parent: 2
- uid: 5259
components:
- type: Transform
- pos: 0.5,-65.5
+ pos: -60.5,-77.5
parent: 2
- uid: 5260
components:
- type: Transform
- pos: -0.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -82.5,33.5
parent: 2
- uid: 5261
components:
- type: Transform
- pos: -20.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -82.5,32.5
parent: 2
- uid: 5262
components:
- type: Transform
- pos: -3.5,-68.5
+ pos: -43.5,-77.5
parent: 2
- uid: 5263
components:
- type: Transform
- pos: -2.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -81.5,33.5
parent: 2
- uid: 5264
components:
- type: Transform
- pos: -1.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -81.5,32.5
parent: 2
- uid: 5265
components:
- type: Transform
- pos: -28.5,-74.5
+ pos: -43.5,-75.5
parent: 2
- uid: 5266
components:
- type: Transform
- pos: -27.5,-74.5
+ pos: -43.5,-76.5
parent: 2
- uid: 5267
components:
- type: Transform
- pos: -31.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -80.5,33.5
parent: 2
- uid: 5268
components:
- type: Transform
- pos: -30.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -80.5,32.5
parent: 2
- uid: 5269
components:
- type: Transform
- pos: -31.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -79.5,35.5
parent: 2
- uid: 5270
components:
- type: Transform
- pos: -31.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -79.5,34.5
parent: 2
- uid: 5271
components:
- type: Transform
- pos: -30.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -79.5,33.5
parent: 2
- uid: 5272
components:
- type: Transform
- pos: -30.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -79.5,32.5
parent: 2
- uid: 5273
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -69.5,22.5
+ pos: -78.5,35.5
parent: 2
- uid: 5274
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -70.5,23.5
+ pos: -78.5,34.5
parent: 2
- uid: 5275
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -71.5,24.5
+ pos: -78.5,33.5
parent: 2
- uid: 5276
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -71.5,23.5
+ pos: -78.5,32.5
parent: 2
- uid: 5277
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -70.5,22.5
+ pos: -77.5,35.5
parent: 2
- uid: 5278
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,24.5
+ pos: -77.5,34.5
parent: 2
- uid: 5279
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -71.5,22.5
+ pos: -77.5,33.5
parent: 2
- uid: 5280
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,23.5
+ pos: -77.5,32.5
parent: 2
- uid: 5281
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,22.5
+ pos: -76.5,35.5
parent: 2
- uid: 5282
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -73.5,24.5
+ pos: -76.5,34.5
parent: 2
- uid: 5283
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -73.5,23.5
+ pos: -76.5,33.5
parent: 2
- uid: 5284
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -73.5,22.5
+ pos: -76.5,32.5
parent: 2
- uid: 5285
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -71.5,21.5
+ pos: -76.5,31.5
parent: 2
- uid: 5286
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,21.5
+ pos: -75.5,35.5
parent: 2
- uid: 5287
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -73.5,21.5
+ pos: -75.5,33.5
parent: 2
- uid: 5288
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -74.5,21.5
+ pos: -75.5,34.5
parent: 2
- uid: 5289
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -75.5,21.5
+ pos: -75.5,32.5
parent: 2
- uid: 5290
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -76.5,21.5
+ pos: -75.5,31.5
parent: 2
- uid: 5291
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -77.5,21.5
+ pos: -74.5,35.5
parent: 2
- uid: 5292
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -78.5,21.5
+ pos: -74.5,34.5
parent: 2
- uid: 5293
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -79.5,21.5
+ pos: -74.5,33.5
parent: 2
- uid: 5294
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -80.5,21.5
+ pos: -74.5,32.5
parent: 2
- uid: 5295
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -74.5,22.5
+ pos: -74.5,31.5
parent: 2
- uid: 5296
components:
- type: Transform
- pos: -48.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,30.5
+ parent: 2
+ - uid: 5297
+ components:
+ - type: Transform
+ pos: -40.5,-73.5
parent: 2
- uid: 5298
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,20.5
+ pos: -56.5,-74.5
parent: 2
- uid: 5299
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,20.5
+ pos: -56.5,-76.5
parent: 2
- uid: 5300
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,20.5
+ pos: -56.5,-75.5
parent: 2
- uid: 5301
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,20.5
+ pos: -57.5,-76.5
parent: 2
- uid: 5302
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -82.5,20.5
+ pos: -76.5,36.5
parent: 2
- uid: 5303
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -83.5,20.5
+ pos: -75.5,36.5
parent: 2
- uid: 5304
components:
- type: Transform
- pos: -51.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,36.5
parent: 2
- uid: 5305
components:
- type: Transform
- pos: -51.5,-74.5
+ pos: -58.5,-77.5
parent: 2
- uid: 5306
components:
- type: Transform
- pos: -51.5,-73.5
+ pos: -59.5,-76.5
parent: 2
- uid: 5307
components:
- type: Transform
- pos: -50.5,-76.5
+ pos: -58.5,-76.5
parent: 2
- uid: 5310
components:
- type: Transform
- pos: -50.5,-75.5
+ pos: -42.5,-76.5
parent: 2
- uid: 5312
components:
- type: Transform
- pos: -50.5,-74.5
+ pos: -43.5,-73.5
parent: 2
- uid: 5313
components:
- type: Transform
- pos: -49.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,37.5
parent: 2
- uid: 5314
components:
- type: Transform
- pos: -50.5,-73.5
+ pos: -43.5,-74.5
parent: 2
- uid: 5315
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,19.5
+ pos: -42.5,-75.5
parent: 2
- uid: 5316
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,19.5
+ pos: -42.5,-74.5
parent: 2
- uid: 5317
components:
- type: Transform
- pos: -49.5,-75.5
+ pos: -57.5,-75.5
parent: 2
- uid: 5318
components:
- type: Transform
- pos: -49.5,-74.5
+ pos: -42.5,-73.5
parent: 2
- uid: 5319
components:
- type: Transform
- pos: -49.5,-73.5
+ pos: -41.5,-76.5
+ parent: 2
+ - uid: 5322
+ components:
+ - type: Transform
+ pos: -41.5,-73.5
parent: 2
- uid: 5325
components:
- type: Transform
- pos: -57.5,-78.5
+ pos: -41.5,-75.5
parent: 2
- uid: 5326
components:
- type: Transform
- pos: -53.5,-75.5
+ pos: -40.5,-76.5
parent: 2
- uid: 5327
components:
- type: Transform
- pos: -53.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,37.5
parent: 2
- uid: 5328
components:
- type: Transform
- pos: -57.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,32.5
parent: 2
- uid: 5333
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -49.5,38.5
+ pos: -72.5,31.5
parent: 2
- uid: 5338
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -49.5,39.5
+ pos: -72.5,30.5
parent: 2
- uid: 5339
components:
- type: Transform
- pos: -53.5,-74.5
+ pos: -41.5,-74.5
parent: 2
- uid: 5340
components:
- type: Transform
- pos: -52.5,-76.5
+ pos: -40.5,-75.5
parent: 2
- uid: 5341
components:
- type: Transform
- pos: -52.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,38.5
parent: 2
- uid: 5342
components:
- type: Transform
- pos: -52.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,31.5
parent: 2
- uid: 5344
components:
- type: Transform
- pos: -51.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,30.5
parent: 2
- uid: 5367
components:
- type: Transform
- pos: -55.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,38.5
parent: 2
- uid: 5368
components:
- type: Transform
- pos: -52.5,-73.5
+ pos: -40.5,-74.5
parent: 2
- uid: 5369
components:
- type: Transform
- pos: -55.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,31.5
parent: 2
- uid: 5370
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,40.5
+ pos: -47.5,-77.5
parent: 2
- uid: 5371
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -48.5,39.5
+ pos: -70.5,30.5
parent: 2
- uid: 5372
components:
- type: Transform
- pos: -55.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -69.5,39.5
parent: 2
- uid: 5373
components:
- type: Transform
- pos: -54.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -69.5,38.5
parent: 2
- uid: 5374
components:
- type: Transform
- pos: -55.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -69.5,31.5
parent: 2
- uid: 5375
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -47.5,41.5
+ pos: -69.5,30.5
parent: 2
- uid: 5376
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,40.5
+ pos: -47.5,-76.5
parent: 2
- uid: 5377
components:
- type: Transform
- pos: -54.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,37.5
parent: 2
- uid: 5378
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -46.5,42.5
+ pos: -73.5,36.5
parent: 2
- uid: 5387
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -46.5,41.5
+ pos: -73.5,35.5
parent: 2
- uid: 5388
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -46.5,40.5
+ pos: -73.5,34.5
parent: 2
- uid: 5389
components:
- type: Transform
- pos: -54.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,33.5
parent: 2
- uid: 5390
components:
- type: Transform
- pos: -54.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,32.5
parent: 2
- uid: 5391
components:
- type: Transform
- pos: -54.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,31.5
parent: 2
- uid: 5392
components:
- type: Transform
- pos: -53.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,30.5
parent: 2
- uid: 5393
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -45.5,42.5
+ pos: -73.5,29.5
parent: 2
- uid: 5394
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -45.5,41.5
+ pos: -73.5,28.5
parent: 2
- uid: 5395
components:
- type: Transform
- pos: -55.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,27.5
parent: 2
- uid: 5396
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -44.5,43.5
+ pos: -73.5,26.5
parent: 2
- uid: 5397
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -44.5,42.5
+ pos: -73.5,25.5
parent: 2
- uid: 5405
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -44.5,41.5
+ pos: -72.5,29.5
parent: 2
- uid: 5406
components:
- type: Transform
- pos: -47.5,-78.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,28.5
+ parent: 2
+ - uid: 5407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -72.5,27.5
parent: 2
- uid: 5408
components:
- type: Transform
- pos: -53.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,26.5
parent: 2
- uid: 5409
components:
- type: Transform
- pos: -51.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,25.5
parent: 2
- uid: 5410
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -43.5,43.5
+ pos: -71.5,29.5
parent: 2
- uid: 5411
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,42.5
+ pos: -46.5,-77.5
parent: 2
- uid: 5412
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,43.5
+ pos: -45.5,-76.5
parent: 2
- uid: 5413
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -42.5,44.5
+ pos: -68.5,39.5
parent: 2
- uid: 5414
components:
- type: Transform
- pos: -52.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,38.5
parent: 2
- uid: 5415
components:
- type: Transform
- pos: -50.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,31.5
parent: 2
- uid: 5416
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -41.5,44.5
+ pos: -67.5,39.5
parent: 2
- uid: 5417
components:
- type: Transform
- pos: -56.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,38.5
parent: 2
- uid: 5418
components:
- type: Transform
- pos: -49.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,37.5
parent: 2
- uid: 5421
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -39.5,45.5
+ pos: -67.5,31.5
parent: 2
- uid: 5422
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -38.5,45.5
+ pos: -66.5,38.5
parent: 2
- uid: 5423
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -37.5,45.5
+ pos: -66.5,37.5
parent: 2
- uid: 5424
components:
- type: Transform
- pos: -19.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,36.5
parent: 2
- uid: 5425
components:
- type: Transform
- pos: -19.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,32.5
parent: 2
- uid: 5426
components:
- type: Transform
- pos: -17.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,31.5
parent: 2
- uid: 5427
components:
- type: Transform
- pos: -17.5,-70.5
+ pos: 39.5,43.5
parent: 2
- uid: 5428
components:
- type: Transform
- pos: -17.5,-71.5
+ pos: -45.5,-77.5
parent: 2
- uid: 5429
components:
- type: Transform
- pos: -17.5,-72.5
+ pos: -44.5,-77.5
parent: 2
- uid: 5431
components:
- type: Transform
- pos: -17.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,38.5
parent: 2
- uid: 5432
components:
- type: Transform
- pos: -16.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,37.5
parent: 2
- uid: 5433
components:
- type: Transform
- pos: -16.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,36.5
parent: 2
- uid: 5434
components:
- type: Transform
- pos: -16.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,35.5
parent: 2
- uid: 5435
components:
- type: Transform
- pos: -16.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,34.5
parent: 2
- uid: 5436
components:
- type: Transform
- pos: -16.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,33.5
parent: 2
- uid: 5437
components:
- type: Transform
- pos: -15.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,32.5
parent: 2
- uid: 5438
components:
- type: Transform
- pos: -15.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,31.5
parent: 2
- uid: 5439
components:
- type: Transform
- pos: -15.5,-71.5
+ pos: -44.5,-76.5
parent: 2
- uid: 5440
components:
- type: Transform
- pos: -15.5,-72.5
+ pos: -48.5,-77.5
parent: 2
- uid: 5441
components:
- type: Transform
- pos: -14.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,37.5
parent: 2
- uid: 5442
components:
- type: Transform
- pos: -14.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,36.5
parent: 2
- uid: 5443
components:
- type: Transform
- pos: -14.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,35.5
parent: 2
- uid: 5444
components:
- type: Transform
- pos: -15.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,34.5
parent: 2
- uid: 5445
components:
- type: Transform
- pos: -13.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,33.5
parent: 2
- uid: 5446
components:
- type: Transform
- pos: -13.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,32.5
parent: 2
- uid: 5447
components:
- type: Transform
- pos: -14.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,31.5
parent: 2
- uid: 5448
components:
- type: Transform
- pos: -13.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,37.5
parent: 2
- uid: 5449
components:
- type: Transform
- pos: -13.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,36.5
parent: 2
- uid: 5450
components:
- type: Transform
- pos: -13.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,35.5
parent: 2
- uid: 5451
components:
- type: Transform
- pos: -12.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,34.5
parent: 2
- uid: 5452
components:
- type: Transform
- pos: -12.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,33.5
parent: 2
- uid: 5453
components:
- type: Transform
- pos: -12.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,32.5
parent: 2
- uid: 5454
components:
- type: Transform
- pos: -12.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,31.5
parent: 2
- uid: 5455
components:
- type: Transform
- pos: -14.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,37.5
parent: 2
- uid: 5456
components:
- type: Transform
- pos: -21.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,36.5
parent: 2
- uid: 5457
components:
- type: Transform
- pos: -20.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,35.5
parent: 2
- uid: 5458
components:
- type: Transform
- pos: -19.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,34.5
parent: 2
- uid: 5459
components:
- type: Transform
- pos: -19.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,33.5
parent: 2
- uid: 5460
components:
- type: Transform
- pos: -18.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,32.5
parent: 2
- uid: 5461
components:
- type: Transform
- pos: -18.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,31.5
parent: 2
- uid: 5462
components:
- type: Transform
- pos: -17.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,37.5
parent: 2
- uid: 5463
components:
- type: Transform
- pos: -17.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,36.5
parent: 2
- uid: 5464
components:
- type: Transform
- pos: -16.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,35.5
parent: 2
- uid: 5465
components:
- type: Transform
- pos: -16.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,34.5
parent: 2
- uid: 5466
components:
- type: Transform
- pos: -15.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,33.5
parent: 2
- uid: 5467
components:
- type: Transform
- pos: -15.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,31.5
parent: 2
- uid: 5468
components:
- type: Transform
- pos: -14.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,32.5
parent: 2
- uid: 5469
components:
- type: Transform
- pos: -14.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -60.5,37.5
parent: 2
- uid: 5470
components:
- type: Transform
- pos: -13.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -60.5,36.5
parent: 2
- uid: 5471
components:
- type: Transform
- pos: -13.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -60.5,35.5
parent: 2
- uid: 5472
components:
- type: Transform
- pos: -12.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -60.5,34.5
parent: 2
- uid: 5473
components:
- type: Transform
- pos: -12.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -60.5,33.5
parent: 2
- uid: 5474
components:
- type: Transform
- pos: -11.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -60.5,32.5
parent: 2
- uid: 5475
components:
- type: Transform
- pos: -11.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -60.5,31.5
parent: 2
- uid: 5476
components:
- type: Transform
- pos: -11.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,38.5
parent: 2
- uid: 5477
components:
- type: Transform
- pos: -10.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,37.5
parent: 2
- uid: 5478
components:
- type: Transform
- pos: -10.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,36.5
parent: 2
- uid: 5479
components:
- type: Transform
- pos: -10.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,35.5
parent: 2
- uid: 5481
components:
- type: Transform
- pos: -12.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,34.5
parent: 2
- uid: 5483
components:
- type: Transform
- pos: -11.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,33.5
parent: 2
- uid: 5485
components:
- type: Transform
- pos: -10.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,32.5
parent: 2
- uid: 5495
components:
- type: Transform
- pos: -9.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,31.5
parent: 2
- uid: 5500
components:
- type: Transform
- pos: -9.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,38.5
+ parent: 2
+ - uid: 5541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,37.5
parent: 2
- uid: 5549
components:
- type: Transform
- pos: -9.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,36.5
parent: 2
- uid: 5571
components:
- type: Transform
- pos: -8.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,35.5
parent: 2
- uid: 5572
components:
- type: Transform
- pos: -8.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,34.5
parent: 2
- uid: 5575
components:
- type: Transform
- pos: -8.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,33.5
parent: 2
- uid: 5576
components:
- type: Transform
- pos: -7.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,32.5
parent: 2
- uid: 5577
components:
- type: Transform
- pos: -7.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,31.5
parent: 2
- uid: 5578
components:
- type: Transform
- pos: -6.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,38.5
parent: 2
- uid: 5579
components:
- type: Transform
- pos: -6.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,37.5
parent: 2
- uid: 5582
components:
- type: Transform
- pos: -6.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,36.5
parent: 2
- uid: 5583
components:
- type: Transform
- pos: -5.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,35.5
parent: 2
- uid: 5584
components:
- type: Transform
- pos: -5.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,34.5
parent: 2
- uid: 5585
components:
- type: Transform
- pos: -7.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,33.5
parent: 2
- uid: 5586
components:
- type: Transform
- pos: -5.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,32.5
parent: 2
- uid: 5587
components:
- type: Transform
- pos: -4.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,31.5
parent: 2
- uid: 5588
components:
- type: Transform
- pos: -4.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,30.5
parent: 2
- uid: 5589
components:
- type: Transform
- pos: -4.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,29.5
parent: 2
- uid: 5590
components:
- type: Transform
- pos: -5.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,28.5
parent: 2
- uid: 5591
components:
- type: Transform
- pos: -5.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,27.5
parent: 2
- uid: 5594
components:
- type: Transform
- pos: -4.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,38.5
parent: 2
- uid: 5595
components:
- type: Transform
- pos: -4.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,37.5
parent: 2
- uid: 5597
components:
- type: Transform
- pos: -3.5,-61.5
+ pos: -20.5,-73.5
parent: 2
- uid: 5598
components:
- type: Transform
- pos: -3.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,36.5
parent: 2
- uid: 5600
components:
- type: Transform
- pos: -3.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,35.5
parent: 2
- uid: 5602
components:
- type: Transform
- pos: -3.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,34.5
parent: 2
- uid: 5603
components:
- type: Transform
- pos: -2.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,33.5
parent: 2
- uid: 5604
components:
- type: Transform
- pos: -2.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,32.5
parent: 2
- uid: 5605
components:
- type: Transform
- pos: -2.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,31.5
parent: 2
- uid: 5609
components:
- type: Transform
- pos: -1.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,30.5
parent: 2
- uid: 5610
components:
- type: Transform
- pos: -1.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,29.5
parent: 2
- uid: 5611
components:
- type: Transform
- pos: -1.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,28.5
parent: 2
- uid: 5613
components:
- type: Transform
- pos: -2.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,27.5
parent: 2
- uid: 5614
components:
- type: Transform
- pos: -4.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,26.5
parent: 2
- uid: 5615
components:
- type: Transform
- pos: -4.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,25.5
parent: 2
- uid: 5616
components:
- type: Transform
- pos: -4.5,-58.5
+ pos: -29.5,-74.5
parent: 2
- uid: 5617
components:
- type: Transform
- pos: -4.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,38.5
parent: 2
- uid: 5618
components:
- type: Transform
- pos: -4.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,37.5
parent: 2
- uid: 5619
components:
- type: Transform
- pos: -3.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,36.5
parent: 2
- uid: 5620
components:
- type: Transform
- pos: -3.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,35.5
parent: 2
- uid: 5621
components:
- type: Transform
- pos: -3.5,-58.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,34.5
parent: 2
- uid: 5622
components:
- type: Transform
- pos: -3.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,33.5
parent: 2
- uid: 5623
components:
- type: Transform
- pos: -3.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,32.5
parent: 2
- uid: 5624
components:
- type: Transform
- pos: -2.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,31.5
parent: 2
- uid: 5625
components:
- type: Transform
- pos: -2.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,30.5
parent: 2
- uid: 5626
components:
- type: Transform
- pos: -2.5,-58.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,29.5
parent: 2
- uid: 5627
components:
- type: Transform
- pos: -2.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,28.5
parent: 2
- uid: 5628
components:
- type: Transform
- pos: -1.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,27.5
parent: 2
- uid: 5629
components:
- type: Transform
- pos: -1.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,26.5
parent: 2
- uid: 5630
components:
- type: Transform
- pos: -1.5,-58.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,25.5
parent: 2
- uid: 5631
components:
- type: Transform
- pos: -1.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,38.5
parent: 2
- uid: 5632
components:
- type: Transform
- pos: -1.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,37.5
parent: 2
- uid: 5633
components:
- type: Transform
- pos: -2.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,36.5
parent: 2
- uid: 5634
components:
- type: Transform
- pos: -6.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,35.5
parent: 2
- uid: 5636
components:
- type: Transform
- pos: -1.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,34.5
parent: 2
- uid: 5637
components:
- type: Transform
- pos: -2.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,33.5
parent: 2
- uid: 5638
components:
- type: Transform
- pos: -2.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,32.5
parent: 2
- uid: 5640
components:
- type: Transform
- pos: -3.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,31.5
parent: 2
- uid: 5641
components:
- type: Transform
- pos: -3.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,30.5
parent: 2
- uid: 5642
components:
- type: Transform
- pos: -5.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,29.5
parent: 2
- uid: 5643
components:
- type: Transform
- pos: -6.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,28.5
parent: 2
- uid: 5644
components:
- type: Transform
- pos: -6.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,27.5
parent: 2
- uid: 5645
components:
- type: Transform
- pos: -5.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,26.5
parent: 2
- uid: 5646
components:
- type: Transform
- pos: -7.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,25.5
parent: 2
- uid: 5647
components:
- type: Transform
- pos: -7.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,38.5
parent: 2
- uid: 5648
components:
- type: Transform
- pos: -8.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,37.5
parent: 2
- uid: 5649
components:
- type: Transform
- pos: -5.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,36.5
parent: 2
- uid: 5650
components:
- type: Transform
- pos: -5.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,35.5
parent: 2
- uid: 5651
components:
- type: Transform
- pos: -7.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,34.5
parent: 2
- uid: 5652
components:
- type: Transform
- pos: 1.5,-58.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,33.5
parent: 2
- uid: 5653
components:
- type: Transform
- pos: 1.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,32.5
parent: 2
- uid: 5654
components:
- type: Transform
- pos: 1.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,31.5
parent: 2
- uid: 5655
components:
- type: Transform
- pos: 1.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,30.5
parent: 2
- uid: 5656
components:
- type: Transform
- pos: 2.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,29.5
parent: 2
- uid: 5657
components:
- type: Transform
- pos: 2.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,28.5
parent: 2
- uid: 5658
components:
- type: Transform
- pos: 2.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,27.5
parent: 2
- uid: 5659
components:
- type: Transform
- pos: 2.5,-58.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,26.5
parent: 2
- uid: 5660
components:
- type: Transform
- pos: 2.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,25.5
parent: 2
- uid: 5661
components:
- type: Transform
- pos: 3.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,39.5
parent: 2
- uid: 5662
components:
- type: Transform
- pos: 3.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,38.5
parent: 2
- uid: 5663
components:
- type: Transform
- pos: 3.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,37.5
parent: 2
- uid: 5664
components:
- type: Transform
- pos: 3.5,-58.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,36.5
parent: 2
- uid: 5665
components:
- type: Transform
- pos: 3.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,35.5
parent: 2
- uid: 5666
components:
- type: Transform
- pos: 3.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,34.5
parent: 2
- uid: 5667
components:
- type: Transform
- pos: 4.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,33.5
parent: 2
- uid: 5668
components:
- type: Transform
- pos: 4.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,32.5
parent: 2
- uid: 5669
components:
- type: Transform
- pos: 4.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,31.5
parent: 2
- uid: 5670
components:
- type: Transform
- pos: 4.5,-58.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,30.5
parent: 2
- uid: 5671
components:
- type: Transform
- pos: 4.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,29.5
parent: 2
- uid: 5672
components:
- type: Transform
- pos: 4.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,28.5
parent: 2
- uid: 5673
components:
- type: Transform
- pos: 4.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,27.5
parent: 2
- uid: 5674
components:
- type: Transform
- pos: 1.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,26.5
parent: 2
- uid: 5677
components:
- type: Transform
- pos: 1.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,25.5
parent: 2
- uid: 5685
components:
- type: Transform
- pos: 1.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,39.5
parent: 2
- uid: 5686
components:
- type: Transform
- pos: 2.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,38.5
parent: 2
- uid: 5687
components:
- type: Transform
- pos: 2.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,37.5
parent: 2
- uid: 5688
components:
- type: Transform
- pos: 2.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,36.5
parent: 2
- uid: 5689
components:
- type: Transform
- pos: 3.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,35.5
parent: 2
- uid: 5690
components:
- type: Transform
- pos: 3.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,34.5
parent: 2
- uid: 5691
components:
- type: Transform
- pos: 3.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,33.5
parent: 2
- uid: 5692
components:
- type: Transform
- pos: 4.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,32.5
parent: 2
- uid: 5693
components:
- type: Transform
- pos: 4.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,31.5
parent: 2
- uid: 5694
components:
- type: Transform
- pos: 4.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,30.5
parent: 2
- uid: 5695
components:
- type: Transform
- pos: 4.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,29.5
parent: 2
- uid: 5696
components:
- type: Transform
- pos: 4.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,28.5
parent: 2
- uid: 5697
components:
- type: Transform
- pos: 4.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,27.5
parent: 2
- uid: 5698
components:
- type: Transform
- pos: 4.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,26.5
parent: 2
- uid: 5699
components:
- type: Transform
- pos: 4.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,25.5
parent: 2
- uid: 5700
components:
- type: Transform
- pos: 4.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,39.5
parent: 2
- uid: 5701
components:
- type: Transform
- pos: 4.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,38.5
parent: 2
- uid: 5702
components:
- type: Transform
- pos: 3.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,37.5
parent: 2
- uid: 5703
components:
- type: Transform
- pos: 3.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,36.5
parent: 2
- uid: 5704
components:
- type: Transform
- pos: 3.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,35.5
parent: 2
- uid: 5705
components:
- type: Transform
- pos: 4.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,34.5
parent: 2
- uid: 5706
components:
- type: Transform
- pos: 3.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,33.5
parent: 2
- uid: 5708
components:
- type: Transform
- pos: 3.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,32.5
parent: 2
- uid: 5711
components:
- type: Transform
- pos: 3.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,31.5
parent: 2
- uid: 5712
components:
- type: Transform
- pos: 3.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,30.5
parent: 2
- uid: 5717
components:
- type: Transform
- pos: 3.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,29.5
parent: 2
- uid: 5719
components:
- type: Transform
- pos: 2.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,28.5
parent: 2
- uid: 5730
components:
- type: Transform
- pos: 2.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,27.5
parent: 2
- uid: 5731
components:
- type: Transform
- pos: 2.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,26.5
parent: 2
- uid: 5732
components:
- type: Transform
- pos: 2.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,25.5
parent: 2
- uid: 5733
components:
- type: Transform
- pos: 2.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,24.5
parent: 2
- uid: 5734
components:
- type: Transform
- pos: 2.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,24.5
parent: 2
- uid: 5735
components:
- type: Transform
- pos: 2.5,-72.5
+ pos: -29.5,-73.5
parent: 2
- uid: 5736
components:
- type: Transform
- pos: 2.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,24.5
parent: 2
- uid: 5737
components:
- type: Transform
- pos: 1.5,-65.5
+ pos: -1.5,-67.5
parent: 2
- uid: 5738
components:
- type: Transform
- pos: 1.5,-66.5
+ pos: -20.5,-72.5
parent: 2
- uid: 5740
components:
- type: Transform
- pos: 1.5,-69.5
+ pos: -0.5,-67.5
parent: 2
- uid: 5745
components:
- type: Transform
- pos: 1.5,-67.5
+ pos: 0.5,-67.5
parent: 2
- uid: 5746
components:
- type: Transform
- pos: 1.5,-68.5
+ pos: 0.5,-66.5
parent: 2
- uid: 5747
components:
- type: Transform
- pos: 1.5,-72.5
+ pos: -20.5,-71.5
parent: 2
- uid: 5748
components:
- type: Transform
- pos: 1.5,-71.5
+ pos: 0.5,-65.5
parent: 2
- uid: 5759
components:
- type: Transform
- pos: 1.5,-70.5
+ pos: -0.5,-66.5
parent: 2
- uid: 5761
components:
- type: Transform
- pos: 0.5,-68.5
+ pos: -20.5,-70.5
parent: 2
- uid: 5762
components:
- type: Transform
- pos: 0.5,-69.5
+ pos: -3.5,-68.5
parent: 2
- uid: 5763
components:
- type: Transform
- pos: 0.5,-70.5
+ pos: -2.5,-68.5
parent: 2
- uid: 5766
components:
- type: Transform
- pos: 0.5,-71.5
+ pos: -1.5,-68.5
parent: 2
- uid: 5773
components:
- type: Transform
- pos: 0.5,-72.5
+ pos: -28.5,-74.5
parent: 2
- uid: 5774
components:
- type: Transform
- pos: -0.5,-68.5
+ pos: -27.5,-74.5
parent: 2
- uid: 5775
components:
- type: Transform
- pos: -0.5,-69.5
+ pos: -31.5,-74.5
parent: 2
- uid: 5776
components:
- type: Transform
- pos: -0.5,-71.5
+ pos: -30.5,-74.5
parent: 2
- uid: 5777
components:
- type: Transform
- pos: -0.5,-72.5
+ pos: -31.5,-73.5
parent: 2
- uid: 5779
components:
- type: Transform
- pos: -0.5,-70.5
+ pos: -31.5,-72.5
parent: 2
- uid: 5785
components:
- type: Transform
- pos: -1.5,-69.5
+ pos: -30.5,-73.5
parent: 2
- uid: 5786
components:
- type: Transform
- pos: -1.5,-70.5
+ pos: -30.5,-72.5
parent: 2
- uid: 5787
components:
- type: Transform
- pos: -1.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -69.5,22.5
parent: 2
- uid: 5788
components:
- type: Transform
- pos: -1.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,23.5
parent: 2
- uid: 5789
components:
- type: Transform
- pos: -2.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,24.5
parent: 2
- uid: 5790
components:
- type: Transform
- pos: -2.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,23.5
parent: 2
- uid: 5791
components:
- type: Transform
- pos: -2.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,22.5
parent: 2
- uid: 5794
components:
- type: Transform
- pos: -2.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,24.5
parent: 2
- uid: 5796
components:
- type: Transform
- pos: -3.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,22.5
parent: 2
- uid: 5797
components:
- type: Transform
- pos: -3.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,23.5
parent: 2
- uid: 5798
components:
- type: Transform
- pos: -3.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,22.5
parent: 2
- uid: 5799
components:
- type: Transform
- pos: -3.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,24.5
parent: 2
- uid: 5800
components:
- type: Transform
- pos: -3.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,23.5
parent: 2
- uid: 5801
components:
- type: Transform
- pos: -4.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,22.5
parent: 2
- uid: 5802
components:
- type: Transform
- pos: -4.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,21.5
parent: 2
- uid: 5803
components:
- type: Transform
- pos: -4.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,21.5
parent: 2
- uid: 5804
components:
- type: Transform
- pos: -4.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,21.5
parent: 2
- uid: 5805
components:
- type: Transform
- pos: -5.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,21.5
parent: 2
- uid: 5806
components:
- type: Transform
- pos: -5.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -75.5,21.5
parent: 2
- uid: 5807
components:
- type: Transform
- pos: -5.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -76.5,21.5
parent: 2
- uid: 5808
components:
- type: Transform
- pos: -5.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -77.5,21.5
parent: 2
- uid: 5809
components:
- type: Transform
- pos: -3.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -78.5,21.5
parent: 2
- uid: 5810
components:
- type: Transform
- pos: -4.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -79.5,21.5
parent: 2
- uid: 5811
components:
- type: Transform
- pos: -5.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -80.5,21.5
parent: 2
- uid: 5812
components:
- type: Transform
- pos: -6.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,22.5
parent: 2
- uid: 5813
components:
- type: Transform
- pos: -6.5,-69.5
+ pos: -48.5,-76.5
parent: 2
- uid: 5814
components:
- type: Transform
- pos: -6.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -78.5,20.5
parent: 2
- uid: 5815
components:
- type: Transform
- pos: -6.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -79.5,20.5
parent: 2
- uid: 5816
components:
- type: Transform
- pos: -6.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -80.5,20.5
parent: 2
- uid: 5817
components:
- type: Transform
- pos: -6.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -81.5,20.5
parent: 2
- uid: 5818
components:
- type: Transform
- pos: -7.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -82.5,20.5
parent: 2
- uid: 5819
components:
- type: Transform
- pos: -7.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -83.5,20.5
parent: 2
- uid: 5820
components:
- type: Transform
- pos: -7.5,-70.5
+ pos: -51.5,-75.5
parent: 2
- uid: 5821
components:
- type: Transform
- pos: -7.5,-71.5
+ pos: -51.5,-74.5
parent: 2
- uid: 5822
components:
- type: Transform
- pos: -7.5,-72.5
+ pos: -51.5,-73.5
parent: 2
- uid: 5823
components:
- type: Transform
- pos: -7.5,-73.5
+ pos: -50.5,-76.5
parent: 2
- uid: 5824
components:
- type: Transform
- pos: -8.5,-66.5
+ pos: -50.5,-75.5
parent: 2
- uid: 5825
components:
- type: Transform
- pos: -8.5,-69.5
+ pos: -50.5,-74.5
parent: 2
- uid: 5826
components:
- type: Transform
- pos: -8.5,-70.5
+ pos: -49.5,-76.5
parent: 2
- uid: 5827
components:
- type: Transform
- pos: -8.5,-71.5
+ pos: -50.5,-73.5
parent: 2
- uid: 5828
components:
- type: Transform
- pos: -8.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -83.5,19.5
parent: 2
- uid: 5829
components:
- type: Transform
- pos: -8.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -84.5,19.5
parent: 2
- uid: 5830
components:
- type: Transform
- pos: -9.5,-66.5
+ pos: -49.5,-75.5
parent: 2
- uid: 5831
components:
- type: Transform
- pos: -9.5,-69.5
+ pos: -49.5,-74.5
parent: 2
- uid: 5832
components:
- type: Transform
- pos: -9.5,-70.5
+ pos: -49.5,-73.5
parent: 2
- uid: 5833
components:
- type: Transform
- pos: -9.5,-71.5
+ pos: -57.5,-78.5
parent: 2
- uid: 5834
components:
- type: Transform
- pos: -9.5,-72.5
+ pos: -53.5,-75.5
parent: 2
- uid: 5835
components:
- type: Transform
- pos: -9.5,-73.5
+ pos: -53.5,-73.5
parent: 2
- uid: 5836
components:
- type: Transform
- pos: -10.5,-69.5
+ pos: -57.5,-77.5
parent: 2
- uid: 5837
components:
- type: Transform
- pos: -10.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,38.5
parent: 2
- uid: 5838
components:
- type: Transform
- pos: -10.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,39.5
parent: 2
- uid: 5842
components:
- type: Transform
- pos: -10.5,-72.5
+ pos: -53.5,-74.5
parent: 2
- uid: 5843
components:
- type: Transform
- pos: -10.5,-73.5
+ pos: -52.5,-76.5
parent: 2
- uid: 5844
components:
- type: Transform
- pos: -11.5,-70.5
+ pos: -52.5,-75.5
parent: 2
- uid: 5845
components:
- type: Transform
- pos: -11.5,-71.5
+ pos: -52.5,-74.5
parent: 2
- uid: 5846
components:
- type: Transform
- pos: -11.5,-72.5
+ pos: -51.5,-76.5
parent: 2
- uid: 5849
components:
- type: Transform
- pos: -11.5,-73.5
+ pos: -55.5,-77.5
parent: 2
- uid: 5850
components:
- type: Transform
- pos: -9.5,-74.5
+ pos: -52.5,-73.5
parent: 2
- uid: 5852
components:
- type: Transform
- pos: -10.5,-74.5
+ pos: -55.5,-75.5
parent: 2
- uid: 5853
components:
- type: Transform
- pos: -11.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,40.5
parent: 2
- uid: 5854
components:
- type: Transform
- pos: -12.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,39.5
parent: 2
- uid: 5859
components:
- type: Transform
- pos: -12.5,-73.5
+ pos: -55.5,-74.5
parent: 2
- uid: 5860
components:
- type: Transform
- pos: -13.5,-73.5
+ pos: -54.5,-77.5
parent: 2
- uid: 5861
components:
- type: Transform
- pos: -14.5,-74.5
+ pos: -55.5,-73.5
parent: 2
- uid: 5862
components:
- type: Transform
- pos: -13.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,41.5
parent: 2
- uid: 5867
components:
- type: Transform
- pos: -14.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,40.5
parent: 2
- uid: 5868
components:
- type: Transform
- pos: -16.5,-74.5
+ pos: -54.5,-76.5
parent: 2
- uid: 5869
components:
- type: Transform
- pos: -16.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,42.5
parent: 2
- uid: 5870
components:
- type: Transform
- pos: -15.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,41.5
parent: 2
- uid: 5871
components:
- type: Transform
- pos: -15.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,40.5
parent: 2
- uid: 5875
components:
- type: Transform
- pos: -17.5,-73.5
+ pos: -54.5,-75.5
parent: 2
- uid: 5876
components:
- type: Transform
- pos: -18.5,-74.5
+ pos: -54.5,-74.5
parent: 2
- uid: 5877
components:
- type: Transform
- pos: -17.5,-74.5
+ pos: -54.5,-73.5
parent: 2
- uid: 5878
components:
- type: Transform
- pos: -18.5,-73.5
+ pos: -53.5,-76.5
parent: 2
- uid: 5882
components:
- type: Transform
- pos: -19.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,42.5
parent: 2
- uid: 5883
components:
- type: Transform
- pos: -19.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,41.5
parent: 2
- uid: 5884
components:
- type: Transform
- pos: 5.5,-71.5
+ pos: -55.5,-76.5
parent: 2
- uid: 5885
components:
- type: Transform
- pos: 5.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,43.5
parent: 2
- uid: 5889
components:
- type: Transform
- pos: 5.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,42.5
parent: 2
- uid: 5890
components:
- type: Transform
- pos: 5.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,41.5
parent: 2
- uid: 5891
components:
- type: Transform
- pos: 5.5,-64.5
+ pos: -47.5,-78.5
parent: 2
- uid: 5892
components:
- type: Transform
- pos: 5.5,-63.5
+ pos: -53.5,-77.5
parent: 2
- uid: 5893
components:
- type: Transform
- pos: 6.5,-71.5
+ pos: -51.5,-77.5
parent: 2
- uid: 5894
components:
- type: Transform
- pos: 6.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,43.5
parent: 2
- uid: 5895
components:
- type: Transform
- pos: 6.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,42.5
parent: 2
- uid: 5896
components:
- type: Transform
- pos: 6.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,43.5
parent: 2
- uid: 5899
components:
- type: Transform
- pos: 7.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,44.5
parent: 2
- uid: 5900
components:
- type: Transform
- pos: 7.5,-63.5
+ pos: -52.5,-77.5
parent: 2
- uid: 5901
components:
- type: Transform
- pos: 7.5,-62.5
+ pos: -50.5,-77.5
parent: 2
- uid: 5902
components:
- type: Transform
- pos: 7.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,44.5
parent: 2
- uid: 5903
components:
- type: Transform
- pos: 7.5,-60.5
+ pos: -56.5,-77.5
parent: 2
- uid: 5904
components:
- type: Transform
- pos: 8.5,-64.5
+ pos: -49.5,-77.5
parent: 2
- uid: 5907
components:
- type: Transform
- pos: 8.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,45.5
parent: 2
- uid: 5908
components:
- type: Transform
- pos: 8.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,45.5
parent: 2
- uid: 5909
components:
- type: Transform
- pos: 8.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,45.5
parent: 2
- uid: 5910
components:
- type: Transform
- pos: 9.5,-65.5
+ pos: -19.5,-70.5
parent: 2
- uid: 5911
components:
- type: Transform
- pos: 9.5,-64.5
+ pos: -19.5,-72.5
parent: 2
- uid: 5912
components:
- type: Transform
- pos: 9.5,-63.5
+ pos: -17.5,-67.5
parent: 2
- uid: 5915
components:
- type: Transform
- pos: 9.5,-61.5
+ pos: -17.5,-70.5
parent: 2
- uid: 5916
components:
- type: Transform
- pos: 9.5,-60.5
+ pos: -17.5,-71.5
parent: 2
- uid: 5917
components:
- type: Transform
- pos: 10.5,-64.5
+ pos: -17.5,-72.5
parent: 2
- uid: 5918
components:
- type: Transform
- pos: 10.5,-65.5
+ pos: -17.5,-66.5
parent: 2
- uid: 5919
components:
- type: Transform
- pos: 10.5,-61.5
+ pos: -16.5,-67.5
parent: 2
- uid: 5920
components:
- type: Transform
- pos: 11.5,-70.5
+ pos: -16.5,-70.5
parent: 2
- uid: 5923
components:
- type: Transform
- pos: 10.5,-63.5
+ pos: -16.5,-66.5
parent: 2
- uid: 5924
components:
- type: Transform
- pos: 10.5,-62.5
+ pos: -16.5,-71.5
parent: 2
- uid: 5925
components:
- type: Transform
- pos: 11.5,-66.5
+ pos: -16.5,-72.5
parent: 2
- uid: 5926
components:
- type: Transform
- pos: 11.5,-65.5
+ pos: -15.5,-66.5
parent: 2
- uid: 5927
components:
- type: Transform
- pos: 11.5,-64.5
+ pos: -15.5,-67.5
parent: 2
- uid: 5929
components:
- type: Transform
- pos: 11.5,-63.5
+ pos: -15.5,-71.5
parent: 2
- uid: 5930
components:
- type: Transform
- pos: 12.5,-69.5
+ pos: -15.5,-72.5
parent: 2
- uid: 5931
components:
- type: Transform
- pos: 12.5,-68.5
+ pos: -14.5,-66.5
parent: 2
- uid: 5932
components:
- type: Transform
- pos: 12.5,-67.5
+ pos: -14.5,-67.5
parent: 2
- uid: 5933
components:
- type: Transform
- pos: 12.5,-66.5
+ pos: -14.5,-70.5
parent: 2
- uid: 5936
components:
- type: Transform
- pos: 12.5,-65.5
+ pos: -15.5,-70.5
parent: 2
- uid: 5937
components:
- type: Transform
- pos: 12.5,-64.5
+ pos: -13.5,-66.5
parent: 2
- uid: 5938
+ components:
+ - type: Transform
+ pos: -13.5,-67.5
+ parent: 2
+ - uid: 5939
+ components:
+ - type: Transform
+ pos: -14.5,-71.5
+ parent: 2
+ - uid: 5940
+ components:
+ - type: Transform
+ pos: -13.5,-70.5
+ parent: 2
+ - uid: 5941
+ components:
+ - type: Transform
+ pos: -13.5,-71.5
+ parent: 2
+ - uid: 5942
+ components:
+ - type: Transform
+ pos: -13.5,-72.5
+ parent: 2
+ - uid: 5943
+ components:
+ - type: Transform
+ pos: -12.5,-66.5
+ parent: 2
+ - uid: 5944
+ components:
+ - type: Transform
+ pos: -12.5,-70.5
+ parent: 2
+ - uid: 5945
+ components:
+ - type: Transform
+ pos: -12.5,-71.5
+ parent: 2
+ - uid: 5946
+ components:
+ - type: Transform
+ pos: -12.5,-72.5
+ parent: 2
+ - uid: 5947
+ components:
+ - type: Transform
+ pos: -14.5,-72.5
+ parent: 2
+ - uid: 5948
+ components:
+ - type: Transform
+ pos: -21.5,-64.5
+ parent: 2
+ - uid: 5949
+ components:
+ - type: Transform
+ pos: -20.5,-64.5
+ parent: 2
+ - uid: 5950
+ components:
+ - type: Transform
+ pos: -19.5,-64.5
+ parent: 2
+ - uid: 5951
+ components:
+ - type: Transform
+ pos: -19.5,-65.5
+ parent: 2
+ - uid: 5952
+ components:
+ - type: Transform
+ pos: -18.5,-64.5
+ parent: 2
+ - uid: 5953
+ components:
+ - type: Transform
+ pos: -18.5,-65.5
+ parent: 2
+ - uid: 5954
+ components:
+ - type: Transform
+ pos: -17.5,-64.5
+ parent: 2
+ - uid: 5955
+ components:
+ - type: Transform
+ pos: -17.5,-65.5
+ parent: 2
+ - uid: 5956
+ components:
+ - type: Transform
+ pos: -16.5,-64.5
+ parent: 2
+ - uid: 5957
+ components:
+ - type: Transform
+ pos: -16.5,-65.5
+ parent: 2
+ - uid: 5958
+ components:
+ - type: Transform
+ pos: -15.5,-65.5
+ parent: 2
+ - uid: 5959
+ components:
+ - type: Transform
+ pos: -15.5,-64.5
+ parent: 2
+ - uid: 5960
+ components:
+ - type: Transform
+ pos: -14.5,-65.5
+ parent: 2
+ - uid: 5961
+ components:
+ - type: Transform
+ pos: -14.5,-64.5
+ parent: 2
+ - uid: 5965
+ components:
+ - type: Transform
+ pos: -13.5,-64.5
+ parent: 2
+ - uid: 5966
+ components:
+ - type: Transform
+ pos: -13.5,-65.5
+ parent: 2
+ - uid: 5967
+ components:
+ - type: Transform
+ pos: -12.5,-64.5
+ parent: 2
+ - uid: 5968
+ components:
+ - type: Transform
+ pos: -12.5,-65.5
+ parent: 2
+ - uid: 5969
+ components:
+ - type: Transform
+ pos: -11.5,-64.5
+ parent: 2
+ - uid: 5974
+ components:
+ - type: Transform
+ pos: -11.5,-65.5
+ parent: 2
+ - uid: 5975
+ components:
+ - type: Transform
+ pos: -11.5,-66.5
+ parent: 2
+ - uid: 5983
+ components:
+ - type: Transform
+ pos: -10.5,-64.5
+ parent: 2
+ - uid: 5984
+ components:
+ - type: Transform
+ pos: -10.5,-65.5
+ parent: 2
+ - uid: 5985
+ components:
+ - type: Transform
+ pos: -10.5,-66.5
+ parent: 2
+ - uid: 5986
+ components:
+ - type: Transform
+ pos: -12.5,-63.5
+ parent: 2
+ - uid: 5987
+ components:
+ - type: Transform
+ pos: -11.5,-63.5
+ parent: 2
+ - uid: 5993
+ components:
+ - type: Transform
+ pos: -10.5,-63.5
+ parent: 2
+ - uid: 5994
+ components:
+ - type: Transform
+ pos: -9.5,-63.5
+ parent: 2
+ - uid: 5997
+ components:
+ - type: Transform
+ pos: -9.5,-64.5
+ parent: 2
+ - uid: 5998
+ components:
+ - type: Transform
+ pos: -9.5,-65.5
+ parent: 2
+ - uid: 6004
+ components:
+ - type: Transform
+ pos: -8.5,-63.5
+ parent: 2
+ - uid: 6005
+ components:
+ - type: Transform
+ pos: -8.5,-64.5
+ parent: 2
+ - uid: 6006
+ components:
+ - type: Transform
+ pos: -8.5,-65.5
+ parent: 2
+ - uid: 6008
+ components:
+ - type: Transform
+ pos: -7.5,-63.5
+ parent: 2
+ - uid: 6009
+ components:
+ - type: Transform
+ pos: -7.5,-65.5
+ parent: 2
+ - uid: 6015
+ components:
+ - type: Transform
+ pos: -6.5,-63.5
+ parent: 2
+ - uid: 6016
+ components:
+ - type: Transform
+ pos: -6.5,-64.5
+ parent: 2
+ - uid: 6017
+ components:
+ - type: Transform
+ pos: -6.5,-65.5
+ parent: 2
+ - uid: 6019
+ components:
+ - type: Transform
+ pos: -5.5,-63.5
+ parent: 2
+ - uid: 6021
+ components:
+ - type: Transform
+ pos: -5.5,-64.5
+ parent: 2
+ - uid: 6024
+ components:
+ - type: Transform
+ pos: -7.5,-64.5
+ parent: 2
+ - uid: 6025
+ components:
+ - type: Transform
+ pos: -5.5,-65.5
+ parent: 2
+ - uid: 6026
+ components:
+ - type: Transform
+ pos: -4.5,-64.5
+ parent: 2
+ - uid: 6027
+ components:
+ - type: Transform
+ pos: -4.5,-65.5
+ parent: 2
+ - uid: 6028
+ components:
+ - type: Transform
+ pos: -4.5,-63.5
+ parent: 2
+ - uid: 6034
+ components:
+ - type: Transform
+ pos: -5.5,-61.5
+ parent: 2
+ - uid: 6035
+ components:
+ - type: Transform
+ pos: -5.5,-62.5
+ parent: 2
+ - uid: 6036
+ components:
+ - type: Transform
+ pos: -4.5,-61.5
+ parent: 2
+ - uid: 6037
+ components:
+ - type: Transform
+ pos: -4.5,-62.5
+ parent: 2
+ - uid: 6038
+ components:
+ - type: Transform
+ pos: -3.5,-61.5
+ parent: 2
+ - uid: 6039
+ components:
+ - type: Transform
+ pos: -3.5,-62.5
+ parent: 2
+ - uid: 6041
+ components:
+ - type: Transform
+ pos: -3.5,-63.5
+ parent: 2
+ - uid: 6042
+ components:
+ - type: Transform
+ pos: -3.5,-64.5
+ parent: 2
+ - uid: 6046
+ components:
+ - type: Transform
+ pos: -2.5,-61.5
+ parent: 2
+ - uid: 6047
+ components:
+ - type: Transform
+ pos: -2.5,-63.5
+ parent: 2
+ - uid: 6048
+ components:
+ - type: Transform
+ pos: -2.5,-64.5
+ parent: 2
+ - uid: 6049
+ components:
+ - type: Transform
+ pos: -1.5,-61.5
+ parent: 2
+ - uid: 6050
+ components:
+ - type: Transform
+ pos: -1.5,-62.5
+ parent: 2
+ - uid: 6051
+ components:
+ - type: Transform
+ pos: -1.5,-63.5
+ parent: 2
+ - uid: 6057
+ components:
+ - type: Transform
+ pos: -2.5,-62.5
+ parent: 2
+ - uid: 6058
+ components:
+ - type: Transform
+ pos: -4.5,-56.5
+ parent: 2
+ - uid: 6059
+ components:
+ - type: Transform
+ pos: -4.5,-57.5
+ parent: 2
+ - uid: 6060
+ components:
+ - type: Transform
+ pos: -4.5,-58.5
+ parent: 2
+ - uid: 6061
+ components:
+ - type: Transform
+ pos: -4.5,-59.5
+ parent: 2
+ - uid: 6063
+ components:
+ - type: Transform
+ pos: -4.5,-60.5
+ parent: 2
+ - uid: 6070
+ components:
+ - type: Transform
+ pos: -3.5,-56.5
+ parent: 2
+ - uid: 6071
+ components:
+ - type: Transform
+ pos: -3.5,-57.5
+ parent: 2
+ - uid: 6072
+ components:
+ - type: Transform
+ pos: -3.5,-58.5
+ parent: 2
+ - uid: 6073
+ components:
+ - type: Transform
+ pos: -3.5,-59.5
+ parent: 2
+ - uid: 6074
+ components:
+ - type: Transform
+ pos: -3.5,-60.5
+ parent: 2
+ - uid: 6082
+ components:
+ - type: Transform
+ pos: -2.5,-56.5
+ parent: 2
+ - uid: 6083
+ components:
+ - type: Transform
+ pos: -2.5,-57.5
+ parent: 2
+ - uid: 6084
+ components:
+ - type: Transform
+ pos: -2.5,-58.5
+ parent: 2
+ - uid: 6094
+ components:
+ - type: Transform
+ pos: -2.5,-59.5
+ parent: 2
+ - uid: 6098
+ components:
+ - type: Transform
+ pos: -1.5,-56.5
+ parent: 2
+ - uid: 6126
+ components:
+ - type: Transform
+ pos: -1.5,-57.5
+ parent: 2
+ - uid: 6127
+ components:
+ - type: Transform
+ pos: -1.5,-58.5
+ parent: 2
+ - uid: 6128
+ components:
+ - type: Transform
+ pos: -1.5,-59.5
+ parent: 2
+ - uid: 6129
+ components:
+ - type: Transform
+ pos: -1.5,-60.5
+ parent: 2
+ - uid: 6133
+ components:
+ - type: Transform
+ pos: -2.5,-60.5
+ parent: 2
+ - uid: 6134
+ components:
+ - type: Transform
+ pos: -6.5,-62.5
+ parent: 2
+ - uid: 6135
+ components:
+ - type: Transform
+ pos: -1.5,-54.5
+ parent: 2
+ - uid: 6136
+ components:
+ - type: Transform
+ pos: -2.5,-55.5
+ parent: 2
+ - uid: 6137
+ components:
+ - type: Transform
+ pos: -2.5,-54.5
+ parent: 2
+ - uid: 6138
+ components:
+ - type: Transform
+ pos: -3.5,-54.5
+ parent: 2
+ - uid: 6141
+ components:
+ - type: Transform
+ pos: -3.5,-55.5
+ parent: 2
+ - uid: 6142
+ components:
+ - type: Transform
+ pos: -5.5,-48.5
+ parent: 2
+ - uid: 6147
+ components:
+ - type: Transform
+ pos: -6.5,-48.5
+ parent: 2
+ - uid: 6148
+ components:
+ - type: Transform
+ pos: -6.5,-49.5
+ parent: 2
+ - uid: 6152
+ components:
+ - type: Transform
+ pos: -5.5,-49.5
+ parent: 2
+ - uid: 6157
+ components:
+ - type: Transform
+ pos: -7.5,-48.5
+ parent: 2
+ - uid: 6158
+ components:
+ - type: Transform
+ pos: -7.5,-49.5
+ parent: 2
+ - uid: 6163
+ components:
+ - type: Transform
+ pos: -8.5,-48.5
+ parent: 2
+ - uid: 6165
+ components:
+ - type: Transform
+ pos: -5.5,-50.5
+ parent: 2
+ - uid: 6172
+ components:
+ - type: Transform
+ pos: -5.5,-51.5
+ parent: 2
+ - uid: 6182
+ components:
+ - type: Transform
+ pos: -7.5,-62.5
+ parent: 2
+ - uid: 6192
+ components:
+ - type: Transform
+ pos: 1.5,-58.5
+ parent: 2
+ - uid: 6193
+ components:
+ - type: Transform
+ pos: 1.5,-57.5
+ parent: 2
+ - uid: 6194
+ components:
+ - type: Transform
+ pos: 1.5,-56.5
+ parent: 2
+ - uid: 6195
+ components:
+ - type: Transform
+ pos: 1.5,-55.5
+ parent: 2
+ - uid: 6196
+ components:
+ - type: Transform
+ pos: 2.5,-55.5
+ parent: 2
+ - uid: 6197
+ components:
+ - type: Transform
+ pos: 2.5,-56.5
+ parent: 2
+ - uid: 6198
+ components:
+ - type: Transform
+ pos: 2.5,-57.5
+ parent: 2
+ - uid: 6199
+ components:
+ - type: Transform
+ pos: 2.5,-58.5
+ parent: 2
+ - uid: 6200
+ components:
+ - type: Transform
+ pos: 2.5,-61.5
+ parent: 2
+ - uid: 6201
+ components:
+ - type: Transform
+ pos: 3.5,-55.5
+ parent: 2
+ - uid: 6206
+ components:
+ - type: Transform
+ pos: 3.5,-56.5
+ parent: 2
+ - uid: 6207
+ components:
+ - type: Transform
+ pos: 3.5,-57.5
+ parent: 2
+ - uid: 6208
+ components:
+ - type: Transform
+ pos: 3.5,-58.5
+ parent: 2
+ - uid: 6215
+ components:
+ - type: Transform
+ pos: 3.5,-59.5
+ parent: 2
+ - uid: 6216
+ components:
+ - type: Transform
+ pos: 3.5,-61.5
+ parent: 2
+ - uid: 6223
+ components:
+ - type: Transform
+ pos: 4.5,-56.5
+ parent: 2
+ - uid: 6226
+ components:
+ - type: Transform
+ pos: 4.5,-55.5
+ parent: 2
+ - uid: 6227
+ components:
+ - type: Transform
+ pos: 4.5,-57.5
+ parent: 2
+ - uid: 6228
+ components:
+ - type: Transform
+ pos: 4.5,-58.5
+ parent: 2
+ - uid: 6229
+ components:
+ - type: Transform
+ pos: 4.5,-59.5
+ parent: 2
+ - uid: 6230
+ components:
+ - type: Transform
+ pos: 4.5,-60.5
+ parent: 2
+ - uid: 6231
+ components:
+ - type: Transform
+ pos: 4.5,-61.5
+ parent: 2
+ - uid: 6232
+ components:
+ - type: Transform
+ pos: 1.5,-61.5
+ parent: 2
+ - uid: 6233
+ components:
+ - type: Transform
+ pos: 1.5,-63.5
+ parent: 2
+ - uid: 6234
+ components:
+ - type: Transform
+ pos: 1.5,-64.5
+ parent: 2
+ - uid: 6235
+ components:
+ - type: Transform
+ pos: 2.5,-62.5
+ parent: 2
+ - uid: 6236
+ components:
+ - type: Transform
+ pos: 2.5,-63.5
+ parent: 2
+ - uid: 6237
+ components:
+ - type: Transform
+ pos: 2.5,-64.5
+ parent: 2
+ - uid: 6238
+ components:
+ - type: Transform
+ pos: 3.5,-62.5
+ parent: 2
+ - uid: 6239
+ components:
+ - type: Transform
+ pos: 3.5,-64.5
+ parent: 2
+ - uid: 6240
+ components:
+ - type: Transform
+ pos: 3.5,-63.5
+ parent: 2
+ - uid: 6241
+ components:
+ - type: Transform
+ pos: 4.5,-62.5
+ parent: 2
+ - uid: 6242
+ components:
+ - type: Transform
+ pos: 4.5,-63.5
+ parent: 2
+ - uid: 6243
+ components:
+ - type: Transform
+ pos: 4.5,-64.5
+ parent: 2
+ - uid: 6244
+ components:
+ - type: Transform
+ pos: 4.5,-65.5
+ parent: 2
+ - uid: 6245
+ components:
+ - type: Transform
+ pos: 4.5,-66.5
+ parent: 2
+ - uid: 6246
+ components:
+ - type: Transform
+ pos: 4.5,-68.5
+ parent: 2
+ - uid: 6247
+ components:
+ - type: Transform
+ pos: 4.5,-69.5
+ parent: 2
+ - uid: 6248
+ components:
+ - type: Transform
+ pos: 4.5,-70.5
+ parent: 2
+ - uid: 6249
+ components:
+ - type: Transform
+ pos: 4.5,-71.5
+ parent: 2
+ - uid: 6250
+ components:
+ - type: Transform
+ pos: 4.5,-72.5
+ parent: 2
+ - uid: 6251
+ components:
+ - type: Transform
+ pos: 3.5,-65.5
+ parent: 2
+ - uid: 6252
+ components:
+ - type: Transform
+ pos: 3.5,-66.5
+ parent: 2
+ - uid: 6253
+ components:
+ - type: Transform
+ pos: 3.5,-67.5
+ parent: 2
+ - uid: 6254
+ components:
+ - type: Transform
+ pos: 4.5,-67.5
+ parent: 2
+ - uid: 6255
+ components:
+ - type: Transform
+ pos: 3.5,-69.5
+ parent: 2
+ - uid: 6256
+ components:
+ - type: Transform
+ pos: 3.5,-68.5
+ parent: 2
+ - uid: 6257
+ components:
+ - type: Transform
+ pos: 3.5,-70.5
+ parent: 2
+ - uid: 6258
+ components:
+ - type: Transform
+ pos: 3.5,-71.5
+ parent: 2
+ - uid: 6259
+ components:
+ - type: Transform
+ pos: 3.5,-72.5
+ parent: 2
+ - uid: 6260
+ components:
+ - type: Transform
+ pos: 2.5,-65.5
+ parent: 2
+ - uid: 6261
+ components:
+ - type: Transform
+ pos: 2.5,-66.5
+ parent: 2
+ - uid: 6262
+ components:
+ - type: Transform
+ pos: 2.5,-68.5
+ parent: 2
+ - uid: 6263
+ components:
+ - type: Transform
+ pos: 2.5,-69.5
+ parent: 2
+ - uid: 6264
+ components:
+ - type: Transform
+ pos: 2.5,-70.5
+ parent: 2
+ - uid: 6265
+ components:
+ - type: Transform
+ pos: 2.5,-67.5
+ parent: 2
+ - uid: 6266
+ components:
+ - type: Transform
+ pos: 2.5,-72.5
+ parent: 2
+ - uid: 6267
+ components:
+ - type: Transform
+ pos: 2.5,-71.5
+ parent: 2
+ - uid: 6268
+ components:
+ - type: Transform
+ pos: 1.5,-65.5
+ parent: 2
+ - uid: 6269
+ components:
+ - type: Transform
+ pos: 1.5,-66.5
+ parent: 2
+ - uid: 6270
+ components:
+ - type: Transform
+ pos: 1.5,-69.5
+ parent: 2
+ - uid: 6271
+ components:
+ - type: Transform
+ pos: 1.5,-67.5
+ parent: 2
+ - uid: 6272
+ components:
+ - type: Transform
+ pos: 1.5,-68.5
+ parent: 2
+ - uid: 6273
+ components:
+ - type: Transform
+ pos: 1.5,-72.5
+ parent: 2
+ - uid: 6274
+ components:
+ - type: Transform
+ pos: 1.5,-71.5
+ parent: 2
+ - uid: 6275
+ components:
+ - type: Transform
+ pos: 1.5,-70.5
+ parent: 2
+ - uid: 6276
+ components:
+ - type: Transform
+ pos: 0.5,-68.5
+ parent: 2
+ - uid: 6277
+ components:
+ - type: Transform
+ pos: 0.5,-69.5
+ parent: 2
+ - uid: 6278
+ components:
+ - type: Transform
+ pos: 0.5,-70.5
+ parent: 2
+ - uid: 6279
+ components:
+ - type: Transform
+ pos: 0.5,-71.5
+ parent: 2
+ - uid: 6280
+ components:
+ - type: Transform
+ pos: 0.5,-72.5
+ parent: 2
+ - uid: 6281
+ components:
+ - type: Transform
+ pos: -0.5,-68.5
+ parent: 2
+ - uid: 6282
+ components:
+ - type: Transform
+ pos: -0.5,-69.5
+ parent: 2
+ - uid: 6283
+ components:
+ - type: Transform
+ pos: -0.5,-71.5
+ parent: 2
+ - uid: 6284
+ components:
+ - type: Transform
+ pos: -0.5,-72.5
+ parent: 2
+ - uid: 6285
+ components:
+ - type: Transform
+ pos: -0.5,-70.5
+ parent: 2
+ - uid: 6286
+ components:
+ - type: Transform
+ pos: -1.5,-69.5
+ parent: 2
+ - uid: 6287
+ components:
+ - type: Transform
+ pos: -1.5,-70.5
+ parent: 2
+ - uid: 6288
+ components:
+ - type: Transform
+ pos: -1.5,-71.5
+ parent: 2
+ - uid: 6289
+ components:
+ - type: Transform
+ pos: -1.5,-72.5
+ parent: 2
+ - uid: 6290
+ components:
+ - type: Transform
+ pos: -2.5,-69.5
+ parent: 2
+ - uid: 6291
+ components:
+ - type: Transform
+ pos: -2.5,-70.5
+ parent: 2
+ - uid: 6292
+ components:
+ - type: Transform
+ pos: -2.5,-71.5
+ parent: 2
+ - uid: 6293
+ components:
+ - type: Transform
+ pos: -2.5,-72.5
+ parent: 2
+ - uid: 6294
+ components:
+ - type: Transform
+ pos: -3.5,-65.5
+ parent: 2
+ - uid: 6295
+ components:
+ - type: Transform
+ pos: -3.5,-69.5
+ parent: 2
+ - uid: 6296
+ components:
+ - type: Transform
+ pos: -3.5,-70.5
+ parent: 2
+ - uid: 6297
+ components:
+ - type: Transform
+ pos: -3.5,-71.5
+ parent: 2
+ - uid: 6298
+ components:
+ - type: Transform
+ pos: -3.5,-72.5
+ parent: 2
+ - uid: 6299
+ components:
+ - type: Transform
+ pos: -4.5,-69.5
+ parent: 2
+ - uid: 6300
+ components:
+ - type: Transform
+ pos: -4.5,-70.5
+ parent: 2
+ - uid: 6301
+ components:
+ - type: Transform
+ pos: -4.5,-71.5
+ parent: 2
+ - uid: 6302
+ components:
+ - type: Transform
+ pos: -4.5,-72.5
+ parent: 2
+ - uid: 6303
+ components:
+ - type: Transform
+ pos: -5.5,-70.5
+ parent: 2
+ - uid: 6304
+ components:
+ - type: Transform
+ pos: -5.5,-71.5
+ parent: 2
+ - uid: 6305
+ components:
+ - type: Transform
+ pos: -5.5,-69.5
+ parent: 2
+ - uid: 6306
+ components:
+ - type: Transform
+ pos: -5.5,-72.5
+ parent: 2
+ - uid: 6307
+ components:
+ - type: Transform
+ pos: -3.5,-73.5
+ parent: 2
+ - uid: 6308
+ components:
+ - type: Transform
+ pos: -4.5,-73.5
+ parent: 2
+ - uid: 6309
+ components:
+ - type: Transform
+ pos: -5.5,-73.5
+ parent: 2
+ - uid: 6310
+ components:
+ - type: Transform
+ pos: -6.5,-66.5
+ parent: 2
+ - uid: 6311
+ components:
+ - type: Transform
+ pos: -6.5,-69.5
+ parent: 2
+ - uid: 6312
+ components:
+ - type: Transform
+ pos: -6.5,-70.5
+ parent: 2
+ - uid: 6313
+ components:
+ - type: Transform
+ pos: -6.5,-72.5
+ parent: 2
+ - uid: 6314
+ components:
+ - type: Transform
+ pos: -6.5,-73.5
+ parent: 2
+ - uid: 6315
+ components:
+ - type: Transform
+ pos: -6.5,-71.5
+ parent: 2
+ - uid: 6316
+ components:
+ - type: Transform
+ pos: -7.5,-66.5
+ parent: 2
+ - uid: 6317
+ components:
+ - type: Transform
+ pos: -7.5,-69.5
+ parent: 2
+ - uid: 6318
+ components:
+ - type: Transform
+ pos: -7.5,-70.5
+ parent: 2
+ - uid: 6319
+ components:
+ - type: Transform
+ pos: -7.5,-71.5
+ parent: 2
+ - uid: 6320
+ components:
+ - type: Transform
+ pos: -7.5,-72.5
+ parent: 2
+ - uid: 6321
+ components:
+ - type: Transform
+ pos: -7.5,-73.5
+ parent: 2
+ - uid: 6322
+ components:
+ - type: Transform
+ pos: -8.5,-66.5
+ parent: 2
+ - uid: 6323
+ components:
+ - type: Transform
+ pos: -8.5,-69.5
+ parent: 2
+ - uid: 6324
+ components:
+ - type: Transform
+ pos: -8.5,-70.5
+ parent: 2
+ - uid: 6325
+ components:
+ - type: Transform
+ pos: -8.5,-71.5
+ parent: 2
+ - uid: 6326
+ components:
+ - type: Transform
+ pos: -8.5,-72.5
+ parent: 2
+ - uid: 6327
+ components:
+ - type: Transform
+ pos: -8.5,-73.5
+ parent: 2
+ - uid: 6328
+ components:
+ - type: Transform
+ pos: -9.5,-66.5
+ parent: 2
+ - uid: 6329
+ components:
+ - type: Transform
+ pos: -9.5,-69.5
+ parent: 2
+ - uid: 6330
+ components:
+ - type: Transform
+ pos: -9.5,-70.5
+ parent: 2
+ - uid: 6331
+ components:
+ - type: Transform
+ pos: -9.5,-71.5
+ parent: 2
+ - uid: 6332
+ components:
+ - type: Transform
+ pos: -9.5,-72.5
+ parent: 2
+ - uid: 6333
+ components:
+ - type: Transform
+ pos: -9.5,-73.5
+ parent: 2
+ - uid: 6334
+ components:
+ - type: Transform
+ pos: -10.5,-69.5
+ parent: 2
+ - uid: 6335
+ components:
+ - type: Transform
+ pos: -10.5,-70.5
+ parent: 2
+ - uid: 6336
+ components:
+ - type: Transform
+ pos: -10.5,-71.5
+ parent: 2
+ - uid: 6337
+ components:
+ - type: Transform
+ pos: -10.5,-72.5
+ parent: 2
+ - uid: 6338
+ components:
+ - type: Transform
+ pos: -10.5,-73.5
+ parent: 2
+ - uid: 6339
+ components:
+ - type: Transform
+ pos: -11.5,-70.5
+ parent: 2
+ - uid: 6340
+ components:
+ - type: Transform
+ pos: -11.5,-71.5
+ parent: 2
+ - uid: 6341
+ components:
+ - type: Transform
+ pos: -11.5,-72.5
+ parent: 2
+ - uid: 6342
+ components:
+ - type: Transform
+ pos: -11.5,-73.5
+ parent: 2
+ - uid: 6343
+ components:
+ - type: Transform
+ pos: -9.5,-74.5
+ parent: 2
+ - uid: 6344
+ components:
+ - type: Transform
+ pos: -10.5,-74.5
+ parent: 2
+ - uid: 6345
+ components:
+ - type: Transform
+ pos: -11.5,-74.5
+ parent: 2
+ - uid: 6346
+ components:
+ - type: Transform
+ pos: -12.5,-74.5
+ parent: 2
+ - uid: 6347
+ components:
+ - type: Transform
+ pos: -12.5,-73.5
+ parent: 2
+ - uid: 6348
+ components:
+ - type: Transform
+ pos: -13.5,-73.5
+ parent: 2
+ - uid: 6349
+ components:
+ - type: Transform
+ pos: -14.5,-74.5
+ parent: 2
+ - uid: 6350
+ components:
+ - type: Transform
+ pos: -13.5,-74.5
+ parent: 2
+ - uid: 6351
+ components:
+ - type: Transform
+ pos: -14.5,-73.5
+ parent: 2
+ - uid: 6352
+ components:
+ - type: Transform
+ pos: -16.5,-74.5
+ parent: 2
+ - uid: 6353
+ components:
+ - type: Transform
+ pos: -16.5,-73.5
+ parent: 2
+ - uid: 6354
+ components:
+ - type: Transform
+ pos: -15.5,-74.5
+ parent: 2
+ - uid: 6355
+ components:
+ - type: Transform
+ pos: -15.5,-73.5
+ parent: 2
+ - uid: 6356
+ components:
+ - type: Transform
+ pos: -17.5,-73.5
+ parent: 2
+ - uid: 6357
+ components:
+ - type: Transform
+ pos: -18.5,-74.5
+ parent: 2
+ - uid: 6358
+ components:
+ - type: Transform
+ pos: -17.5,-74.5
+ parent: 2
+ - uid: 6359
+ components:
+ - type: Transform
+ pos: -18.5,-73.5
+ parent: 2
+ - uid: 6360
+ components:
+ - type: Transform
+ pos: -19.5,-74.5
+ parent: 2
+ - uid: 6361
+ components:
+ - type: Transform
+ pos: -19.5,-73.5
+ parent: 2
+ - uid: 6362
+ components:
+ - type: Transform
+ pos: 5.5,-71.5
+ parent: 2
+ - uid: 6363
+ components:
+ - type: Transform
+ pos: 5.5,-70.5
+ parent: 2
+ - uid: 6364
+ components:
+ - type: Transform
+ pos: 5.5,-69.5
+ parent: 2
+ - uid: 6365
+ components:
+ - type: Transform
+ pos: 5.5,-65.5
+ parent: 2
+ - uid: 6366
+ components:
+ - type: Transform
+ pos: 5.5,-64.5
+ parent: 2
+ - uid: 6367
+ components:
+ - type: Transform
+ pos: 5.5,-63.5
+ parent: 2
+ - uid: 6368
+ components:
+ - type: Transform
+ pos: 6.5,-71.5
+ parent: 2
+ - uid: 6369
+ components:
+ - type: Transform
+ pos: 6.5,-70.5
+ parent: 2
+ - uid: 6370
+ components:
+ - type: Transform
+ pos: 6.5,-64.5
+ parent: 2
+ - uid: 6371
+ components:
+ - type: Transform
+ pos: 6.5,-63.5
+ parent: 2
+ - uid: 6372
+ components:
+ - type: Transform
+ pos: 7.5,-64.5
+ parent: 2
+ - uid: 6373
+ components:
+ - type: Transform
+ pos: 7.5,-63.5
+ parent: 2
+ - uid: 6374
+ components:
+ - type: Transform
+ pos: 7.5,-62.5
+ parent: 2
+ - uid: 6375
+ components:
+ - type: Transform
+ pos: 7.5,-61.5
+ parent: 2
+ - uid: 6376
+ components:
+ - type: Transform
+ pos: 7.5,-60.5
+ parent: 2
+ - uid: 6377
+ components:
+ - type: Transform
+ pos: 8.5,-64.5
+ parent: 2
+ - uid: 6378
+ components:
+ - type: Transform
+ pos: 8.5,-63.5
+ parent: 2
+ - uid: 6379
+ components:
+ - type: Transform
+ pos: 8.5,-61.5
+ parent: 2
+ - uid: 6380
+ components:
+ - type: Transform
+ pos: 8.5,-60.5
+ parent: 2
+ - uid: 6381
+ components:
+ - type: Transform
+ pos: 9.5,-65.5
+ parent: 2
+ - uid: 6382
+ components:
+ - type: Transform
+ pos: 9.5,-64.5
+ parent: 2
+ - uid: 6383
+ components:
+ - type: Transform
+ pos: 9.5,-63.5
+ parent: 2
+ - uid: 6384
+ components:
+ - type: Transform
+ pos: 9.5,-61.5
+ parent: 2
+ - uid: 6385
+ components:
+ - type: Transform
+ pos: 9.5,-60.5
+ parent: 2
+ - uid: 6386
+ components:
+ - type: Transform
+ pos: 10.5,-64.5
+ parent: 2
+ - uid: 6387
+ components:
+ - type: Transform
+ pos: 10.5,-65.5
+ parent: 2
+ - uid: 6388
+ components:
+ - type: Transform
+ pos: 10.5,-61.5
+ parent: 2
+ - uid: 6389
+ components:
+ - type: Transform
+ pos: 11.5,-70.5
+ parent: 2
+ - uid: 6390
+ components:
+ - type: Transform
+ pos: 10.5,-63.5
+ parent: 2
+ - uid: 6391
+ components:
+ - type: Transform
+ pos: 10.5,-62.5
+ parent: 2
+ - uid: 6392
+ components:
+ - type: Transform
+ pos: 11.5,-66.5
+ parent: 2
+ - uid: 6393
+ components:
+ - type: Transform
+ pos: 11.5,-65.5
+ parent: 2
+ - uid: 6394
+ components:
+ - type: Transform
+ pos: 11.5,-64.5
+ parent: 2
+ - uid: 6395
+ components:
+ - type: Transform
+ pos: 11.5,-63.5
+ parent: 2
+ - uid: 6396
+ components:
+ - type: Transform
+ pos: 12.5,-69.5
+ parent: 2
+ - uid: 6397
+ components:
+ - type: Transform
+ pos: 12.5,-68.5
+ parent: 2
+ - uid: 6398
+ components:
+ - type: Transform
+ pos: 12.5,-67.5
+ parent: 2
+ - uid: 6399
+ components:
+ - type: Transform
+ pos: 12.5,-66.5
+ parent: 2
+ - uid: 6400
+ components:
+ - type: Transform
+ pos: 12.5,-65.5
+ parent: 2
+ - uid: 6401
+ components:
+ - type: Transform
+ pos: 12.5,-64.5
+ parent: 2
+ - uid: 6402
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -58.5,30.5
parent: 2
- - uid: 5939
+ - uid: 6403
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -58.5,29.5
parent: 2
- - uid: 5940
+ - uid: 6404
components:
- type: Transform
pos: 13.5,-68.5
parent: 2
- - uid: 5941
+ - uid: 6405
components:
- type: Transform
pos: 13.5,-67.5
parent: 2
- - uid: 5942
+ - uid: 6406
components:
- type: Transform
pos: 13.5,-66.5
parent: 2
- - uid: 5943
+ - uid: 6407
components:
- type: Transform
pos: 13.5,-69.5
parent: 2
- - uid: 5944
+ - uid: 6408
components:
- type: Transform
pos: 13.5,-65.5
parent: 2
- - uid: 5945
+ - uid: 6409
components:
- type: Transform
pos: 13.5,-64.5
parent: 2
- - uid: 5946
+ - uid: 6410
components:
- type: Transform
pos: 14.5,-69.5
parent: 2
- - uid: 5947
+ - uid: 6411
components:
- type: Transform
pos: 14.5,-68.5
parent: 2
- - uid: 5948
+ - uid: 6412
components:
- type: Transform
pos: 14.5,-67.5
parent: 2
- - uid: 5949
+ - uid: 6413
components:
- type: Transform
pos: 14.5,-66.5
parent: 2
- - uid: 5950
+ - uid: 6414
components:
- type: Transform
pos: 14.5,-65.5
parent: 2
- - uid: 5951
+ - uid: 6415
components:
- type: Transform
pos: 15.5,-69.5
parent: 2
- - uid: 5952
+ - uid: 6416
components:
- type: Transform
pos: 15.5,-68.5
parent: 2
- - uid: 5953
+ - uid: 6417
components:
- type: Transform
pos: 15.5,-67.5
parent: 2
- - uid: 5954
+ - uid: 6418
components:
- type: Transform
pos: 15.5,-66.5
parent: 2
- - uid: 5955
+ - uid: 6419
components:
- type: Transform
pos: 15.5,-65.5
parent: 2
- - uid: 5956
+ - uid: 6420
components:
- type: Transform
pos: 16.5,-67.5
parent: 2
- - uid: 5957
+ - uid: 6421
components:
- type: Transform
pos: 16.5,-66.5
parent: 2
- - uid: 5958
+ - uid: 6422
components:
- type: Transform
pos: 16.5,-65.5
parent: 2
- - uid: 5959
+ - uid: 6423
components:
- type: Transform
pos: 17.5,-65.5
parent: 2
- - uid: 5960
+ - uid: 6424
components:
- type: Transform
pos: 21.5,-60.5
parent: 2
- - uid: 5961
+ - uid: 6425
components:
- type: Transform
pos: 21.5,-59.5
parent: 2
- - uid: 5965
+ - uid: 6426
components:
- type: Transform
pos: 21.5,-58.5
parent: 2
- - uid: 5966
+ - uid: 6427
components:
- type: Transform
pos: 21.5,-57.5
parent: 2
- - uid: 5967
+ - uid: 6428
components:
- type: Transform
pos: 20.5,-60.5
parent: 2
- - uid: 5968
- components:
- - type: Transform
- pos: 20.5,-59.5
- parent: 2
- - uid: 5969
- components:
- - type: Transform
- pos: 20.5,-58.5
- parent: 2
- - uid: 5974
+ - uid: 6431
components:
- type: Transform
pos: 20.5,-57.5
parent: 2
- - uid: 5975
+ - uid: 6432
components:
- type: Transform
pos: 20.5,-56.5
parent: 2
- - uid: 5983
+ - uid: 6433
components:
- type: Transform
pos: 20.5,-55.5
parent: 2
- - uid: 5984
+ - uid: 6434
components:
- type: Transform
pos: 23.5,-59.5
parent: 2
- - uid: 5985
+ - uid: 6435
components:
- type: Transform
pos: 23.5,-60.5
parent: 2
- - uid: 5986
+ - uid: 6436
components:
- type: Transform
pos: 22.5,-61.5
parent: 2
- - uid: 5987
+ - uid: 6437
components:
- type: Transform
pos: 22.5,-60.5
parent: 2
- - uid: 5993
+ - uid: 6438
components:
- type: Transform
pos: 22.5,-59.5
parent: 2
- - uid: 5994
+ - uid: 6439
components:
- type: Transform
pos: 20.5,-54.5
parent: 2
- - uid: 5997
+ - uid: 6440
components:
- type: Transform
pos: 27.5,-60.5
parent: 2
- - uid: 5998
+ - uid: 6441
components:
- type: Transform
pos: 27.5,-59.5
parent: 2
- - uid: 6004
+ - uid: 6442
components:
- type: Transform
pos: 26.5,-60.5
parent: 2
- - uid: 6005
+ - uid: 6443
components:
- type: Transform
pos: 25.5,-60.5
parent: 2
- - uid: 6006
+ - uid: 6444
components:
- type: Transform
pos: 24.5,-60.5
parent: 2
- - uid: 6008
+ - uid: 6445
components:
- type: Transform
pos: 31.5,-59.5
parent: 2
- - uid: 6009
+ - uid: 6446
components:
- type: Transform
pos: 31.5,-57.5
parent: 2
- - uid: 6015
+ - uid: 6447
components:
- type: Transform
pos: 31.5,-58.5
parent: 2
- - uid: 6016
+ - uid: 6448
components:
- type: Transform
pos: 31.5,-55.5
parent: 2
- - uid: 6017
+ - uid: 6449
components:
- type: Transform
pos: 31.5,-54.5
parent: 2
- - uid: 6019
+ - uid: 6450
components:
- type: Transform
pos: 31.5,-53.5
parent: 2
- - uid: 6021
+ - uid: 6451
components:
- type: Transform
pos: 31.5,-56.5
parent: 2
- - uid: 6024
+ - uid: 6452
components:
- type: Transform
pos: 31.5,-52.5
parent: 2
- - uid: 6025
+ - uid: 6453
components:
- type: Transform
pos: 30.5,-59.5
parent: 2
- - uid: 6026
+ - uid: 6454
components:
- type: Transform
pos: 30.5,-58.5
parent: 2
- - uid: 6027
+ - uid: 6455
components:
- type: Transform
pos: 30.5,-53.5
parent: 2
- - uid: 6028
+ - uid: 6456
components:
- type: Transform
pos: 30.5,-52.5
parent: 2
- - uid: 6034
+ - uid: 6457
components:
- type: Transform
pos: 29.5,-59.5
parent: 2
- - uid: 6035
+ - uid: 6458
components:
- type: Transform
pos: 29.5,-52.5
parent: 2
- - uid: 6036
+ - uid: 6459
components:
- type: Transform
pos: 28.5,-59.5
parent: 2
- - uid: 6037
+ - uid: 6460
components:
- type: Transform
pos: 28.5,-52.5
parent: 2
- - uid: 6038
+ - uid: 6461
components:
- type: Transform
pos: 33.5,-58.5
parent: 2
- - uid: 6039
+ - uid: 6462
components:
- type: Transform
pos: 33.5,-57.5
parent: 2
- - uid: 6041
+ - uid: 6463
components:
- type: Transform
pos: 33.5,-56.5
parent: 2
- - uid: 6042
+ - uid: 6464
components:
- type: Transform
pos: 33.5,-55.5
parent: 2
- - uid: 6046
+ - uid: 6465
components:
- type: Transform
pos: 33.5,-54.5
parent: 2
- - uid: 6047
+ - uid: 6466
components:
- type: Transform
pos: 33.5,-53.5
parent: 2
- - uid: 6048
+ - uid: 6467
components:
- type: Transform
pos: 33.5,-52.5
parent: 2
- - uid: 6049
+ - uid: 6468
components:
- type: Transform
pos: 33.5,-51.5
parent: 2
- - uid: 6050
+ - uid: 6469
components:
- type: Transform
pos: 32.5,-58.5
parent: 2
- - uid: 6051
+ - uid: 6470
components:
- type: Transform
pos: 32.5,-57.5
parent: 2
- - uid: 6057
+ - uid: 6471
components:
- type: Transform
pos: 32.5,-56.5
parent: 2
- - uid: 6058
+ - uid: 6472
components:
- type: Transform
pos: 32.5,-55.5
parent: 2
- - uid: 6059
+ - uid: 6473
components:
- type: Transform
pos: 32.5,-54.5
parent: 2
- - uid: 6060
+ - uid: 6474
components:
- type: Transform
pos: 32.5,-53.5
parent: 2
- - uid: 6061
+ - uid: 6475
components:
- type: Transform
pos: 32.5,-52.5
parent: 2
- - uid: 6063
+ - uid: 6476
components:
- type: Transform
pos: 32.5,-51.5
parent: 2
- - uid: 6070
+ - uid: 6477
components:
- type: Transform
pos: 31.5,-51.5
parent: 2
- - uid: 6071
+ - uid: 6478
components:
- type: Transform
pos: 35.5,-57.5
parent: 2
- - uid: 6072
+ - uid: 6479
components:
- type: Transform
pos: 35.5,-56.5
parent: 2
- - uid: 6073
+ - uid: 6480
components:
- type: Transform
pos: 35.5,-55.5
parent: 2
- - uid: 6074
+ - uid: 6481
components:
- type: Transform
pos: 35.5,-54.5
parent: 2
- - uid: 6082
+ - uid: 6482
components:
- type: Transform
pos: 35.5,-53.5
parent: 2
- - uid: 6083
+ - uid: 6483
components:
- type: Transform
pos: 35.5,-52.5
parent: 2
- - uid: 6084
+ - uid: 6484
components:
- type: Transform
pos: 35.5,-51.5
parent: 2
- - uid: 6094
+ - uid: 6485
components:
- type: Transform
pos: 35.5,-50.5
parent: 2
- - uid: 6126
+ - uid: 6486
components:
- type: Transform
pos: 35.5,-49.5
parent: 2
- - uid: 6127
+ - uid: 6487
components:
- type: Transform
pos: 34.5,-57.5
parent: 2
- - uid: 6128
+ - uid: 6488
components:
- type: Transform
pos: 34.5,-56.5
parent: 2
- - uid: 6129
+ - uid: 6489
components:
- type: Transform
pos: 34.5,-55.5
parent: 2
- - uid: 6133
+ - uid: 6490
components:
- type: Transform
pos: 34.5,-54.5
parent: 2
- - uid: 6134
+ - uid: 6491
components:
- type: Transform
pos: 34.5,-52.5
parent: 2
- - uid: 6135
+ - uid: 6492
components:
- type: Transform
pos: 34.5,-51.5
parent: 2
- - uid: 6136
+ - uid: 6493
components:
- type: Transform
pos: 34.5,-50.5
parent: 2
- - uid: 6137
+ - uid: 6494
components:
- type: Transform
pos: 34.5,-49.5
parent: 2
- - uid: 6138
+ - uid: 6495
components:
- type: Transform
pos: 34.5,-53.5
parent: 2
- - uid: 6141
+ - uid: 6496
components:
- type: Transform
pos: 33.5,-50.5
parent: 2
- - uid: 6142
+ - uid: 6497
components:
- type: Transform
pos: 33.5,-49.5
parent: 2
- - uid: 6147
+ - uid: 6498
components:
- type: Transform
pos: 32.5,-49.5
parent: 2
- - uid: 6148
+ - uid: 6499
components:
- type: Transform
pos: 32.5,-50.5
parent: 2
- - uid: 6152
+ - uid: 6500
components:
- type: Transform
pos: 38.5,-55.5
parent: 2
- - uid: 6157
+ - uid: 6501
components:
- type: Transform
pos: 38.5,-54.5
parent: 2
- - uid: 6158
+ - uid: 6502
components:
- type: Transform
pos: 38.5,-53.5
parent: 2
- - uid: 6163
+ - uid: 6503
components:
- type: Transform
pos: 38.5,-52.5
parent: 2
- - uid: 6165
+ - uid: 6504
components:
- type: Transform
pos: 38.5,-51.5
parent: 2
- - uid: 6172
+ - uid: 6505
components:
- type: Transform
pos: 38.5,-50.5
parent: 2
- - uid: 6182
+ - uid: 6506
components:
- type: Transform
pos: 38.5,-49.5
parent: 2
- - uid: 6192
+ - uid: 6507
components:
- type: Transform
pos: 38.5,-48.5
parent: 2
- - uid: 6193
+ - uid: 6508
components:
- type: Transform
pos: 37.5,-55.5
parent: 2
- - uid: 6194
+ - uid: 6509
components:
- type: Transform
pos: 37.5,-54.5
parent: 2
- - uid: 6195
+ - uid: 6510
components:
- type: Transform
pos: 37.5,-52.5
parent: 2
- - uid: 6196
+ - uid: 6511
components:
- type: Transform
pos: 37.5,-51.5
parent: 2
- - uid: 6197
+ - uid: 6512
components:
- type: Transform
pos: 37.5,-50.5
parent: 2
- - uid: 6198
+ - uid: 6513
components:
- type: Transform
pos: 37.5,-49.5
parent: 2
- - uid: 6199
+ - uid: 6514
components:
- type: Transform
pos: 37.5,-48.5
parent: 2
- - uid: 6200
+ - uid: 6515
components:
- type: Transform
pos: 36.5,-55.5
parent: 2
- - uid: 6201
+ - uid: 6516
components:
- type: Transform
pos: 36.5,-54.5
parent: 2
- - uid: 6206
+ - uid: 6517
components:
- type: Transform
pos: 36.5,-53.5
parent: 2
- - uid: 6207
+ - uid: 6518
components:
- type: Transform
pos: 36.5,-52.5
parent: 2
- - uid: 6208
+ - uid: 6519
components:
- type: Transform
pos: 36.5,-51.5
parent: 2
- - uid: 6215
+ - uid: 6520
components:
- type: Transform
pos: 37.5,-53.5
parent: 2
- - uid: 6216
+ - uid: 6521
components:
- type: Transform
pos: 36.5,-49.5
parent: 2
- - uid: 6223
+ - uid: 6522
components:
- type: Transform
pos: 36.5,-48.5
parent: 2
- - uid: 6226
+ - uid: 6523
components:
- type: Transform
pos: 36.5,-50.5
parent: 2
- - uid: 6227
+ - uid: 6524
components:
- type: Transform
pos: 36.5,-56.5
parent: 2
- - uid: 6228
+ - uid: 6525
components:
- type: Transform
pos: 39.5,-54.5
parent: 2
- - uid: 6229
+ - uid: 6526
components:
- type: Transform
pos: 39.5,-53.5
parent: 2
- - uid: 6230
+ - uid: 6527
components:
- type: Transform
pos: 39.5,-52.5
parent: 2
- - uid: 6231
+ - uid: 6528
components:
- type: Transform
pos: 39.5,-51.5
parent: 2
- - uid: 6232
+ - uid: 6529
components:
- type: Transform
pos: 39.5,-50.5
parent: 2
- - uid: 6233
+ - uid: 6530
components:
- type: Transform
pos: 39.5,-49.5
parent: 2
- - uid: 6234
+ - uid: 6531
components:
- type: Transform
pos: 39.5,-48.5
parent: 2
- - uid: 6235
+ - uid: 6532
components:
- type: Transform
pos: 39.5,-47.5
parent: 2
- - uid: 6236
+ - uid: 6533
components:
- type: Transform
pos: 39.5,-46.5
parent: 2
- - uid: 6237
+ - uid: 6534
components:
- type: Transform
pos: 39.5,-45.5
parent: 2
- - uid: 6238
+ - uid: 6535
components:
- type: Transform
pos: 38.5,-47.5
parent: 2
- - uid: 6239
+ - uid: 6536
components:
- type: Transform
pos: 38.5,-46.5
parent: 2
- - uid: 6240
+ - uid: 6537
components:
- type: Transform
pos: 38.5,-45.5
parent: 2
- - uid: 6241
+ - uid: 6538
components:
- type: Transform
pos: 40.5,-51.5
parent: 2
- - uid: 6242
+ - uid: 6539
components:
- type: Transform
pos: 40.5,-49.5
parent: 2
- - uid: 6243
+ - uid: 6540
components:
- type: Transform
pos: 40.5,-48.5
parent: 2
- - uid: 6244
+ - uid: 6541
components:
- type: Transform
pos: 40.5,-47.5
parent: 2
- - uid: 6245
+ - uid: 6542
components:
- type: Transform
pos: 40.5,-46.5
parent: 2
- - uid: 6246
+ - uid: 6543
components:
- type: Transform
pos: 40.5,-45.5
parent: 2
- - uid: 6247
+ - uid: 6544
components:
- type: Transform
pos: 40.5,-44.5
parent: 2
- - uid: 6248
+ - uid: 6545
components:
- type: Transform
pos: 40.5,-50.5
parent: 2
- - uid: 6249
+ - uid: 6546
components:
- type: Transform
pos: 39.5,-44.5
parent: 2
- - uid: 6250
+ - uid: 6547
components:
- type: Transform
pos: 42.5,-50.5
parent: 2
- - uid: 6251
+ - uid: 6548
components:
- type: Transform
pos: 42.5,-49.5
parent: 2
- - uid: 6252
+ - uid: 6549
components:
- type: Transform
pos: 42.5,-48.5
parent: 2
- - uid: 6253
+ - uid: 6550
components:
- type: Transform
pos: 42.5,-47.5
parent: 2
- - uid: 6254
+ - uid: 6551
components:
- type: Transform
pos: 42.5,-46.5
parent: 2
- - uid: 6255
+ - uid: 6552
components:
- type: Transform
pos: 42.5,-44.5
parent: 2
- - uid: 6256
+ - uid: 6553
components:
- type: Transform
pos: 41.5,-50.5
parent: 2
- - uid: 6257
+ - uid: 6554
components:
- type: Transform
pos: 41.5,-49.5
parent: 2
- - uid: 6258
+ - uid: 6555
components:
- type: Transform
pos: 41.5,-48.5
parent: 2
- - uid: 6259
+ - uid: 6556
components:
- type: Transform
pos: 41.5,-47.5
parent: 2
- - uid: 6260
+ - uid: 6557
components:
- type: Transform
pos: 41.5,-46.5
parent: 2
- - uid: 6261
+ - uid: 6558
components:
- type: Transform
pos: 42.5,-45.5
parent: 2
- - uid: 6262
+ - uid: 6559
components:
- type: Transform
pos: 41.5,-44.5
parent: 2
- - uid: 6263
+ - uid: 6560
components:
- type: Transform
pos: 41.5,-45.5
parent: 2
- - uid: 6264
+ - uid: 6561
components:
- type: Transform
pos: 44.5,-49.5
parent: 2
- - uid: 6265
+ - uid: 6562
components:
- type: Transform
pos: 44.5,-47.5
parent: 2
- - uid: 6266
+ - uid: 6563
components:
- type: Transform
pos: 44.5,-46.5
parent: 2
- - uid: 6267
+ - uid: 6564
components:
- type: Transform
pos: 44.5,-48.5
parent: 2
- - uid: 6268
+ - uid: 6565
components:
- type: Transform
pos: 44.5,-45.5
parent: 2
- - uid: 6269
+ - uid: 6566
components:
- type: Transform
pos: 44.5,-44.5
parent: 2
- - uid: 6270
+ - uid: 6567
components:
- type: Transform
pos: 44.5,-43.5
parent: 2
- - uid: 6271
+ - uid: 6568
components:
- type: Transform
pos: 43.5,-49.5
parent: 2
- - uid: 6272
+ - uid: 6569
components:
- type: Transform
pos: 43.5,-48.5
parent: 2
- - uid: 6273
+ - uid: 6570
components:
- type: Transform
pos: 43.5,-47.5
parent: 2
- - uid: 6274
+ - uid: 6571
components:
- type: Transform
pos: 43.5,-46.5
parent: 2
- - uid: 6275
+ - uid: 6572
components:
- type: Transform
pos: 43.5,-45.5
parent: 2
- - uid: 6276
+ - uid: 6573
components:
- type: Transform
pos: 43.5,-44.5
parent: 2
- - uid: 6277
+ - uid: 6574
components:
- type: Transform
pos: 43.5,-43.5
parent: 2
- - uid: 6278
+ - uid: 6575
components:
- type: Transform
pos: 42.5,-43.5
parent: 2
- - uid: 6279
+ - uid: 6576
components:
- type: Transform
pos: 46.5,-48.5
parent: 2
- - uid: 6280
+ - uid: 6577
components:
- type: Transform
pos: 46.5,-47.5
parent: 2
- - uid: 6281
+ - uid: 6578
components:
- type: Transform
pos: 46.5,-46.5
parent: 2
- - uid: 6282
+ - uid: 6579
components:
- type: Transform
pos: 46.5,-45.5
parent: 2
- - uid: 6283
+ - uid: 6580
components:
- type: Transform
pos: 46.5,-44.5
parent: 2
- - uid: 6284
+ - uid: 6581
components:
- type: Transform
pos: 46.5,-43.5
parent: 2
- - uid: 6285
+ - uid: 6582
components:
- type: Transform
pos: 46.5,-42.5
parent: 2
- - uid: 6286
+ - uid: 6583
components:
- type: Transform
pos: 45.5,-48.5
parent: 2
- - uid: 6287
+ - uid: 6584
components:
- type: Transform
pos: 45.5,-47.5
parent: 2
- - uid: 6288
+ - uid: 6585
components:
- type: Transform
pos: 45.5,-46.5
parent: 2
- - uid: 6289
+ - uid: 6586
components:
- type: Transform
pos: 45.5,-45.5
parent: 2
- - uid: 6290
+ - uid: 6587
components:
- type: Transform
pos: 45.5,-44.5
parent: 2
- - uid: 6291
+ - uid: 6588
components:
- type: Transform
pos: 45.5,-43.5
parent: 2
- - uid: 6292
+ - uid: 6589
components:
- type: Transform
pos: 45.5,-42.5
parent: 2
- - uid: 6293
+ - uid: 6590
components:
- type: Transform
pos: 44.5,-42.5
parent: 2
- - uid: 6294
+ - uid: 6591
components:
- type: Transform
pos: 49.5,-47.5
parent: 2
- - uid: 6295
+ - uid: 6592
components:
- type: Transform
pos: 49.5,-46.5
parent: 2
- - uid: 6296
+ - uid: 6593
components:
- type: Transform
pos: 49.5,-45.5
parent: 2
- - uid: 6297
+ - uid: 6594
components:
- type: Transform
pos: 49.5,-44.5
parent: 2
- - uid: 6298
+ - uid: 6595
components:
- type: Transform
pos: 49.5,-43.5
parent: 2
- - uid: 6299
+ - uid: 6596
components:
- type: Transform
pos: 49.5,-42.5
parent: 2
- - uid: 6300
+ - uid: 6597
components:
- type: Transform
pos: 48.5,-47.5
parent: 2
- - uid: 6301
+ - uid: 6598
components:
- type: Transform
pos: 48.5,-45.5
parent: 2
- - uid: 6302
+ - uid: 6599
components:
- type: Transform
pos: 48.5,-44.5
parent: 2
- - uid: 6303
+ - uid: 6600
components:
- type: Transform
pos: 48.5,-43.5
parent: 2
- - uid: 6304
+ - uid: 6601
components:
- type: Transform
pos: 48.5,-46.5
parent: 2
- - uid: 6305
+ - uid: 6602
components:
- type: Transform
pos: 48.5,-42.5
parent: 2
- - uid: 6306
+ - uid: 6603
components:
- type: Transform
pos: 47.5,-46.5
parent: 2
- - uid: 6307
+ - uid: 6604
components:
- type: Transform
pos: 47.5,-45.5
parent: 2
- - uid: 6308
+ - uid: 6605
components:
- type: Transform
pos: 47.5,-44.5
parent: 2
- - uid: 6309
+ - uid: 6606
components:
- type: Transform
pos: 47.5,-43.5
parent: 2
- - uid: 6310
+ - uid: 6607
components:
- type: Transform
pos: 47.5,-47.5
parent: 2
- - uid: 6311
+ - uid: 6608
components:
- type: Transform
pos: 47.5,-42.5
parent: 2
- - uid: 6312
+ - uid: 6609
components:
- type: Transform
pos: 52.5,-46.5
parent: 2
- - uid: 6313
+ - uid: 6610
components:
- type: Transform
pos: 52.5,-45.5
parent: 2
- - uid: 6314
+ - uid: 6611
components:
- type: Transform
pos: 52.5,-44.5
parent: 2
- - uid: 6315
+ - uid: 6612
components:
- type: Transform
pos: 52.5,-43.5
parent: 2
- - uid: 6316
+ - uid: 6613
components:
- type: Transform
pos: 52.5,-42.5
parent: 2
- - uid: 6317
+ - uid: 6614
components:
- type: Transform
pos: 52.5,-41.5
parent: 2
- - uid: 6318
+ - uid: 6615
components:
- type: Transform
pos: 52.5,-40.5
parent: 2
- - uid: 6319
+ - uid: 6616
components:
- type: Transform
pos: 52.5,-39.5
parent: 2
- - uid: 6320
+ - uid: 6617
components:
- type: Transform
pos: 51.5,-46.5
parent: 2
- - uid: 6321
+ - uid: 6618
components:
- type: Transform
pos: 51.5,-44.5
parent: 2
- - uid: 6322
+ - uid: 6619
components:
- type: Transform
pos: 51.5,-43.5
parent: 2
- - uid: 6323
+ - uid: 6620
components:
- type: Transform
pos: 51.5,-42.5
parent: 2
- - uid: 6324
- components:
- - type: Transform
- pos: 51.5,-41.5
- parent: 2
- - uid: 6325
- components:
- - type: Transform
- pos: 51.5,-40.5
- parent: 2
- - uid: 6326
- components:
- - type: Transform
- pos: 50.5,-46.5
- parent: 2
- - uid: 6327
- components:
- - type: Transform
- pos: 51.5,-39.5
- parent: 2
- - uid: 6328
- components:
- - type: Transform
- pos: 51.5,-45.5
- parent: 2
- - uid: 6329
- components:
- - type: Transform
- pos: 50.5,-45.5
- parent: 2
- - uid: 6330
- components:
- - type: Transform
- pos: 50.5,-44.5
- parent: 2
- - uid: 6331
- components:
- - type: Transform
- pos: 50.5,-43.5
- parent: 2
- - uid: 6332
- components:
- - type: Transform
- pos: 50.5,-42.5
- parent: 2
- - uid: 6333
- components:
- - type: Transform
- pos: 50.5,-41.5
- parent: 2
- - uid: 6334
- components:
- - type: Transform
- pos: 50.5,-40.5
- parent: 2
- - uid: 6335
- components:
- - type: Transform
- pos: 50.5,-39.5
- parent: 2
- - uid: 6336
- components:
- - type: Transform
- pos: 49.5,-41.5
- parent: 2
- - uid: 6337
- components:
- - type: Transform
- pos: 49.5,-40.5
- parent: 2
- - uid: 6338
- components:
- - type: Transform
- pos: 49.5,-39.5
- parent: 2
- - uid: 6339
- components:
- - type: Transform
- pos: 48.5,-41.5
- parent: 2
- - uid: 6340
- components:
- - type: Transform
- pos: 48.5,-40.5
- parent: 2
- - uid: 6341
- components:
- - type: Transform
- pos: 48.5,-39.5
- parent: 2
- - uid: 6342
- components:
- - type: Transform
- pos: 54.5,-45.5
- parent: 2
- - uid: 6343
- components:
- - type: Transform
- pos: 54.5,-43.5
- parent: 2
- - uid: 6344
- components:
- - type: Transform
- pos: 54.5,-42.5
- parent: 2
- - uid: 6345
- components:
- - type: Transform
- pos: 54.5,-41.5
- parent: 2
- - uid: 6346
- components:
- - type: Transform
- pos: 54.5,-40.5
- parent: 2
- - uid: 6347
- components:
- - type: Transform
- pos: 54.5,-39.5
- parent: 2
- - uid: 6348
- components:
- - type: Transform
- pos: 54.5,-38.5
- parent: 2
- - uid: 6349
- components:
- - type: Transform
- pos: 54.5,-44.5
- parent: 2
- - uid: 6350
- components:
- - type: Transform
- pos: 53.5,-44.5
- parent: 2
- - uid: 6351
- components:
- - type: Transform
- pos: 53.5,-43.5
- parent: 2
- - uid: 6352
- components:
- - type: Transform
- pos: 53.5,-42.5
- parent: 2
- - uid: 6353
- components:
- - type: Transform
- pos: 53.5,-45.5
- parent: 2
- - uid: 6354
- components:
- - type: Transform
- pos: 53.5,-41.5
- parent: 2
- - uid: 6355
- components:
- - type: Transform
- pos: 53.5,-40.5
- parent: 2
- - uid: 6356
- components:
- - type: Transform
- pos: 53.5,-39.5
- parent: 2
- - uid: 6357
- components:
- - type: Transform
- pos: 53.5,-38.5
- parent: 2
- - uid: 6358
- components:
- - type: Transform
- pos: 52.5,-38.5
- parent: 2
- - uid: 6359
- components:
- - type: Transform
- pos: 51.5,-38.5
- parent: 2
- - uid: 6360
- components:
- - type: Transform
- pos: 50.5,-38.5
- parent: 2
- - uid: 6361
- components:
- - type: Transform
- pos: 56.5,-43.5
- parent: 2
- - uid: 6362
- components:
- - type: Transform
- pos: 56.5,-42.5
- parent: 2
- - uid: 6363
- components:
- - type: Transform
- pos: 56.5,-41.5
- parent: 2
- - uid: 6364
- components:
- - type: Transform
- pos: 56.5,-40.5
- parent: 2
- - uid: 6365
- components:
- - type: Transform
- pos: 56.5,-39.5
- parent: 2
- - uid: 6366
- components:
- - type: Transform
- pos: 56.5,-38.5
- parent: 2
- - uid: 6367
- components:
- - type: Transform
- pos: 56.5,-37.5
- parent: 2
- - uid: 6368
- components:
- - type: Transform
- pos: 55.5,-43.5
- parent: 2
- - uid: 6369
- components:
- - type: Transform
- pos: 55.5,-42.5
- parent: 2
- - uid: 6370
- components:
- - type: Transform
- pos: 55.5,-41.5
- parent: 2
- - uid: 6371
- components:
- - type: Transform
- pos: 55.5,-40.5
- parent: 2
- - uid: 6372
- components:
- - type: Transform
- pos: 55.5,-39.5
- parent: 2
- - uid: 6373
- components:
- - type: Transform
- pos: 55.5,-38.5
- parent: 2
- - uid: 6374
- components:
- - type: Transform
- pos: 55.5,-37.5
- parent: 2
- - uid: 6375
- components:
- - type: Transform
- pos: 55.5,-36.5
- parent: 2
- - uid: 6376
- components:
- - type: Transform
- pos: 56.5,-36.5
- parent: 2
- - uid: 6377
- components:
- - type: Transform
- pos: 54.5,-37.5
- parent: 2
- - uid: 6378
- components:
- - type: Transform
- pos: 54.5,-36.5
- parent: 2
- - uid: 6379
- components:
- - type: Transform
- pos: 57.5,-41.5
- parent: 2
- - uid: 6380
- components:
- - type: Transform
- pos: 57.5,-40.5
- parent: 2
- - uid: 6381
- components:
- - type: Transform
- pos: 57.5,-39.5
- parent: 2
- - uid: 6382
- components:
- - type: Transform
- pos: 57.5,-38.5
- parent: 2
- - uid: 6383
- components:
- - type: Transform
- pos: 57.5,-37.5
- parent: 2
- - uid: 6384
- components:
- - type: Transform
- pos: 57.5,-36.5
- parent: 2
- - uid: 6385
- components:
- - type: Transform
- pos: 57.5,-35.5
- parent: 2
- - uid: 6386
- components:
- - type: Transform
- pos: 57.5,-34.5
- parent: 2
- - uid: 6387
- components:
- - type: Transform
- pos: 57.5,-33.5
- parent: 2
- - uid: 6388
- components:
- - type: Transform
- pos: 56.5,-35.5
- parent: 2
- - uid: 6389
- components:
- - type: Transform
- pos: 56.5,-34.5
- parent: 2
- - uid: 6390
- components:
- - type: Transform
- pos: 56.5,-33.5
- parent: 2
- - uid: 6391
- components:
- - type: Transform
- pos: 58.5,-39.5
- parent: 2
- - uid: 6392
- components:
- - type: Transform
- pos: 58.5,-38.5
- parent: 2
- - uid: 6393
- components:
- - type: Transform
- pos: 58.5,-37.5
- parent: 2
- - uid: 6394
- components:
- - type: Transform
- pos: 58.5,-36.5
- parent: 2
- - uid: 6395
- components:
- - type: Transform
- pos: 58.5,-35.5
- parent: 2
- - uid: 6396
- components:
- - type: Transform
- pos: 58.5,-34.5
- parent: 2
- - uid: 6397
- components:
- - type: Transform
- pos: 58.5,-33.5
- parent: 2
- - uid: 6398
- components:
- - type: Transform
- pos: 58.5,-32.5
- parent: 2
- - uid: 6399
- components:
- - type: Transform
- pos: 58.5,-31.5
- parent: 2
- - uid: 6400
- components:
- - type: Transform
- pos: 58.5,-30.5
- parent: 2
- - uid: 6401
- components:
- - type: Transform
- pos: 57.5,-32.5
- parent: 2
- - uid: 6402
- components:
- - type: Transform
- pos: 57.5,-31.5
- parent: 2
- - uid: 6403
- components:
- - type: Transform
- pos: 57.5,-30.5
- parent: 2
- - uid: 6404
- components:
- - type: Transform
- pos: 57.5,-28.5
- parent: 2
- - uid: 6405
- components:
- - type: Transform
- pos: 57.5,-27.5
- parent: 2
- - uid: 6406
- components:
- - type: Transform
- pos: 56.5,-32.5
- parent: 2
- - uid: 6407
- components:
- - type: Transform
- pos: 56.5,-31.5
- parent: 2
- - uid: 6408
- components:
- - type: Transform
- pos: 56.5,-30.5
- parent: 2
- - uid: 6409
+ - uid: 6621
components:
- type: Transform
pos: 56.5,-28.5
parent: 2
- - uid: 6410
- components:
- - type: Transform
- pos: 56.5,-27.5
- parent: 2
- - uid: 6411
- components:
- - type: Transform
- pos: 55.5,-35.5
- parent: 2
- - uid: 6412
- components:
- - type: Transform
- pos: 56.5,-29.5
- parent: 2
- - uid: 6413
- components:
- - type: Transform
- pos: 55.5,-34.5
- parent: 2
- - uid: 6414
- components:
- - type: Transform
- pos: 55.5,-33.5
- parent: 2
- - uid: 6415
- components:
- - type: Transform
- pos: 57.5,-29.5
- parent: 2
- - uid: 6416
- components:
- - type: Transform
- pos: 55.5,-31.5
- parent: 2
- - uid: 6417
- components:
- - type: Transform
- pos: 55.5,-32.5
- parent: 2
- - uid: 6418
- components:
- - type: Transform
- pos: 55.5,-30.5
- parent: 2
- - uid: 6419
- components:
- - type: Transform
- pos: 55.5,-29.5
- parent: 2
- - uid: 6420
- components:
- - type: Transform
- pos: 55.5,-28.5
- parent: 2
- - uid: 6421
- components:
- - type: Transform
- pos: 55.5,-27.5
- parent: 2
- - uid: 6422
- components:
- - type: Transform
- pos: 54.5,-35.5
- parent: 2
- - uid: 6423
- components:
- - type: Transform
- pos: 54.5,-34.5
- parent: 2
- - uid: 6424
- components:
- - type: Transform
- pos: 54.5,-33.5
- parent: 2
- - uid: 6425
- components:
- - type: Transform
- pos: 54.5,-32.5
- parent: 2
- - uid: 6426
- components:
- - type: Transform
- pos: 54.5,-31.5
- parent: 2
- - uid: 6427
- components:
- - type: Transform
- pos: 54.5,-30.5
- parent: 2
- - uid: 6428
- components:
- - type: Transform
- pos: 54.5,-29.5
- parent: 2
- - uid: 6429
- components:
- - type: Transform
- pos: 54.5,-28.5
- parent: 2
- - uid: 6430
- components:
- - type: Transform
- pos: 54.5,-27.5
- parent: 2
- - uid: 6431
- components:
- - type: Transform
- pos: 53.5,-34.5
- parent: 2
- - uid: 6432
- components:
- - type: Transform
- pos: 53.5,-35.5
- parent: 2
- - uid: 6433
- components:
- - type: Transform
- pos: 53.5,-31.5
- parent: 2
- - uid: 6434
- components:
- - type: Transform
- pos: 53.5,-30.5
- parent: 2
- - uid: 6435
- components:
- - type: Transform
- pos: 53.5,-33.5
- parent: 2
- - uid: 6436
- components:
- - type: Transform
- pos: 53.5,-27.5
- parent: 2
- - uid: 6437
- components:
- - type: Transform
- pos: 52.5,-35.5
- parent: 2
- - uid: 6438
- components:
- - type: Transform
- pos: 53.5,-32.5
- parent: 2
- - uid: 6439
- components:
- - type: Transform
- pos: 52.5,-34.5
- parent: 2
- - uid: 6440
- components:
- - type: Transform
- pos: 53.5,-29.5
- parent: 2
- - uid: 6441
- components:
- - type: Transform
- pos: 52.5,-33.5
- parent: 2
- - uid: 6442
- components:
- - type: Transform
- pos: 52.5,-32.5
- parent: 2
- - uid: 6443
- components:
- - type: Transform
- pos: 52.5,-31.5
- parent: 2
- - uid: 6444
- components:
- - type: Transform
- pos: 52.5,-29.5
- parent: 2
- - uid: 6445
- components:
- - type: Transform
- pos: 52.5,-30.5
- parent: 2
- - uid: 6446
- components:
- - type: Transform
- pos: 52.5,-28.5
- parent: 2
- - uid: 6447
- components:
- - type: Transform
- pos: 52.5,-27.5
- parent: 2
- - uid: 6448
- components:
- - type: Transform
- pos: 51.5,-35.5
- parent: 2
- - uid: 6449
- components:
- - type: Transform
- pos: 51.5,-34.5
- parent: 2
- - uid: 6450
- components:
- - type: Transform
- pos: 51.5,-33.5
- parent: 2
- - uid: 6451
- components:
- - type: Transform
- pos: 51.5,-32.5
- parent: 2
- - uid: 6452
- components:
- - type: Transform
- pos: 51.5,-31.5
- parent: 2
- - uid: 6453
- components:
- - type: Transform
- pos: 51.5,-30.5
- parent: 2
- - uid: 6454
- components:
- - type: Transform
- pos: 51.5,-29.5
- parent: 2
- - uid: 6455
- components:
- - type: Transform
- pos: 51.5,-28.5
- parent: 2
- - uid: 6456
- components:
- - type: Transform
- pos: 51.5,-27.5
- parent: 2
- - uid: 6457
- components:
- - type: Transform
- pos: 50.5,-35.5
- parent: 2
- - uid: 6458
- components:
- - type: Transform
- pos: 50.5,-34.5
- parent: 2
- - uid: 6459
- components:
- - type: Transform
- pos: 50.5,-33.5
- parent: 2
- - uid: 6460
- components:
- - type: Transform
- pos: 50.5,-32.5
- parent: 2
- - uid: 6461
- components:
- - type: Transform
- pos: 50.5,-31.5
- parent: 2
- - uid: 6462
- components:
- - type: Transform
- pos: 50.5,-30.5
- parent: 2
- - uid: 6463
- components:
- - type: Transform
- pos: 50.5,-29.5
- parent: 2
- - uid: 6464
- components:
- - type: Transform
- pos: 50.5,-28.5
- parent: 2
- - uid: 6465
- components:
- - type: Transform
- pos: 50.5,-27.5
- parent: 2
- - uid: 6466
- components:
- - type: Transform
- pos: 53.5,-28.5
- parent: 2
- - uid: 6467
- components:
- - type: Transform
- pos: 56.5,-26.5
- parent: 2
- - uid: 6468
- components:
- - type: Transform
- pos: 56.5,-25.5
- parent: 2
- - uid: 6469
- components:
- - type: Transform
- pos: 56.5,-24.5
- parent: 2
- - uid: 6470
- components:
- - type: Transform
- pos: 56.5,-23.5
- parent: 2
- - uid: 6471
- components:
- - type: Transform
- pos: 56.5,-22.5
- parent: 2
- - uid: 6472
- components:
- - type: Transform
- pos: 56.5,-21.5
- parent: 2
- - uid: 6473
- components:
- - type: Transform
- pos: 55.5,-26.5
- parent: 2
- - uid: 6474
- components:
- - type: Transform
- pos: 55.5,-25.5
- parent: 2
- - uid: 6475
- components:
- - type: Transform
- pos: 55.5,-23.5
- parent: 2
- - uid: 6476
- components:
- - type: Transform
- pos: 55.5,-22.5
- parent: 2
- - uid: 6477
- components:
- - type: Transform
- pos: 55.5,-21.5
- parent: 2
- - uid: 6478
- components:
- - type: Transform
- pos: 55.5,-24.5
- parent: 2
- - uid: 6479
- components:
- - type: Transform
- pos: 54.5,-25.5
- parent: 2
- - uid: 6480
- components:
- - type: Transform
- pos: 54.5,-24.5
- parent: 2
- - uid: 6481
- components:
- - type: Transform
- pos: 54.5,-23.5
- parent: 2
- - uid: 6482
- components:
- - type: Transform
- pos: 54.5,-22.5
- parent: 2
- - uid: 6483
- components:
- - type: Transform
- pos: 54.5,-21.5
- parent: 2
- - uid: 6484
- components:
- - type: Transform
- pos: 54.5,-26.5
- parent: 2
- - uid: 6485
- components:
- - type: Transform
- pos: 53.5,-26.5
- parent: 2
- - uid: 6486
- components:
- - type: Transform
- pos: 53.5,-25.5
- parent: 2
- - uid: 6487
- components:
- - type: Transform
- pos: 53.5,-24.5
- parent: 2
- - uid: 6488
- components:
- - type: Transform
- pos: 53.5,-23.5
- parent: 2
- - uid: 6489
- components:
- - type: Transform
- pos: 53.5,-22.5
- parent: 2
- - uid: 6490
- components:
- - type: Transform
- pos: 53.5,-21.5
- parent: 2
- - uid: 6491
- components:
- - type: Transform
- pos: 52.5,-26.5
- parent: 2
- - uid: 6492
- components:
- - type: Transform
- pos: 52.5,-25.5
- parent: 2
- - uid: 6493
- components:
- - type: Transform
- pos: 52.5,-24.5
- parent: 2
- - uid: 6494
- components:
- - type: Transform
- pos: 52.5,-23.5
- parent: 2
- - uid: 6495
- components:
- - type: Transform
- pos: 52.5,-22.5
- parent: 2
- - uid: 6496
- components:
- - type: Transform
- pos: 52.5,-21.5
- parent: 2
- - uid: 6497
- components:
- - type: Transform
- pos: 51.5,-26.5
- parent: 2
- - uid: 6498
- components:
- - type: Transform
- pos: 51.5,-25.5
- parent: 2
- - uid: 6499
- components:
- - type: Transform
- pos: 51.5,-24.5
- parent: 2
- - uid: 6500
- components:
- - type: Transform
- pos: 51.5,-23.5
- parent: 2
- - uid: 6501
- components:
- - type: Transform
- pos: 51.5,-22.5
- parent: 2
- - uid: 6502
- components:
- - type: Transform
- pos: 51.5,-21.5
- parent: 2
- - uid: 6503
- components:
- - type: Transform
- pos: 51.5,-15.5
- parent: 2
- - uid: 6504
- components:
- - type: Transform
- pos: 51.5,-16.5
- parent: 2
- - uid: 6505
- components:
- - type: Transform
- pos: 51.5,-17.5
- parent: 2
- - uid: 6506
- components:
- - type: Transform
- pos: 51.5,-18.5
- parent: 2
- - uid: 6507
- components:
- - type: Transform
- pos: 51.5,-19.5
- parent: 2
- - uid: 6508
- components:
- - type: Transform
- pos: 51.5,-20.5
- parent: 2
- - uid: 6509
- components:
- - type: Transform
- pos: 52.5,-15.5
- parent: 2
- - uid: 6510
- components:
- - type: Transform
- pos: 52.5,-16.5
- parent: 2
- - uid: 6511
- components:
- - type: Transform
- pos: 52.5,-17.5
- parent: 2
- - uid: 6512
- components:
- - type: Transform
- pos: 52.5,-18.5
- parent: 2
- - uid: 6513
- components:
- - type: Transform
- pos: 52.5,-19.5
- parent: 2
- - uid: 6514
- components:
- - type: Transform
- pos: 52.5,-20.5
- parent: 2
- - uid: 6515
- components:
- - type: Transform
- pos: 53.5,-15.5
- parent: 2
- - uid: 6516
- components:
- - type: Transform
- pos: 53.5,-17.5
- parent: 2
- - uid: 6517
- components:
- - type: Transform
- pos: 53.5,-18.5
- parent: 2
- - uid: 6518
- components:
- - type: Transform
- pos: 53.5,-19.5
- parent: 2
- - uid: 6519
- components:
- - type: Transform
- pos: 53.5,-20.5
- parent: 2
- - uid: 6520
- components:
- - type: Transform
- pos: 53.5,-16.5
- parent: 2
- - uid: 6521
- components:
- - type: Transform
- pos: 54.5,-15.5
- parent: 2
- - uid: 6522
- components:
- - type: Transform
- pos: 54.5,-16.5
- parent: 2
- - uid: 6523
- components:
- - type: Transform
- pos: 54.5,-17.5
- parent: 2
- - uid: 6524
- components:
- - type: Transform
- pos: 54.5,-18.5
- parent: 2
- - uid: 6525
- components:
- - type: Transform
- pos: 54.5,-19.5
- parent: 2
- - uid: 6526
- components:
- - type: Transform
- pos: 54.5,-20.5
- parent: 2
- - uid: 6527
- components:
- - type: Transform
- pos: 55.5,-16.5
- parent: 2
- - uid: 6528
- components:
- - type: Transform
- pos: 55.5,-18.5
- parent: 2
- - uid: 6529
- components:
- - type: Transform
- pos: 55.5,-19.5
- parent: 2
- - uid: 6530
- components:
- - type: Transform
- pos: 55.5,-20.5
- parent: 2
- - uid: 6531
- components:
- - type: Transform
- pos: 55.5,-17.5
- parent: 2
- - uid: 6532
- components:
- - type: Transform
- pos: 55.5,-15.5
- parent: 2
- - uid: 6533
- components:
- - type: Transform
- pos: 53.5,-14.5
- parent: 2
- - uid: 6534
- components:
- - type: Transform
- pos: 53.5,-13.5
- parent: 2
- - uid: 6535
- components:
- - type: Transform
- pos: 53.5,-12.5
- parent: 2
- - uid: 6536
- components:
- - type: Transform
- pos: 53.5,-11.5
- parent: 2
- - uid: 6537
- components:
- - type: Transform
- pos: 53.5,-10.5
- parent: 2
- - uid: 6538
- components:
- - type: Transform
- pos: 54.5,-14.5
- parent: 2
- - uid: 6539
- components:
- - type: Transform
- pos: 54.5,-13.5
- parent: 2
- - uid: 6540
- components:
- - type: Transform
- pos: 54.5,-12.5
- parent: 2
- - uid: 6541
- components:
- - type: Transform
- pos: 54.5,-11.5
- parent: 2
- - uid: 6542
- components:
- - type: Transform
- pos: 54.5,-10.5
- parent: 2
- - uid: 6543
- components:
- - type: Transform
- pos: 55.5,-14.5
- parent: 2
- - uid: 6544
- components:
- - type: Transform
- pos: 55.5,-13.5
- parent: 2
- - uid: 6545
- components:
- - type: Transform
- pos: 55.5,-12.5
- parent: 2
- - uid: 6546
- components:
- - type: Transform
- pos: 55.5,-11.5
- parent: 2
- - uid: 6547
- components:
- - type: Transform
- pos: 55.5,-10.5
- parent: 2
- - uid: 6548
- components:
- - type: Transform
- pos: 56.5,-17.5
- parent: 2
- - uid: 6549
- components:
- - type: Transform
- pos: 56.5,-16.5
- parent: 2
- - uid: 6550
- components:
- - type: Transform
- pos: 56.5,-15.5
- parent: 2
- - uid: 6551
- components:
- - type: Transform
- pos: 56.5,-14.5
- parent: 2
- - uid: 6552
- components:
- - type: Transform
- pos: 56.5,-13.5
- parent: 2
- - uid: 6553
- components:
- - type: Transform
- pos: 56.5,-12.5
- parent: 2
- - uid: 6554
- components:
- - type: Transform
- pos: 56.5,-11.5
- parent: 2
- - uid: 6555
- components:
- - type: Transform
- pos: 56.5,-10.5
- parent: 2
- - uid: 6556
- components:
- - type: Transform
- pos: 56.5,-9.5
- parent: 2
- - uid: 6557
- components:
- - type: Transform
- pos: 56.5,-8.5
- parent: 2
- - uid: 6558
- components:
- - type: Transform
- pos: 56.5,-7.5
- parent: 2
- - uid: 6559
- components:
- - type: Transform
- pos: 56.5,-6.5
- parent: 2
- - uid: 6560
- components:
- - type: Transform
- pos: 56.5,-5.5
- parent: 2
- - uid: 6561
- components:
- - type: Transform
- pos: 56.5,-4.5
- parent: 2
- - uid: 6562
- components:
- - type: Transform
- pos: 56.5,-3.5
- parent: 2
- - uid: 6563
- components:
- - type: Transform
- pos: 57.5,-13.5
- parent: 2
- - uid: 6564
- components:
- - type: Transform
- pos: 57.5,-12.5
- parent: 2
- - uid: 6565
- components:
- - type: Transform
- pos: 57.5,-11.5
- parent: 2
- - uid: 6566
- components:
- - type: Transform
- pos: 57.5,-10.5
- parent: 2
- - uid: 6567
- components:
- - type: Transform
- pos: 57.5,-8.5
- parent: 2
- - uid: 6568
- components:
- - type: Transform
- pos: 57.5,-7.5
- parent: 2
- - uid: 6569
- components:
- - type: Transform
- pos: 57.5,-6.5
- parent: 2
- - uid: 6570
- components:
- - type: Transform
- pos: 57.5,-5.5
- parent: 2
- - uid: 6571
- components:
- - type: Transform
- pos: 57.5,-9.5
- parent: 2
- - uid: 6572
- components:
- - type: Transform
- pos: 57.5,-4.5
- parent: 2
- - uid: 6573
- components:
- - type: Transform
- pos: 57.5,-3.5
- parent: 2
- - uid: 6574
- components:
- - type: Transform
- pos: 58.5,-12.5
- parent: 2
- - uid: 6575
- components:
- - type: Transform
- pos: 58.5,-13.5
- parent: 2
- - uid: 6576
- components:
- - type: Transform
- pos: 58.5,-11.5
- parent: 2
- - uid: 6577
- components:
- - type: Transform
- pos: 58.5,-10.5
- parent: 2
- - uid: 6578
- components:
- - type: Transform
- pos: 58.5,-9.5
- parent: 2
- - uid: 6579
- components:
- - type: Transform
- pos: 58.5,-8.5
- parent: 2
- - uid: 6580
- components:
- - type: Transform
- pos: 58.5,-7.5
- parent: 2
- - uid: 6581
- components:
- - type: Transform
- pos: 58.5,-6.5
- parent: 2
- - uid: 6582
- components:
- - type: Transform
- pos: 58.5,-5.5
- parent: 2
- - uid: 6583
- components:
- - type: Transform
- pos: 58.5,-4.5
- parent: 2
- - uid: 6584
- components:
- - type: Transform
- pos: 58.5,-3.5
- parent: 2
- - uid: 6585
- components:
- - type: Transform
- pos: 59.5,-13.5
- parent: 2
- - uid: 6586
- components:
- - type: Transform
- pos: 59.5,-12.5
- parent: 2
- - uid: 6587
- components:
- - type: Transform
- pos: 59.5,-11.5
- parent: 2
- - uid: 6588
- components:
- - type: Transform
- pos: 59.5,-10.5
- parent: 2
- - uid: 6589
- components:
- - type: Transform
- pos: 59.5,-9.5
- parent: 2
- - uid: 6590
- components:
- - type: Transform
- pos: 59.5,-8.5
- parent: 2
- - uid: 6591
- components:
- - type: Transform
- pos: 59.5,-7.5
- parent: 2
- - uid: 6592
- components:
- - type: Transform
- pos: 59.5,-6.5
- parent: 2
- - uid: 6593
- components:
- - type: Transform
- pos: 59.5,-5.5
- parent: 2
- - uid: 6594
- components:
- - type: Transform
- pos: 59.5,-4.5
- parent: 2
- - uid: 6595
- components:
- - type: Transform
- pos: 59.5,-3.5
- parent: 2
- - uid: 6596
- components:
- - type: Transform
- pos: 57.5,-14.5
- parent: 2
- - uid: 6597
- components:
- - type: Transform
- pos: 59.5,-2.5
- parent: 2
- - uid: 6598
- components:
- - type: Transform
- pos: 59.5,-1.5
- parent: 2
- - uid: 6599
- components:
- - type: Transform
- pos: 59.5,-0.5
- parent: 2
- - uid: 6600
- components:
- - type: Transform
- pos: 60.5,-11.5
- parent: 2
- - uid: 6601
- components:
- - type: Transform
- pos: 60.5,-10.5
- parent: 2
- - uid: 6602
- components:
- - type: Transform
- pos: 60.5,-9.5
- parent: 2
- - uid: 6603
- components:
- - type: Transform
- pos: 60.5,-7.5
- parent: 2
- - uid: 6604
- components:
- - type: Transform
- pos: 60.5,-8.5
- parent: 2
- - uid: 6605
- components:
- - type: Transform
- pos: 60.5,-5.5
- parent: 2
- - uid: 6606
- components:
- - type: Transform
- pos: 60.5,-4.5
- parent: 2
- - uid: 6607
- components:
- - type: Transform
- pos: 60.5,-3.5
- parent: 2
- - uid: 6608
- components:
- - type: Transform
- pos: 60.5,-2.5
- parent: 2
- - uid: 6609
- components:
- - type: Transform
- pos: 60.5,-6.5
- parent: 2
- - uid: 6610
- components:
- - type: Transform
- pos: 60.5,-0.5
- parent: 2
- - uid: 6611
- components:
- - type: Transform
- pos: 61.5,-11.5
- parent: 2
- - uid: 6612
- components:
- - type: Transform
- pos: 61.5,-10.5
- parent: 2
- - uid: 6613
- components:
- - type: Transform
- pos: 60.5,-1.5
- parent: 2
- - uid: 6614
- components:
- - type: Transform
- pos: 61.5,-7.5
- parent: 2
- - uid: 6615
- components:
- - type: Transform
- pos: 61.5,-6.5
- parent: 2
- - uid: 6616
- components:
- - type: Transform
- pos: 61.5,-5.5
- parent: 2
- - uid: 6617
- components:
- - type: Transform
- pos: 61.5,-9.5
- parent: 2
- - uid: 6618
- components:
- - type: Transform
- pos: 61.5,-8.5
- parent: 2
- - uid: 6619
- components:
- - type: Transform
- pos: 61.5,-4.5
- parent: 2
- - uid: 6620
- components:
- - type: Transform
- pos: 61.5,-3.5
- parent: 2
- - uid: 6621
- components:
- - type: Transform
- pos: 61.5,-2.5
- parent: 2
- uid: 6622
components:
- type: Transform
- pos: 61.5,-1.5
+ pos: 51.5,-41.5
parent: 2
- uid: 6623
components:
- type: Transform
- pos: 61.5,-0.5
+ pos: 51.5,-40.5
parent: 2
- uid: 6624
+ components:
+ - type: Transform
+ pos: 55.5,-27.5
+ parent: 2
+ - uid: 6625
+ components:
+ - type: Transform
+ pos: 50.5,-46.5
+ parent: 2
+ - uid: 6626
+ components:
+ - type: Transform
+ pos: 54.5,-31.5
+ parent: 2
+ - uid: 6627
+ components:
+ - type: Transform
+ pos: 56.5,-29.5
+ parent: 2
+ - uid: 6628
+ components:
+ - type: Transform
+ pos: 51.5,-39.5
+ parent: 2
+ - uid: 6629
+ components:
+ - type: Transform
+ pos: 55.5,-32.5
+ parent: 2
+ - uid: 6630
+ components:
+ - type: Transform
+ pos: 51.5,-45.5
+ parent: 2
+ - uid: 6631
+ components:
+ - type: Transform
+ pos: 50.5,-45.5
+ parent: 2
+ - uid: 6632
+ components:
+ - type: Transform
+ pos: 54.5,-28.5
+ parent: 2
+ - uid: 6633
+ components:
+ - type: Transform
+ pos: 50.5,-44.5
+ parent: 2
+ - uid: 6634
+ components:
+ - type: Transform
+ pos: 50.5,-43.5
+ parent: 2
+ - uid: 6635
+ components:
+ - type: Transform
+ pos: 50.5,-42.5
+ parent: 2
+ - uid: 6636
+ components:
+ - type: Transform
+ pos: 50.5,-41.5
+ parent: 2
+ - uid: 6637
+ components:
+ - type: Transform
+ pos: 50.5,-40.5
+ parent: 2
+ - uid: 6638
+ components:
+ - type: Transform
+ pos: 50.5,-39.5
+ parent: 2
+ - uid: 6639
+ components:
+ - type: Transform
+ pos: 49.5,-41.5
+ parent: 2
+ - uid: 6640
+ components:
+ - type: Transform
+ pos: 49.5,-40.5
+ parent: 2
+ - uid: 6641
+ components:
+ - type: Transform
+ pos: 49.5,-39.5
+ parent: 2
+ - uid: 6642
+ components:
+ - type: Transform
+ pos: 48.5,-41.5
+ parent: 2
+ - uid: 6643
+ components:
+ - type: Transform
+ pos: 48.5,-40.5
+ parent: 2
+ - uid: 6644
+ components:
+ - type: Transform
+ pos: 48.5,-39.5
+ parent: 2
+ - uid: 6645
+ components:
+ - type: Transform
+ pos: 54.5,-45.5
+ parent: 2
+ - uid: 6646
+ components:
+ - type: Transform
+ pos: 54.5,-43.5
+ parent: 2
+ - uid: 6647
+ components:
+ - type: Transform
+ pos: 54.5,-42.5
+ parent: 2
+ - uid: 6648
+ components:
+ - type: Transform
+ pos: 54.5,-41.5
+ parent: 2
+ - uid: 6649
+ components:
+ - type: Transform
+ pos: 54.5,-40.5
+ parent: 2
+ - uid: 6650
+ components:
+ - type: Transform
+ pos: 54.5,-39.5
+ parent: 2
+ - uid: 6651
+ components:
+ - type: Transform
+ pos: 54.5,-38.5
+ parent: 2
+ - uid: 6652
+ components:
+ - type: Transform
+ pos: 54.5,-44.5
+ parent: 2
+ - uid: 6653
+ components:
+ - type: Transform
+ pos: 53.5,-44.5
+ parent: 2
+ - uid: 6654
+ components:
+ - type: Transform
+ pos: 53.5,-43.5
+ parent: 2
+ - uid: 6655
+ components:
+ - type: Transform
+ pos: 53.5,-42.5
+ parent: 2
+ - uid: 6656
+ components:
+ - type: Transform
+ pos: 53.5,-45.5
+ parent: 2
+ - uid: 6657
+ components:
+ - type: Transform
+ pos: 53.5,-41.5
+ parent: 2
+ - uid: 6658
+ components:
+ - type: Transform
+ pos: 53.5,-40.5
+ parent: 2
+ - uid: 6659
+ components:
+ - type: Transform
+ pos: 53.5,-39.5
+ parent: 2
+ - uid: 6660
+ components:
+ - type: Transform
+ pos: 53.5,-38.5
+ parent: 2
+ - uid: 6661
+ components:
+ - type: Transform
+ pos: 52.5,-38.5
+ parent: 2
+ - uid: 6662
+ components:
+ - type: Transform
+ pos: 51.5,-38.5
+ parent: 2
+ - uid: 6663
+ components:
+ - type: Transform
+ pos: 50.5,-38.5
+ parent: 2
+ - uid: 6664
+ components:
+ - type: Transform
+ pos: 56.5,-43.5
+ parent: 2
+ - uid: 6665
+ components:
+ - type: Transform
+ pos: 56.5,-42.5
+ parent: 2
+ - uid: 6666
+ components:
+ - type: Transform
+ pos: 56.5,-41.5
+ parent: 2
+ - uid: 6667
+ components:
+ - type: Transform
+ pos: 56.5,-40.5
+ parent: 2
+ - uid: 6668
+ components:
+ - type: Transform
+ pos: 56.5,-39.5
+ parent: 2
+ - uid: 6669
+ components:
+ - type: Transform
+ pos: 56.5,-38.5
+ parent: 2
+ - uid: 6670
+ components:
+ - type: Transform
+ pos: 56.5,-37.5
+ parent: 2
+ - uid: 6671
+ components:
+ - type: Transform
+ pos: 55.5,-43.5
+ parent: 2
+ - uid: 6672
+ components:
+ - type: Transform
+ pos: 55.5,-42.5
+ parent: 2
+ - uid: 6673
+ components:
+ - type: Transform
+ pos: 55.5,-41.5
+ parent: 2
+ - uid: 6674
+ components:
+ - type: Transform
+ pos: 55.5,-40.5
+ parent: 2
+ - uid: 6675
+ components:
+ - type: Transform
+ pos: 55.5,-39.5
+ parent: 2
+ - uid: 6676
+ components:
+ - type: Transform
+ pos: 55.5,-38.5
+ parent: 2
+ - uid: 6677
+ components:
+ - type: Transform
+ pos: 55.5,-37.5
+ parent: 2
+ - uid: 6678
+ components:
+ - type: Transform
+ pos: 55.5,-36.5
+ parent: 2
+ - uid: 6679
+ components:
+ - type: Transform
+ pos: 56.5,-36.5
+ parent: 2
+ - uid: 6680
+ components:
+ - type: Transform
+ pos: 54.5,-37.5
+ parent: 2
+ - uid: 6681
+ components:
+ - type: Transform
+ pos: 54.5,-36.5
+ parent: 2
+ - uid: 6682
+ components:
+ - type: Transform
+ pos: 57.5,-41.5
+ parent: 2
+ - uid: 6683
+ components:
+ - type: Transform
+ pos: 57.5,-40.5
+ parent: 2
+ - uid: 6684
+ components:
+ - type: Transform
+ pos: 57.5,-39.5
+ parent: 2
+ - uid: 6685
+ components:
+ - type: Transform
+ pos: 57.5,-38.5
+ parent: 2
+ - uid: 6686
+ components:
+ - type: Transform
+ pos: 57.5,-37.5
+ parent: 2
+ - uid: 6687
+ components:
+ - type: Transform
+ pos: 57.5,-36.5
+ parent: 2
+ - uid: 6688
+ components:
+ - type: Transform
+ pos: 57.5,-35.5
+ parent: 2
+ - uid: 6689
+ components:
+ - type: Transform
+ pos: 57.5,-34.5
+ parent: 2
+ - uid: 6690
+ components:
+ - type: Transform
+ pos: 57.5,-33.5
+ parent: 2
+ - uid: 6691
+ components:
+ - type: Transform
+ pos: 56.5,-35.5
+ parent: 2
+ - uid: 6845
+ components:
+ - type: Transform
+ pos: 56.5,-34.5
+ parent: 2
+ - uid: 6869
+ components:
+ - type: Transform
+ pos: 56.5,-33.5
+ parent: 2
+ - uid: 6893
+ components:
+ - type: Transform
+ pos: 58.5,-39.5
+ parent: 2
+ - uid: 6917
+ components:
+ - type: Transform
+ pos: 58.5,-38.5
+ parent: 2
+ - uid: 6918
+ components:
+ - type: Transform
+ pos: 58.5,-37.5
+ parent: 2
+ - uid: 6923
+ components:
+ - type: Transform
+ pos: 58.5,-36.5
+ parent: 2
+ - uid: 6924
+ components:
+ - type: Transform
+ pos: 58.5,-35.5
+ parent: 2
+ - uid: 6941
+ components:
+ - type: Transform
+ pos: 58.5,-34.5
+ parent: 2
+ - uid: 7061
+ components:
+ - type: Transform
+ pos: 58.5,-33.5
+ parent: 2
+ - uid: 7080
+ components:
+ - type: Transform
+ pos: 58.5,-32.5
+ parent: 2
+ - uid: 7085
+ components:
+ - type: Transform
+ pos: 58.5,-31.5
+ parent: 2
+ - uid: 7086
+ components:
+ - type: Transform
+ pos: 58.5,-30.5
+ parent: 2
+ - uid: 7087
+ components:
+ - type: Transform
+ pos: 57.5,-32.5
+ parent: 2
+ - uid: 7088
+ components:
+ - type: Transform
+ pos: 54.5,-35.5
+ parent: 2
+ - uid: 7107
+ components:
+ - type: Transform
+ pos: 54.5,-34.5
+ parent: 2
+ - uid: 7108
+ components:
+ - type: Transform
+ pos: 56.5,-27.5
+ parent: 2
+ - uid: 7109
+ components:
+ - type: Transform
+ pos: 57.5,-31.5
+ parent: 2
+ - uid: 7110
+ components:
+ - type: Transform
+ pos: 55.5,-34.5
+ parent: 2
+ - uid: 7128
+ components:
+ - type: Transform
+ pos: 55.5,-33.5
+ parent: 2
+ - uid: 7129
+ components:
+ - type: Transform
+ pos: 55.5,-30.5
+ parent: 2
+ - uid: 7130
+ components:
+ - type: Transform
+ pos: 57.5,-30.5
+ parent: 2
+ - uid: 7131
+ components:
+ - type: Transform
+ pos: 57.5,-28.5
+ parent: 2
+ - uid: 7148
+ components:
+ - type: Transform
+ pos: 57.5,-27.5
+ parent: 2
+ - uid: 7150
+ components:
+ - type: Transform
+ pos: 56.5,-32.5
+ parent: 2
+ - uid: 7151
+ components:
+ - type: Transform
+ pos: 56.5,-31.5
+ parent: 2
+ - uid: 7158
+ components:
+ - type: Transform
+ pos: 56.5,-30.5
+ parent: 2
+ - uid: 7171
+ components:
+ - type: Transform
+ pos: 54.5,-27.5
+ parent: 2
+ - uid: 7172
+ components:
+ - type: Transform
+ pos: 54.5,-30.5
+ parent: 2
+ - uid: 7174
+ components:
+ - type: Transform
+ pos: 57.5,-29.5
+ parent: 2
+ - uid: 7178
+ components:
+ - type: Transform
+ pos: 55.5,-29.5
+ parent: 2
+ - uid: 7179
+ components:
+ - type: Transform
+ pos: 54.5,-33.5
+ parent: 2
+ - uid: 7180
+ components:
+ - type: Transform
+ pos: 55.5,-35.5
+ parent: 2
+ - uid: 7181
+ components:
+ - type: Transform
+ pos: 55.5,-31.5
+ parent: 2
+ - uid: 7182
+ components:
+ - type: Transform
+ pos: 55.5,-28.5
+ parent: 2
+ - uid: 7183
+ components:
+ - type: Transform
+ pos: 54.5,-32.5
+ parent: 2
+ - uid: 7184
+ components:
+ - type: Transform
+ pos: 54.5,-29.5
+ parent: 2
+ - uid: 7185
+ components:
+ - type: Transform
+ pos: 53.5,-34.5
+ parent: 2
+ - uid: 7186
+ components:
+ - type: Transform
+ pos: 53.5,-35.5
+ parent: 2
+ - uid: 7187
+ components:
+ - type: Transform
+ pos: 53.5,-31.5
+ parent: 2
+ - uid: 7188
+ components:
+ - type: Transform
+ pos: 53.5,-30.5
+ parent: 2
+ - uid: 7189
+ components:
+ - type: Transform
+ pos: 53.5,-33.5
+ parent: 2
+ - uid: 7190
+ components:
+ - type: Transform
+ pos: 53.5,-27.5
+ parent: 2
+ - uid: 7191
+ components:
+ - type: Transform
+ pos: 52.5,-35.5
+ parent: 2
+ - uid: 7192
+ components:
+ - type: Transform
+ pos: 53.5,-32.5
+ parent: 2
+ - uid: 7194
+ components:
+ - type: Transform
+ pos: 52.5,-34.5
+ parent: 2
+ - uid: 7199
+ components:
+ - type: Transform
+ pos: 53.5,-29.5
+ parent: 2
+ - uid: 7200
+ components:
+ - type: Transform
+ pos: 52.5,-33.5
+ parent: 2
+ - uid: 7201
+ components:
+ - type: Transform
+ pos: 52.5,-32.5
+ parent: 2
+ - uid: 7202
+ components:
+ - type: Transform
+ pos: 52.5,-31.5
+ parent: 2
+ - uid: 7203
+ components:
+ - type: Transform
+ pos: 52.5,-29.5
+ parent: 2
+ - uid: 7204
+ components:
+ - type: Transform
+ pos: 52.5,-30.5
+ parent: 2
+ - uid: 7205
+ components:
+ - type: Transform
+ pos: 52.5,-28.5
+ parent: 2
+ - uid: 7206
+ components:
+ - type: Transform
+ pos: 52.5,-27.5
+ parent: 2
+ - uid: 7207
+ components:
+ - type: Transform
+ pos: 51.5,-35.5
+ parent: 2
+ - uid: 7208
+ components:
+ - type: Transform
+ pos: 51.5,-34.5
+ parent: 2
+ - uid: 7209
+ components:
+ - type: Transform
+ pos: 51.5,-33.5
+ parent: 2
+ - uid: 7210
+ components:
+ - type: Transform
+ pos: 51.5,-32.5
+ parent: 2
+ - uid: 7211
+ components:
+ - type: Transform
+ pos: 51.5,-31.5
+ parent: 2
+ - uid: 7212
+ components:
+ - type: Transform
+ pos: 51.5,-30.5
+ parent: 2
+ - uid: 7213
+ components:
+ - type: Transform
+ pos: 51.5,-29.5
+ parent: 2
+ - uid: 7214
+ components:
+ - type: Transform
+ pos: 51.5,-28.5
+ parent: 2
+ - uid: 7219
+ components:
+ - type: Transform
+ pos: 51.5,-27.5
+ parent: 2
+ - uid: 7220
+ components:
+ - type: Transform
+ pos: 50.5,-35.5
+ parent: 2
+ - uid: 7221
+ components:
+ - type: Transform
+ pos: 50.5,-34.5
+ parent: 2
+ - uid: 7222
+ components:
+ - type: Transform
+ pos: 50.5,-33.5
+ parent: 2
+ - uid: 7223
+ components:
+ - type: Transform
+ pos: 50.5,-32.5
+ parent: 2
+ - uid: 7224
+ components:
+ - type: Transform
+ pos: 50.5,-31.5
+ parent: 2
+ - uid: 7225
+ components:
+ - type: Transform
+ pos: 50.5,-30.5
+ parent: 2
+ - uid: 7226
+ components:
+ - type: Transform
+ pos: 50.5,-29.5
+ parent: 2
+ - uid: 7227
+ components:
+ - type: Transform
+ pos: 50.5,-28.5
+ parent: 2
+ - uid: 7228
+ components:
+ - type: Transform
+ pos: 50.5,-27.5
+ parent: 2
+ - uid: 7229
+ components:
+ - type: Transform
+ pos: 53.5,-28.5
+ parent: 2
+ - uid: 7230
+ components:
+ - type: Transform
+ pos: 56.5,-26.5
+ parent: 2
+ - uid: 7231
+ components:
+ - type: Transform
+ pos: 56.5,-25.5
+ parent: 2
+ - uid: 7232
+ components:
+ - type: Transform
+ pos: 56.5,-24.5
+ parent: 2
+ - uid: 7233
+ components:
+ - type: Transform
+ pos: 56.5,-23.5
+ parent: 2
+ - uid: 7234
+ components:
+ - type: Transform
+ pos: 56.5,-22.5
+ parent: 2
+ - uid: 7236
+ components:
+ - type: Transform
+ pos: 56.5,-21.5
+ parent: 2
+ - uid: 7237
+ components:
+ - type: Transform
+ pos: 55.5,-26.5
+ parent: 2
+ - uid: 7238
+ components:
+ - type: Transform
+ pos: 55.5,-25.5
+ parent: 2
+ - uid: 7239
+ components:
+ - type: Transform
+ pos: 55.5,-23.5
+ parent: 2
+ - uid: 7240
+ components:
+ - type: Transform
+ pos: 55.5,-22.5
+ parent: 2
+ - uid: 7241
+ components:
+ - type: Transform
+ pos: 55.5,-21.5
+ parent: 2
+ - uid: 7242
+ components:
+ - type: Transform
+ pos: 55.5,-24.5
+ parent: 2
+ - uid: 7243
+ components:
+ - type: Transform
+ pos: 54.5,-25.5
+ parent: 2
+ - uid: 7244
+ components:
+ - type: Transform
+ pos: 54.5,-24.5
+ parent: 2
+ - uid: 7245
+ components:
+ - type: Transform
+ pos: 54.5,-23.5
+ parent: 2
+ - uid: 7246
+ components:
+ - type: Transform
+ pos: 54.5,-22.5
+ parent: 2
+ - uid: 7247
+ components:
+ - type: Transform
+ pos: 54.5,-21.5
+ parent: 2
+ - uid: 7248
+ components:
+ - type: Transform
+ pos: 54.5,-26.5
+ parent: 2
+ - uid: 7249
+ components:
+ - type: Transform
+ pos: 53.5,-26.5
+ parent: 2
+ - uid: 7250
+ components:
+ - type: Transform
+ pos: 53.5,-25.5
+ parent: 2
+ - uid: 7251
+ components:
+ - type: Transform
+ pos: 53.5,-24.5
+ parent: 2
+ - uid: 7252
+ components:
+ - type: Transform
+ pos: 53.5,-23.5
+ parent: 2
+ - uid: 7253
+ components:
+ - type: Transform
+ pos: 53.5,-22.5
+ parent: 2
+ - uid: 7254
+ components:
+ - type: Transform
+ pos: 53.5,-21.5
+ parent: 2
+ - uid: 7255
+ components:
+ - type: Transform
+ pos: 52.5,-26.5
+ parent: 2
+ - uid: 7256
+ components:
+ - type: Transform
+ pos: 52.5,-25.5
+ parent: 2
+ - uid: 7257
+ components:
+ - type: Transform
+ pos: 52.5,-24.5
+ parent: 2
+ - uid: 7258
+ components:
+ - type: Transform
+ pos: 52.5,-23.5
+ parent: 2
+ - uid: 7259
+ components:
+ - type: Transform
+ pos: 52.5,-22.5
+ parent: 2
+ - uid: 7260
+ components:
+ - type: Transform
+ pos: 52.5,-21.5
+ parent: 2
+ - uid: 7261
+ components:
+ - type: Transform
+ pos: 51.5,-26.5
+ parent: 2
+ - uid: 7262
+ components:
+ - type: Transform
+ pos: 51.5,-25.5
+ parent: 2
+ - uid: 7263
+ components:
+ - type: Transform
+ pos: 51.5,-24.5
+ parent: 2
+ - uid: 7265
+ components:
+ - type: Transform
+ pos: 51.5,-23.5
+ parent: 2
+ - uid: 7266
+ components:
+ - type: Transform
+ pos: 51.5,-22.5
+ parent: 2
+ - uid: 7267
+ components:
+ - type: Transform
+ pos: 51.5,-21.5
+ parent: 2
+ - uid: 7268
+ components:
+ - type: Transform
+ pos: 51.5,-15.5
+ parent: 2
+ - uid: 7269
+ components:
+ - type: Transform
+ pos: 51.5,-16.5
+ parent: 2
+ - uid: 7270
+ components:
+ - type: Transform
+ pos: 51.5,-17.5
+ parent: 2
+ - uid: 7271
+ components:
+ - type: Transform
+ pos: 51.5,-18.5
+ parent: 2
+ - uid: 7272
+ components:
+ - type: Transform
+ pos: 51.5,-19.5
+ parent: 2
+ - uid: 7273
+ components:
+ - type: Transform
+ pos: 51.5,-20.5
+ parent: 2
+ - uid: 7274
+ components:
+ - type: Transform
+ pos: 52.5,-15.5
+ parent: 2
+ - uid: 7275
+ components:
+ - type: Transform
+ pos: 52.5,-16.5
+ parent: 2
+ - uid: 7276
+ components:
+ - type: Transform
+ pos: 52.5,-17.5
+ parent: 2
+ - uid: 7277
+ components:
+ - type: Transform
+ pos: 52.5,-18.5
+ parent: 2
+ - uid: 7278
+ components:
+ - type: Transform
+ pos: 52.5,-19.5
+ parent: 2
+ - uid: 7279
+ components:
+ - type: Transform
+ pos: 52.5,-20.5
+ parent: 2
+ - uid: 7280
+ components:
+ - type: Transform
+ pos: 53.5,-15.5
+ parent: 2
+ - uid: 7281
+ components:
+ - type: Transform
+ pos: 53.5,-17.5
+ parent: 2
+ - uid: 7283
+ components:
+ - type: Transform
+ pos: 53.5,-18.5
+ parent: 2
+ - uid: 7284
+ components:
+ - type: Transform
+ pos: 53.5,-19.5
+ parent: 2
+ - uid: 7294
+ components:
+ - type: Transform
+ pos: 53.5,-20.5
+ parent: 2
+ - uid: 7295
+ components:
+ - type: Transform
+ pos: 53.5,-16.5
+ parent: 2
+ - uid: 7296
+ components:
+ - type: Transform
+ pos: 54.5,-15.5
+ parent: 2
+ - uid: 7297
+ components:
+ - type: Transform
+ pos: 54.5,-16.5
+ parent: 2
+ - uid: 7298
+ components:
+ - type: Transform
+ pos: 54.5,-17.5
+ parent: 2
+ - uid: 7299
+ components:
+ - type: Transform
+ pos: 54.5,-18.5
+ parent: 2
+ - uid: 7300
+ components:
+ - type: Transform
+ pos: 54.5,-19.5
+ parent: 2
+ - uid: 7301
+ components:
+ - type: Transform
+ pos: 54.5,-20.5
+ parent: 2
+ - uid: 7302
+ components:
+ - type: Transform
+ pos: 55.5,-16.5
+ parent: 2
+ - uid: 7303
+ components:
+ - type: Transform
+ pos: 55.5,-18.5
+ parent: 2
+ - uid: 7304
+ components:
+ - type: Transform
+ pos: 55.5,-19.5
+ parent: 2
+ - uid: 7305
+ components:
+ - type: Transform
+ pos: 55.5,-20.5
+ parent: 2
+ - uid: 7306
+ components:
+ - type: Transform
+ pos: 55.5,-17.5
+ parent: 2
+ - uid: 7307
+ components:
+ - type: Transform
+ pos: 55.5,-15.5
+ parent: 2
+ - uid: 7308
+ components:
+ - type: Transform
+ pos: 53.5,-14.5
+ parent: 2
+ - uid: 7309
+ components:
+ - type: Transform
+ pos: 53.5,-13.5
+ parent: 2
+ - uid: 7310
+ components:
+ - type: Transform
+ pos: 53.5,-12.5
+ parent: 2
+ - uid: 7311
+ components:
+ - type: Transform
+ pos: 53.5,-11.5
+ parent: 2
+ - uid: 7312
+ components:
+ - type: Transform
+ pos: 53.5,-10.5
+ parent: 2
+ - uid: 7313
+ components:
+ - type: Transform
+ pos: 54.5,-14.5
+ parent: 2
+ - uid: 7314
+ components:
+ - type: Transform
+ pos: 54.5,-13.5
+ parent: 2
+ - uid: 7315
+ components:
+ - type: Transform
+ pos: 54.5,-12.5
+ parent: 2
+ - uid: 7316
+ components:
+ - type: Transform
+ pos: 54.5,-11.5
+ parent: 2
+ - uid: 7317
+ components:
+ - type: Transform
+ pos: 54.5,-10.5
+ parent: 2
+ - uid: 7318
+ components:
+ - type: Transform
+ pos: 55.5,-14.5
+ parent: 2
+ - uid: 7319
+ components:
+ - type: Transform
+ pos: 55.5,-13.5
+ parent: 2
+ - uid: 7320
+ components:
+ - type: Transform
+ pos: 55.5,-12.5
+ parent: 2
+ - uid: 7321
+ components:
+ - type: Transform
+ pos: 55.5,-11.5
+ parent: 2
+ - uid: 7322
+ components:
+ - type: Transform
+ pos: 55.5,-10.5
+ parent: 2
+ - uid: 7323
+ components:
+ - type: Transform
+ pos: 56.5,-17.5
+ parent: 2
+ - uid: 7324
+ components:
+ - type: Transform
+ pos: 56.5,-16.5
+ parent: 2
+ - uid: 7325
+ components:
+ - type: Transform
+ pos: 56.5,-15.5
+ parent: 2
+ - uid: 7326
+ components:
+ - type: Transform
+ pos: 56.5,-14.5
+ parent: 2
+ - uid: 7327
+ components:
+ - type: Transform
+ pos: 56.5,-13.5
+ parent: 2
+ - uid: 7328
+ components:
+ - type: Transform
+ pos: 56.5,-12.5
+ parent: 2
+ - uid: 7329
+ components:
+ - type: Transform
+ pos: 56.5,-11.5
+ parent: 2
+ - uid: 7330
+ components:
+ - type: Transform
+ pos: 56.5,-10.5
+ parent: 2
+ - uid: 7331
+ components:
+ - type: Transform
+ pos: 56.5,-9.5
+ parent: 2
+ - uid: 7332
+ components:
+ - type: Transform
+ pos: 56.5,-8.5
+ parent: 2
+ - uid: 7333
+ components:
+ - type: Transform
+ pos: 56.5,-7.5
+ parent: 2
+ - uid: 7334
+ components:
+ - type: Transform
+ pos: 56.5,-6.5
+ parent: 2
+ - uid: 7335
+ components:
+ - type: Transform
+ pos: 56.5,-5.5
+ parent: 2
+ - uid: 7336
+ components:
+ - type: Transform
+ pos: 56.5,-4.5
+ parent: 2
+ - uid: 7337
+ components:
+ - type: Transform
+ pos: 56.5,-3.5
+ parent: 2
+ - uid: 7338
+ components:
+ - type: Transform
+ pos: 57.5,-13.5
+ parent: 2
+ - uid: 7339
+ components:
+ - type: Transform
+ pos: 57.5,-12.5
+ parent: 2
+ - uid: 7340
+ components:
+ - type: Transform
+ pos: 57.5,-11.5
+ parent: 2
+ - uid: 7341
+ components:
+ - type: Transform
+ pos: 57.5,-10.5
+ parent: 2
+ - uid: 7342
+ components:
+ - type: Transform
+ pos: 57.5,-8.5
+ parent: 2
+ - uid: 7343
+ components:
+ - type: Transform
+ pos: 57.5,-7.5
+ parent: 2
+ - uid: 7344
+ components:
+ - type: Transform
+ pos: 57.5,-6.5
+ parent: 2
+ - uid: 7345
+ components:
+ - type: Transform
+ pos: 57.5,-5.5
+ parent: 2
+ - uid: 7346
+ components:
+ - type: Transform
+ pos: 57.5,-9.5
+ parent: 2
+ - uid: 7347
+ components:
+ - type: Transform
+ pos: 57.5,-4.5
+ parent: 2
+ - uid: 7348
+ components:
+ - type: Transform
+ pos: 57.5,-3.5
+ parent: 2
+ - uid: 7349
+ components:
+ - type: Transform
+ pos: 58.5,-12.5
+ parent: 2
+ - uid: 7350
+ components:
+ - type: Transform
+ pos: 58.5,-13.5
+ parent: 2
+ - uid: 7351
+ components:
+ - type: Transform
+ pos: 58.5,-11.5
+ parent: 2
+ - uid: 7352
+ components:
+ - type: Transform
+ pos: 58.5,-10.5
+ parent: 2
+ - uid: 7353
+ components:
+ - type: Transform
+ pos: 58.5,-9.5
+ parent: 2
+ - uid: 7354
+ components:
+ - type: Transform
+ pos: 58.5,-8.5
+ parent: 2
+ - uid: 7355
+ components:
+ - type: Transform
+ pos: 58.5,-7.5
+ parent: 2
+ - uid: 7356
+ components:
+ - type: Transform
+ pos: 58.5,-6.5
+ parent: 2
+ - uid: 7357
+ components:
+ - type: Transform
+ pos: 58.5,-5.5
+ parent: 2
+ - uid: 7358
+ components:
+ - type: Transform
+ pos: 58.5,-4.5
+ parent: 2
+ - uid: 7359
+ components:
+ - type: Transform
+ pos: 58.5,-3.5
+ parent: 2
+ - uid: 7360
+ components:
+ - type: Transform
+ pos: 59.5,-13.5
+ parent: 2
+ - uid: 7361
+ components:
+ - type: Transform
+ pos: 59.5,-12.5
+ parent: 2
+ - uid: 7362
+ components:
+ - type: Transform
+ pos: 59.5,-11.5
+ parent: 2
+ - uid: 7363
+ components:
+ - type: Transform
+ pos: 59.5,-10.5
+ parent: 2
+ - uid: 7364
+ components:
+ - type: Transform
+ pos: 59.5,-9.5
+ parent: 2
+ - uid: 7365
+ components:
+ - type: Transform
+ pos: 59.5,-8.5
+ parent: 2
+ - uid: 7366
+ components:
+ - type: Transform
+ pos: 59.5,-7.5
+ parent: 2
+ - uid: 7367
+ components:
+ - type: Transform
+ pos: 59.5,-6.5
+ parent: 2
+ - uid: 7368
+ components:
+ - type: Transform
+ pos: 59.5,-5.5
+ parent: 2
+ - uid: 7369
+ components:
+ - type: Transform
+ pos: 59.5,-4.5
+ parent: 2
+ - uid: 7370
+ components:
+ - type: Transform
+ pos: 59.5,-3.5
+ parent: 2
+ - uid: 7371
+ components:
+ - type: Transform
+ pos: 57.5,-14.5
+ parent: 2
+ - uid: 7372
+ components:
+ - type: Transform
+ pos: 59.5,-2.5
+ parent: 2
+ - uid: 7373
+ components:
+ - type: Transform
+ pos: 59.5,-1.5
+ parent: 2
+ - uid: 7374
+ components:
+ - type: Transform
+ pos: 59.5,-0.5
+ parent: 2
+ - uid: 7375
+ components:
+ - type: Transform
+ pos: 60.5,-11.5
+ parent: 2
+ - uid: 7376
+ components:
+ - type: Transform
+ pos: 60.5,-10.5
+ parent: 2
+ - uid: 7377
+ components:
+ - type: Transform
+ pos: 60.5,-9.5
+ parent: 2
+ - uid: 7378
+ components:
+ - type: Transform
+ pos: 60.5,-7.5
+ parent: 2
+ - uid: 7379
+ components:
+ - type: Transform
+ pos: 60.5,-8.5
+ parent: 2
+ - uid: 7380
+ components:
+ - type: Transform
+ pos: 60.5,-5.5
+ parent: 2
+ - uid: 7381
+ components:
+ - type: Transform
+ pos: 60.5,-4.5
+ parent: 2
+ - uid: 7382
+ components:
+ - type: Transform
+ pos: 60.5,-3.5
+ parent: 2
+ - uid: 7383
+ components:
+ - type: Transform
+ pos: 60.5,-2.5
+ parent: 2
+ - uid: 7384
+ components:
+ - type: Transform
+ pos: 60.5,-6.5
+ parent: 2
+ - uid: 7385
+ components:
+ - type: Transform
+ pos: 60.5,-0.5
+ parent: 2
+ - uid: 7386
+ components:
+ - type: Transform
+ pos: 61.5,-11.5
+ parent: 2
+ - uid: 7387
+ components:
+ - type: Transform
+ pos: 61.5,-10.5
+ parent: 2
+ - uid: 7388
+ components:
+ - type: Transform
+ pos: 60.5,-1.5
+ parent: 2
+ - uid: 7389
+ components:
+ - type: Transform
+ pos: 61.5,-7.5
+ parent: 2
+ - uid: 7390
+ components:
+ - type: Transform
+ pos: 61.5,-6.5
+ parent: 2
+ - uid: 7391
+ components:
+ - type: Transform
+ pos: 61.5,-5.5
+ parent: 2
+ - uid: 7392
+ components:
+ - type: Transform
+ pos: 61.5,-9.5
+ parent: 2
+ - uid: 7393
+ components:
+ - type: Transform
+ pos: 61.5,-8.5
+ parent: 2
+ - uid: 7394
+ components:
+ - type: Transform
+ pos: 61.5,-4.5
+ parent: 2
+ - uid: 7395
+ components:
+ - type: Transform
+ pos: 61.5,-3.5
+ parent: 2
+ - uid: 7396
+ components:
+ - type: Transform
+ pos: 61.5,-2.5
+ parent: 2
+ - uid: 7397
+ components:
+ - type: Transform
+ pos: 61.5,-1.5
+ parent: 2
+ - uid: 7398
+ components:
+ - type: Transform
+ pos: 61.5,-0.5
+ parent: 2
+ - uid: 7399
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 62.5,-7.5
parent: 2
- - uid: 6625
+ - uid: 7400
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 62.5,-6.5
parent: 2
- - uid: 6626
+ - uid: 7401
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 62.5,-5.5
parent: 2
- - uid: 6627
+ - uid: 7402
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 62.5,-4.5
parent: 2
- - uid: 6628
+ - uid: 7403
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 62.5,-3.5
parent: 2
- - uid: 6629
+ - uid: 7404
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 62.5,-2.5
parent: 2
- - uid: 6630
+ - uid: 7405
components:
- type: Transform
pos: 10.5,-48.5
parent: 2
- - uid: 6631
+ - uid: 7406
components:
- type: Transform
pos: 11.5,-48.5
parent: 2
- - uid: 6632
+ - uid: 7407
components:
- type: Transform
pos: 12.5,-48.5
parent: 2
- - uid: 6633
+ - uid: 7408
components:
- type: Transform
pos: 13.5,-48.5
parent: 2
- - uid: 6634
+ - uid: 7409
components:
- type: Transform
pos: 13.5,-49.5
parent: 2
- - uid: 6635
+ - uid: 7410
components:
- type: Transform
pos: 23.5,-61.5
parent: 2
- - uid: 6636
+ - uid: 7411
components:
- type: Transform
pos: 21.5,-61.5
parent: 2
- - uid: 6637
+ - uid: 7412
components:
- type: Transform
pos: 20.5,-61.5
parent: 2
- - uid: 6638
+ - uid: 7413
components:
- type: Transform
pos: 20.5,-50.5
parent: 2
- - uid: 6639
+ - uid: 7414
components:
- type: Transform
pos: 20.5,-51.5
parent: 2
- - uid: 6640
+ - uid: 7415
components:
- type: Transform
pos: 20.5,-52.5
parent: 2
- - uid: 6641
+ - uid: 7416
components:
- type: Transform
pos: 20.5,-53.5
parent: 2
- - uid: 6642
+ - uid: 7417
components:
- type: Transform
pos: 21.5,-50.5
parent: 2
- - uid: 6643
+ - uid: 7418
components:
- type: Transform
pos: 21.5,-51.5
parent: 2
- - uid: 6644
+ - uid: 7419
components:
- type: Transform
pos: 21.5,-52.5
parent: 2
- - uid: 6645
+ - uid: 7420
components:
- type: Transform
pos: 21.5,-53.5
parent: 2
- - uid: 6646
+ - uid: 7421
components:
- type: Transform
pos: 39.5,42.5
parent: 2
- - uid: 6647
+ - uid: 7422
components:
- type: Transform
pos: 22.5,-50.5
parent: 2
- - uid: 6648
+ - uid: 7423
components:
- type: Transform
pos: 22.5,-51.5
parent: 2
- - uid: 6649
+ - uid: 7424
components:
- type: Transform
pos: 22.5,-52.5
parent: 2
- - uid: 6650
+ - uid: 7425
components:
- type: Transform
pos: 38.5,41.5
parent: 2
- - uid: 6651
+ - uid: 7426
components:
- type: Transform
pos: 23.5,-50.5
parent: 2
- - uid: 6652
+ - uid: 7427
components:
- type: Transform
pos: 23.5,-51.5
parent: 2
- - uid: 6653
+ - uid: 7428
components:
- type: Transform
pos: 24.5,-50.5
parent: 2
- - uid: 6654
+ - uid: 7429
components:
- type: Transform
pos: 24.5,-51.5
parent: 2
- - uid: 6655
+ - uid: 7430
components:
- type: Transform
pos: 39.5,11.5
parent: 2
- - uid: 6656
+ - uid: 7431
components:
- type: Transform
pos: 25.5,-37.5
parent: 2
- - uid: 6657
+ - uid: 7432
components:
- type: Transform
pos: 25.5,-38.5
parent: 2
- - uid: 6658
+ - uid: 7433
components:
- type: Transform
pos: 25.5,-39.5
parent: 2
- - uid: 6659
+ - uid: 7434
components:
- type: Transform
pos: 25.5,-40.5
parent: 2
- - uid: 6660
+ - uid: 7435
components:
- type: Transform
pos: 25.5,-42.5
parent: 2
- - uid: 6661
+ - uid: 7436
components:
- type: Transform
pos: 25.5,-46.5
parent: 2
- - uid: 6662
+ - uid: 7437
components:
- type: Transform
pos: 25.5,-47.5
parent: 2
- - uid: 6663
+ - uid: 7438
components:
- type: Transform
pos: 25.5,-48.5
parent: 2
- - uid: 6664
+ - uid: 7439
components:
- type: Transform
pos: 25.5,-49.5
parent: 2
- - uid: 6665
+ - uid: 7440
components:
- type: Transform
pos: 25.5,-41.5
parent: 2
- - uid: 6666
+ - uid: 7441
components:
- type: Transform
pos: 25.5,-50.5
parent: 2
- - uid: 6667
+ - uid: 7442
components:
- type: Transform
pos: 25.5,-45.5
parent: 2
- - uid: 6668
+ - uid: 7443
components:
- type: Transform
pos: 25.5,-51.5
parent: 2
- - uid: 6669
+ - uid: 7444
components:
- type: Transform
pos: 25.5,-43.5
parent: 2
- - uid: 6670
+ - uid: 7445
components:
- type: Transform
pos: 25.5,-44.5
parent: 2
- - uid: 6671
+ - uid: 7446
components:
- type: Transform
pos: 26.5,-36.5
parent: 2
- - uid: 6672
+ - uid: 7447
components:
- type: Transform
pos: 26.5,-37.5
parent: 2
- - uid: 6673
+ - uid: 7448
components:
- type: Transform
pos: 26.5,-38.5
parent: 2
- - uid: 6674
+ - uid: 7449
components:
- type: Transform
pos: 26.5,-39.5
parent: 2
- - uid: 6675
+ - uid: 7450
components:
- type: Transform
pos: 26.5,-40.5
parent: 2
- - uid: 6676
+ - uid: 7451
components:
- type: Transform
pos: 26.5,-41.5
parent: 2
- - uid: 6677
+ - uid: 7452
components:
- type: Transform
pos: 26.5,-42.5
parent: 2
- - uid: 6678
+ - uid: 7453
components:
- type: Transform
pos: 26.5,-43.5
parent: 2
- - uid: 6679
+ - uid: 7454
components:
- type: Transform
pos: 26.5,-44.5
parent: 2
- - uid: 6680
+ - uid: 7455
components:
- type: Transform
pos: 26.5,-45.5
parent: 2
- - uid: 6681
+ - uid: 7456
components:
- type: Transform
pos: 26.5,-46.5
parent: 2
- - uid: 6682
+ - uid: 7457
components:
- type: Transform
pos: 26.5,-47.5
parent: 2
- - uid: 6683
+ - uid: 7458
components:
- type: Transform
pos: 26.5,-48.5
parent: 2
- - uid: 6684
+ - uid: 7459
components:
- type: Transform
pos: 26.5,-49.5
parent: 2
- - uid: 6685
+ - uid: 7460
components:
- type: Transform
pos: 26.5,-50.5
parent: 2
- - uid: 6686
+ - uid: 7461
components:
- type: Transform
pos: 26.5,-51.5
parent: 2
- - uid: 6687
+ - uid: 7462
components:
- type: Transform
pos: 27.5,-36.5
parent: 2
- - uid: 6688
+ - uid: 7463
components:
- type: Transform
pos: 27.5,-37.5
parent: 2
- - uid: 6689
+ - uid: 7464
components:
- type: Transform
pos: 27.5,-38.5
parent: 2
- - uid: 6690
+ - uid: 7465
components:
- type: Transform
pos: 27.5,-39.5
parent: 2
- - uid: 6691
+ - uid: 7466
components:
- type: Transform
pos: 27.5,-40.5
parent: 2
- - uid: 6845
+ - uid: 7467
components:
- type: Transform
pos: 27.5,-41.5
parent: 2
- - uid: 6869
+ - uid: 7468
components:
- type: Transform
pos: 27.5,-42.5
parent: 2
- - uid: 6893
+ - uid: 7469
components:
- type: Transform
pos: 27.5,-43.5
parent: 2
- - uid: 6917
+ - uid: 7470
components:
- type: Transform
pos: 27.5,-44.5
parent: 2
- - uid: 6918
+ - uid: 7471
components:
- type: Transform
pos: 27.5,-45.5
parent: 2
- - uid: 6923
+ - uid: 7472
components:
- type: Transform
pos: 27.5,-46.5
parent: 2
- - uid: 6924
+ - uid: 7473
components:
- type: Transform
pos: 27.5,-47.5
parent: 2
- - uid: 6941
+ - uid: 7474
components:
- type: Transform
pos: 27.5,-48.5
parent: 2
- - uid: 7085
+ - uid: 7475
components:
- type: Transform
pos: 27.5,-49.5
parent: 2
- - uid: 7086
+ - uid: 7476
components:
- type: Transform
pos: 27.5,-50.5
parent: 2
- - uid: 7087
+ - uid: 7477
components:
- type: Transform
pos: 27.5,-51.5
parent: 2
- - uid: 7088
+ - uid: 7478
components:
- type: Transform
pos: 41.5,6.5
parent: 2
- - uid: 7107
+ - uid: 7479
components:
- type: Transform
pos: 39.5,12.5
parent: 2
- - uid: 7108
+ - uid: 7480
components:
- type: Transform
pos: 28.5,-35.5
parent: 2
- - uid: 7109
+ - uid: 7481
components:
- type: Transform
pos: 28.5,-36.5
parent: 2
- - uid: 7110
+ - uid: 7482
components:
- type: Transform
pos: 28.5,-37.5
parent: 2
- - uid: 7128
+ - uid: 7483
components:
- type: Transform
pos: 28.5,-38.5
parent: 2
- - uid: 7129
+ - uid: 7484
components:
- type: Transform
pos: 28.5,-39.5
parent: 2
- - uid: 7130
+ - uid: 7485
components:
- type: Transform
pos: 28.5,-40.5
parent: 2
- - uid: 7131
+ - uid: 7486
components:
- type: Transform
pos: 28.5,-41.5
parent: 2
- - uid: 7148
+ - uid: 7487
components:
- type: Transform
pos: 28.5,-42.5
parent: 2
- - uid: 7150
+ - uid: 7488
components:
- type: Transform
pos: 28.5,-43.5
parent: 2
- - uid: 7151
+ - uid: 7489
components:
- type: Transform
pos: 28.5,-44.5
parent: 2
- - uid: 7171
+ - uid: 7490
components:
- type: Transform
pos: 28.5,-45.5
parent: 2
- - uid: 7172
+ - uid: 7491
components:
- type: Transform
pos: 28.5,-46.5
parent: 2
- - uid: 7174
+ - uid: 7492
components:
- type: Transform
pos: 28.5,-47.5
parent: 2
- - uid: 7179
+ - uid: 7493
components:
- type: Transform
pos: 28.5,-48.5
parent: 2
- - uid: 7180
+ - uid: 7494
components:
- type: Transform
pos: 28.5,-49.5
parent: 2
- - uid: 7181
+ - uid: 7495
components:
- type: Transform
pos: 28.5,-50.5
parent: 2
- - uid: 7182
+ - uid: 7496
components:
- type: Transform
pos: 28.5,-51.5
parent: 2
- - uid: 7183
+ - uid: 7497
components:
- type: Transform
pos: 5.5,-56.5
parent: 2
- - uid: 7184
+ - uid: 7498
components:
- type: Transform
pos: 5.5,-57.5
parent: 2
- - uid: 7185
+ - uid: 7499
components:
- type: Transform
pos: 5.5,-58.5
parent: 2
- - uid: 7186
+ - uid: 7500
components:
- type: Transform
pos: 5.5,-59.5
parent: 2
- - uid: 7187
+ - uid: 7501
components:
- type: Transform
pos: 5.5,-60.5
parent: 2
- - uid: 7188
+ - uid: 7502
components:
- type: Transform
pos: 39.5,41.5
parent: 2
- - uid: 7189
+ - uid: 7503
components:
- type: Transform
pos: 5.5,-62.5
parent: 2
- - uid: 7190
+ - uid: 7504
components:
- type: Transform
pos: 6.5,-57.5
parent: 2
- - uid: 7191
+ - uid: 7505
components:
- type: Transform
pos: 6.5,-58.5
parent: 2
- - uid: 7192
+ - uid: 7506
components:
- type: Transform
pos: 6.5,-60.5
parent: 2
- - uid: 7194
+ - uid: 7507
components:
- type: Transform
pos: 6.5,-56.5
parent: 2
- - uid: 7199
+ - uid: 7508
components:
- type: Transform
pos: 7.5,-56.5
parent: 2
- - uid: 7200
+ - uid: 7509
components:
- type: Transform
pos: 6.5,-62.5
parent: 2
- - uid: 7201
+ - uid: 7510
components:
- type: Transform
pos: 7.5,-58.5
parent: 2
- - uid: 7202
+ - uid: 7511
components:
- type: Transform
pos: 7.5,-59.5
parent: 2
- - uid: 7203
+ - uid: 7512
components:
- type: Transform
pos: 6.5,-59.5
parent: 2
- - uid: 7204
+ - uid: 7513
components:
- type: Transform
pos: 7.5,-57.5
parent: 2
- - uid: 7205
+ - uid: 7514
components:
- type: Transform
pos: 8.5,-56.5
parent: 2
- - uid: 7206
+ - uid: 7515
components:
- type: Transform
pos: 8.5,-59.5
parent: 2
- - uid: 7207
+ - uid: 7516
components:
- type: Transform
pos: 8.5,-58.5
parent: 2
- - uid: 7208
+ - uid: 7517
components:
- type: Transform
pos: 8.5,-57.5
parent: 2
- - uid: 7209
+ - uid: 7518
components:
- type: Transform
pos: 9.5,-56.5
parent: 2
- - uid: 7210
+ - uid: 7519
components:
- type: Transform
pos: 9.5,-57.5
parent: 2
- - uid: 7211
+ - uid: 7520
components:
- type: Transform
pos: 9.5,-58.5
parent: 2
- - uid: 7212
+ - uid: 7521
components:
- type: Transform
pos: 9.5,-59.5
parent: 2
- - uid: 7213
+ - uid: 7522
components:
- type: Transform
pos: 10.5,-56.5
parent: 2
- - uid: 7214
+ - uid: 7523
components:
- type: Transform
pos: 10.5,-58.5
parent: 2
- - uid: 7219
+ - uid: 7524
components:
- type: Transform
pos: 10.5,-59.5
parent: 2
- - uid: 7220
+ - uid: 7525
components:
- type: Transform
pos: 29.5,-51.5
parent: 2
- - uid: 7221
+ - uid: 7526
components:
- type: Transform
pos: 29.5,-50.5
parent: 2
- - uid: 7222
+ - uid: 7527
components:
- type: Transform
pos: 29.5,-49.5
parent: 2
- - uid: 7223
+ - uid: 7528
components:
- type: Transform
pos: 29.5,-48.5
parent: 2
- - uid: 7224
+ - uid: 7529
components:
- type: Transform
pos: 29.5,-47.5
parent: 2
- - uid: 7225
+ - uid: 7530
components:
- type: Transform
pos: 29.5,-46.5
parent: 2
- - uid: 7226
+ - uid: 7531
components:
- type: Transform
pos: 29.5,-43.5
parent: 2
- - uid: 7227
+ - uid: 7532
components:
- type: Transform
pos: 29.5,-42.5
parent: 2
- - uid: 7228
+ - uid: 7533
components:
- type: Transform
pos: 29.5,-41.5
parent: 2
- - uid: 7229
+ - uid: 7534
components:
- type: Transform
pos: 29.5,-40.5
parent: 2
- - uid: 7230
+ - uid: 7535
components:
- type: Transform
pos: 29.5,-39.5
parent: 2
- - uid: 7231
+ - uid: 7536
components:
- type: Transform
pos: 29.5,-45.5
parent: 2
- - uid: 7232
+ - uid: 7537
components:
- type: Transform
pos: 29.5,-37.5
parent: 2
- - uid: 7233
+ - uid: 7538
components:
- type: Transform
pos: 29.5,-44.5
parent: 2
- - uid: 7234
+ - uid: 7539
components:
- type: Transform
pos: 29.5,-36.5
parent: 2
- - uid: 7236
+ - uid: 7540
components:
- type: Transform
pos: 29.5,-38.5
parent: 2
- - uid: 7237
+ - uid: 7541
components:
- type: Transform
pos: 29.5,-33.5
parent: 2
- - uid: 7238
+ - uid: 7542
components:
- type: Transform
pos: 29.5,-32.5
parent: 2
- - uid: 7239
+ - uid: 7543
components:
- type: Transform
pos: 29.5,-34.5
parent: 2
- - uid: 7240
+ - uid: 7544
components:
- type: Transform
pos: 30.5,-51.5
parent: 2
- - uid: 7241
+ - uid: 7545
components:
- type: Transform
pos: 30.5,-50.5
parent: 2
- - uid: 7242
+ - uid: 7546
components:
- type: Transform
pos: 30.5,-49.5
parent: 2
- - uid: 7243
+ - uid: 7547
components:
- type: Transform
pos: 30.5,-46.5
parent: 2
- - uid: 7244
+ - uid: 7548
components:
- type: Transform
pos: 30.5,-45.5
parent: 2
- - uid: 7245
+ - uid: 7549
components:
- type: Transform
pos: 30.5,-44.5
parent: 2
- - uid: 7246
+ - uid: 7550
components:
- type: Transform
pos: 30.5,-47.5
parent: 2
- - uid: 7247
+ - uid: 7551
components:
- type: Transform
pos: 30.5,-43.5
parent: 2
- - uid: 7248
+ - uid: 7552
components:
- type: Transform
pos: 30.5,-42.5
parent: 2
- - uid: 7249
+ - uid: 7553
components:
- type: Transform
pos: 30.5,-40.5
parent: 2
- - uid: 7250
+ - uid: 7554
components:
- type: Transform
pos: 29.5,-35.5
parent: 2
- - uid: 7251
+ - uid: 7555
components:
- type: Transform
pos: 30.5,-38.5
parent: 2
- - uid: 7252
+ - uid: 7556
components:
- type: Transform
pos: 30.5,-37.5
parent: 2
- - uid: 7253
+ - uid: 7557
components:
- type: Transform
pos: 30.5,-36.5
parent: 2
- - uid: 7254
+ - uid: 7558
components:
- type: Transform
pos: 30.5,-41.5
parent: 2
- - uid: 7255
+ - uid: 7559
components:
- type: Transform
pos: 30.5,-39.5
parent: 2
- - uid: 7256
+ - uid: 7560
components:
- type: Transform
pos: 30.5,-34.5
parent: 2
- - uid: 7257
+ - uid: 7561
components:
- type: Transform
pos: 30.5,-33.5
parent: 2
- - uid: 7258
+ - uid: 7562
components:
- type: Transform
pos: 30.5,-32.5
parent: 2
- - uid: 7259
+ - uid: 7563
components:
- type: Transform
pos: 30.5,-35.5
parent: 2
- - uid: 7260
+ - uid: 7564
components:
- type: Transform
pos: 31.5,-50.5
parent: 2
- - uid: 7261
+ - uid: 7565
components:
- type: Transform
pos: 31.5,-49.5
parent: 2
- - uid: 7262
+ - uid: 7566
components:
- type: Transform
pos: 31.5,-48.5
parent: 2
- - uid: 7263
+ - uid: 7567
components:
- type: Transform
pos: 31.5,-47.5
parent: 2
- - uid: 7265
+ - uid: 7568
components:
- type: Transform
pos: 31.5,-46.5
parent: 2
- - uid: 7266
+ - uid: 7569
components:
- type: Transform
pos: 31.5,-45.5
parent: 2
- - uid: 7267
+ - uid: 7570
components:
- type: Transform
pos: 31.5,-44.5
parent: 2
- - uid: 7268
+ - uid: 7571
components:
- type: Transform
pos: 31.5,-43.5
parent: 2
- - uid: 7269
+ - uid: 7572
components:
- type: Transform
pos: 31.5,-42.5
parent: 2
- - uid: 7270
+ - uid: 7573
components:
- type: Transform
pos: 31.5,-41.5
parent: 2
- - uid: 7271
+ - uid: 7574
components:
- type: Transform
pos: 31.5,-40.5
parent: 2
- - uid: 7272
+ - uid: 7575
components:
- type: Transform
pos: 31.5,-39.5
parent: 2
- - uid: 7273
+ - uid: 7576
components:
- type: Transform
pos: 31.5,-38.5
parent: 2
- - uid: 7274
+ - uid: 7577
components:
- type: Transform
pos: 31.5,-37.5
parent: 2
- - uid: 7275
+ - uid: 7578
components:
- type: Transform
pos: 31.5,-36.5
parent: 2
- - uid: 7276
+ - uid: 7579
components:
- type: Transform
pos: 31.5,-35.5
parent: 2
- - uid: 7277
+ - uid: 7580
components:
- type: Transform
pos: 31.5,-34.5
parent: 2
- - uid: 7278
+ - uid: 7581
components:
- type: Transform
pos: 31.5,-33.5
parent: 2
- - uid: 7279
+ - uid: 7582
components:
- type: Transform
pos: 31.5,-32.5
parent: 2
- - uid: 7280
+ - uid: 7583
components:
- type: Transform
pos: 32.5,-48.5
parent: 2
- - uid: 7281
+ - uid: 7584
components:
- type: Transform
pos: 32.5,-47.5
parent: 2
- - uid: 7283
+ - uid: 7585
components:
- type: Transform
pos: 32.5,-46.5
parent: 2
- - uid: 7284
+ - uid: 7586
components:
- type: Transform
pos: 32.5,-45.5
parent: 2
- - uid: 7294
+ - uid: 7587
components:
- type: Transform
pos: 32.5,-44.5
parent: 2
- - uid: 7295
+ - uid: 7588
components:
- type: Transform
pos: 32.5,-43.5
parent: 2
- - uid: 7296
+ - uid: 7589
components:
- type: Transform
pos: 32.5,-42.5
parent: 2
- - uid: 7297
+ - uid: 7590
components:
- type: Transform
pos: 32.5,-41.5
parent: 2
- - uid: 7298
+ - uid: 7591
components:
- type: Transform
pos: 32.5,-40.5
parent: 2
- - uid: 7299
+ - uid: 7592
components:
- type: Transform
pos: 32.5,-39.5
parent: 2
- - uid: 7300
+ - uid: 7593
components:
- type: Transform
pos: 32.5,-38.5
parent: 2
- - uid: 7301
+ - uid: 7594
components:
- type: Transform
pos: 32.5,-37.5
parent: 2
- - uid: 7302
+ - uid: 7595
components:
- type: Transform
pos: 32.5,-36.5
parent: 2
- - uid: 7303
+ - uid: 7596
components:
- type: Transform
pos: 32.5,-35.5
parent: 2
- - uid: 7304
+ - uid: 7597
components:
- type: Transform
pos: 32.5,-34.5
parent: 2
- - uid: 7305
+ - uid: 7598
components:
- type: Transform
pos: 32.5,-33.5
parent: 2
- - uid: 7306
+ - uid: 7599
components:
- type: Transform
pos: 32.5,-32.5
parent: 2
- - uid: 7307
+ - uid: 7600
components:
- type: Transform
pos: 33.5,-48.5
parent: 2
- - uid: 7308
+ - uid: 7601
components:
- type: Transform
pos: 33.5,-47.5
parent: 2
- - uid: 7309
+ - uid: 7602
components:
- type: Transform
pos: 33.5,-46.5
parent: 2
- - uid: 7310
+ - uid: 7603
components:
- type: Transform
pos: 33.5,-45.5
parent: 2
- - uid: 7311
+ - uid: 7604
components:
- type: Transform
pos: 33.5,-44.5
parent: 2
- - uid: 7312
+ - uid: 7605
components:
- type: Transform
pos: 33.5,-43.5
parent: 2
- - uid: 7313
+ - uid: 7606
components:
- type: Transform
pos: 33.5,-42.5
parent: 2
- - uid: 7314
+ - uid: 7607
components:
- type: Transform
pos: 33.5,-41.5
parent: 2
- - uid: 7315
+ - uid: 7608
components:
- type: Transform
pos: 33.5,-40.5
parent: 2
- - uid: 7316
+ - uid: 7609
components:
- type: Transform
pos: 33.5,-39.5
parent: 2
- - uid: 7317
+ - uid: 7610
components:
- type: Transform
pos: 33.5,-38.5
parent: 2
- - uid: 7318
+ - uid: 7611
components:
- type: Transform
pos: 33.5,-37.5
parent: 2
- - uid: 7319
+ - uid: 7612
components:
- type: Transform
pos: 33.5,-36.5
parent: 2
- - uid: 7320
+ - uid: 7613
components:
- type: Transform
pos: 33.5,-35.5
parent: 2
- - uid: 7321
+ - uid: 7614
components:
- type: Transform
pos: 33.5,-34.5
parent: 2
- - uid: 7322
+ - uid: 7615
components:
- type: Transform
pos: 33.5,-33.5
parent: 2
- - uid: 7323
+ - uid: 7616
components:
- type: Transform
pos: 33.5,-32.5
parent: 2
- - uid: 7324
+ - uid: 7617
components:
- type: Transform
pos: 34.5,-48.5
parent: 2
- - uid: 7325
+ - uid: 7618
components:
- type: Transform
pos: 34.5,-47.5
parent: 2
- - uid: 7326
+ - uid: 7619
components:
- type: Transform
pos: 34.5,-46.5
parent: 2
- - uid: 7327
+ - uid: 7620
components:
- type: Transform
pos: 34.5,-45.5
parent: 2
- - uid: 7328
+ - uid: 7621
components:
- type: Transform
pos: 34.5,-44.5
parent: 2
- - uid: 7329
+ - uid: 7622
components:
- type: Transform
pos: 34.5,-43.5
parent: 2
- - uid: 7330
+ - uid: 7623
components:
- type: Transform
pos: 34.5,-42.5
parent: 2
- - uid: 7331
+ - uid: 7624
components:
- type: Transform
pos: 34.5,-41.5
parent: 2
- - uid: 7332
+ - uid: 7625
components:
- type: Transform
pos: 34.5,-40.5
parent: 2
- - uid: 7333
+ - uid: 7626
components:
- type: Transform
pos: 34.5,-39.5
parent: 2
- - uid: 7334
+ - uid: 7627
components:
- type: Transform
pos: 34.5,-38.5
parent: 2
- - uid: 7335
+ - uid: 7628
components:
- type: Transform
pos: 34.5,-37.5
parent: 2
- - uid: 7336
+ - uid: 7629
components:
- type: Transform
pos: 34.5,-36.5
parent: 2
- - uid: 7337
+ - uid: 7630
components:
- type: Transform
pos: 34.5,-35.5
parent: 2
- - uid: 7338
+ - uid: 7631
components:
- type: Transform
pos: 34.5,-34.5
parent: 2
- - uid: 7339
+ - uid: 7632
components:
- type: Transform
pos: 34.5,-33.5
parent: 2
- - uid: 7340
+ - uid: 7633
components:
- type: Transform
pos: 34.5,-32.5
parent: 2
- - uid: 7341
+ - uid: 7634
components:
- type: Transform
pos: 35.5,-48.5
parent: 2
- - uid: 7342
+ - uid: 7635
components:
- type: Transform
pos: 35.5,-47.5
parent: 2
- - uid: 7343
+ - uid: 7636
components:
- type: Transform
pos: 35.5,-46.5
parent: 2
- - uid: 7344
+ - uid: 7637
components:
- type: Transform
pos: 35.5,-45.5
parent: 2
- - uid: 7345
+ - uid: 7638
components:
- type: Transform
pos: 35.5,-44.5
parent: 2
- - uid: 7346
+ - uid: 7639
components:
- type: Transform
pos: 35.5,-43.5
parent: 2
- - uid: 7347
+ - uid: 7640
components:
- type: Transform
pos: 35.5,-42.5
parent: 2
- - uid: 7348
+ - uid: 7641
components:
- type: Transform
pos: 35.5,-41.5
parent: 2
- - uid: 7349
+ - uid: 7642
components:
- type: Transform
pos: 35.5,-40.5
parent: 2
- - uid: 7350
+ - uid: 7643
components:
- type: Transform
pos: 35.5,-39.5
parent: 2
- - uid: 7351
+ - uid: 7644
components:
- type: Transform
pos: 35.5,-38.5
parent: 2
- - uid: 7352
+ - uid: 7645
components:
- type: Transform
pos: 35.5,-37.5
parent: 2
- - uid: 7353
+ - uid: 7646
components:
- type: Transform
pos: 35.5,-36.5
parent: 2
- - uid: 7354
+ - uid: 7647
components:
- type: Transform
pos: 35.5,-35.5
parent: 2
- - uid: 7355
+ - uid: 7648
components:
- type: Transform
pos: 35.5,-34.5
parent: 2
- - uid: 7356
+ - uid: 7649
components:
- type: Transform
pos: 35.5,-33.5
parent: 2
- - uid: 7357
+ - uid: 7650
components:
- type: Transform
pos: 35.5,-32.5
parent: 2
- - uid: 7358
+ - uid: 7651
components:
- type: Transform
pos: 36.5,-47.5
parent: 2
- - uid: 7359
+ - uid: 7652
components:
- type: Transform
pos: 36.5,-46.5
parent: 2
- - uid: 7360
+ - uid: 7653
components:
- type: Transform
pos: 36.5,-45.5
parent: 2
- - uid: 7361
+ - uid: 7654
components:
- type: Transform
pos: 36.5,-44.5
parent: 2
- - uid: 7362
+ - uid: 7655
components:
- type: Transform
pos: 36.5,-43.5
parent: 2
- - uid: 7363
+ - uid: 7656
components:
- type: Transform
pos: 36.5,-42.5
parent: 2
- - uid: 7364
+ - uid: 7657
components:
- type: Transform
pos: 36.5,-41.5
parent: 2
- - uid: 7365
+ - uid: 7658
components:
- type: Transform
pos: 36.5,-40.5
parent: 2
- - uid: 7366
+ - uid: 7659
components:
- type: Transform
pos: 36.5,-39.5
parent: 2
- - uid: 7367
+ - uid: 7660
components:
- type: Transform
pos: 36.5,-38.5
parent: 2
- - uid: 7368
+ - uid: 7661
components:
- type: Transform
pos: 36.5,-37.5
parent: 2
- - uid: 7369
+ - uid: 7662
components:
- type: Transform
pos: 36.5,-36.5
parent: 2
- - uid: 7370
+ - uid: 7663
components:
- type: Transform
pos: 36.5,-35.5
parent: 2
- - uid: 7371
+ - uid: 7664
components:
- type: Transform
pos: 36.5,-34.5
parent: 2
- - uid: 7372
+ - uid: 7665
components:
- type: Transform
pos: 36.5,-33.5
parent: 2
- - uid: 7373
+ - uid: 7666
components:
- type: Transform
pos: 36.5,-32.5
parent: 2
- - uid: 7374
+ - uid: 7667
components:
- type: Transform
pos: 37.5,-47.5
parent: 2
- - uid: 7375
+ - uid: 7668
components:
- type: Transform
pos: 37.5,-46.5
parent: 2
- - uid: 7376
+ - uid: 7669
components:
- type: Transform
pos: 37.5,-45.5
parent: 2
- - uid: 7377
+ - uid: 7670
components:
- type: Transform
pos: 37.5,-44.5
parent: 2
- - uid: 7378
+ - uid: 7671
components:
- type: Transform
pos: 37.5,-43.5
parent: 2
- - uid: 7379
+ - uid: 7672
components:
- type: Transform
pos: 37.5,-42.5
parent: 2
- - uid: 7380
+ - uid: 7673
components:
- type: Transform
pos: 37.5,-41.5
parent: 2
- - uid: 7381
+ - uid: 7674
components:
- type: Transform
pos: 37.5,-40.5
parent: 2
- - uid: 7382
+ - uid: 7675
components:
- type: Transform
pos: 37.5,-39.5
parent: 2
- - uid: 7383
+ - uid: 7676
components:
- type: Transform
pos: 37.5,-38.5
parent: 2
- - uid: 7384
+ - uid: 7677
components:
- type: Transform
pos: 37.5,-37.5
parent: 2
- - uid: 7385
+ - uid: 7678
components:
- type: Transform
pos: 37.5,-36.5
parent: 2
- - uid: 7386
+ - uid: 7679
components:
- type: Transform
pos: 37.5,-35.5
parent: 2
- - uid: 7387
+ - uid: 7680
components:
- type: Transform
pos: 37.5,-34.5
parent: 2
- - uid: 7388
+ - uid: 7681
components:
- type: Transform
pos: 37.5,-33.5
parent: 2
- - uid: 7389
+ - uid: 7682
components:
- type: Transform
pos: 37.5,-32.5
parent: 2
- - uid: 7390
+ - uid: 7683
components:
- type: Transform
pos: 38.5,-44.5
parent: 2
- - uid: 7391
+ - uid: 7684
components:
- type: Transform
pos: 38.5,-43.5
parent: 2
- - uid: 7392
+ - uid: 7685
components:
- type: Transform
pos: 38.5,-42.5
parent: 2
- - uid: 7393
+ - uid: 7686
components:
- type: Transform
pos: 38.5,-41.5
parent: 2
- - uid: 7394
+ - uid: 7687
components:
- type: Transform
pos: 38.5,-40.5
parent: 2
- - uid: 7395
+ - uid: 7688
components:
- type: Transform
pos: 38.5,-39.5
parent: 2
- - uid: 7396
+ - uid: 7689
components:
- type: Transform
pos: 38.5,-38.5
parent: 2
- - uid: 7397
+ - uid: 7690
components:
- type: Transform
pos: 38.5,-37.5
parent: 2
- - uid: 7398
+ - uid: 7691
components:
- type: Transform
pos: 38.5,-36.5
parent: 2
- - uid: 7399
+ - uid: 7692
components:
- type: Transform
pos: 38.5,-35.5
parent: 2
- - uid: 7400
+ - uid: 7693
components:
- type: Transform
pos: 38.5,-34.5
parent: 2
- - uid: 7401
+ - uid: 7694
components:
- type: Transform
pos: 38.5,-33.5
parent: 2
- - uid: 7402
+ - uid: 7695
components:
- type: Transform
pos: 38.5,-32.5
parent: 2
- - uid: 7403
+ - uid: 7696
components:
- type: Transform
pos: 39.5,-43.5
parent: 2
- - uid: 7404
+ - uid: 7697
components:
- type: Transform
pos: 39.5,-42.5
parent: 2
- - uid: 7405
+ - uid: 7698
components:
- type: Transform
pos: 39.5,-41.5
parent: 2
- - uid: 7406
+ - uid: 7699
components:
- type: Transform
pos: 39.5,-40.5
parent: 2
- - uid: 7407
+ - uid: 7700
components:
- type: Transform
pos: 39.5,-39.5
parent: 2
- - uid: 7408
+ - uid: 7701
components:
- type: Transform
pos: 39.5,-38.5
parent: 2
- - uid: 7409
+ - uid: 7702
components:
- type: Transform
pos: 39.5,-37.5
parent: 2
- - uid: 7410
+ - uid: 7703
components:
- type: Transform
pos: 39.5,-36.5
parent: 2
- - uid: 7411
+ - uid: 7704
components:
- type: Transform
pos: 39.5,-35.5
parent: 2
- - uid: 7412
+ - uid: 7705
components:
- type: Transform
pos: 39.5,-34.5
parent: 2
- - uid: 7413
+ - uid: 7706
components:
- type: Transform
pos: 39.5,-33.5
parent: 2
- - uid: 7414
+ - uid: 7707
components:
- type: Transform
pos: 39.5,-32.5
parent: 2
- - uid: 7415
+ - uid: 7708
components:
- type: Transform
pos: 40.5,-52.5
parent: 2
- - uid: 7416
+ - uid: 7709
components:
- type: Transform
pos: 40.5,-43.5
parent: 2
- - uid: 7417
+ - uid: 7710
components:
- type: Transform
pos: 40.5,-42.5
parent: 2
- - uid: 7418
+ - uid: 7711
components:
- type: Transform
pos: 40.5,-41.5
parent: 2
- - uid: 7419
+ - uid: 7712
components:
- type: Transform
pos: 40.5,-40.5
parent: 2
- - uid: 7420
+ - uid: 7713
components:
- type: Transform
pos: 40.5,-39.5
parent: 2
- - uid: 7421
+ - uid: 7714
components:
- type: Transform
pos: 40.5,-38.5
parent: 2
- - uid: 7422
+ - uid: 7715
components:
- type: Transform
pos: 40.5,-37.5
parent: 2
- - uid: 7423
+ - uid: 7716
components:
- type: Transform
pos: 40.5,-36.5
parent: 2
- - uid: 7424
+ - uid: 7717
components:
- type: Transform
pos: 40.5,-35.5
parent: 2
- - uid: 7425
+ - uid: 7718
components:
- type: Transform
pos: 40.5,-34.5
parent: 2
- - uid: 7426
+ - uid: 7719
components:
- type: Transform
pos: 40.5,-33.5
parent: 2
- - uid: 7427
+ - uid: 7720
components:
- type: Transform
pos: 40.5,-32.5
parent: 2
- - uid: 7428
+ - uid: 7721
components:
- type: Transform
pos: 30.5,-48.5
parent: 2
- - uid: 7429
+ - uid: 7722
components:
- type: Transform
pos: 41.5,-43.5
parent: 2
- - uid: 7430
+ - uid: 7723
components:
- type: Transform
pos: 41.5,-42.5
parent: 2
- - uid: 7431
+ - uid: 7724
components:
- type: Transform
pos: 41.5,-41.5
parent: 2
- - uid: 7432
+ - uid: 7725
components:
- type: Transform
pos: 41.5,-40.5
parent: 2
- - uid: 7433
+ - uid: 7726
components:
- type: Transform
pos: 41.5,-39.5
parent: 2
- - uid: 7434
+ - uid: 7727
components:
- type: Transform
pos: 41.5,-38.5
parent: 2
- - uid: 7435
+ - uid: 7728
components:
- type: Transform
pos: 41.5,-37.5
parent: 2
- - uid: 7436
+ - uid: 7729
components:
- type: Transform
pos: 41.5,-36.5
parent: 2
- - uid: 7437
+ - uid: 7730
components:
- type: Transform
pos: 41.5,-35.5
parent: 2
- - uid: 7438
+ - uid: 7731
components:
- type: Transform
pos: 41.5,-33.5
parent: 2
- - uid: 7439
+ - uid: 7733
components:
- type: Transform
pos: 41.5,-34.5
parent: 2
- - uid: 7440
+ - uid: 7734
components:
- type: Transform
pos: 41.5,-32.5
parent: 2
- - uid: 7441
+ - uid: 7735
components:
- type: Transform
pos: 42.5,-42.5
parent: 2
- - uid: 7442
+ - uid: 7736
components:
- type: Transform
pos: 42.5,-41.5
parent: 2
- - uid: 7443
+ - uid: 7737
components:
- type: Transform
pos: 42.5,-40.5
parent: 2
- - uid: 7444
+ - uid: 7742
components:
- type: Transform
pos: 42.5,-39.5
parent: 2
- - uid: 7445
+ - uid: 7743
components:
- type: Transform
pos: 42.5,-38.5
parent: 2
- - uid: 7446
+ - uid: 7749
components:
- type: Transform
pos: 42.5,-37.5
parent: 2
- - uid: 7447
+ - uid: 7750
components:
- type: Transform
pos: 42.5,-36.5
parent: 2
- - uid: 7448
+ - uid: 7754
components:
- type: Transform
pos: 42.5,-35.5
parent: 2
- - uid: 7449
+ - uid: 7757
components:
- type: Transform
pos: 42.5,-34.5
parent: 2
- - uid: 7450
+ - uid: 7758
components:
- type: Transform
pos: 42.5,-33.5
parent: 2
- - uid: 7451
+ - uid: 7759
components:
- type: Transform
pos: 42.5,-32.5
parent: 2
- - uid: 7452
+ - uid: 7760
components:
- type: Transform
pos: 43.5,-42.5
parent: 2
- - uid: 7453
+ - uid: 7763
components:
- type: Transform
pos: 43.5,-41.5
parent: 2
- - uid: 7454
+ - uid: 7764
components:
- type: Transform
pos: 43.5,-40.5
parent: 2
- - uid: 7455
+ - uid: 7765
components:
- type: Transform
pos: 43.5,-39.5
parent: 2
- - uid: 7456
+ - uid: 7766
components:
- type: Transform
pos: 43.5,-38.5
parent: 2
- - uid: 7457
+ - uid: 7767
components:
- type: Transform
pos: 43.5,-37.5
parent: 2
- - uid: 7458
+ - uid: 7768
components:
- type: Transform
pos: 43.5,-36.5
parent: 2
- - uid: 7459
+ - uid: 7769
components:
- type: Transform
pos: 43.5,-35.5
parent: 2
- - uid: 7460
+ - uid: 7770
components:
- type: Transform
pos: 43.5,-34.5
parent: 2
- - uid: 7461
+ - uid: 7771
components:
- type: Transform
pos: 43.5,-33.5
parent: 2
- - uid: 7462
+ - uid: 7772
components:
- type: Transform
pos: 43.5,-32.5
parent: 2
- - uid: 7463
+ - uid: 7773
components:
- type: Transform
pos: 44.5,-41.5
parent: 2
- - uid: 7464
+ - uid: 7774
components:
- type: Transform
pos: 44.5,-40.5
parent: 2
- - uid: 7465
+ - uid: 7775
components:
- type: Transform
pos: 44.5,-39.5
parent: 2
- - uid: 7466
+ - uid: 7778
components:
- type: Transform
pos: 44.5,-38.5
parent: 2
- - uid: 7467
+ - uid: 7779
components:
- type: Transform
pos: 44.5,-37.5
parent: 2
- - uid: 7468
+ - uid: 7780
components:
- type: Transform
pos: 44.5,-36.5
parent: 2
- - uid: 7469
+ - uid: 7781
components:
- type: Transform
pos: 44.5,-35.5
parent: 2
- - uid: 7470
+ - uid: 7782
components:
- type: Transform
pos: 44.5,-34.5
parent: 2
- - uid: 7471
+ - uid: 7783
components:
- type: Transform
pos: 44.5,-33.5
parent: 2
- - uid: 7472
+ - uid: 7784
components:
- type: Transform
pos: 44.5,-32.5
parent: 2
- - uid: 7473
+ - uid: 7787
components:
- type: Transform
pos: 45.5,-41.5
parent: 2
- - uid: 7474
+ - uid: 7788
components:
- type: Transform
pos: 45.5,-40.5
parent: 2
- - uid: 7475
+ - uid: 7789
components:
- type: Transform
pos: 45.5,-39.5
parent: 2
- - uid: 7476
+ - uid: 7790
components:
- type: Transform
pos: 45.5,-38.5
parent: 2
- - uid: 7477
+ - uid: 7791
components:
- type: Transform
pos: 45.5,-37.5
parent: 2
- - uid: 7478
+ - uid: 7792
components:
- type: Transform
pos: 45.5,-36.5
parent: 2
- - uid: 7479
+ - uid: 7794
components:
- type: Transform
pos: 45.5,-35.5
parent: 2
- - uid: 7480
+ - uid: 7799
components:
- type: Transform
pos: 45.5,-34.5
parent: 2
- - uid: 7481
+ - uid: 7800
components:
- type: Transform
pos: 45.5,-33.5
parent: 2
- - uid: 7482
+ - uid: 7801
components:
- type: Transform
pos: 45.5,-32.5
parent: 2
- - uid: 7483
+ - uid: 7802
components:
- type: Transform
pos: 46.5,-41.5
parent: 2
- - uid: 7484
+ - uid: 7803
components:
- type: Transform
pos: 46.5,-40.5
parent: 2
- - uid: 7485
+ - uid: 7812
components:
- type: Transform
pos: 46.5,-39.5
parent: 2
- - uid: 7486
+ - uid: 7819
components:
- type: Transform
pos: 46.5,-38.5
parent: 2
- - uid: 7487
+ - uid: 7827
components:
- type: Transform
pos: 46.5,-37.5
parent: 2
- - uid: 7488
+ - uid: 7828
components:
- type: Transform
pos: 46.5,-36.5
parent: 2
- - uid: 7489
+ - uid: 7829
components:
- type: Transform
pos: 46.5,-35.5
parent: 2
- - uid: 7490
+ - uid: 7850
components:
- type: Transform
pos: 46.5,-34.5
parent: 2
- - uid: 7491
+ - uid: 7853
components:
- type: Transform
pos: 46.5,-33.5
parent: 2
- - uid: 7492
+ - uid: 7855
components:
- type: Transform
pos: 46.5,-32.5
parent: 2
- - uid: 7493
+ - uid: 7856
components:
- type: Transform
pos: 47.5,-41.5
parent: 2
- - uid: 7494
+ - uid: 7857
components:
- type: Transform
pos: 47.5,-40.5
parent: 2
- - uid: 7495
+ - uid: 7867
components:
- type: Transform
pos: 47.5,-39.5
parent: 2
- - uid: 7496
+ - uid: 7868
components:
- type: Transform
pos: 47.5,-38.5
parent: 2
- - uid: 7497
+ - uid: 7872
components:
- type: Transform
pos: 47.5,-37.5
parent: 2
- - uid: 7498
+ - uid: 7873
components:
- type: Transform
pos: 47.5,-36.5
parent: 2
- - uid: 7499
+ - uid: 7874
components:
- type: Transform
pos: 47.5,-35.5
parent: 2
- - uid: 7500
+ - uid: 7881
components:
- type: Transform
pos: 47.5,-34.5
parent: 2
- - uid: 7501
+ - uid: 7882
components:
- type: Transform
pos: 47.5,-33.5
parent: 2
- - uid: 7502
+ - uid: 7883
components:
- type: Transform
pos: 47.5,-32.5
parent: 2
- - uid: 7503
+ - uid: 7884
components:
- type: Transform
pos: 48.5,-38.5
parent: 2
- - uid: 7504
+ - uid: 7885
components:
- type: Transform
pos: 48.5,-37.5
parent: 2
- - uid: 7505
+ - uid: 7888
components:
- type: Transform
pos: 48.5,-36.5
parent: 2
- - uid: 7506
+ - uid: 7890
components:
- type: Transform
pos: 48.5,-35.5
parent: 2
- - uid: 7507
+ - uid: 7891
components:
- type: Transform
pos: 48.5,-34.5
parent: 2
- - uid: 7508
+ - uid: 7892
components:
- type: Transform
pos: 48.5,-33.5
parent: 2
- - uid: 7509
+ - uid: 7893
components:
- type: Transform
pos: 48.5,-32.5
parent: 2
- - uid: 7510
+ - uid: 7894
components:
- type: Transform
pos: 49.5,-38.5
parent: 2
- - uid: 7511
+ - uid: 7898
components:
- type: Transform
pos: 49.5,-37.5
parent: 2
- - uid: 7512
+ - uid: 7899
components:
- type: Transform
pos: 49.5,-36.5
parent: 2
- - uid: 7513
+ - uid: 7900
components:
- type: Transform
pos: 49.5,-35.5
parent: 2
- - uid: 7514
+ - uid: 7901
components:
- type: Transform
pos: 49.5,-34.5
parent: 2
- - uid: 7515
+ - uid: 7902
components:
- type: Transform
pos: 49.5,-33.5
parent: 2
- - uid: 7516
+ - uid: 7903
components:
- type: Transform
pos: 49.5,-32.5
parent: 2
- - uid: 7517
+ - uid: 7904
components:
- type: Transform
pos: 50.5,-37.5
parent: 2
- - uid: 7518
+ - uid: 7906
components:
- type: Transform
pos: 50.5,-36.5
parent: 2
- - uid: 7519
+ - uid: 7907
components:
- type: Transform
pos: 51.5,-37.5
parent: 2
- - uid: 7520
+ - uid: 7908
components:
- type: Transform
pos: 51.5,-36.5
parent: 2
- - uid: 7521
+ - uid: 7909
components:
- type: Transform
pos: 52.5,-37.5
parent: 2
- - uid: 7522
+ - uid: 7910
components:
- type: Transform
pos: 52.5,-36.5
parent: 2
- - uid: 7523
+ - uid: 7911
components:
- type: Transform
pos: 53.5,-37.5
parent: 2
- - uid: 7524
+ - uid: 7912
components:
- type: Transform
pos: 53.5,-36.5
parent: 2
- - uid: 7525
+ - uid: 7913
components:
- type: Transform
pos: 50.5,-26.5
parent: 2
- - uid: 7526
+ - uid: 7917
components:
- type: Transform
pos: 50.5,-25.5
parent: 2
- - uid: 7527
+ - uid: 7918
components:
- type: Transform
pos: 49.5,-31.5
parent: 2
- - uid: 7528
+ - uid: 7919
components:
- type: Transform
pos: 49.5,-30.5
parent: 2
- - uid: 7529
+ - uid: 7920
components:
- type: Transform
pos: 49.5,-29.5
parent: 2
- - uid: 7530
+ - uid: 7921
components:
- type: Transform
pos: 49.5,-27.5
parent: 2
- - uid: 7531
+ - uid: 7926
components:
- type: Transform
pos: 49.5,-28.5
parent: 2
- - uid: 7532
+ - uid: 7927
components:
- type: Transform
pos: 49.5,-26.5
parent: 2
- - uid: 7533
+ - uid: 7928
components:
- type: Transform
pos: 48.5,-31.5
parent: 2
- - uid: 7534
+ - uid: 7929
components:
- type: Transform
pos: 49.5,-25.5
parent: 2
- - uid: 7535
+ - uid: 7930
components:
- type: Transform
pos: 48.5,-29.5
parent: 2
- - uid: 7536
+ - uid: 7935
components:
- type: Transform
pos: 48.5,-30.5
parent: 2
- - uid: 7537
+ - uid: 7936
components:
- type: Transform
pos: 48.5,-28.5
parent: 2
- - uid: 7538
+ - uid: 7937
components:
- type: Transform
pos: 48.5,-27.5
parent: 2
- - uid: 7539
+ - uid: 7938
components:
- type: Transform
pos: 48.5,-26.5
parent: 2
- - uid: 7540
+ - uid: 7939
components:
- type: Transform
pos: 48.5,-25.5
parent: 2
- - uid: 7541
+ - uid: 7940
components:
- type: Transform
pos: 47.5,-31.5
parent: 2
- - uid: 7542
+ - uid: 7941
components:
- type: Transform
pos: 47.5,-30.5
parent: 2
- - uid: 7543
+ - uid: 7942
components:
- type: Transform
pos: 47.5,-29.5
parent: 2
- - uid: 7544
+ - uid: 7943
components:
- type: Transform
pos: 47.5,-28.5
parent: 2
- - uid: 7545
+ - uid: 7944
components:
- type: Transform
pos: 47.5,-27.5
parent: 2
- - uid: 7546
+ - uid: 7945
components:
- type: Transform
pos: 47.5,-26.5
parent: 2
- - uid: 7547
+ - uid: 7946
components:
- type: Transform
pos: 47.5,-25.5
parent: 2
- - uid: 7548
+ - uid: 7947
components:
- type: Transform
pos: 46.5,-31.5
parent: 2
- - uid: 7549
+ - uid: 7948
components:
- type: Transform
pos: 46.5,-30.5
parent: 2
- - uid: 7550
+ - uid: 7949
components:
- type: Transform
pos: 46.5,-29.5
parent: 2
- - uid: 7551
+ - uid: 7950
components:
- type: Transform
pos: 46.5,-28.5
parent: 2
- - uid: 7552
+ - uid: 7951
components:
- type: Transform
pos: 46.5,-27.5
parent: 2
- - uid: 7553
+ - uid: 7952
components:
- type: Transform
pos: 46.5,-26.5
parent: 2
- - uid: 7554
+ - uid: 7953
components:
- type: Transform
pos: 46.5,-25.5
parent: 2
- - uid: 7555
+ - uid: 7954
components:
- type: Transform
pos: 45.5,-31.5
parent: 2
- - uid: 7556
+ - uid: 7955
components:
- type: Transform
pos: 45.5,-30.5
parent: 2
- - uid: 7557
+ - uid: 7956
components:
- type: Transform
pos: 45.5,-29.5
parent: 2
- - uid: 7558
+ - uid: 7957
components:
- type: Transform
pos: 45.5,-28.5
parent: 2
- - uid: 7559
+ - uid: 7958
components:
- type: Transform
pos: 45.5,-26.5
parent: 2
- - uid: 7560
+ - uid: 7959
components:
- type: Transform
pos: 45.5,-27.5
parent: 2
- - uid: 7561
+ - uid: 7960
components:
- type: Transform
pos: 45.5,-25.5
parent: 2
- - uid: 7562
+ - uid: 7961
components:
- type: Transform
pos: 44.5,-31.5
parent: 2
- - uid: 7563
+ - uid: 7962
components:
- type: Transform
pos: 44.5,-29.5
parent: 2
- - uid: 7564
+ - uid: 7963
components:
- type: Transform
pos: 44.5,-30.5
parent: 2
- - uid: 7565
+ - uid: 7964
components:
- type: Transform
pos: 44.5,-27.5
parent: 2
- - uid: 7566
+ - uid: 7965
components:
- type: Transform
pos: 44.5,-28.5
parent: 2
- - uid: 7567
+ - uid: 7966
components:
- type: Transform
pos: 44.5,-26.5
parent: 2
- - uid: 7568
+ - uid: 7971
components:
- type: Transform
pos: 44.5,-25.5
parent: 2
- - uid: 7569
+ - uid: 7972
components:
- type: Transform
pos: 43.5,-31.5
parent: 2
- - uid: 7570
+ - uid: 7973
components:
- type: Transform
pos: 43.5,-30.5
parent: 2
- - uid: 7571
+ - uid: 7974
components:
- type: Transform
pos: 43.5,-29.5
parent: 2
- - uid: 7572
+ - uid: 7979
components:
- type: Transform
pos: 43.5,-28.5
parent: 2
- - uid: 7573
+ - uid: 7980
components:
- type: Transform
pos: 43.5,-27.5
parent: 2
- - uid: 7574
+ - uid: 7981
components:
- type: Transform
pos: 43.5,-26.5
parent: 2
- - uid: 7575
+ - uid: 7982
components:
- type: Transform
pos: 43.5,-25.5
parent: 2
- - uid: 7576
+ - uid: 7987
components:
- type: Transform
pos: 42.5,-31.5
parent: 2
- - uid: 7577
+ - uid: 7988
components:
- type: Transform
pos: 42.5,-30.5
parent: 2
- - uid: 7578
+ - uid: 7989
components:
- type: Transform
pos: 42.5,-29.5
parent: 2
- - uid: 7579
+ - uid: 7990
components:
- type: Transform
pos: 42.5,-28.5
parent: 2
- - uid: 7580
+ - uid: 7995
components:
- type: Transform
pos: 42.5,-27.5
parent: 2
- - uid: 7581
+ - uid: 7996
components:
- type: Transform
pos: 42.5,-26.5
parent: 2
- - uid: 7582
+ - uid: 7997
components:
- type: Transform
pos: 42.5,-25.5
parent: 2
- - uid: 7583
+ - uid: 8006
components:
- type: Transform
pos: 41.5,-31.5
parent: 2
- - uid: 7584
+ - uid: 8010
components:
- type: Transform
pos: 41.5,-30.5
parent: 2
- - uid: 7585
+ - uid: 8047
components:
- type: Transform
pos: 41.5,-29.5
parent: 2
- - uid: 7586
+ - uid: 8069
components:
- type: Transform
pos: 41.5,-28.5
parent: 2
- - uid: 7587
+ - uid: 8076
components:
- type: Transform
pos: 41.5,-27.5
parent: 2
- - uid: 7588
+ - uid: 8077
components:
- type: Transform
pos: 41.5,-26.5
parent: 2
- - uid: 7589
+ - uid: 8083
components:
- type: Transform
pos: 41.5,-25.5
parent: 2
- - uid: 7590
+ - uid: 8089
components:
- type: Transform
pos: 40.5,-31.5
parent: 2
- - uid: 7591
+ - uid: 8093
components:
- type: Transform
pos: 40.5,-30.5
parent: 2
- - uid: 7592
+ - uid: 8098
components:
- type: Transform
pos: 40.5,-29.5
parent: 2
- - uid: 7593
+ - uid: 8099
components:
- type: Transform
pos: 40.5,-28.5
parent: 2
- - uid: 7594
+ - uid: 8100
components:
- type: Transform
pos: 40.5,-27.5
parent: 2
- - uid: 7595
+ - uid: 8105
components:
- type: Transform
pos: 40.5,-26.5
parent: 2
- - uid: 7596
+ - uid: 8106
components:
- type: Transform
pos: 40.5,-25.5
parent: 2
- - uid: 7597
+ - uid: 8107
components:
- type: Transform
pos: 39.5,-31.5
parent: 2
- - uid: 7598
+ - uid: 8108
components:
- type: Transform
pos: 39.5,-30.5
parent: 2
- - uid: 7599
+ - uid: 8113
components:
- type: Transform
pos: 39.5,-29.5
parent: 2
- - uid: 7600
+ - uid: 8114
components:
- type: Transform
pos: 39.5,-28.5
parent: 2
- - uid: 7601
+ - uid: 8115
components:
- type: Transform
pos: 39.5,-27.5
parent: 2
- - uid: 7602
+ - uid: 8116
components:
- type: Transform
pos: 39.5,-26.5
parent: 2
- - uid: 7603
+ - uid: 8121
components:
- type: Transform
pos: 39.5,-25.5
parent: 2
- - uid: 7604
+ - uid: 8122
components:
- type: Transform
pos: 38.5,-31.5
parent: 2
- - uid: 7605
+ - uid: 8123
components:
- type: Transform
pos: 38.5,-30.5
parent: 2
- - uid: 7606
+ - uid: 8124
components:
- type: Transform
pos: 38.5,-29.5
parent: 2
- - uid: 7607
+ - uid: 8128
components:
- type: Transform
pos: 38.5,-28.5
parent: 2
- - uid: 7608
+ - uid: 8129
components:
- type: Transform
pos: 38.5,-27.5
parent: 2
- - uid: 7609
+ - uid: 8130
components:
- type: Transform
pos: 38.5,-26.5
parent: 2
- - uid: 7610
+ - uid: 8131
components:
- type: Transform
pos: 38.5,-25.5
parent: 2
- - uid: 7611
+ - uid: 8137
components:
- type: Transform
pos: 37.5,-31.5
parent: 2
- - uid: 7612
+ - uid: 8138
components:
- type: Transform
pos: 37.5,-30.5
parent: 2
- - uid: 7613
+ - uid: 8139
components:
- type: Transform
pos: 37.5,-29.5
parent: 2
- - uid: 7614
+ - uid: 8140
components:
- type: Transform
pos: 37.5,-28.5
parent: 2
- - uid: 7615
+ - uid: 8141
components:
- type: Transform
pos: 37.5,-27.5
parent: 2
- - uid: 7616
+ - uid: 8142
components:
- type: Transform
pos: 37.5,-26.5
parent: 2
- - uid: 7617
+ - uid: 8143
components:
- type: Transform
pos: 37.5,-25.5
parent: 2
- - uid: 7618
+ - uid: 8144
components:
- type: Transform
pos: 36.5,-31.5
parent: 2
- - uid: 7619
+ - uid: 8145
components:
- type: Transform
pos: 36.5,-30.5
parent: 2
- - uid: 7620
+ - uid: 8146
components:
- type: Transform
pos: 36.5,-29.5
parent: 2
- - uid: 7621
+ - uid: 8147
components:
- type: Transform
pos: 36.5,-28.5
parent: 2
- - uid: 7622
+ - uid: 8148
components:
- type: Transform
pos: 36.5,-27.5
parent: 2
- - uid: 7623
+ - uid: 8149
components:
- type: Transform
pos: 36.5,-26.5
parent: 2
- - uid: 7624
+ - uid: 8150
components:
- type: Transform
pos: 36.5,-25.5
parent: 2
- - uid: 7625
+ - uid: 8151
components:
- type: Transform
pos: 35.5,-31.5
parent: 2
- - uid: 7626
+ - uid: 8152
components:
- type: Transform
pos: 35.5,-30.5
parent: 2
- - uid: 7627
+ - uid: 8153
components:
- type: Transform
pos: 35.5,-29.5
parent: 2
- - uid: 7628
+ - uid: 8154
components:
- type: Transform
pos: 35.5,-28.5
parent: 2
- - uid: 7629
+ - uid: 8155
components:
- type: Transform
pos: 35.5,-27.5
parent: 2
- - uid: 7630
+ - uid: 8156
components:
- type: Transform
pos: 35.5,-26.5
parent: 2
- - uid: 7631
+ - uid: 8157
components:
- type: Transform
pos: 35.5,-25.5
parent: 2
- - uid: 7632
+ - uid: 8158
components:
- type: Transform
pos: 34.5,-31.5
parent: 2
- - uid: 7633
+ - uid: 8159
components:
- type: Transform
pos: 34.5,-30.5
parent: 2
- - uid: 7634
+ - uid: 8160
components:
- type: Transform
pos: 34.5,-29.5
parent: 2
- - uid: 7635
+ - uid: 8161
components:
- type: Transform
pos: 34.5,-28.5
parent: 2
- - uid: 7636
+ - uid: 8162
components:
- type: Transform
pos: 34.5,-27.5
parent: 2
- - uid: 7637
+ - uid: 8163
components:
- type: Transform
pos: 34.5,-26.5
parent: 2
- - uid: 7638
+ - uid: 8164
components:
- type: Transform
pos: 34.5,-25.5
parent: 2
- - uid: 7639
+ - uid: 8165
components:
- type: Transform
pos: 33.5,-31.5
parent: 2
- - uid: 7640
+ - uid: 8166
components:
- type: Transform
pos: 33.5,-30.5
parent: 2
- - uid: 7641
+ - uid: 8167
components:
- type: Transform
pos: 33.5,-29.5
parent: 2
- - uid: 7642
+ - uid: 8168
components:
- type: Transform
pos: 33.5,-28.5
parent: 2
- - uid: 7643
+ - uid: 8169
components:
- type: Transform
pos: 33.5,-27.5
parent: 2
- - uid: 7644
+ - uid: 8170
components:
- type: Transform
pos: 33.5,-26.5
parent: 2
- - uid: 7645
+ - uid: 8171
components:
- type: Transform
pos: 33.5,-25.5
parent: 2
- - uid: 7646
+ - uid: 8172
components:
- type: Transform
pos: 32.5,-31.5
parent: 2
- - uid: 7647
+ - uid: 8173
components:
- type: Transform
pos: 32.5,-30.5
parent: 2
- - uid: 7648
+ - uid: 8174
components:
- type: Transform
pos: 32.5,-29.5
parent: 2
- - uid: 7649
+ - uid: 8175
components:
- type: Transform
pos: 32.5,-28.5
parent: 2
- - uid: 7650
+ - uid: 8176
components:
- type: Transform
pos: 32.5,-27.5
parent: 2
- - uid: 7651
+ - uid: 8177
components:
- type: Transform
pos: 32.5,-26.5
parent: 2
- - uid: 7652
+ - uid: 8178
components:
- type: Transform
pos: 32.5,-25.5
parent: 2
- - uid: 7653
+ - uid: 8179
components:
- type: Transform
pos: 31.5,-31.5
parent: 2
- - uid: 7654
+ - uid: 8180
components:
- type: Transform
pos: 31.5,-30.5
parent: 2
- - uid: 7655
+ - uid: 8181
components:
- type: Transform
pos: 31.5,-29.5
parent: 2
- - uid: 7656
+ - uid: 8182
components:
- type: Transform
pos: 31.5,-28.5
parent: 2
- - uid: 7657
+ - uid: 8183
components:
- type: Transform
pos: 31.5,-27.5
parent: 2
- - uid: 7658
+ - uid: 8184
components:
- type: Transform
pos: 31.5,-26.5
parent: 2
- - uid: 7659
+ - uid: 8185
components:
- type: Transform
pos: 31.5,-25.5
parent: 2
- - uid: 7660
+ - uid: 8186
components:
- type: Transform
pos: 30.5,-31.5
parent: 2
- - uid: 7661
+ - uid: 8187
components:
- type: Transform
pos: 30.5,-30.5
parent: 2
- - uid: 7662
+ - uid: 8188
components:
- type: Transform
pos: 30.5,-29.5
parent: 2
- - uid: 7663
+ - uid: 8189
components:
- type: Transform
pos: 30.5,-28.5
parent: 2
- - uid: 7664
+ - uid: 8190
components:
- type: Transform
pos: 30.5,-27.5
parent: 2
- - uid: 7665
+ - uid: 8191
components:
- type: Transform
pos: 30.5,-26.5
parent: 2
- - uid: 7666
+ - uid: 8192
components:
- type: Transform
pos: 30.5,-25.5
parent: 2
- - uid: 7667
+ - uid: 8193
components:
- type: Transform
pos: 39.5,13.5
parent: 2
- - uid: 7668
+ - uid: 8194
components:
- type: Transform
pos: 38.5,12.5
parent: 2
- - uid: 7669
+ - uid: 8195
components:
- type: Transform
pos: 38.5,13.5
parent: 2
- - uid: 7670
+ - uid: 8196
components:
- type: Transform
pos: 37.5,12.5
parent: 2
- - uid: 7671
+ - uid: 8197
components:
- type: Transform
pos: 25.5,-25.5
parent: 2
- - uid: 7672
+ - uid: 8198
components:
- type: Transform
pos: 25.5,-24.5
parent: 2
- - uid: 7673
+ - uid: 8199
components:
- type: Transform
pos: 37.5,13.5
parent: 2
- - uid: 7674
+ - uid: 8200
components:
- type: Transform
pos: 36.5,13.5
parent: 2
- - uid: 7675
+ - uid: 8201
components:
- type: Transform
pos: 26.5,-25.5
parent: 2
- - uid: 7676
+ - uid: 8202
components:
- type: Transform
pos: 26.5,-24.5
parent: 2
- - uid: 7677
+ - uid: 8203
components:
- type: Transform
pos: 27.5,-26.5
parent: 2
- - uid: 7678
+ - uid: 8204
components:
- type: Transform
pos: 27.5,-25.5
parent: 2
- - uid: 7679
+ - uid: 8205
components:
- type: Transform
pos: 27.5,-24.5
parent: 2
- - uid: 7680
+ - uid: 8206
components:
- type: Transform
pos: 28.5,-27.5
parent: 2
- - uid: 7681
+ - uid: 8207
components:
- type: Transform
pos: 28.5,-26.5
parent: 2
- - uid: 7682
+ - uid: 8208
components:
- type: Transform
pos: 28.5,-25.5
parent: 2
- - uid: 7683
+ - uid: 8209
components:
- type: Transform
pos: 28.5,-24.5
parent: 2
- - uid: 7684
+ - uid: 8210
components:
- type: Transform
pos: 29.5,-29.5
parent: 2
- - uid: 7685
+ - uid: 8211
components:
- type: Transform
pos: 29.5,-28.5
parent: 2
- - uid: 7686
+ - uid: 8212
components:
- type: Transform
pos: 29.5,-27.5
parent: 2
- - uid: 7687
+ - uid: 8213
components:
- type: Transform
pos: 29.5,-26.5
parent: 2
- - uid: 7688
+ - uid: 8214
components:
- type: Transform
pos: 29.5,-25.5
parent: 2
- - uid: 7689
+ - uid: 8215
components:
- type: Transform
pos: 29.5,-24.5
parent: 2
- - uid: 7690
+ - uid: 8216
components:
- type: Transform
pos: 30.5,-24.5
parent: 2
- - uid: 7691
+ - uid: 8217
components:
- type: Transform
pos: 31.5,-24.5
parent: 2
- - uid: 7692
+ - uid: 8218
components:
- type: Transform
pos: 25.5,-23.5
parent: 2
- - uid: 7693
+ - uid: 8219
components:
- type: Transform
pos: 25.5,-22.5
parent: 2
- - uid: 7694
+ - uid: 8220
components:
- type: Transform
pos: 25.5,-21.5
parent: 2
- - uid: 7695
+ - uid: 8221
components:
- type: Transform
pos: 25.5,-20.5
parent: 2
- - uid: 7696
+ - uid: 8222
components:
- type: Transform
pos: 25.5,-19.5
parent: 2
- - uid: 7697
+ - uid: 8223
components:
- type: Transform
pos: 25.5,-18.5
parent: 2
- - uid: 7698
+ - uid: 8224
components:
- type: Transform
pos: 26.5,-23.5
parent: 2
- - uid: 7699
+ - uid: 8225
components:
- type: Transform
pos: 26.5,-22.5
parent: 2
- - uid: 7700
+ - uid: 8226
components:
- type: Transform
pos: 26.5,-21.5
parent: 2
- - uid: 7701
+ - uid: 8227
components:
- type: Transform
pos: 26.5,-20.5
parent: 2
- - uid: 7702
+ - uid: 8228
components:
- type: Transform
pos: 26.5,-19.5
parent: 2
- - uid: 7703
+ - uid: 8229
components:
- type: Transform
pos: 26.5,-18.5
parent: 2
- - uid: 7704
+ - uid: 8230
components:
- type: Transform
pos: 27.5,-23.5
parent: 2
- - uid: 7705
+ - uid: 8231
components:
- type: Transform
pos: 27.5,-22.5
parent: 2
- - uid: 7706
+ - uid: 8232
components:
- type: Transform
pos: 27.5,-21.5
parent: 2
- - uid: 7707
+ - uid: 8233
components:
- type: Transform
pos: 27.5,-20.5
parent: 2
- - uid: 7708
+ - uid: 8234
components:
- type: Transform
pos: 27.5,-19.5
parent: 2
- - uid: 7709
+ - uid: 8235
components:
- type: Transform
pos: 27.5,-18.5
parent: 2
- - uid: 7710
+ - uid: 8236
components:
- type: Transform
pos: 28.5,-23.5
parent: 2
- - uid: 7711
+ - uid: 8237
components:
- type: Transform
pos: 28.5,-22.5
parent: 2
- - uid: 7712
+ - uid: 8238
components:
- type: Transform
pos: 27.5,-17.5
parent: 2
- - uid: 7713
+ - uid: 8239
components:
- type: Transform
pos: 28.5,-21.5
parent: 2
- - uid: 7714
+ - uid: 8240
components:
- type: Transform
pos: 28.5,-20.5
parent: 2
- - uid: 7715
+ - uid: 8241
components:
- type: Transform
pos: 28.5,-19.5
parent: 2
- - uid: 7716
+ - uid: 8242
components:
- type: Transform
pos: 28.5,-18.5
parent: 2
- - uid: 7717
+ - uid: 8243
components:
- type: Transform
pos: 28.5,-17.5
parent: 2
- - uid: 7718
+ - uid: 8244
components:
- type: Transform
pos: 28.5,-16.5
parent: 2
- - uid: 7719
+ - uid: 8245
components:
- type: Transform
pos: 29.5,-23.5
parent: 2
- - uid: 7720
+ - uid: 8246
components:
- type: Transform
pos: 29.5,-22.5
parent: 2
- - uid: 7721
+ - uid: 8247
components:
- type: Transform
pos: 29.5,-21.5
parent: 2
- - uid: 7722
+ - uid: 8248
components:
- type: Transform
pos: 29.5,-20.5
parent: 2
- - uid: 7723
+ - uid: 8249
components:
- type: Transform
pos: 30.5,-23.5
parent: 2
- - uid: 7724
+ - uid: 8250
components:
- type: Transform
pos: 30.5,-22.5
parent: 2
- - uid: 7725
+ - uid: 8251
components:
- type: Transform
pos: 31.5,-23.5
parent: 2
- - uid: 7726
+ - uid: 8252
components:
- type: Transform
pos: 32.5,-24.5
parent: 2
- - uid: 7727
+ - uid: 8253
components:
- type: Transform
pos: 32.5,-23.5
parent: 2
- - uid: 7728
+ - uid: 8254
components:
- type: Transform
pos: 33.5,-24.5
parent: 2
- - uid: 7729
+ - uid: 8255
components:
- type: Transform
pos: 33.5,-23.5
parent: 2
- - uid: 7730
+ - uid: 8256
components:
- type: Transform
pos: 34.5,-24.5
parent: 2
- - uid: 7731
+ - uid: 8257
components:
- type: Transform
pos: 34.5,-23.5
parent: 2
- - uid: 7733
+ - uid: 8258
components:
- type: Transform
pos: 34.5,-22.5
parent: 2
- - uid: 7734
+ - uid: 8259
components:
- type: Transform
pos: 35.5,-24.5
parent: 2
- - uid: 7735
+ - uid: 8260
components:
- type: Transform
pos: 35.5,-23.5
parent: 2
- - uid: 7736
+ - uid: 8261
components:
- type: Transform
pos: 35.5,-22.5
parent: 2
- - uid: 7737
+ - uid: 8262
components:
- type: Transform
pos: 35.5,-21.5
parent: 2
- - uid: 7742
+ - uid: 8263
components:
- type: Transform
pos: 36.5,-24.5
parent: 2
- - uid: 7743
+ - uid: 8264
components:
- type: Transform
pos: 36.5,-23.5
parent: 2
- - uid: 7749
+ - uid: 8265
components:
- type: Transform
pos: 36.5,-22.5
parent: 2
- - uid: 7750
+ - uid: 8266
components:
- type: Transform
pos: 36.5,-21.5
parent: 2
- - uid: 7754
+ - uid: 8267
components:
- type: Transform
pos: 36.5,-20.5
parent: 2
- - uid: 7757
+ - uid: 8268
components:
- type: Transform
pos: 36.5,-19.5
parent: 2
- - uid: 7758
+ - uid: 8269
components:
- type: Transform
pos: 37.5,-24.5
parent: 2
- - uid: 7759
+ - uid: 8270
components:
- type: Transform
pos: 37.5,-23.5
parent: 2
- - uid: 7760
+ - uid: 8271
components:
- type: Transform
pos: 37.5,-22.5
parent: 2
- - uid: 7763
+ - uid: 8272
components:
- type: Transform
pos: 37.5,-21.5
parent: 2
- - uid: 7764
+ - uid: 8273
components:
- type: Transform
pos: 37.5,-20.5
parent: 2
- - uid: 7765
+ - uid: 8274
components:
- type: Transform
pos: 37.5,-19.5
parent: 2
- - uid: 7766
- components:
- - type: Transform
- pos: 37.5,-18.5
- parent: 2
- - uid: 7767
+ - uid: 8276
components:
- type: Transform
pos: 38.5,-24.5
parent: 2
- - uid: 7768
+ - uid: 8277
components:
- type: Transform
pos: 38.5,-23.5
parent: 2
- - uid: 7769
+ - uid: 8278
components:
- type: Transform
pos: 38.5,-22.5
parent: 2
- - uid: 7770
+ - uid: 8279
components:
- type: Transform
pos: 38.5,-21.5
parent: 2
- - uid: 7771
+ - uid: 8280
components:
- type: Transform
pos: 38.5,-20.5
parent: 2
- - uid: 7772
+ - uid: 8281
components:
- type: Transform
pos: 38.5,-19.5
parent: 2
- - uid: 7773
- components:
- - type: Transform
- pos: 38.5,-18.5
- parent: 2
- - uid: 7774
- components:
- - type: Transform
- pos: 38.5,-17.5
- parent: 2
- - uid: 7775
- components:
- - type: Transform
- pos: 38.5,-16.5
- parent: 2
- - uid: 7778
+ - uid: 8285
components:
- type: Transform
pos: 39.5,-24.5
parent: 2
- - uid: 7779
+ - uid: 8286
components:
- type: Transform
pos: 39.5,-23.5
parent: 2
- - uid: 7780
+ - uid: 8287
components:
- type: Transform
pos: 39.5,-22.5
parent: 2
- - uid: 7781
+ - uid: 8288
components:
- type: Transform
pos: 39.5,-21.5
parent: 2
- - uid: 7782
+ - uid: 8289
components:
- type: Transform
pos: 39.5,-20.5
parent: 2
- - uid: 7783
- components:
- - type: Transform
- pos: 39.5,-19.5
- parent: 2
- - uid: 7784
- components:
- - type: Transform
- pos: 39.5,-18.5
- parent: 2
- - uid: 7787
- components:
- - type: Transform
- pos: 39.5,-17.5
- parent: 2
- - uid: 7788
- components:
- - type: Transform
- pos: 39.5,-16.5
- parent: 2
- - uid: 7789
+ - uid: 8294
components:
- type: Transform
pos: 40.5,-24.5
parent: 2
- - uid: 7790
+ - uid: 8295
components:
- type: Transform
pos: 40.5,-23.5
parent: 2
- - uid: 7791
+ - uid: 8296
components:
- type: Transform
pos: 40.5,-22.5
parent: 2
- - uid: 7792
+ - uid: 8297
components:
- type: Transform
pos: 40.5,-21.5
parent: 2
- - uid: 7794
+ - uid: 8298
components:
- type: Transform
pos: 40.5,-20.5
parent: 2
- - uid: 7799
+ - uid: 8299
components:
- type: Transform
pos: 41.5,-24.5
parent: 2
- - uid: 7800
+ - uid: 8300
components:
- type: Transform
pos: 41.5,-23.5
parent: 2
- - uid: 7801
+ - uid: 8301
components:
- type: Transform
pos: 41.5,-22.5
parent: 2
- - uid: 7802
+ - uid: 8302
components:
- type: Transform
pos: 41.5,-21.5
parent: 2
- - uid: 7803
+ - uid: 8303
components:
- type: Transform
pos: 41.5,-20.5
parent: 2
- - uid: 7812
+ - uid: 8304
components:
- type: Transform
pos: 42.5,-24.5
parent: 2
- - uid: 7819
+ - uid: 8305
components:
- type: Transform
pos: 42.5,-23.5
parent: 2
- - uid: 7827
+ - uid: 8306
components:
- type: Transform
pos: 42.5,-22.5
parent: 2
- - uid: 7828
+ - uid: 8307
components:
- type: Transform
pos: 42.5,-21.5
parent: 2
- - uid: 7829
+ - uid: 8308
components:
- type: Transform
pos: 42.5,-20.5
parent: 2
- - uid: 7850
+ - uid: 8309
components:
- type: Transform
pos: 43.5,-24.5
parent: 2
- - uid: 7853
+ - uid: 8310
components:
- type: Transform
pos: 43.5,-23.5
parent: 2
- - uid: 7855
+ - uid: 8311
components:
- type: Transform
pos: 43.5,-22.5
parent: 2
- - uid: 7856
+ - uid: 8312
components:
- type: Transform
pos: 43.5,-21.5
parent: 2
- - uid: 7857
+ - uid: 8313
components:
- type: Transform
pos: 43.5,-20.5
parent: 2
- - uid: 7867
+ - uid: 8314
components:
- type: Transform
pos: 44.5,-24.5
parent: 2
- - uid: 7868
+ - uid: 8315
components:
- type: Transform
pos: 44.5,-23.5
parent: 2
- - uid: 7872
+ - uid: 8316
components:
- type: Transform
pos: 44.5,-22.5
parent: 2
- - uid: 7873
+ - uid: 8317
components:
- type: Transform
pos: 44.5,-21.5
parent: 2
- - uid: 7874
+ - uid: 8318
components:
- type: Transform
pos: 44.5,-20.5
parent: 2
- - uid: 7881
+ - uid: 8319
components:
- type: Transform
pos: 45.5,-24.5
parent: 2
- - uid: 7882
+ - uid: 8320
components:
- type: Transform
pos: 45.5,-23.5
parent: 2
- - uid: 7883
+ - uid: 8321
components:
- type: Transform
pos: 45.5,-22.5
parent: 2
- - uid: 7884
+ - uid: 8322
components:
- type: Transform
pos: 45.5,-21.5
parent: 2
- - uid: 7885
+ - uid: 8323
components:
- type: Transform
pos: 45.5,-20.5
parent: 2
- - uid: 7888
- components:
- - type: Transform
- pos: 41.5,-12.5
- parent: 2
- - uid: 7890
+ - uid: 8325
components:
- type: Transform
pos: 46.5,-24.5
parent: 2
- - uid: 7891
+ - uid: 8326
components:
- type: Transform
pos: 46.5,-23.5
parent: 2
- - uid: 7892
+ - uid: 8327
components:
- type: Transform
pos: 46.5,-22.5
parent: 2
- - uid: 7893
+ - uid: 8328
components:
- type: Transform
pos: 46.5,-21.5
parent: 2
- - uid: 7894
+ - uid: 8329
components:
- type: Transform
pos: 46.5,-20.5
parent: 2
- - uid: 7898
- components:
- - type: Transform
- pos: 41.5,-16.5
- parent: 2
- - uid: 7899
+ - uid: 8331
components:
- type: Transform
pos: 47.5,-24.5
parent: 2
- - uid: 7900
+ - uid: 8332
components:
- type: Transform
pos: 47.5,-23.5
parent: 2
- - uid: 7901
+ - uid: 8333
components:
- type: Transform
pos: 47.5,-22.5
parent: 2
- - uid: 7902
+ - uid: 8334
components:
- type: Transform
pos: 47.5,-21.5
parent: 2
- - uid: 7903
+ - uid: 8335
components:
- type: Transform
pos: 47.5,-20.5
parent: 2
- - uid: 7904
- components:
- - type: Transform
- pos: 41.5,-17.5
- parent: 2
- - uid: 7906
- components:
- - type: Transform
- pos: 41.5,-15.5
- parent: 2
- - uid: 7907
- components:
- - type: Transform
- pos: 41.5,-18.5
- parent: 2
- - uid: 7908
+ - uid: 8339
components:
- type: Transform
pos: 48.5,-24.5
parent: 2
- - uid: 7909
+ - uid: 8340
components:
- type: Transform
pos: 48.5,-23.5
parent: 2
- - uid: 7910
+ - uid: 8341
components:
- type: Transform
pos: 48.5,-22.5
parent: 2
- - uid: 7911
+ - uid: 8342
components:
- type: Transform
pos: 48.5,-21.5
parent: 2
- - uid: 7912
+ - uid: 8343
components:
- type: Transform
pos: 48.5,-20.5
parent: 2
- - uid: 7913
- components:
- - type: Transform
- pos: 41.5,-19.5
- parent: 2
- - uid: 7917
+ - uid: 8345
components:
- type: Transform
pos: 49.5,-24.5
parent: 2
- - uid: 7918
+ - uid: 8346
components:
- type: Transform
pos: 49.5,-23.5
parent: 2
- - uid: 7919
+ - uid: 8347
components:
- type: Transform
pos: 49.5,-22.5
parent: 2
- - uid: 7920
+ - uid: 8348
components:
- type: Transform
pos: 49.5,-21.5
parent: 2
- - uid: 7921
+ - uid: 8349
components:
- type: Transform
pos: 49.5,-20.5
parent: 2
- - uid: 7926
+ - uid: 8350
components:
- type: Transform
pos: 50.5,-24.5
parent: 2
- - uid: 7927
+ - uid: 8351
components:
- type: Transform
pos: 50.5,-23.5
parent: 2
- - uid: 7928
+ - uid: 8352
components:
- type: Transform
pos: 50.5,-22.5
parent: 2
- - uid: 7929
+ - uid: 8353
components:
- type: Transform
pos: 50.5,-21.5
parent: 2
- - uid: 7930
+ - uid: 8354
components:
- type: Transform
pos: 50.5,-20.5
parent: 2
- - uid: 7935
+ - uid: 8355
components:
- type: Transform
pos: 28.5,-15.5
parent: 2
- - uid: 7936
+ - uid: 8356
components:
- type: Transform
pos: 40.5,6.5
parent: 2
- - uid: 7937
+ - uid: 8357
components:
- type: Transform
pos: 35.5,3.5
parent: 2
- - uid: 7938
+ - uid: 8358
components:
- type: Transform
pos: 33.5,-8.5
parent: 2
- - uid: 7939
+ - uid: 8359
components:
- type: Transform
pos: 34.5,-9.5
parent: 2
- - uid: 7940
+ - uid: 8360
components:
- type: Transform
pos: 34.5,-8.5
parent: 2
- - uid: 7941
+ - uid: 8361
components:
- type: Transform
pos: 35.5,-10.5
parent: 2
- - uid: 7942
+ - uid: 8362
components:
- type: Transform
pos: 35.5,-9.5
parent: 2
- - uid: 7943
+ - uid: 8363
components:
- type: Transform
pos: 35.5,-8.5
parent: 2
- - uid: 7944
+ - uid: 8364
components:
- type: Transform
pos: 36.5,-10.5
parent: 2
- - uid: 7945
+ - uid: 8365
components:
- type: Transform
pos: 36.5,-9.5
parent: 2
- - uid: 7946
+ - uid: 8366
components:
- type: Transform
pos: 36.5,-8.5
parent: 2
- - uid: 7947
+ - uid: 8367
components:
- type: Transform
pos: 37.5,-11.5
parent: 2
- - uid: 7948
+ - uid: 8368
components:
- type: Transform
pos: 37.5,-10.5
parent: 2
- - uid: 7949
+ - uid: 8369
components:
- type: Transform
pos: 37.5,-9.5
parent: 2
- - uid: 7950
+ - uid: 8370
components:
- type: Transform
pos: 37.5,-8.5
parent: 2
- - uid: 7951
- components:
- - type: Transform
- pos: 38.5,-15.5
- parent: 2
- - uid: 7952
- components:
- - type: Transform
- pos: 38.5,-14.5
- parent: 2
- - uid: 7953
- components:
- - type: Transform
- pos: 38.5,-13.5
- parent: 2
- - uid: 7954
- components:
- - type: Transform
- pos: 38.5,-12.5
- parent: 2
- - uid: 7955
- components:
- - type: Transform
- pos: 38.5,-11.5
- parent: 2
- - uid: 7956
+ - uid: 8399
components:
- type: Transform
pos: 38.5,-10.5
parent: 2
- - uid: 7957
+ - uid: 8400
components:
- type: Transform
pos: 38.5,-9.5
parent: 2
- - uid: 7958
+ - uid: 8408
components:
- type: Transform
pos: 38.5,-8.5
parent: 2
- - uid: 7959
- components:
- - type: Transform
- pos: 39.5,-15.5
- parent: 2
- - uid: 7960
- components:
- - type: Transform
- pos: 39.5,-14.5
- parent: 2
- - uid: 7961
- components:
- - type: Transform
- pos: 39.5,-13.5
- parent: 2
- - uid: 7962
- components:
- - type: Transform
- pos: 39.5,-12.5
- parent: 2
- - uid: 7963
- components:
- - type: Transform
- pos: 39.5,-11.5
- parent: 2
- - uid: 7964
+ - uid: 8415
components:
- type: Transform
pos: 39.5,-10.5
parent: 2
- - uid: 7965
+ - uid: 8416
components:
- type: Transform
pos: 39.5,-9.5
parent: 2
- - uid: 7966
+ - uid: 8417
components:
- type: Transform
pos: 39.5,-8.5
parent: 2
- - uid: 7971
- components:
- - type: Transform
- pos: 40.5,-11.5
- parent: 2
- - uid: 7972
- components:
- - type: Transform
- pos: 40.5,-10.5
- parent: 2
- - uid: 7973
+ - uid: 8420
components:
- type: Transform
pos: 40.5,-9.5
parent: 2
- - uid: 7974
+ - uid: 8421
components:
- type: Transform
pos: 40.5,-8.5
parent: 2
- - uid: 7979
- components:
- - type: Transform
- pos: 41.5,-11.5
- parent: 2
- - uid: 7980
- components:
- - type: Transform
- pos: 41.5,-10.5
- parent: 2
- - uid: 7981
+ - uid: 8424
components:
- type: Transform
pos: 41.5,-9.5
parent: 2
- - uid: 7982
+ - uid: 8425
components:
- type: Transform
pos: 41.5,-8.5
parent: 2
- - uid: 7987
- components:
- - type: Transform
- pos: 42.5,-11.5
- parent: 2
- - uid: 7988
+ - uid: 8427
components:
- type: Transform
pos: 42.5,-10.5
parent: 2
- - uid: 7989
+ - uid: 8428
components:
- type: Transform
pos: 42.5,-9.5
parent: 2
- - uid: 7990
+ - uid: 8429
components:
- type: Transform
pos: 42.5,-8.5
parent: 2
- - uid: 7995
+ - uid: 8430
components:
- type: Transform
pos: 43.5,-11.5
parent: 2
- - uid: 7996
+ - uid: 8431
components:
- type: Transform
pos: 43.5,-10.5
parent: 2
- - uid: 7997
+ - uid: 8432
components:
- type: Transform
pos: 43.5,-9.5
parent: 2
- - uid: 8006
+ - uid: 8433
components:
- type: Transform
pos: 43.5,-8.5
parent: 2
- - uid: 8069
+ - uid: 8434
components:
- type: Transform
pos: 44.5,-11.5
parent: 2
- - uid: 8076
+ - uid: 8435
components:
- type: Transform
pos: 44.5,-10.5
parent: 2
- - uid: 8077
+ - uid: 8436
components:
- type: Transform
pos: 44.5,-9.5
parent: 2
- - uid: 8083
+ - uid: 8437
components:
- type: Transform
pos: 44.5,-8.5
parent: 2
- - uid: 8093
+ - uid: 8438
components:
- type: Transform
pos: 45.5,-11.5
parent: 2
- - uid: 8098
+ - uid: 8439
components:
- type: Transform
pos: 45.5,-10.5
parent: 2
- - uid: 8099
+ - uid: 8440
components:
- type: Transform
pos: 45.5,-9.5
parent: 2
- - uid: 8100
+ - uid: 8441
components:
- type: Transform
pos: 45.5,-8.5
parent: 2
- - uid: 8105
+ - uid: 8442
components:
- type: Transform
pos: 46.5,-11.5
parent: 2
- - uid: 8106
+ - uid: 8443
components:
- type: Transform
pos: 46.5,-10.5
parent: 2
- - uid: 8107
+ - uid: 8444
components:
- type: Transform
pos: 46.5,-9.5
parent: 2
- - uid: 8108
+ - uid: 8445
components:
- type: Transform
pos: 46.5,-8.5
parent: 2
- - uid: 8113
+ - uid: 8446
components:
- type: Transform
pos: 47.5,-11.5
parent: 2
- - uid: 8114
+ - uid: 8447
components:
- type: Transform
pos: 47.5,-10.5
parent: 2
- - uid: 8115
+ - uid: 8448
components:
- type: Transform
pos: 47.5,-9.5
parent: 2
- - uid: 8116
+ - uid: 8449
components:
- type: Transform
pos: 47.5,-8.5
parent: 2
- - uid: 8121
+ - uid: 8450
components:
- type: Transform
pos: 48.5,-11.5
parent: 2
- - uid: 8122
+ - uid: 8451
components:
- type: Transform
pos: 48.5,-10.5
parent: 2
- - uid: 8123
+ - uid: 8452
components:
- type: Transform
pos: 48.5,-9.5
parent: 2
- - uid: 8124
+ - uid: 8453
components:
- type: Transform
pos: 48.5,-8.5
parent: 2
- - uid: 8128
+ - uid: 8454
components:
- type: Transform
pos: 49.5,-11.5
parent: 2
- - uid: 8129
+ - uid: 8455
components:
- type: Transform
pos: 49.5,-10.5
parent: 2
- - uid: 8130
+ - uid: 8456
components:
- type: Transform
pos: 49.5,-9.5
parent: 2
- - uid: 8131
+ - uid: 8457
components:
- type: Transform
pos: 49.5,-8.5
parent: 2
- - uid: 8137
+ - uid: 8458
components:
- type: Transform
pos: 50.5,-11.5
parent: 2
- - uid: 8138
+ - uid: 8459
components:
- type: Transform
pos: 50.5,-10.5
parent: 2
- - uid: 8139
+ - uid: 8460
components:
- type: Transform
pos: 50.5,-9.5
parent: 2
- - uid: 8140
+ - uid: 8461
components:
- type: Transform
pos: 50.5,-8.5
parent: 2
- - uid: 8141
+ - uid: 8462
components:
- type: Transform
pos: 51.5,-13.5
parent: 2
- - uid: 8142
+ - uid: 8463
components:
- type: Transform
pos: 51.5,-12.5
parent: 2
- - uid: 8143
+ - uid: 8464
components:
- type: Transform
pos: 51.5,-11.5
parent: 2
- - uid: 8144
+ - uid: 8465
components:
- type: Transform
pos: 51.5,-10.5
parent: 2
- - uid: 8145
+ - uid: 8466
components:
- type: Transform
pos: 51.5,-8.5
parent: 2
- - uid: 8146
+ - uid: 8467
components:
- type: Transform
pos: 51.5,-14.5
parent: 2
- - uid: 8147
+ - uid: 8468
components:
- type: Transform
pos: 51.5,-9.5
parent: 2
- - uid: 8148
+ - uid: 8469
components:
- type: Transform
pos: 52.5,-13.5
parent: 2
- - uid: 8149
+ - uid: 8470
components:
- type: Transform
pos: 52.5,-12.5
parent: 2
- - uid: 8150
+ - uid: 8471
components:
- type: Transform
pos: 52.5,-11.5
parent: 2
- - uid: 8151
+ - uid: 8472
components:
- type: Transform
pos: 52.5,-14.5
parent: 2
- - uid: 8152
+ - uid: 8473
components:
- type: Transform
pos: 52.5,-10.5
parent: 2
- - uid: 8153
+ - uid: 8474
components:
- type: Transform
pos: 52.5,-9.5
parent: 2
- - uid: 8154
+ - uid: 8475
components:
- type: Transform
pos: 52.5,-8.5
parent: 2
- - uid: 8155
+ - uid: 8476
components:
- type: Transform
pos: 56.5,-2.5
parent: 2
- - uid: 8156
+ - uid: 8477
components:
- type: Transform
pos: 55.5,-9.5
parent: 2
- - uid: 8157
+ - uid: 8478
components:
- type: Transform
pos: 55.5,-7.5
parent: 2
- - uid: 8158
+ - uid: 8479
components:
- type: Transform
pos: 55.5,-6.5
parent: 2
- - uid: 8159
+ - uid: 8480
components:
- type: Transform
pos: 55.5,-5.5
parent: 2
- - uid: 8160
+ - uid: 8481
components:
- type: Transform
pos: 55.5,-4.5
parent: 2
- - uid: 8161
+ - uid: 8482
components:
- type: Transform
pos: 55.5,-8.5
parent: 2
- - uid: 8162
+ - uid: 8483
components:
- type: Transform
pos: 55.5,-2.5
parent: 2
- - uid: 8163
+ - uid: 8484
components:
- type: Transform
pos: 54.5,-9.5
parent: 2
- - uid: 8164
+ - uid: 8485
components:
- type: Transform
pos: 54.5,-8.5
parent: 2
- - uid: 8165
+ - uid: 8486
components:
- type: Transform
pos: 55.5,-3.5
parent: 2
- - uid: 8166
+ - uid: 8487
components:
- type: Transform
pos: 54.5,-6.5
parent: 2
- - uid: 8167
+ - uid: 8488
components:
- type: Transform
pos: 54.5,-5.5
parent: 2
- - uid: 8168
+ - uid: 8489
components:
- type: Transform
pos: 54.5,-4.5
parent: 2
- - uid: 8169
+ - uid: 8490
components:
- type: Transform
pos: 54.5,-7.5
parent: 2
- - uid: 8170
+ - uid: 8491
components:
- type: Transform
pos: 54.5,-3.5
parent: 2
- - uid: 8171
+ - uid: 8492
components:
- type: Transform
pos: 54.5,-2.5
parent: 2
- - uid: 8172
+ - uid: 8493
components:
- type: Transform
pos: 53.5,-9.5
parent: 2
- - uid: 8173
+ - uid: 8494
components:
- type: Transform
pos: 53.5,-8.5
parent: 2
- - uid: 8174
+ - uid: 8495
components:
- type: Transform
pos: 53.5,-7.5
parent: 2
- - uid: 8175
+ - uid: 8496
components:
- type: Transform
pos: 53.5,-6.5
parent: 2
- - uid: 8176
+ - uid: 8497
components:
- type: Transform
pos: 53.5,-5.5
parent: 2
- - uid: 8177
+ - uid: 8498
components:
- type: Transform
pos: 53.5,-4.5
parent: 2
- - uid: 8178
+ - uid: 8499
components:
- type: Transform
pos: 53.5,-3.5
parent: 2
- - uid: 8179
+ - uid: 8500
components:
- type: Transform
pos: 53.5,-2.5
parent: 2
- - uid: 8180
+ - uid: 8501
components:
- type: Transform
pos: 52.5,-7.5
parent: 2
- - uid: 8181
+ - uid: 8502
components:
- type: Transform
pos: 52.5,-6.5
parent: 2
- - uid: 8182
+ - uid: 8503
components:
- type: Transform
pos: 52.5,-5.5
parent: 2
- - uid: 8183
+ - uid: 8504
components:
- type: Transform
pos: 52.5,-4.5
parent: 2
- - uid: 8184
+ - uid: 8505
components:
- type: Transform
pos: 52.5,-3.5
parent: 2
- - uid: 8185
+ - uid: 8506
components:
- type: Transform
pos: 52.5,-2.5
parent: 2
- - uid: 8186
+ - uid: 8507
components:
- type: Transform
pos: 51.5,-7.5
parent: 2
- - uid: 8187
+ - uid: 8508
components:
- type: Transform
pos: 51.5,-6.5
parent: 2
- - uid: 8188
+ - uid: 8509
components:
- type: Transform
pos: 51.5,-5.5
parent: 2
- - uid: 8189
+ - uid: 8510
components:
- type: Transform
pos: 51.5,-4.5
parent: 2
- - uid: 8190
+ - uid: 8511
components:
- type: Transform
pos: 51.5,-3.5
parent: 2
- - uid: 8191
+ - uid: 8512
components:
- type: Transform
pos: 51.5,-2.5
parent: 2
- - uid: 8192
+ - uid: 8513
components:
- type: Transform
pos: 50.5,-7.5
parent: 2
- - uid: 8193
+ - uid: 8514
components:
- type: Transform
pos: 50.5,-6.5
parent: 2
- - uid: 8194
+ - uid: 8515
components:
- type: Transform
pos: 50.5,-5.5
parent: 2
- - uid: 8195
+ - uid: 8516
components:
- type: Transform
pos: 50.5,-4.5
parent: 2
- - uid: 8196
+ - uid: 8517
components:
- type: Transform
pos: 50.5,-3.5
parent: 2
- - uid: 8197
+ - uid: 8518
components:
- type: Transform
pos: 50.5,-2.5
parent: 2
- - uid: 8198
+ - uid: 8519
components:
- type: Transform
pos: 49.5,-7.5
parent: 2
- - uid: 8199
+ - uid: 8520
components:
- type: Transform
pos: 49.5,-6.5
parent: 2
- - uid: 8200
+ - uid: 8521
components:
- type: Transform
pos: 49.5,-5.5
parent: 2
- - uid: 8201
+ - uid: 8522
components:
- type: Transform
pos: 49.5,-4.5
parent: 2
- - uid: 8202
+ - uid: 8523
components:
- type: Transform
pos: 49.5,-3.5
parent: 2
- - uid: 8203
+ - uid: 8524
components:
- type: Transform
pos: 49.5,-2.5
parent: 2
- - uid: 8204
+ - uid: 8525
components:
- type: Transform
pos: 48.5,-7.5
parent: 2
- - uid: 8205
+ - uid: 8526
components:
- type: Transform
pos: 48.5,-6.5
parent: 2
- - uid: 8206
+ - uid: 8527
components:
- type: Transform
pos: 48.5,-5.5
parent: 2
- - uid: 8207
+ - uid: 8528
components:
- type: Transform
pos: 48.5,-4.5
parent: 2
- - uid: 8208
+ - uid: 8529
components:
- type: Transform
pos: 48.5,-3.5
parent: 2
- - uid: 8209
+ - uid: 8530
components:
- type: Transform
pos: 48.5,-2.5
parent: 2
- - uid: 8210
+ - uid: 8531
components:
- type: Transform
pos: 47.5,-7.5
parent: 2
- - uid: 8211
+ - uid: 8532
components:
- type: Transform
pos: 47.5,-6.5
parent: 2
- - uid: 8212
+ - uid: 8533
components:
- type: Transform
pos: 47.5,-5.5
parent: 2
- - uid: 8213
+ - uid: 8534
components:
- type: Transform
pos: 47.5,-4.5
parent: 2
- - uid: 8214
+ - uid: 8535
components:
- type: Transform
pos: 47.5,-3.5
parent: 2
- - uid: 8215
+ - uid: 8536
components:
- type: Transform
pos: 47.5,-2.5
parent: 2
- - uid: 8216
+ - uid: 8537
components:
- type: Transform
pos: 46.5,-7.5
parent: 2
- - uid: 8217
+ - uid: 8538
components:
- type: Transform
pos: 46.5,-6.5
parent: 2
- - uid: 8218
+ - uid: 8539
components:
- type: Transform
pos: 46.5,-5.5
parent: 2
- - uid: 8219
+ - uid: 8540
components:
- type: Transform
pos: 46.5,-4.5
parent: 2
- - uid: 8220
+ - uid: 8541
components:
- type: Transform
pos: 46.5,-2.5
parent: 2
- - uid: 8221
+ - uid: 8542
components:
- type: Transform
pos: 46.5,-3.5
parent: 2
- - uid: 8222
+ - uid: 8543
components:
- type: Transform
pos: 45.5,-7.5
parent: 2
- - uid: 8223
+ - uid: 8544
components:
- type: Transform
pos: 45.5,-6.5
parent: 2
- - uid: 8224
+ - uid: 8545
components:
- type: Transform
pos: 45.5,-5.5
parent: 2
- - uid: 8225
+ - uid: 8546
components:
- type: Transform
pos: 45.5,-4.5
parent: 2
- - uid: 8226
+ - uid: 8547
components:
- type: Transform
pos: 45.5,-3.5
parent: 2
- - uid: 8227
+ - uid: 8548
components:
- type: Transform
pos: 45.5,-2.5
parent: 2
- - uid: 8228
+ - uid: 8549
components:
- type: Transform
pos: 44.5,-7.5
parent: 2
- - uid: 8229
+ - uid: 8550
components:
- type: Transform
pos: 44.5,-6.5
parent: 2
- - uid: 8230
+ - uid: 8551
components:
- type: Transform
pos: 44.5,-5.5
parent: 2
- - uid: 8231
+ - uid: 8553
components:
- type: Transform
pos: 44.5,-4.5
parent: 2
- - uid: 8232
+ - uid: 8554
components:
- type: Transform
pos: 44.5,-3.5
parent: 2
- - uid: 8233
+ - uid: 8555
components:
- type: Transform
pos: 44.5,-2.5
parent: 2
- - uid: 8234
+ - uid: 8556
components:
- type: Transform
pos: 43.5,-7.5
parent: 2
- - uid: 8235
+ - uid: 8557
components:
- type: Transform
pos: 43.5,-6.5
parent: 2
- - uid: 8236
+ - uid: 8560
components:
- type: Transform
pos: 43.5,-5.5
parent: 2
- - uid: 8237
+ - uid: 8561
components:
- type: Transform
pos: 43.5,-4.5
parent: 2
- - uid: 8238
+ - uid: 8562
components:
- type: Transform
pos: 43.5,-3.5
parent: 2
- - uid: 8239
+ - uid: 8563
components:
- type: Transform
pos: 43.5,-2.5
parent: 2
- - uid: 8240
+ - uid: 8564
components:
- type: Transform
pos: 42.5,-7.5
parent: 2
- - uid: 8241
+ - uid: 8567
components:
- type: Transform
pos: 42.5,-6.5
parent: 2
- - uid: 8242
+ - uid: 8568
components:
- type: Transform
pos: 42.5,-5.5
parent: 2
- - uid: 8243
+ - uid: 8569
components:
- type: Transform
pos: 42.5,-4.5
parent: 2
- - uid: 8244
+ - uid: 8570
components:
- type: Transform
pos: 42.5,-3.5
parent: 2
- - uid: 8245
+ - uid: 8571
components:
- type: Transform
pos: 42.5,-2.5
parent: 2
- - uid: 8246
+ - uid: 8573
components:
- type: Transform
pos: 41.5,-7.5
parent: 2
- - uid: 8247
+ - uid: 8574
components:
- type: Transform
pos: 41.5,-6.5
parent: 2
- - uid: 8248
+ - uid: 8575
components:
- type: Transform
pos: 41.5,-5.5
parent: 2
- - uid: 8249
+ - uid: 8576
components:
- type: Transform
pos: 41.5,-4.5
parent: 2
- - uid: 8250
+ - uid: 8577
components:
- type: Transform
pos: 41.5,-3.5
parent: 2
- - uid: 8251
+ - uid: 8578
components:
- type: Transform
pos: 41.5,-2.5
parent: 2
- - uid: 8252
+ - uid: 8579
components:
- type: Transform
pos: 40.5,-7.5
parent: 2
- - uid: 8253
+ - uid: 8580
components:
- type: Transform
pos: 40.5,-6.5
parent: 2
- - uid: 8254
+ - uid: 8619
components:
- type: Transform
pos: 40.5,-5.5
parent: 2
- - uid: 8255
+ - uid: 8621
components:
- type: Transform
pos: 40.5,-4.5
parent: 2
- - uid: 8256
+ - uid: 8644
components:
- type: Transform
pos: 40.5,-3.5
parent: 2
- - uid: 8257
+ - uid: 8647
components:
- type: Transform
pos: 40.5,-2.5
parent: 2
- - uid: 8258
+ - uid: 8661
components:
- type: Transform
pos: 39.5,-7.5
parent: 2
- - uid: 8259
+ - uid: 8662
components:
- type: Transform
pos: 39.5,-6.5
parent: 2
- - uid: 8260
+ - uid: 8663
components:
- type: Transform
pos: 39.5,-5.5
parent: 2
- - uid: 8261
+ - uid: 8664
components:
- type: Transform
pos: 39.5,-4.5
parent: 2
- - uid: 8262
+ - uid: 8666
components:
- type: Transform
pos: 39.5,-3.5
parent: 2
- - uid: 8263
+ - uid: 8667
components:
- type: Transform
pos: 39.5,-2.5
parent: 2
- - uid: 8264
+ - uid: 8668
components:
- type: Transform
pos: 38.5,-7.5
parent: 2
- - uid: 8265
+ - uid: 8669
components:
- type: Transform
pos: 38.5,-6.5
parent: 2
- - uid: 8266
+ - uid: 8670
components:
- type: Transform
pos: 38.5,-5.5
parent: 2
- - uid: 8267
+ - uid: 8671
components:
- type: Transform
pos: 38.5,-4.5
parent: 2
- - uid: 8268
+ - uid: 8672
components:
- type: Transform
pos: 38.5,-3.5
parent: 2
- - uid: 8269
+ - uid: 8673
components:
- type: Transform
pos: 38.5,-2.5
parent: 2
- - uid: 8270
+ - uid: 8674
components:
- type: Transform
pos: 37.5,-7.5
parent: 2
- - uid: 8271
+ - uid: 8675
components:
- type: Transform
pos: 37.5,-6.5
parent: 2
- - uid: 8272
+ - uid: 8676
components:
- type: Transform
pos: 37.5,-5.5
parent: 2
- - uid: 8273
+ - uid: 8677
components:
- type: Transform
pos: 37.5,-4.5
parent: 2
- - uid: 8274
+ - uid: 8678
components:
- type: Transform
pos: 37.5,-3.5
parent: 2
- - uid: 8275
+ - uid: 8679
components:
- type: Transform
pos: 37.5,-2.5
parent: 2
- - uid: 8276
+ - uid: 8680
components:
- type: Transform
pos: 36.5,-7.5
parent: 2
- - uid: 8277
+ - uid: 8681
components:
- type: Transform
pos: 36.5,-6.5
parent: 2
- - uid: 8278
+ - uid: 8682
components:
- type: Transform
pos: 36.5,-5.5
parent: 2
- - uid: 8279
+ - uid: 8683
components:
- type: Transform
pos: 36.5,-4.5
parent: 2
- - uid: 8280
+ - uid: 8684
components:
- type: Transform
pos: 36.5,-3.5
parent: 2
- - uid: 8281
+ - uid: 8685
components:
- type: Transform
pos: 36.5,-2.5
parent: 2
- - uid: 8282
+ - uid: 8686
components:
- type: Transform
pos: 35.5,-7.5
parent: 2
- - uid: 8283
+ - uid: 8687
components:
- type: Transform
pos: 35.5,-6.5
parent: 2
- - uid: 8284
+ - uid: 8688
components:
- type: Transform
pos: 35.5,-5.5
parent: 2
- - uid: 8285
+ - uid: 8692
components:
- type: Transform
pos: 35.5,-4.5
parent: 2
- - uid: 8286
+ - uid: 8693
components:
- type: Transform
pos: 35.5,-3.5
parent: 2
- - uid: 8287
+ - uid: 8694
components:
- type: Transform
pos: 35.5,-2.5
parent: 2
- - uid: 8288
+ - uid: 8695
components:
- type: Transform
pos: 34.5,-7.5
parent: 2
- - uid: 8289
+ - uid: 8696
components:
- type: Transform
pos: 34.5,-6.5
parent: 2
- - uid: 8290
+ - uid: 8697
components:
- type: Transform
pos: 34.5,-5.5
parent: 2
- - uid: 8291
+ - uid: 8698
components:
- type: Transform
pos: 34.5,-4.5
parent: 2
- - uid: 8292
+ - uid: 8699
components:
- type: Transform
pos: 34.5,-3.5
parent: 2
- - uid: 8293
+ - uid: 8700
components:
- type: Transform
pos: 34.5,-2.5
parent: 2
- - uid: 8294
+ - uid: 8701
components:
- type: Transform
pos: 33.5,-7.5
parent: 2
- - uid: 8295
+ - uid: 8702
components:
- type: Transform
pos: 33.5,-6.5
parent: 2
- - uid: 8296
+ - uid: 8703
components:
- type: Transform
pos: 33.5,-5.5
parent: 2
- - uid: 8297
+ - uid: 8704
components:
- type: Transform
pos: 33.5,-4.5
parent: 2
- - uid: 8298
+ - uid: 8705
components:
- type: Transform
pos: 33.5,-3.5
parent: 2
- - uid: 8299
+ - uid: 8706
components:
- type: Transform
pos: 33.5,-2.5
parent: 2
- - uid: 8300
+ - uid: 8707
components:
- type: Transform
pos: 32.5,-7.5
parent: 2
- - uid: 8301
+ - uid: 8708
components:
- type: Transform
pos: 32.5,-6.5
parent: 2
- - uid: 8302
+ - uid: 8709
components:
- type: Transform
pos: 32.5,-5.5
parent: 2
- - uid: 8303
+ - uid: 8710
components:
- type: Transform
pos: 32.5,-4.5
parent: 2
- - uid: 8304
+ - uid: 8711
components:
- type: Transform
pos: 32.5,-3.5
parent: 2
- - uid: 8305
+ - uid: 8712
components:
- type: Transform
pos: 32.5,-2.5
parent: 2
- - uid: 8306
+ - uid: 8713
components:
- type: Transform
pos: 34.5,3.5
parent: 2
- - uid: 8307
+ - uid: 8714
components:
- type: Transform
pos: 38.5,6.5
parent: 2
- - uid: 8308
+ - uid: 8715
components:
- type: Transform
pos: 39.5,6.5
parent: 2
- - uid: 8309
+ - uid: 8716
components:
- type: Transform
pos: 41.5,5.5
parent: 2
- - uid: 8310
+ - uid: 8717
components:
- type: Transform
pos: 39.5,5.5
parent: 2
- - uid: 8311
+ - uid: 8718
components:
- type: Transform
pos: 40.5,5.5
parent: 2
- - uid: 8312
+ - uid: 8719
components:
- type: Transform
pos: 55.5,-1.5
parent: 2
- - uid: 8313
+ - uid: 8720
components:
- type: Transform
pos: 55.5,-0.5
parent: 2
- - uid: 8314
+ - uid: 8721
components:
- type: Transform
pos: 55.5,0.5
parent: 2
- - uid: 8315
+ - uid: 8722
components:
- type: Transform
pos: 55.5,1.5
parent: 2
- - uid: 8316
+ - uid: 8723
components:
- type: Transform
pos: 55.5,2.5
parent: 2
- - uid: 8317
+ - uid: 8724
components:
- type: Transform
pos: 55.5,3.5
parent: 2
- - uid: 8318
+ - uid: 8725
components:
- type: Transform
pos: 55.5,4.5
parent: 2
- - uid: 8319
+ - uid: 8726
components:
- type: Transform
pos: 54.5,-1.5
parent: 2
- - uid: 8320
+ - uid: 8727
components:
- type: Transform
pos: 54.5,-0.5
parent: 2
- - uid: 8321
+ - uid: 8728
components:
- type: Transform
pos: 54.5,0.5
parent: 2
- - uid: 8322
+ - uid: 8729
components:
- type: Transform
pos: 54.5,1.5
parent: 2
- - uid: 8323
+ - uid: 8730
components:
- type: Transform
pos: 54.5,2.5
parent: 2
- - uid: 8324
+ - uid: 8731
components:
- type: Transform
pos: 54.5,3.5
parent: 2
- - uid: 8325
+ - uid: 8732
components:
- type: Transform
pos: 54.5,4.5
parent: 2
- - uid: 8326
+ - uid: 8733
components:
- type: Transform
pos: 53.5,-1.5
parent: 2
- - uid: 8327
+ - uid: 8734
components:
- type: Transform
pos: 53.5,-0.5
parent: 2
- - uid: 8328
+ - uid: 8735
components:
- type: Transform
pos: 53.5,0.5
parent: 2
- - uid: 8329
+ - uid: 8736
components:
- type: Transform
pos: 53.5,2.5
parent: 2
- - uid: 8330
+ - uid: 8737
components:
- type: Transform
pos: 53.5,3.5
parent: 2
- - uid: 8331
+ - uid: 8738
components:
- type: Transform
pos: 53.5,4.5
parent: 2
- - uid: 8332
+ - uid: 8739
components:
- type: Transform
pos: 52.5,-1.5
parent: 2
- - uid: 8333
+ - uid: 8740
components:
- type: Transform
pos: 52.5,-0.5
parent: 2
- - uid: 8334
+ - uid: 8741
components:
- type: Transform
pos: 53.5,1.5
parent: 2
- - uid: 8335
+ - uid: 8742
components:
- type: Transform
pos: 52.5,0.5
parent: 2
- - uid: 8336
+ - uid: 8743
components:
- type: Transform
pos: 52.5,1.5
parent: 2
- - uid: 8337
+ - uid: 8744
components:
- type: Transform
pos: 52.5,2.5
parent: 2
- - uid: 8338
+ - uid: 8745
components:
- type: Transform
pos: 52.5,4.5
parent: 2
- - uid: 8339
+ - uid: 8746
components:
- type: Transform
pos: 52.5,3.5
parent: 2
- - uid: 8340
+ - uid: 8747
components:
- type: Transform
pos: 51.5,-0.5
parent: 2
- - uid: 8341
+ - uid: 8748
components:
- type: Transform
pos: 51.5,0.5
parent: 2
- - uid: 8342
+ - uid: 8749
components:
- type: Transform
pos: 51.5,-1.5
parent: 2
- - uid: 8343
+ - uid: 8750
components:
- type: Transform
pos: 51.5,1.5
parent: 2
- - uid: 8344
+ - uid: 8751
components:
- type: Transform
pos: 51.5,2.5
parent: 2
- - uid: 8345
+ - uid: 8752
components:
- type: Transform
pos: 51.5,3.5
parent: 2
- - uid: 8346
+ - uid: 8753
components:
- type: Transform
pos: 50.5,-1.5
parent: 2
- - uid: 8347
+ - uid: 8754
components:
- type: Transform
pos: 51.5,4.5
parent: 2
- - uid: 8348
+ - uid: 8755
components:
- type: Transform
pos: 50.5,-0.5
parent: 2
- - uid: 8349
+ - uid: 8763
components:
- type: Transform
pos: 50.5,0.5
parent: 2
- - uid: 8350
+ - uid: 8765
components:
- type: Transform
pos: 50.5,1.5
parent: 2
- - uid: 8351
+ - uid: 8768
components:
- type: Transform
pos: 50.5,2.5
parent: 2
- - uid: 8352
+ - uid: 8772
components:
- type: Transform
pos: 50.5,3.5
parent: 2
- - uid: 8353
+ - uid: 8773
components:
- type: Transform
pos: 50.5,4.5
parent: 2
- - uid: 8354
+ - uid: 8774
components:
- type: Transform
pos: 49.5,-1.5
parent: 2
- - uid: 8355
+ - uid: 8784
components:
- type: Transform
pos: 49.5,-0.5
parent: 2
- - uid: 8356
+ - uid: 8806
components:
- type: Transform
pos: 49.5,0.5
parent: 2
- - uid: 8357
+ - uid: 8807
components:
- type: Transform
pos: 49.5,1.5
parent: 2
- - uid: 8358
+ - uid: 8808
components:
- type: Transform
pos: 49.5,3.5
parent: 2
- - uid: 8359
+ - uid: 8809
components:
- type: Transform
pos: 49.5,4.5
parent: 2
- - uid: 8360
+ - uid: 8810
components:
- type: Transform
pos: 49.5,2.5
parent: 2
- - uid: 8361
+ - uid: 8811
components:
- type: Transform
pos: 48.5,-1.5
parent: 2
- - uid: 8362
+ - uid: 8812
components:
- type: Transform
pos: 48.5,-0.5
parent: 2
- - uid: 8363
+ - uid: 8813
components:
- type: Transform
pos: 48.5,0.5
parent: 2
- - uid: 8364
+ - uid: 8814
components:
- type: Transform
pos: 48.5,2.5
parent: 2
- - uid: 8365
+ - uid: 8815
components:
- type: Transform
pos: 48.5,1.5
parent: 2
- - uid: 8366
+ - uid: 8816
components:
- type: Transform
pos: 48.5,3.5
parent: 2
- - uid: 8367
+ - uid: 8817
components:
- type: Transform
pos: 48.5,4.5
parent: 2
- - uid: 8368
+ - uid: 8818
components:
- type: Transform
pos: 47.5,-1.5
parent: 2
- - uid: 8369
+ - uid: 8819
components:
- type: Transform
pos: 47.5,-0.5
parent: 2
- - uid: 8370
+ - uid: 8820
components:
- type: Transform
pos: 47.5,0.5
parent: 2
- - uid: 8376
+ - uid: 8821
components:
- type: Transform
pos: 47.5,1.5
parent: 2
- - uid: 8388
+ - uid: 8822
components:
- type: Transform
pos: 47.5,2.5
parent: 2
- - uid: 8390
+ - uid: 8832
components:
- type: Transform
pos: 47.5,3.5
parent: 2
- - uid: 8391
+ - uid: 8833
components:
- type: Transform
pos: 47.5,4.5
parent: 2
- - uid: 8408
+ - uid: 8834
components:
- type: Transform
pos: 46.5,-1.5
parent: 2
- - uid: 8409
+ - uid: 8835
components:
- type: Transform
pos: 46.5,-0.5
parent: 2
- - uid: 8413
+ - uid: 8836
components:
- type: Transform
pos: 46.5,0.5
parent: 2
- - uid: 8414
+ - uid: 8837
components:
- type: Transform
pos: 46.5,1.5
parent: 2
- - uid: 8415
+ - uid: 8838
components:
- type: Transform
pos: 46.5,2.5
parent: 2
- - uid: 8416
+ - uid: 8839
components:
- type: Transform
pos: 46.5,3.5
parent: 2
- - uid: 8417
+ - uid: 8845
components:
- type: Transform
pos: 46.5,4.5
parent: 2
- - uid: 8418
+ - uid: 8848
components:
- type: Transform
pos: 45.5,-1.5
parent: 2
- - uid: 8419
+ - uid: 8849
components:
- type: Transform
pos: 45.5,-0.5
parent: 2
- - uid: 8420
+ - uid: 8850
components:
- type: Transform
pos: 45.5,0.5
parent: 2
- - uid: 8421
+ - uid: 8851
components:
- type: Transform
pos: 45.5,1.5
parent: 2
- - uid: 8422
+ - uid: 8852
components:
- type: Transform
pos: 45.5,2.5
parent: 2
- - uid: 8423
+ - uid: 8853
components:
- type: Transform
pos: 45.5,3.5
parent: 2
- - uid: 8424
+ - uid: 8854
components:
- type: Transform
pos: 45.5,4.5
parent: 2
- - uid: 8425
+ - uid: 8864
components:
- type: Transform
pos: 44.5,-1.5
parent: 2
- - uid: 8426
+ - uid: 8865
components:
- type: Transform
pos: 44.5,-0.5
parent: 2
- - uid: 8427
+ - uid: 8866
components:
- type: Transform
pos: 44.5,0.5
parent: 2
- - uid: 8428
+ - uid: 8867
components:
- type: Transform
pos: 44.5,1.5
parent: 2
- - uid: 8429
+ - uid: 8868
components:
- type: Transform
pos: 44.5,2.5
parent: 2
- - uid: 8430
+ - uid: 8869
components:
- type: Transform
pos: 44.5,3.5
parent: 2
- - uid: 8431
+ - uid: 8870
components:
- type: Transform
pos: 44.5,4.5
parent: 2
- - uid: 8432
+ - uid: 8876
components:
- type: Transform
pos: 43.5,-1.5
parent: 2
- - uid: 8433
+ - uid: 8877
components:
- type: Transform
pos: 43.5,-0.5
parent: 2
- - uid: 8434
+ - uid: 8878
components:
- type: Transform
pos: 43.5,0.5
parent: 2
- - uid: 8435
+ - uid: 8879
components:
- type: Transform
pos: 43.5,1.5
parent: 2
- - uid: 8436
+ - uid: 8880
components:
- type: Transform
pos: 43.5,2.5
parent: 2
- - uid: 8437
+ - uid: 8881
components:
- type: Transform
pos: 43.5,4.5
parent: 2
- - uid: 8438
+ - uid: 8882
components:
- type: Transform
pos: 43.5,3.5
parent: 2
- - uid: 8439
+ - uid: 8883
components:
- type: Transform
pos: 42.5,-1.5
parent: 2
- - uid: 8440
+ - uid: 8884
components:
- type: Transform
pos: 42.5,-0.5
parent: 2
- - uid: 8441
+ - uid: 8885
components:
- type: Transform
pos: 42.5,0.5
parent: 2
- - uid: 8442
+ - uid: 8886
components:
- type: Transform
pos: 42.5,1.5
parent: 2
- - uid: 8443
+ - uid: 8892
components:
- type: Transform
pos: 42.5,2.5
parent: 2
- - uid: 8444
+ - uid: 8896
components:
- type: Transform
pos: 42.5,3.5
parent: 2
- - uid: 8445
+ - uid: 8897
components:
- type: Transform
pos: 42.5,4.5
parent: 2
- - uid: 8446
+ - uid: 8898
components:
- type: Transform
pos: 41.5,-1.5
parent: 2
- - uid: 8447
+ - uid: 8899
components:
- type: Transform
pos: 41.5,-0.5
parent: 2
- - uid: 8448
+ - uid: 8900
components:
- type: Transform
pos: 41.5,0.5
parent: 2
- - uid: 8449
+ - uid: 8901
components:
- type: Transform
pos: 41.5,1.5
parent: 2
- - uid: 8450
+ - uid: 8902
components:
- type: Transform
pos: 41.5,2.5
parent: 2
- - uid: 8451
+ - uid: 8910
components:
- type: Transform
pos: 41.5,3.5
parent: 2
- - uid: 8452
+ - uid: 8911
components:
- type: Transform
pos: 41.5,4.5
parent: 2
- - uid: 8453
+ - uid: 8921
components:
- type: Transform
pos: 40.5,-1.5
parent: 2
- - uid: 8454
+ - uid: 8922
components:
- type: Transform
pos: 40.5,-0.5
parent: 2
- - uid: 8455
+ - uid: 8923
components:
- type: Transform
pos: 40.5,0.5
parent: 2
- - uid: 8456
+ - uid: 8924
components:
- type: Transform
pos: 40.5,1.5
parent: 2
- - uid: 8457
+ - uid: 8925
components:
- type: Transform
pos: 40.5,2.5
parent: 2
- - uid: 8458
+ - uid: 8926
components:
- type: Transform
pos: 40.5,3.5
parent: 2
- - uid: 8459
+ - uid: 8927
components:
- type: Transform
pos: 40.5,4.5
parent: 2
- - uid: 8460
+ - uid: 8928
components:
- type: Transform
pos: 39.5,-1.5
parent: 2
- - uid: 8461
+ - uid: 8929
components:
- type: Transform
pos: 39.5,-0.5
parent: 2
- - uid: 8462
+ - uid: 8930
components:
- type: Transform
pos: 39.5,0.5
parent: 2
- - uid: 8463
+ - uid: 8933
components:
- type: Transform
pos: 39.5,1.5
parent: 2
- - uid: 8464
+ - uid: 8934
components:
- type: Transform
pos: 39.5,2.5
parent: 2
- - uid: 8465
+ - uid: 8935
components:
- type: Transform
pos: 39.5,3.5
parent: 2
- - uid: 8466
+ - uid: 8936
components:
- type: Transform
pos: 39.5,4.5
parent: 2
- - uid: 8467
+ - uid: 8937
components:
- type: Transform
pos: 38.5,-1.5
parent: 2
- - uid: 8468
+ - uid: 8938
components:
- type: Transform
pos: 38.5,-0.5
parent: 2
- - uid: 8469
+ - uid: 8939
components:
- type: Transform
pos: 38.5,0.5
parent: 2
- - uid: 8470
+ - uid: 8940
components:
- type: Transform
pos: 38.5,1.5
parent: 2
- - uid: 8471
+ - uid: 8941
components:
- type: Transform
pos: 38.5,2.5
parent: 2
- - uid: 8472
+ - uid: 8942
components:
- type: Transform
pos: 38.5,3.5
parent: 2
- - uid: 8473
+ - uid: 8943
components:
- type: Transform
pos: 38.5,4.5
parent: 2
- - uid: 8474
+ - uid: 8944
components:
- type: Transform
pos: 37.5,-1.5
parent: 2
- - uid: 8475
+ - uid: 8945
components:
- type: Transform
pos: 37.5,-0.5
parent: 2
- - uid: 8476
+ - uid: 8950
components:
- type: Transform
pos: 37.5,0.5
parent: 2
- - uid: 8477
+ - uid: 8951
components:
- type: Transform
pos: 37.5,1.5
parent: 2
- - uid: 8478
+ - uid: 8952
components:
- type: Transform
pos: 37.5,2.5
parent: 2
- - uid: 8479
+ - uid: 8953
components:
- type: Transform
pos: 37.5,3.5
parent: 2
- - uid: 8480
+ - uid: 8954
components:
- type: Transform
pos: 37.5,4.5
parent: 2
- - uid: 8481
+ - uid: 8955
components:
- type: Transform
pos: 36.5,-1.5
parent: 2
- - uid: 8482
+ - uid: 8956
components:
- type: Transform
pos: 36.5,-0.5
parent: 2
- - uid: 8483
+ - uid: 8957
components:
- type: Transform
pos: 36.5,0.5
parent: 2
- - uid: 8484
+ - uid: 8958
components:
- type: Transform
pos: 36.5,1.5
parent: 2
- - uid: 8485
+ - uid: 8959
components:
- type: Transform
pos: 36.5,2.5
parent: 2
- - uid: 8486
+ - uid: 8960
components:
- type: Transform
pos: 35.5,-1.5
parent: 2
- - uid: 8487
+ - uid: 8961
components:
- type: Transform
pos: 35.5,-0.5
parent: 2
- - uid: 8488
+ - uid: 8962
components:
- type: Transform
pos: 35.5,0.5
parent: 2
- - uid: 8489
+ - uid: 8966
components:
- type: Transform
pos: 35.5,1.5
parent: 2
- - uid: 8490
+ - uid: 8967
components:
- type: Transform
pos: 35.5,2.5
parent: 2
- - uid: 8491
+ - uid: 8969
components:
- type: Transform
pos: 34.5,-1.5
parent: 2
- - uid: 8492
+ - uid: 8970
components:
- type: Transform
pos: 34.5,-0.5
parent: 2
- - uid: 8493
+ - uid: 8971
components:
- type: Transform
pos: 34.5,0.5
parent: 2
- - uid: 8494
+ - uid: 8972
components:
- type: Transform
pos: 34.5,1.5
parent: 2
- - uid: 8495
+ - uid: 8973
components:
- type: Transform
pos: 34.5,2.5
parent: 2
- - uid: 8496
+ - uid: 8974
components:
- type: Transform
pos: 33.5,-1.5
parent: 2
- - uid: 8497
+ - uid: 8975
components:
- type: Transform
pos: 33.5,-0.5
parent: 2
- - uid: 8498
+ - uid: 8976
components:
- type: Transform
pos: 33.5,0.5
parent: 2
- - uid: 8499
+ - uid: 8977
components:
- type: Transform
pos: 33.5,1.5
parent: 2
- - uid: 8500
+ - uid: 8978
components:
- type: Transform
pos: 33.5,2.5
parent: 2
- - uid: 8501
+ - uid: 8981
components:
- type: Transform
pos: 32.5,-1.5
parent: 2
- - uid: 8502
+ - uid: 8984
components:
- type: Transform
pos: 32.5,-0.5
parent: 2
- - uid: 8503
+ - uid: 8985
components:
- type: Transform
pos: 32.5,0.5
parent: 2
- - uid: 8504
+ - uid: 8986
components:
- type: Transform
pos: 32.5,1.5
parent: 2
- - uid: 8505
+ - uid: 8987
components:
- type: Transform
pos: 32.5,2.5
parent: 2
- - uid: 8506
+ - uid: 8988
components:
- type: Transform
pos: 42.5,5.5
parent: 2
- - uid: 8507
+ - uid: 8989
components:
- type: Transform
pos: 42.5,6.5
parent: 2
- - uid: 8508
+ - uid: 8990
components:
- type: Transform
pos: 43.5,6.5
parent: 2
- - uid: 8509
+ - uid: 8991
components:
- type: Transform
pos: 44.5,5.5
parent: 2
- - uid: 8510
+ - uid: 8992
components:
- type: Transform
pos: 44.5,6.5
parent: 2
- - uid: 8511
+ - uid: 8993
components:
- type: Transform
pos: 43.5,5.5
parent: 2
- - uid: 8512
+ - uid: 8994
components:
- type: Transform
pos: 45.5,5.5
parent: 2
- - uid: 8513
+ - uid: 8995
components:
- type: Transform
pos: 45.5,6.5
parent: 2
- - uid: 8514
+ - uid: 8996
components:
- type: Transform
pos: 46.5,5.5
parent: 2
- - uid: 8515
+ - uid: 8997
components:
- type: Transform
pos: 46.5,6.5
parent: 2
- - uid: 8516
+ - uid: 8998
components:
- type: Transform
pos: 47.5,5.5
parent: 2
- - uid: 8517
+ - uid: 8999
components:
- type: Transform
pos: 47.5,6.5
parent: 2
- - uid: 8518
+ - uid: 9000
components:
- type: Transform
pos: 48.5,5.5
parent: 2
- - uid: 8519
+ - uid: 9001
components:
- type: Transform
pos: 49.5,5.5
parent: 2
- - uid: 8520
+ - uid: 9002
components:
- type: Transform
pos: 48.5,6.5
parent: 2
- - uid: 8521
+ - uid: 9003
components:
- type: Transform
pos: 49.5,6.5
parent: 2
- - uid: 8522
+ - uid: 9004
components:
- type: Transform
pos: 50.5,5.5
parent: 2
- - uid: 8523
+ - uid: 9005
components:
- type: Transform
pos: 50.5,6.5
parent: 2
- - uid: 8524
+ - uid: 9006
components:
- type: Transform
pos: 51.5,5.5
parent: 2
- - uid: 8525
+ - uid: 9007
components:
- type: Transform
pos: 51.5,6.5
parent: 2
- - uid: 8526
+ - uid: 9008
components:
- type: Transform
pos: 52.5,5.5
parent: 2
- - uid: 8527
+ - uid: 9009
components:
- type: Transform
pos: 52.5,6.5
parent: 2
- - uid: 8528
+ - uid: 9010
components:
- type: Transform
pos: 53.5,5.5
parent: 2
- - uid: 8529
+ - uid: 9011
components:
- type: Transform
pos: 53.5,6.5
parent: 2
- - uid: 8530
+ - uid: 9012
components:
- type: Transform
pos: 54.5,5.5
parent: 2
- - uid: 8531
+ - uid: 9013
components:
- type: Transform
pos: 54.5,6.5
parent: 2
- - uid: 8532
+ - uid: 9014
components:
- type: Transform
pos: 55.5,5.5
parent: 2
- - uid: 8533
+ - uid: 9015
components:
- type: Transform
pos: 55.5,6.5
parent: 2
- - uid: 8534
+ - uid: 9016
components:
- type: Transform
pos: 60.5,0.5
parent: 2
- - uid: 8535
+ - uid: 9017
components:
- type: Transform
pos: 60.5,1.5
parent: 2
- - uid: 8536
+ - uid: 9018
components:
- type: Transform
pos: 60.5,2.5
parent: 2
- - uid: 8537
+ - uid: 9019
components:
- type: Transform
pos: 60.5,4.5
parent: 2
- - uid: 8538
+ - uid: 9020
components:
- type: Transform
pos: 60.5,5.5
parent: 2
- - uid: 8539
+ - uid: 9021
components:
- type: Transform
pos: 60.5,6.5
parent: 2
- - uid: 8540
+ - uid: 9022
components:
- type: Transform
pos: 60.5,3.5
parent: 2
- - uid: 8541
+ - uid: 9023
components:
- type: Transform
pos: 59.5,0.5
parent: 2
- - uid: 8542
+ - uid: 9024
components:
- type: Transform
pos: 59.5,2.5
parent: 2
- - uid: 8543
+ - uid: 9025
components:
- type: Transform
pos: 59.5,3.5
parent: 2
- - uid: 8544
+ - uid: 9026
components:
- type: Transform
pos: 59.5,4.5
parent: 2
- - uid: 8545
+ - uid: 9027
components:
- type: Transform
pos: 59.5,5.5
parent: 2
- - uid: 8546
+ - uid: 9028
components:
- type: Transform
pos: 59.5,1.5
parent: 2
- - uid: 8547
+ - uid: 9029
components:
- type: Transform
pos: 59.5,6.5
parent: 2
- - uid: 8548
+ - uid: 9030
components:
- type: Transform
pos: 58.5,-2.5
parent: 2
- - uid: 8549
+ - uid: 9031
components:
- type: Transform
pos: 58.5,-1.5
parent: 2
- - uid: 8550
+ - uid: 9032
components:
- type: Transform
pos: 58.5,-0.5
parent: 2
- - uid: 8553
+ - uid: 9033
components:
- type: Transform
pos: 58.5,0.5
parent: 2
- - uid: 8554
+ - uid: 9034
components:
- type: Transform
pos: 58.5,1.5
parent: 2
- - uid: 8555
+ - uid: 9035
components:
- type: Transform
pos: 58.5,2.5
parent: 2
- - uid: 8556
+ - uid: 9036
components:
- type: Transform
pos: 58.5,3.5
parent: 2
- - uid: 8557
+ - uid: 9037
components:
- type: Transform
pos: 58.5,4.5
parent: 2
- - uid: 8560
+ - uid: 9038
components:
- type: Transform
pos: 58.5,5.5
parent: 2
- - uid: 8561
+ - uid: 9056
components:
- type: Transform
pos: 58.5,6.5
parent: 2
- - uid: 8562
+ - uid: 9058
components:
- type: Transform
pos: 57.5,-2.5
parent: 2
- - uid: 8563
+ - uid: 9059
components:
- type: Transform
pos: 57.5,-1.5
parent: 2
- - uid: 8564
+ - uid: 9060
components:
- type: Transform
pos: 57.5,-0.5
parent: 2
- - uid: 8567
+ - uid: 9061
components:
- type: Transform
pos: 57.5,1.5
parent: 2
- - uid: 8568
+ - uid: 9062
components:
- type: Transform
pos: 57.5,0.5
parent: 2
- - uid: 8569
+ - uid: 9063
components:
- type: Transform
pos: 57.5,2.5
parent: 2
- - uid: 8570
+ - uid: 9064
components:
- type: Transform
pos: 57.5,4.5
parent: 2
- - uid: 8571
+ - uid: 9065
components:
- type: Transform
pos: 57.5,3.5
parent: 2
- - uid: 8574
+ - uid: 9066
components:
- type: Transform
pos: 57.5,5.5
parent: 2
- - uid: 8575
+ - uid: 9067
components:
- type: Transform
pos: 57.5,6.5
parent: 2
- - uid: 8576
+ - uid: 9479
components:
- type: Transform
pos: 56.5,-0.5
parent: 2
- - uid: 8577
+ - uid: 9480
components:
- type: Transform
pos: 56.5,-1.5
parent: 2
- - uid: 8578
+ - uid: 9481
components:
- type: Transform
pos: 56.5,0.5
parent: 2
- - uid: 8619
+ - uid: 9482
components:
- type: Transform
pos: 56.5,1.5
parent: 2
- - uid: 8621
+ - uid: 9483
components:
- type: Transform
pos: 56.5,2.5
parent: 2
- - uid: 8661
+ - uid: 9484
components:
- type: Transform
pos: 56.5,3.5
parent: 2
- - uid: 8662
+ - uid: 9485
components:
- type: Transform
pos: 56.5,4.5
parent: 2
- - uid: 8663
+ - uid: 9486
components:
- type: Transform
pos: 56.5,5.5
parent: 2
- - uid: 8664
+ - uid: 9487
components:
- type: Transform
pos: 56.5,6.5
parent: 2
- - uid: 8666
+ - uid: 9488
components:
- type: Transform
pos: 61.5,0.5
parent: 2
- - uid: 8667
+ - uid: 9489
components:
- type: Transform
pos: 61.5,1.5
parent: 2
- - uid: 8668
+ - uid: 9490
components:
- type: Transform
pos: 61.5,2.5
parent: 2
- - uid: 8669
+ - uid: 9491
components:
- type: Transform
pos: 61.5,3.5
parent: 2
- - uid: 8670
+ - uid: 9492
components:
- type: Transform
pos: 61.5,4.5
parent: 2
- - uid: 8671
+ - uid: 9493
components:
- type: Transform
pos: 61.5,5.5
parent: 2
- - uid: 8672
+ - uid: 9494
components:
- type: Transform
pos: 61.5,6.5
parent: 2
- - uid: 8673
+ - uid: 9495
components:
- type: Transform
pos: 62.5,2.5
parent: 2
- - uid: 8674
+ - uid: 9496
components:
- type: Transform
pos: 62.5,3.5
parent: 2
- - uid: 8675
+ - uid: 9497
components:
- type: Transform
pos: 62.5,4.5
parent: 2
- - uid: 8676
+ - uid: 9498
components:
- type: Transform
pos: 62.5,5.5
parent: 2
- - uid: 8677
+ - uid: 9499
components:
- type: Transform
pos: 62.5,6.5
parent: 2
- - uid: 8678
+ - uid: 9500
components:
- type: Transform
pos: 63.5,2.5
parent: 2
- - uid: 8679
+ - uid: 9501
components:
- type: Transform
pos: 63.5,3.5
parent: 2
- - uid: 8680
+ - uid: 9502
components:
- type: Transform
pos: 63.5,4.5
parent: 2
- - uid: 8681
+ - uid: 9503
components:
- type: Transform
pos: 63.5,5.5
parent: 2
- - uid: 8682
+ - uid: 9504
components:
- type: Transform
pos: 63.5,6.5
parent: 2
- - uid: 8683
+ - uid: 9505
components:
- type: Transform
pos: 62.5,1.5
parent: 2
- - uid: 8684
+ - uid: 9506
components:
- type: Transform
pos: 64.5,3.5
parent: 2
- - uid: 8685
+ - uid: 9507
components:
- type: Transform
pos: 64.5,5.5
parent: 2
- - uid: 8686
+ - uid: 9508
components:
- type: Transform
pos: 64.5,4.5
parent: 2
- - uid: 8687
+ - uid: 9509
components:
- type: Transform
pos: 65.5,6.5
parent: 2
- - uid: 8688
+ - uid: 9510
components:
- type: Transform
pos: 64.5,6.5
parent: 2
- - uid: 8692
+ - uid: 9511
components:
- type: Transform
pos: 26.5,19.5
parent: 2
- - uid: 8693
+ - uid: 9512
components:
- type: Transform
pos: 27.5,19.5
parent: 2
- - uid: 8694
+ - uid: 9513
components:
- type: Transform
pos: 28.5,19.5
parent: 2
- - uid: 8695
+ - uid: 9514
components:
- type: Transform
pos: 27.5,20.5
parent: 2
- - uid: 8696
+ - uid: 9515
components:
- type: Transform
pos: 28.5,20.5
parent: 2
- - uid: 8697
+ - uid: 9516
components:
- type: Transform
pos: 28.5,21.5
parent: 2
- - uid: 8698
+ - uid: 9517
components:
- type: Transform
pos: 27.5,21.5
parent: 2
- - uid: 8699
+ - uid: 9518
components:
- type: Transform
pos: 28.5,23.5
parent: 2
- - uid: 8700
+ - uid: 9519
components:
- type: Transform
pos: 28.5,22.5
parent: 2
- - uid: 8701
+ - uid: 9520
components:
- type: Transform
pos: 29.5,25.5
parent: 2
- - uid: 8702
+ - uid: 9521
components:
- type: Transform
pos: 29.5,24.5
parent: 2
- - uid: 8703
+ - uid: 9522
components:
- type: Transform
pos: 29.5,23.5
parent: 2
- - uid: 8704
+ - uid: 9523
components:
- type: Transform
pos: 29.5,22.5
parent: 2
- - uid: 8705
+ - uid: 9524
components:
- type: Transform
pos: 29.5,21.5
parent: 2
- - uid: 8706
+ - uid: 9525
components:
- type: Transform
pos: 29.5,20.5
parent: 2
- - uid: 8707
+ - uid: 9526
components:
- type: Transform
pos: 29.5,19.5
parent: 2
- - uid: 8708
+ - uid: 9527
components:
- type: Transform
pos: 30.5,25.5
parent: 2
- - uid: 8709
+ - uid: 9528
components:
- type: Transform
pos: 30.5,23.5
parent: 2
- - uid: 8710
+ - uid: 9529
components:
- type: Transform
pos: 30.5,22.5
parent: 2
- - uid: 8711
+ - uid: 9530
components:
- type: Transform
pos: 30.5,24.5
parent: 2
- - uid: 8712
+ - uid: 9531
components:
- type: Transform
pos: 30.5,20.5
parent: 2
- - uid: 8713
+ - uid: 9532
components:
- type: Transform
pos: 30.5,19.5
parent: 2
- - uid: 8714
+ - uid: 9533
components:
- type: Transform
pos: 30.5,21.5
parent: 2
- - uid: 8715
+ - uid: 9534
components:
- type: Transform
pos: 31.5,25.5
parent: 2
- - uid: 8716
+ - uid: 9535
components:
- type: Transform
pos: 31.5,24.5
parent: 2
- - uid: 8717
+ - uid: 9536
components:
- type: Transform
pos: 31.5,23.5
parent: 2
- - uid: 8718
+ - uid: 9537
components:
- type: Transform
pos: 31.5,22.5
parent: 2
- - uid: 8719
+ - uid: 9538
components:
- type: Transform
pos: 31.5,21.5
parent: 2
- - uid: 8720
+ - uid: 9539
components:
- type: Transform
pos: 31.5,20.5
parent: 2
- - uid: 8721
+ - uid: 9540
components:
- type: Transform
pos: 31.5,19.5
parent: 2
- - uid: 8722
+ - uid: 9541
components:
- type: Transform
pos: 32.5,25.5
parent: 2
- - uid: 8723
+ - uid: 9542
components:
- type: Transform
pos: 32.5,24.5
parent: 2
- - uid: 8724
+ - uid: 9543
components:
- type: Transform
pos: 32.5,23.5
parent: 2
- - uid: 8725
+ - uid: 9544
components:
- type: Transform
pos: 32.5,22.5
parent: 2
- - uid: 8726
+ - uid: 9545
components:
- type: Transform
pos: 32.5,21.5
parent: 2
- - uid: 8727
+ - uid: 9546
components:
- type: Transform
pos: 32.5,20.5
parent: 2
- - uid: 8728
+ - uid: 9547
components:
- type: Transform
pos: 32.5,19.5
parent: 2
- - uid: 8729
+ - uid: 9548
components:
- type: Transform
pos: 38.5,5.5
parent: 2
- - uid: 8730
+ - uid: 9549
components:
- type: Transform
pos: 37.5,6.5
parent: 2
- - uid: 8731
+ - uid: 9550
components:
- type: Transform
pos: 37.5,5.5
parent: 2
- - uid: 8732
+ - uid: 9551
components:
- type: Transform
pos: 36.5,4.5
parent: 2
- - uid: 8733
+ - uid: 9552
components:
- type: Transform
pos: 33.5,25.5
parent: 2
- - uid: 8734
+ - uid: 9553
components:
- type: Transform
pos: 33.5,24.5
parent: 2
- - uid: 8735
+ - uid: 9554
components:
- type: Transform
pos: 33.5,23.5
parent: 2
- - uid: 8736
+ - uid: 9555
components:
- type: Transform
pos: 33.5,22.5
parent: 2
- - uid: 8737
+ - uid: 9556
components:
- type: Transform
pos: 33.5,21.5
parent: 2
- - uid: 8738
+ - uid: 9557
components:
- type: Transform
pos: 33.5,20.5
parent: 2
- - uid: 8739
+ - uid: 9558
components:
- type: Transform
pos: 33.5,19.5
parent: 2
- - uid: 8740
+ - uid: 9559
components:
- type: Transform
pos: 36.5,3.5
parent: 2
- - uid: 8741
+ - uid: 9560
components:
- type: Transform
pos: 34.5,25.5
parent: 2
- - uid: 8742
+ - uid: 9562
components:
- type: Transform
pos: 34.5,24.5
parent: 2
- - uid: 8743
+ - uid: 9564
components:
- type: Transform
pos: 34.5,23.5
parent: 2
- - uid: 8744
+ - uid: 9565
components:
- type: Transform
pos: 34.5,22.5
parent: 2
- - uid: 8745
+ - uid: 9566
components:
- type: Transform
pos: 34.5,21.5
parent: 2
- - uid: 8746
+ - uid: 9567
components:
- type: Transform
pos: 34.5,20.5
parent: 2
- - uid: 8747
+ - uid: 9568
components:
- type: Transform
pos: 34.5,19.5
parent: 2
- - uid: 8748
+ - uid: 9569
components:
- type: Transform
pos: 33.5,3.5
parent: 2
- - uid: 8749
+ - uid: 9570
components:
- type: Transform
pos: 35.5,19.5
parent: 2
- - uid: 8750
+ - uid: 9571
components:
- type: Transform
pos: 35.5,20.5
parent: 2
- - uid: 8751
+ - uid: 9572
components:
- type: Transform
pos: 35.5,21.5
parent: 2
- - uid: 8752
+ - uid: 9576
components:
- type: Transform
pos: 35.5,22.5
parent: 2
- - uid: 8753
+ - uid: 9577
components:
- type: Transform
pos: 35.5,23.5
parent: 2
- - uid: 8754
+ - uid: 9580
components:
- type: Transform
pos: 35.5,24.5
parent: 2
- - uid: 8755
+ - uid: 9582
components:
- type: Transform
pos: 35.5,25.5
parent: 2
- - uid: 8763
+ - uid: 9583
components:
- type: Transform
pos: 35.5,26.5
parent: 2
- - uid: 8765
+ - uid: 9584
components:
- type: Transform
pos: 32.5,3.5
parent: 2
- - uid: 8772
+ - uid: 9585
components:
- type: Transform
pos: 33.5,4.5
parent: 2
- - uid: 8773
+ - uid: 9586
components:
- type: Transform
pos: 36.5,14.5
parent: 2
- - uid: 8774
+ - uid: 9587
components:
- type: Transform
pos: 36.5,16.5
parent: 2
- - uid: 8784
+ - uid: 9588
components:
- type: Transform
pos: 36.5,17.5
parent: 2
- - uid: 8807
+ - uid: 9589
components:
- type: Transform
pos: 36.5,18.5
parent: 2
- - uid: 8808
+ - uid: 9590
components:
- type: Transform
pos: 36.5,15.5
parent: 2
- - uid: 8809
+ - uid: 9591
components:
- type: Transform
pos: 36.5,19.5
parent: 2
- - uid: 8810
+ - uid: 9593
components:
- type: Transform
pos: 36.5,20.5
parent: 2
- - uid: 8811
+ - uid: 9594
components:
- type: Transform
pos: 36.5,21.5
parent: 2
- - uid: 8812
+ - uid: 9595
components:
- type: Transform
pos: 36.5,22.5
parent: 2
- - uid: 8813
+ - uid: 9596
components:
- type: Transform
pos: 36.5,23.5
parent: 2
- - uid: 8814
+ - uid: 9597
components:
- type: Transform
pos: 36.5,24.5
parent: 2
- - uid: 8815
+ - uid: 9598
components:
- type: Transform
pos: 36.5,25.5
parent: 2
- - uid: 8816
+ - uid: 9599
components:
- type: Transform
pos: 36.5,26.5
parent: 2
- - uid: 8817
+ - uid: 9600
components:
- type: Transform
pos: 37.5,14.5
parent: 2
- - uid: 8818
+ - uid: 9601
components:
- type: Transform
pos: 37.5,15.5
parent: 2
- - uid: 8819
+ - uid: 9602
components:
- type: Transform
pos: 37.5,16.5
parent: 2
- - uid: 8820
+ - uid: 9603
components:
- type: Transform
pos: 37.5,17.5
parent: 2
- - uid: 8821
+ - uid: 9604
components:
- type: Transform
pos: 37.5,18.5
parent: 2
- - uid: 8822
+ - uid: 9605
components:
- type: Transform
pos: 37.5,19.5
parent: 2
- - uid: 8832
+ - uid: 9606
components:
- type: Transform
pos: 37.5,20.5
parent: 2
- - uid: 8833
+ - uid: 9607
components:
- type: Transform
pos: 37.5,21.5
parent: 2
- - uid: 8834
+ - uid: 9608
components:
- type: Transform
pos: 37.5,22.5
parent: 2
- - uid: 8835
+ - uid: 9609
components:
- type: Transform
pos: 37.5,23.5
parent: 2
- - uid: 8836
+ - uid: 9610
components:
- type: Transform
pos: 37.5,24.5
parent: 2
- - uid: 8837
+ - uid: 9611
components:
- type: Transform
pos: 37.5,25.5
parent: 2
- - uid: 8838
+ - uid: 9612
components:
- type: Transform
pos: 37.5,26.5
parent: 2
- - uid: 8839
+ - uid: 9613
components:
- type: Transform
pos: 38.5,14.5
parent: 2
- - uid: 8845
+ - uid: 9614
components:
- type: Transform
pos: 38.5,15.5
parent: 2
- - uid: 8848
+ - uid: 9615
components:
- type: Transform
pos: 38.5,17.5
parent: 2
- - uid: 8849
+ - uid: 9616
components:
- type: Transform
pos: 38.5,18.5
parent: 2
- - uid: 8850
+ - uid: 9617
components:
- type: Transform
pos: 38.5,19.5
parent: 2
- - uid: 8851
+ - uid: 9618
components:
- type: Transform
pos: 38.5,16.5
parent: 2
- - uid: 8852
+ - uid: 9619
components:
- type: Transform
pos: 38.5,21.5
parent: 2
- - uid: 8853
+ - uid: 9620
components:
- type: Transform
pos: 38.5,22.5
parent: 2
- - uid: 8854
+ - uid: 9621
components:
- type: Transform
pos: 38.5,23.5
parent: 2
- - uid: 8864
+ - uid: 9622
components:
- type: Transform
pos: 38.5,20.5
parent: 2
- - uid: 8865
+ - uid: 9623
components:
- type: Transform
pos: 38.5,25.5
parent: 2
- - uid: 8866
+ - uid: 9624
components:
- type: Transform
pos: 38.5,26.5
parent: 2
- - uid: 8867
+ - uid: 9625
components:
- type: Transform
pos: 38.5,24.5
parent: 2
- - uid: 8868
+ - uid: 9626
components:
- type: Transform
pos: 39.5,14.5
parent: 2
- - uid: 8869
+ - uid: 9627
components:
- type: Transform
pos: 39.5,16.5
parent: 2
- - uid: 8870
+ - uid: 9628
components:
- type: Transform
pos: 39.5,17.5
parent: 2
- - uid: 8876
+ - uid: 9629
components:
- type: Transform
pos: 39.5,15.5
parent: 2
- - uid: 8877
+ - uid: 9630
components:
- type: Transform
pos: 39.5,19.5
parent: 2
- - uid: 8878
+ - uid: 9631
components:
- type: Transform
pos: 39.5,20.5
parent: 2
- - uid: 8879
+ - uid: 9632
components:
- type: Transform
pos: 39.5,18.5
parent: 2
- - uid: 8880
+ - uid: 9633
components:
- type: Transform
pos: 39.5,21.5
parent: 2
- - uid: 8881
+ - uid: 9634
components:
- type: Transform
pos: 39.5,22.5
parent: 2
- - uid: 8882
+ - uid: 9635
components:
- type: Transform
pos: 39.5,23.5
parent: 2
- - uid: 8883
+ - uid: 9636
components:
- type: Transform
pos: 39.5,24.5
parent: 2
- - uid: 8884
+ - uid: 9637
components:
- type: Transform
pos: 39.5,25.5
parent: 2
- - uid: 8885
+ - uid: 9638
components:
- type: Transform
pos: 39.5,26.5
parent: 2
- - uid: 8886
+ - uid: 9639
components:
- type: Transform
pos: 40.5,11.5
parent: 2
- - uid: 8892
+ - uid: 9640
components:
- type: Transform
pos: 40.5,12.5
parent: 2
- - uid: 8896
+ - uid: 9641
components:
- type: Transform
pos: 40.5,10.5
parent: 2
- - uid: 8897
+ - uid: 9642
components:
- type: Transform
pos: 40.5,14.5
parent: 2
- - uid: 8898
+ - uid: 9643
components:
- type: Transform
pos: 40.5,15.5
parent: 2
- - uid: 8899
+ - uid: 9644
components:
- type: Transform
pos: 40.5,13.5
parent: 2
- - uid: 8900
+ - uid: 9645
components:
- type: Transform
pos: 40.5,16.5
parent: 2
- - uid: 8901
+ - uid: 9646
components:
- type: Transform
pos: 40.5,17.5
parent: 2
- - uid: 8902
+ - uid: 9647
components:
- type: Transform
pos: 40.5,18.5
parent: 2
- - uid: 8910
+ - uid: 9648
components:
- type: Transform
pos: 40.5,19.5
parent: 2
- - uid: 8921
+ - uid: 9649
components:
- type: Transform
pos: 40.5,21.5
parent: 2
- - uid: 8922
+ - uid: 9650
components:
- type: Transform
pos: 40.5,22.5
parent: 2
- - uid: 8923
+ - uid: 9651
components:
- type: Transform
pos: 40.5,23.5
parent: 2
- - uid: 8924
+ - uid: 9652
components:
- type: Transform
pos: 40.5,20.5
parent: 2
- - uid: 8925
+ - uid: 9653
components:
- type: Transform
pos: 40.5,24.5
parent: 2
- - uid: 8926
+ - uid: 9654
components:
- type: Transform
pos: 40.5,25.5
parent: 2
- - uid: 8927
+ - uid: 9655
components:
- type: Transform
pos: 40.5,26.5
parent: 2
- - uid: 8928
+ - uid: 9656
components:
- type: Transform
pos: 30.5,26.5
parent: 2
- - uid: 8929
+ - uid: 9657
components:
- type: Transform
pos: 30.5,27.5
parent: 2
- - uid: 8930
+ - uid: 9658
components:
- type: Transform
pos: 30.5,28.5
parent: 2
- - uid: 8933
+ - uid: 9659
components:
- type: Transform
pos: 31.5,26.5
parent: 2
- - uid: 8934
+ - uid: 9660
components:
- type: Transform
pos: 31.5,27.5
parent: 2
- - uid: 8935
+ - uid: 9661
components:
- type: Transform
pos: 31.5,28.5
parent: 2
- - uid: 8936
+ - uid: 9662
components:
- type: Transform
pos: 32.5,26.5
parent: 2
- - uid: 8937
+ - uid: 9663
components:
- type: Transform
pos: 32.5,27.5
parent: 2
- - uid: 8938
+ - uid: 9664
components:
- type: Transform
pos: 32.5,28.5
parent: 2
- - uid: 8939
+ - uid: 9665
components:
- type: Transform
pos: 33.5,26.5
parent: 2
- - uid: 8940
+ - uid: 9666
components:
- type: Transform
pos: 33.5,27.5
parent: 2
- - uid: 8941
+ - uid: 9667
components:
- type: Transform
pos: 33.5,28.5
parent: 2
- - uid: 8942
+ - uid: 9668
components:
- type: Transform
pos: 34.5,26.5
parent: 2
- - uid: 8943
+ - uid: 9669
components:
- type: Transform
pos: 34.5,27.5
parent: 2
- - uid: 8944
+ - uid: 9670
components:
- type: Transform
pos: 34.5,28.5
parent: 2
- - uid: 8945
+ - uid: 9671
components:
- type: Transform
pos: 35.5,27.5
parent: 2
- - uid: 8950
+ - uid: 9672
components:
- type: Transform
pos: 35.5,28.5
parent: 2
- - uid: 8951
+ - uid: 9673
components:
- type: Transform
pos: 31.5,29.5
parent: 2
- - uid: 8952
+ - uid: 9674
components:
- type: Transform
pos: 32.5,29.5
parent: 2
- - uid: 8953
+ - uid: 9675
components:
- type: Transform
pos: 32.5,30.5
parent: 2
- - uid: 8954
+ - uid: 9676
components:
- type: Transform
pos: 33.5,29.5
parent: 2
- - uid: 8955
+ - uid: 9677
components:
- type: Transform
pos: 33.5,30.5
parent: 2
- - uid: 8956
+ - uid: 9678
components:
- type: Transform
pos: 34.5,29.5
parent: 2
- - uid: 8957
+ - uid: 9679
components:
- type: Transform
pos: 34.5,30.5
parent: 2
- - uid: 8958
+ - uid: 9680
components:
- type: Transform
pos: 31.5,30.5
parent: 2
- - uid: 8959
- components:
- - type: Transform
- pos: 30.5,5.5
- parent: 2
- - uid: 8960
- components:
- - type: Transform
- pos: 31.5,4.5
- parent: 2
- - uid: 8961
+ - uid: 9683
components:
- type: Transform
pos: 32.5,5.5
parent: 2
- - uid: 8962
+ - uid: 9685
components:
- type: Transform
pos: 32.5,4.5
parent: 2
- - uid: 8966
- components:
- - type: Transform
- pos: 30.5,4.5
- parent: 2
- - uid: 8967
- components:
- - type: Transform
- pos: 30.5,6.5
- parent: 2
- - uid: 8969
- components:
- - type: Transform
- pos: 31.5,6.5
- parent: 2
- - uid: 8970
+ - uid: 9689
components:
- type: Transform
pos: 33.5,6.5
parent: 2
- - uid: 8971
+ - uid: 9690
components:
- type: Transform
pos: 33.5,5.5
parent: 2
- - uid: 8972
- components:
- - type: Transform
- pos: 31.5,5.5
- parent: 2
- - uid: 8973
+ - uid: 9692
components:
- type: Transform
pos: 32.5,6.5
parent: 2
- - uid: 8974
+ - uid: 9693
components:
- type: Transform
pos: 32.5,34.5
parent: 2
- - uid: 8975
+ - uid: 9694
components:
- type: Transform
pos: 32.5,33.5
parent: 2
- - uid: 8976
+ - uid: 9695
components:
- type: Transform
pos: 32.5,32.5
parent: 2
- - uid: 8977
+ - uid: 9696
components:
- type: Transform
pos: 33.5,34.5
parent: 2
- - uid: 8978
+ - uid: 9697
components:
- type: Transform
pos: 33.5,33.5
parent: 2
- - uid: 8981
+ - uid: 9698
components:
- type: Transform
pos: 33.5,32.5
parent: 2
- - uid: 8984
+ - uid: 9700
components:
- type: Transform
pos: 33.5,31.5
parent: 2
- - uid: 8985
+ - uid: 9701
components:
- type: Transform
pos: 34.5,34.5
parent: 2
- - uid: 8986
+ - uid: 9702
components:
- type: Transform
pos: 34.5,33.5
parent: 2
- - uid: 8987
+ - uid: 9703
components:
- type: Transform
pos: 34.5,32.5
parent: 2
- - uid: 8988
+ - uid: 9704
components:
- type: Transform
pos: 34.5,31.5
parent: 2
- - uid: 8989
+ - uid: 9705
components:
- type: Transform
pos: 35.5,34.5
parent: 2
- - uid: 8990
+ - uid: 9706
components:
- type: Transform
pos: 35.5,33.5
parent: 2
- - uid: 8991
+ - uid: 9707
components:
- type: Transform
pos: 35.5,32.5
parent: 2
- - uid: 8992
+ - uid: 9708
components:
- type: Transform
pos: 32.5,31.5
parent: 2
- - uid: 8993
+ - uid: 9709
components:
- type: Transform
pos: 35.5,31.5
parent: 2
- - uid: 8994
+ - uid: 9710
components:
- type: Transform
pos: 35.5,30.5
parent: 2
- - uid: 8995
+ - uid: 9711
components:
- type: Transform
pos: 35.5,29.5
parent: 2
- - uid: 8996
+ - uid: 9712
components:
- type: Transform
pos: 36.5,34.5
parent: 2
- - uid: 8997
+ - uid: 9713
components:
- type: Transform
pos: 36.5,33.5
parent: 2
- - uid: 8998
+ - uid: 9715
components:
- type: Transform
pos: 36.5,32.5
parent: 2
- - uid: 8999
+ - uid: 9716
components:
- type: Transform
pos: 36.5,31.5
parent: 2
- - uid: 9000
+ - uid: 9717
components:
- type: Transform
pos: 36.5,30.5
parent: 2
- - uid: 9001
+ - uid: 9718
components:
- type: Transform
pos: 36.5,29.5
parent: 2
- - uid: 9002
+ - uid: 9719
components:
- type: Transform
pos: 36.5,28.5
parent: 2
- - uid: 9003
+ - uid: 9720
components:
- type: Transform
pos: 37.5,34.5
parent: 2
- - uid: 9004
+ - uid: 9721
components:
- type: Transform
pos: 36.5,27.5
parent: 2
- - uid: 9005
+ - uid: 9722
components:
- type: Transform
pos: 37.5,33.5
parent: 2
- - uid: 9006
+ - uid: 9723
components:
- type: Transform
pos: 37.5,32.5
parent: 2
- - uid: 9007
+ - uid: 9724
components:
- type: Transform
pos: 37.5,31.5
parent: 2
- - uid: 9008
+ - uid: 9725
components:
- type: Transform
pos: 37.5,30.5
parent: 2
- - uid: 9009
+ - uid: 9726
components:
- type: Transform
pos: 37.5,29.5
parent: 2
- - uid: 9010
+ - uid: 9730
components:
- type: Transform
pos: 37.5,28.5
parent: 2
- - uid: 9011
+ - uid: 9731
components:
- type: Transform
pos: 37.5,27.5
parent: 2
- - uid: 9012
+ - uid: 9732
components:
- type: Transform
pos: 38.5,34.5
parent: 2
- - uid: 9013
+ - uid: 9733
components:
- type: Transform
pos: 38.5,32.5
parent: 2
- - uid: 9014
+ - uid: 9734
components:
- type: Transform
pos: 38.5,31.5
parent: 2
- - uid: 9015
+ - uid: 9735
components:
- type: Transform
pos: 38.5,33.5
parent: 2
- - uid: 9016
+ - uid: 9736
components:
- type: Transform
pos: 38.5,28.5
parent: 2
- - uid: 9017
+ - uid: 9737
components:
- type: Transform
pos: 38.5,29.5
parent: 2
- - uid: 9018
+ - uid: 9738
components:
- type: Transform
pos: 38.5,27.5
parent: 2
- - uid: 9019
+ - uid: 9739
components:
- type: Transform
pos: 39.5,34.5
parent: 2
- - uid: 9020
+ - uid: 9740
components:
- type: Transform
pos: 39.5,33.5
parent: 2
- - uid: 9021
+ - uid: 9741
components:
- type: Transform
pos: 38.5,30.5
parent: 2
- - uid: 9022
+ - uid: 9745
components:
- type: Transform
pos: 39.5,32.5
parent: 2
- - uid: 9023
+ - uid: 9746
components:
- type: Transform
pos: 39.5,31.5
parent: 2
- - uid: 9024
+ - uid: 9747
components:
- type: Transform
pos: 39.5,30.5
parent: 2
- - uid: 9025
+ - uid: 9748
components:
- type: Transform
pos: 39.5,29.5
parent: 2
- - uid: 9026
+ - uid: 9749
components:
- type: Transform
pos: 39.5,28.5
parent: 2
- - uid: 9027
+ - uid: 9750
components:
- type: Transform
pos: 39.5,27.5
parent: 2
- - uid: 9028
+ - uid: 9751
components:
- type: Transform
pos: 40.5,34.5
parent: 2
- - uid: 9029
+ - uid: 9752
components:
- type: Transform
pos: 40.5,33.5
parent: 2
- - uid: 9030
+ - uid: 9753
components:
- type: Transform
pos: 40.5,32.5
parent: 2
- - uid: 9031
+ - uid: 9754
components:
- type: Transform
pos: 40.5,31.5
parent: 2
- - uid: 9032
+ - uid: 9755
components:
- type: Transform
pos: 40.5,30.5
parent: 2
- - uid: 9033
+ - uid: 9756
components:
- type: Transform
pos: 40.5,29.5
parent: 2
- - uid: 9034
+ - uid: 9760
components:
- type: Transform
pos: 40.5,28.5
parent: 2
- - uid: 9035
+ - uid: 9761
components:
- type: Transform
pos: 40.5,27.5
parent: 2
- - uid: 9036
+ - uid: 9762
components:
- type: Transform
pos: 33.5,37.5
parent: 2
- - uid: 9037
+ - uid: 9763
components:
- type: Transform
pos: 33.5,36.5
parent: 2
- - uid: 9038
+ - uid: 9764
components:
- type: Transform
pos: 33.5,35.5
parent: 2
- - uid: 9056
+ - uid: 9765
components:
- type: Transform
pos: 34.5,37.5
parent: 2
- - uid: 9058
+ - uid: 9766
components:
- type: Transform
pos: 34.5,36.5
parent: 2
- - uid: 9059
+ - uid: 9767
components:
- type: Transform
pos: 34.5,35.5
parent: 2
- - uid: 9060
+ - uid: 9768
components:
- type: Transform
pos: 35.5,37.5
parent: 2
- - uid: 9061
+ - uid: 9769
components:
- type: Transform
pos: 35.5,36.5
parent: 2
- - uid: 9062
+ - uid: 9770
components:
- type: Transform
pos: 35.5,35.5
parent: 2
- - uid: 9063
+ - uid: 9771
components:
- type: Transform
pos: 36.5,37.5
parent: 2
- - uid: 9064
+ - uid: 9772
components:
- type: Transform
pos: 36.5,36.5
parent: 2
- - uid: 9065
+ - uid: 9773
components:
- type: Transform
pos: 36.5,35.5
parent: 2
- - uid: 9066
+ - uid: 9774
components:
- type: Transform
pos: 37.5,37.5
parent: 2
- - uid: 9067
+ - uid: 9778
components:
- type: Transform
pos: 37.5,36.5
parent: 2
- - uid: 9479
+ - uid: 9779
components:
- type: Transform
pos: 37.5,35.5
parent: 2
- - uid: 9480
+ - uid: 9783
components:
- type: Transform
pos: 38.5,37.5
parent: 2
- - uid: 9481
+ - uid: 9787
components:
- type: Transform
pos: 38.5,36.5
parent: 2
- - uid: 9482
+ - uid: 9788
components:
- type: Transform
pos: 39.5,37.5
parent: 2
- - uid: 9483
+ - uid: 9789
components:
- type: Transform
pos: 39.5,36.5
parent: 2
- - uid: 9484
+ - uid: 9790
components:
- type: Transform
pos: 38.5,35.5
parent: 2
- - uid: 9485
+ - uid: 9791
components:
- type: Transform
pos: 40.5,36.5
parent: 2
- - uid: 9486
+ - uid: 9792
components:
- type: Transform
pos: 40.5,35.5
parent: 2
- - uid: 9487
+ - uid: 9793
components:
- type: Transform
pos: 39.5,35.5
parent: 2
- - uid: 9488
+ - uid: 9794
components:
- type: Transform
pos: 40.5,37.5
parent: 2
- - uid: 9489
+ - uid: 9795
components:
- type: Transform
pos: 34.5,38.5
parent: 2
- - uid: 9490
+ - uid: 9796
components:
- type: Transform
pos: 35.5,38.5
parent: 2
- - uid: 9491
+ - uid: 9797
components:
- type: Transform
pos: 36.5,39.5
parent: 2
- - uid: 9492
+ - uid: 9798
components:
- type: Transform
pos: 36.5,38.5
parent: 2
- - uid: 9493
+ - uid: 9799
components:
- type: Transform
pos: 37.5,39.5
parent: 2
- - uid: 9494
+ - uid: 9800
components:
- type: Transform
pos: 37.5,38.5
parent: 2
- - uid: 9495
+ - uid: 9801
components:
- type: Transform
pos: 38.5,39.5
parent: 2
- - uid: 9496
+ - uid: 9802
components:
- type: Transform
pos: 38.5,38.5
parent: 2
- - uid: 9497
+ - uid: 9803
components:
- type: Transform
pos: 39.5,39.5
parent: 2
- - uid: 9498
+ - uid: 9804
components:
- type: Transform
pos: 39.5,38.5
parent: 2
- - uid: 9499
+ - uid: 9805
components:
- type: Transform
pos: 36.5,40.5
parent: 2
- - uid: 9500
+ - uid: 9807
components:
- type: Transform
pos: 37.5,40.5
parent: 2
- - uid: 9501
+ - uid: 9808
components:
- type: Transform
pos: 38.5,40.5
parent: 2
- - uid: 9502
+ - uid: 9809
components:
- type: Transform
pos: 39.5,40.5
parent: 2
- - uid: 9503
+ - uid: 9810
components:
- type: Transform
pos: 40.5,41.5
parent: 2
- - uid: 9504
+ - uid: 9811
components:
- type: Transform
pos: 40.5,40.5
parent: 2
- - uid: 9505
+ - uid: 9812
components:
- type: Transform
pos: 40.5,39.5
parent: 2
- - uid: 9506
+ - uid: 9813
components:
- type: Transform
pos: 40.5,38.5
parent: 2
- - uid: 9507
+ - uid: 9814
components:
- type: Transform
pos: 41.5,41.5
parent: 2
- - uid: 9508
+ - uid: 9815
components:
- type: Transform
pos: 41.5,40.5
parent: 2
- - uid: 9509
+ - uid: 9816
components:
- type: Transform
pos: 41.5,39.5
parent: 2
- - uid: 9510
+ - uid: 9817
components:
- type: Transform
pos: 41.5,38.5
parent: 2
- - uid: 9511
+ - uid: 9818
components:
- type: Transform
pos: 41.5,37.5
parent: 2
- - uid: 9512
+ - uid: 9819
components:
- type: Transform
pos: 40.5,42.5
parent: 2
- - uid: 9513
+ - uid: 9820
components:
- type: Transform
pos: 41.5,42.5
parent: 2
- - uid: 9514
- components:
- - type: Transform
- pos: 39.5,44.5
- parent: 2
- - uid: 9515
- components:
- - type: Transform
- pos: 40.5,44.5
- parent: 2
- - uid: 9516
- components:
- - type: Transform
- pos: 41.5,44.5
- parent: 2
- - uid: 9517
- components:
- - type: Transform
- pos: 40.5,45.5
- parent: 2
- - uid: 9518
- components:
- - type: Transform
- pos: 41.5,46.5
- parent: 2
- - uid: 9519
- components:
- - type: Transform
- pos: 41.5,45.5
- parent: 2
- - uid: 9520
+ - uid: 9827
components:
- type: Transform
pos: 40.5,43.5
parent: 2
- - uid: 9521
- components:
- - type: Transform
- pos: 41.5,43.5
- parent: 2
- - uid: 9522
- components:
- - type: Transform
- pos: 42.5,48.5
- parent: 2
- - uid: 9523
- components:
- - type: Transform
- pos: 42.5,47.5
- parent: 2
- - uid: 9524
- components:
- - type: Transform
- pos: 42.5,45.5
- parent: 2
- - uid: 9525
- components:
- - type: Transform
- pos: 42.5,44.5
- parent: 2
- - uid: 9526
- components:
- - type: Transform
- pos: 42.5,43.5
- parent: 2
- - uid: 9527
- components:
- - type: Transform
- pos: 42.5,42.5
- parent: 2
- - uid: 9528
+ - uid: 9835
components:
- type: Transform
pos: 42.5,41.5
parent: 2
- - uid: 9529
+ - uid: 9836
components:
- type: Transform
pos: 42.5,40.5
parent: 2
- - uid: 9530
+ - uid: 9837
components:
- type: Transform
pos: 42.5,39.5
parent: 2
- - uid: 9531
+ - uid: 9838
components:
- type: Transform
pos: 42.5,38.5
parent: 2
- - uid: 9532
+ - uid: 9839
components:
- type: Transform
pos: 42.5,37.5
parent: 2
- - uid: 9533
+ - uid: 9840
components:
- type: Transform
pos: 42.5,36.5
parent: 2
- - uid: 9534
+ - uid: 9841
components:
- type: Transform
pos: 42.5,35.5
parent: 2
- - uid: 9535
- components:
- - type: Transform
- pos: 42.5,46.5
- parent: 2
- - uid: 9536
+ - uid: 9843
components:
- type: Transform
pos: 42.5,34.5
parent: 2
- - uid: 9537
- components:
- - type: Transform
- pos: 43.5,48.5
- parent: 2
- - uid: 9538
- components:
- - type: Transform
- pos: 43.5,46.5
- parent: 2
- - uid: 9539
- components:
- - type: Transform
- pos: 43.5,45.5
- parent: 2
- - uid: 9540
- components:
- - type: Transform
- pos: 43.5,44.5
- parent: 2
- - uid: 9541
- components:
- - type: Transform
- pos: 43.5,47.5
- parent: 2
- - uid: 9542
- components:
- - type: Transform
- pos: 43.5,43.5
- parent: 2
- - uid: 9543
+ - uid: 9850
components:
- type: Transform
pos: 43.5,41.5
parent: 2
- - uid: 9544
+ - uid: 9851
components:
- type: Transform
pos: 43.5,40.5
parent: 2
- - uid: 9545
- components:
- - type: Transform
- pos: 43.5,42.5
- parent: 2
- - uid: 9546
+ - uid: 9853
components:
- type: Transform
pos: 43.5,39.5
parent: 2
- - uid: 9547
+ - uid: 9854
components:
- type: Transform
pos: 43.5,38.5
parent: 2
- - uid: 9548
+ - uid: 9855
components:
- type: Transform
pos: 43.5,36.5
parent: 2
- - uid: 9549
+ - uid: 9856
components:
- type: Transform
pos: 43.5,35.5
parent: 2
- - uid: 9550
+ - uid: 9857
components:
- type: Transform
pos: 43.5,34.5
parent: 2
- - uid: 9551
+ - uid: 9858
components:
- type: Transform
pos: 43.5,37.5
parent: 2
- - uid: 9552
- components:
- - type: Transform
- pos: 44.5,48.5
- parent: 2
- - uid: 9553
- components:
- - type: Transform
- pos: 44.5,47.5
- parent: 2
- - uid: 9554
- components:
- - type: Transform
- pos: 44.5,46.5
- parent: 2
- - uid: 9555
- components:
- - type: Transform
- pos: 44.5,45.5
- parent: 2
- - uid: 9556
- components:
- - type: Transform
- pos: 44.5,44.5
- parent: 2
- - uid: 9557
- components:
- - type: Transform
- pos: 44.5,43.5
- parent: 2
- - uid: 9558
- components:
- - type: Transform
- pos: 44.5,42.5
- parent: 2
- - uid: 9559
- components:
- - type: Transform
- pos: 44.5,41.5
- parent: 2
- - uid: 9560
+ - uid: 9867
components:
- type: Transform
pos: 44.5,40.5
parent: 2
- - uid: 9562
+ - uid: 9868
components:
- type: Transform
pos: 44.5,39.5
parent: 2
- - uid: 9564
+ - uid: 9869
components:
- type: Transform
pos: 44.5,38.5
parent: 2
- - uid: 9565
+ - uid: 9870
components:
- type: Transform
pos: 44.5,37.5
parent: 2
- - uid: 9566
+ - uid: 9871
components:
- type: Transform
pos: 44.5,36.5
parent: 2
- - uid: 9567
+ - uid: 9872
components:
- type: Transform
pos: 44.5,35.5
parent: 2
- - uid: 9568
+ - uid: 9873
components:
- type: Transform
pos: 44.5,34.5
parent: 2
- - uid: 9569
- components:
- - type: Transform
- pos: 45.5,48.5
- parent: 2
- - uid: 9570
- components:
- - type: Transform
- pos: 45.5,47.5
- parent: 2
- - uid: 9571
- components:
- - type: Transform
- pos: 45.5,46.5
- parent: 2
- - uid: 9572
- components:
- - type: Transform
- pos: 45.5,45.5
- parent: 2
- - uid: 9576
- components:
- - type: Transform
- pos: 45.5,44.5
- parent: 2
- - uid: 9577
- components:
- - type: Transform
- pos: 45.5,43.5
- parent: 2
- - uid: 9580
- components:
- - type: Transform
- pos: 45.5,42.5
- parent: 2
- - uid: 9582
- components:
- - type: Transform
- pos: 45.5,41.5
- parent: 2
- - uid: 9583
+ - uid: 9882
components:
- type: Transform
pos: 45.5,40.5
parent: 2
- - uid: 9584
+ - uid: 9883
components:
- type: Transform
pos: 45.5,39.5
parent: 2
- - uid: 9585
+ - uid: 9884
components:
- type: Transform
pos: 45.5,38.5
parent: 2
- - uid: 9586
+ - uid: 9885
components:
- type: Transform
pos: 45.5,37.5
parent: 2
- - uid: 9587
+ - uid: 9886
components:
- type: Transform
pos: 45.5,36.5
parent: 2
- - uid: 9588
+ - uid: 9887
components:
- type: Transform
pos: 45.5,35.5
parent: 2
- - uid: 9589
+ - uid: 9888
components:
- type: Transform
pos: 45.5,34.5
parent: 2
- - uid: 9590
- components:
- - type: Transform
- pos: 46.5,48.5
- parent: 2
- - uid: 9591
- components:
- - type: Transform
- pos: 46.5,47.5
- parent: 2
- - uid: 9593
- components:
- - type: Transform
- pos: 46.5,46.5
- parent: 2
- - uid: 9594
- components:
- - type: Transform
- pos: 46.5,45.5
- parent: 2
- - uid: 9595
- components:
- - type: Transform
- pos: 46.5,44.5
- parent: 2
- - uid: 9596
- components:
- - type: Transform
- pos: 46.5,43.5
- parent: 2
- - uid: 9597
- components:
- - type: Transform
- pos: 46.5,42.5
- parent: 2
- - uid: 9598
- components:
- - type: Transform
- pos: 46.5,41.5
- parent: 2
- - uid: 9599
+ - uid: 9897
components:
- type: Transform
pos: 46.5,40.5
parent: 2
- - uid: 9600
+ - uid: 9898
components:
- type: Transform
pos: 46.5,39.5
parent: 2
- - uid: 9601
+ - uid: 9899
components:
- type: Transform
pos: 46.5,38.5
parent: 2
- - uid: 9602
+ - uid: 9900
components:
- type: Transform
pos: 46.5,37.5
parent: 2
- - uid: 9603
+ - uid: 9901
components:
- type: Transform
pos: 46.5,36.5
parent: 2
- - uid: 9604
+ - uid: 9902
components:
- type: Transform
pos: 46.5,35.5
parent: 2
- - uid: 9605
- components:
- - type: Transform
- pos: 47.5,48.5
- parent: 2
- - uid: 9606
- components:
- - type: Transform
- pos: 47.5,47.5
- parent: 2
- - uid: 9607
- components:
- - type: Transform
- pos: 47.5,46.5
- parent: 2
- - uid: 9608
- components:
- - type: Transform
- pos: 47.5,45.5
- parent: 2
- - uid: 9609
- components:
- - type: Transform
- pos: 47.5,44.5
- parent: 2
- - uid: 9610
- components:
- - type: Transform
- pos: 47.5,43.5
- parent: 2
- - uid: 9611
- components:
- - type: Transform
- pos: 47.5,42.5
- parent: 2
- - uid: 9612
- components:
- - type: Transform
- pos: 47.5,41.5
- parent: 2
- - uid: 9613
- components:
- - type: Transform
- pos: 47.5,40.5
- parent: 2
- - uid: 9614
+ - uid: 9912
components:
- type: Transform
pos: 47.5,39.5
parent: 2
- - uid: 9615
+ - uid: 9913
components:
- type: Transform
pos: 47.5,38.5
parent: 2
- - uid: 9616
+ - uid: 9914
components:
- type: Transform
pos: 47.5,37.5
parent: 2
- - uid: 9617
+ - uid: 9915
components:
- type: Transform
pos: 47.5,36.5
parent: 2
- - uid: 9618
+ - uid: 9916
components:
- type: Transform
pos: 47.5,35.5
parent: 2
- - uid: 9619
- components:
- - type: Transform
- pos: 48.5,48.5
- parent: 2
- - uid: 9620
- components:
- - type: Transform
- pos: 48.5,47.5
- parent: 2
- - uid: 9621
- components:
- - type: Transform
- pos: 48.5,46.5
- parent: 2
- - uid: 9622
- components:
- - type: Transform
- pos: 48.5,45.5
- parent: 2
- - uid: 9623
- components:
- - type: Transform
- pos: 48.5,44.5
- parent: 2
- - uid: 9624
- components:
- - type: Transform
- pos: 48.5,43.5
- parent: 2
- - uid: 9625
- components:
- - type: Transform
- pos: 48.5,42.5
- parent: 2
- - uid: 9626
- components:
- - type: Transform
- pos: 48.5,41.5
- parent: 2
- - uid: 9627
- components:
- - type: Transform
- pos: 48.5,40.5
- parent: 2
- - uid: 9628
- components:
- - type: Transform
- pos: 48.5,39.5
- parent: 2
- - uid: 9629
- components:
- - type: Transform
- pos: 48.5,38.5
- parent: 2
- - uid: 9630
- components:
- - type: Transform
- pos: 48.5,37.5
- parent: 2
- - uid: 9631
- components:
- - type: Transform
- pos: 48.5,36.5
- parent: 2
- - uid: 9632
- components:
- - type: Transform
- pos: 48.5,35.5
- parent: 2
- - uid: 9633
- components:
- - type: Transform
- pos: 49.5,48.5
- parent: 2
- - uid: 9634
- components:
- - type: Transform
- pos: 49.5,46.5
- parent: 2
- - uid: 9635
- components:
- - type: Transform
- pos: 49.5,47.5
- parent: 2
- - uid: 9636
- components:
- - type: Transform
- pos: 49.5,45.5
- parent: 2
- - uid: 9637
- components:
- - type: Transform
- pos: 49.5,44.5
- parent: 2
- - uid: 9638
- components:
- - type: Transform
- pos: 49.5,43.5
- parent: 2
- - uid: 9639
- components:
- - type: Transform
- pos: 49.5,42.5
- parent: 2
- - uid: 9640
- components:
- - type: Transform
- pos: 49.5,41.5
- parent: 2
- - uid: 9641
- components:
- - type: Transform
- pos: 49.5,40.5
- parent: 2
- - uid: 9642
- components:
- - type: Transform
- pos: 49.5,39.5
- parent: 2
- - uid: 9643
- components:
- - type: Transform
- pos: 49.5,38.5
- parent: 2
- - uid: 9644
- components:
- - type: Transform
- pos: 49.5,37.5
- parent: 2
- - uid: 9645
- components:
- - type: Transform
- pos: 50.5,48.5
- parent: 2
- - uid: 9646
- components:
- - type: Transform
- pos: 50.5,47.5
- parent: 2
- - uid: 9647
- components:
- - type: Transform
- pos: 50.5,46.5
- parent: 2
- - uid: 9648
- components:
- - type: Transform
- pos: 50.5,45.5
- parent: 2
- - uid: 9649
- components:
- - type: Transform
- pos: 50.5,44.5
- parent: 2
- - uid: 9650
- components:
- - type: Transform
- pos: 50.5,43.5
- parent: 2
- - uid: 9651
- components:
- - type: Transform
- pos: 50.5,42.5
- parent: 2
- - uid: 9652
- components:
- - type: Transform
- pos: 50.5,41.5
- parent: 2
- - uid: 9653
- components:
- - type: Transform
- pos: 50.5,40.5
- parent: 2
- - uid: 9654
- components:
- - type: Transform
- pos: 50.5,39.5
- parent: 2
- - uid: 9655
- components:
- - type: Transform
- pos: 50.5,38.5
- parent: 2
- - uid: 9656
- components:
- - type: Transform
- pos: 50.5,37.5
- parent: 2
- - uid: 9657
- components:
- - type: Transform
- pos: 51.5,48.5
- parent: 2
- - uid: 9658
- components:
- - type: Transform
- pos: 51.5,47.5
- parent: 2
- - uid: 9659
- components:
- - type: Transform
- pos: 51.5,46.5
- parent: 2
- - uid: 9660
- components:
- - type: Transform
- pos: 51.5,45.5
- parent: 2
- - uid: 9661
- components:
- - type: Transform
- pos: 51.5,44.5
- parent: 2
- - uid: 9662
- components:
- - type: Transform
- pos: 51.5,43.5
- parent: 2
- - uid: 9663
- components:
- - type: Transform
- pos: 51.5,42.5
- parent: 2
- - uid: 9664
- components:
- - type: Transform
- pos: 51.5,41.5
- parent: 2
- - uid: 9665
- components:
- - type: Transform
- pos: 51.5,40.5
- parent: 2
- - uid: 9666
- components:
- - type: Transform
- pos: 51.5,39.5
- parent: 2
- - uid: 9667
- components:
- - type: Transform
- pos: 51.5,38.5
- parent: 2
- - uid: 9668
- components:
- - type: Transform
- pos: 51.5,37.5
- parent: 2
- - uid: 9669
- components:
- - type: Transform
- pos: 43.5,49.5
- parent: 2
- - uid: 9670
- components:
- - type: Transform
- pos: 44.5,49.5
- parent: 2
- - uid: 9671
- components:
- - type: Transform
- pos: 45.5,49.5
- parent: 2
- - uid: 9672
- components:
- - type: Transform
- pos: 46.5,49.5
- parent: 2
- - uid: 9673
- components:
- - type: Transform
- pos: 47.5,49.5
- parent: 2
- - uid: 9674
- components:
- - type: Transform
- pos: 48.5,49.5
- parent: 2
- - uid: 9675
- components:
- - type: Transform
- pos: 49.5,49.5
- parent: 2
- - uid: 9676
- components:
- - type: Transform
- pos: 50.5,49.5
- parent: 2
- - uid: 9677
- components:
- - type: Transform
- pos: 51.5,49.5
- parent: 2
- - uid: 9678
- components:
- - type: Transform
- pos: 52.5,49.5
- parent: 2
- - uid: 9679
- components:
- - type: Transform
- pos: 52.5,48.5
- parent: 2
- - uid: 9680
- components:
- - type: Transform
- pos: 44.5,50.5
- parent: 2
- - uid: 9681
- components:
- - type: Transform
- pos: 45.5,51.5
- parent: 2
- - uid: 9682
- components:
- - type: Transform
- pos: 45.5,50.5
- parent: 2
- - uid: 9683
- components:
- - type: Transform
- pos: 46.5,51.5
- parent: 2
- - uid: 9685
- components:
- - type: Transform
- pos: 46.5,50.5
- parent: 2
- - uid: 9686
- components:
- - type: Transform
- pos: 47.5,51.5
- parent: 2
- - uid: 9687
- components:
- - type: Transform
- pos: 47.5,50.5
- parent: 2
- - uid: 9688
- components:
- - type: Transform
- pos: 48.5,51.5
- parent: 2
- - uid: 9689
- components:
- - type: Transform
- pos: 48.5,50.5
- parent: 2
- - uid: 9690
- components:
- - type: Transform
- pos: 49.5,51.5
- parent: 2
- - uid: 9691
- components:
- - type: Transform
- pos: 50.5,51.5
- parent: 2
- - uid: 9692
- components:
- - type: Transform
- pos: 49.5,50.5
- parent: 2
- - uid: 9693
- components:
- - type: Transform
- pos: 51.5,51.5
- parent: 2
- - uid: 9694
- components:
- - type: Transform
- pos: 50.5,50.5
- parent: 2
- - uid: 9695
- components:
- - type: Transform
- pos: 51.5,50.5
- parent: 2
- - uid: 9696
- components:
- - type: Transform
- pos: 52.5,51.5
- parent: 2
- - uid: 9697
- components:
- - type: Transform
- pos: 52.5,50.5
- parent: 2
- - uid: 9698
- components:
- - type: Transform
- pos: 46.5,53.5
- parent: 2
- - uid: 9700
- components:
- - type: Transform
- pos: 46.5,52.5
- parent: 2
- - uid: 9701
- components:
- - type: Transform
- pos: 47.5,53.5
- parent: 2
- - uid: 9702
- components:
- - type: Transform
- pos: 47.5,52.5
- parent: 2
- - uid: 9703
- components:
- - type: Transform
- pos: 48.5,53.5
- parent: 2
- - uid: 9704
- components:
- - type: Transform
- pos: 48.5,52.5
- parent: 2
- - uid: 9705
- components:
- - type: Transform
- pos: 49.5,53.5
- parent: 2
- - uid: 9706
- components:
- - type: Transform
- pos: 49.5,52.5
- parent: 2
- - uid: 9707
- components:
- - type: Transform
- pos: 50.5,53.5
- parent: 2
- - uid: 9708
- components:
- - type: Transform
- pos: 51.5,53.5
- parent: 2
- - uid: 9709
- components:
- - type: Transform
- pos: 51.5,52.5
- parent: 2
- - uid: 9710
- components:
- - type: Transform
- pos: 50.5,52.5
- parent: 2
- - uid: 9711
- components:
- - type: Transform
- pos: 52.5,53.5
- parent: 2
- - uid: 9712
- components:
- - type: Transform
- pos: 52.5,52.5
- parent: 2
- - uid: 9713
- components:
- - type: Transform
- pos: 53.5,53.5
- parent: 2
- - uid: 9715
- components:
- - type: Transform
- pos: 53.5,52.5
- parent: 2
- - uid: 9716
- components:
- - type: Transform
- pos: 53.5,51.5
- parent: 2
- - uid: 9717
- components:
- - type: Transform
- pos: 47.5,54.5
- parent: 2
- - uid: 9718
- components:
- - type: Transform
- pos: 48.5,55.5
- parent: 2
- - uid: 9719
- components:
- - type: Transform
- pos: 48.5,54.5
- parent: 2
- - uid: 9720
- components:
- - type: Transform
- pos: 49.5,55.5
- parent: 2
- - uid: 9721
- components:
- - type: Transform
- pos: 49.5,54.5
- parent: 2
- - uid: 9722
- components:
- - type: Transform
- pos: 50.5,55.5
- parent: 2
- - uid: 9723
- components:
- - type: Transform
- pos: 50.5,54.5
- parent: 2
- - uid: 9724
- components:
- - type: Transform
- pos: 51.5,55.5
- parent: 2
- - uid: 9725
- components:
- - type: Transform
- pos: 51.5,54.5
- parent: 2
- - uid: 9726
- components:
- - type: Transform
- pos: 52.5,54.5
- parent: 2
- - uid: 9730
- components:
- - type: Transform
- pos: 52.5,55.5
- parent: 2
- - uid: 9731
- components:
- - type: Transform
- pos: 53.5,54.5
- parent: 2
- - uid: 9732
- components:
- - type: Transform
- pos: 53.5,55.5
- parent: 2
- - uid: 9733
- components:
- - type: Transform
- pos: 54.5,55.5
- parent: 2
- - uid: 9734
- components:
- - type: Transform
- pos: 54.5,54.5
- parent: 2
- - uid: 9735
- components:
- - type: Transform
- pos: 54.5,53.5
- parent: 2
- - uid: 9736
- components:
- - type: Transform
- pos: 48.5,56.5
- parent: 2
- - uid: 9737
- components:
- - type: Transform
- pos: 49.5,57.5
- parent: 2
- - uid: 9738
- components:
- - type: Transform
- pos: 49.5,56.5
- parent: 2
- - uid: 9739
- components:
- - type: Transform
- pos: 50.5,58.5
- parent: 2
- - uid: 9740
- components:
- - type: Transform
- pos: 50.5,57.5
- parent: 2
- - uid: 9741
- components:
- - type: Transform
- pos: 51.5,59.5
- parent: 2
- - uid: 9745
- components:
- - type: Transform
- pos: 51.5,58.5
- parent: 2
- - uid: 9746
- components:
- - type: Transform
- pos: 52.5,60.5
- parent: 2
- - uid: 9747
- components:
- - type: Transform
- pos: 52.5,59.5
- parent: 2
- - uid: 9748
- components:
- - type: Transform
- pos: 53.5,61.5
- parent: 2
- - uid: 9749
- components:
- - type: Transform
- pos: 53.5,60.5
- parent: 2
- - uid: 9750
- components:
- - type: Transform
- pos: 50.5,56.5
- parent: 2
- - uid: 9751
- components:
- - type: Transform
- pos: 51.5,56.5
- parent: 2
- - uid: 9752
- components:
- - type: Transform
- pos: 51.5,57.5
- parent: 2
- - uid: 9753
- components:
- - type: Transform
- pos: 52.5,56.5
- parent: 2
- - uid: 9754
- components:
- - type: Transform
- pos: 52.5,58.5
- parent: 2
- - uid: 9755
- components:
- - type: Transform
- pos: 52.5,57.5
- parent: 2
- - uid: 9756
- components:
- - type: Transform
- pos: 53.5,56.5
- parent: 2
- - uid: 9760
- components:
- - type: Transform
- pos: 53.5,58.5
- parent: 2
- - uid: 9761
- components:
- - type: Transform
- pos: 53.5,59.5
- parent: 2
- - uid: 9762
- components:
- - type: Transform
- pos: 54.5,56.5
- parent: 2
- - uid: 9763
- components:
- - type: Transform
- pos: 53.5,57.5
- parent: 2
- - uid: 9764
- components:
- - type: Transform
- pos: 54.5,57.5
- parent: 2
- - uid: 9765
- components:
- - type: Transform
- pos: 54.5,58.5
- parent: 2
- - uid: 9766
- components:
- - type: Transform
- pos: 54.5,59.5
- parent: 2
- - uid: 9767
- components:
- - type: Transform
- pos: 55.5,56.5
- parent: 2
- - uid: 9768
- components:
- - type: Transform
- pos: 55.5,57.5
- parent: 2
- - uid: 9770
- components:
- - type: Transform
- pos: 55.5,58.5
- parent: 2
- - uid: 9771
- components:
- - type: Transform
- pos: 54.5,60.5
- parent: 2
- - uid: 9772
- components:
- - type: Transform
- pos: 54.5,62.5
- parent: 2
- - uid: 9773
- components:
- - type: Transform
- pos: 54.5,63.5
- parent: 2
- - uid: 9779
- components:
- - type: Transform
- pos: 54.5,61.5
- parent: 2
- - uid: 9787
- components:
- - type: Transform
- pos: 53.5,64.5
- parent: 2
- - uid: 9788
- components:
- - type: Transform
- pos: 54.5,64.5
- parent: 2
- - uid: 9789
- components:
- - type: Transform
- pos: 55.5,64.5
- parent: 2
- - uid: 9790
- components:
- - type: Transform
- pos: 56.5,64.5
- parent: 2
- - uid: 9791
- components:
- - type: Transform
- pos: 57.5,64.5
- parent: 2
- - uid: 9792
- components:
- - type: Transform
- pos: 58.5,64.5
- parent: 2
- - uid: 9793
- components:
- - type: Transform
- pos: 59.5,64.5
- parent: 2
- - uid: 9794
- components:
- - type: Transform
- pos: 52.5,65.5
- parent: 2
- - uid: 9795
- components:
- - type: Transform
- pos: 53.5,65.5
- parent: 2
- - uid: 9796
- components:
- - type: Transform
- pos: 54.5,65.5
- parent: 2
- - uid: 9797
- components:
- - type: Transform
- pos: 55.5,65.5
- parent: 2
- - uid: 9798
- components:
- - type: Transform
- pos: 56.5,65.5
- parent: 2
- - uid: 9799
- components:
- - type: Transform
- pos: 57.5,65.5
- parent: 2
- - uid: 9800
- components:
- - type: Transform
- pos: 58.5,65.5
- parent: 2
- - uid: 9801
- components:
- - type: Transform
- pos: 59.5,65.5
- parent: 2
- - uid: 9802
- components:
- - type: Transform
- pos: 53.5,66.5
- parent: 2
- - uid: 9803
- components:
- - type: Transform
- pos: 54.5,66.5
- parent: 2
- - uid: 9804
- components:
- - type: Transform
- pos: 55.5,66.5
- parent: 2
- - uid: 9805
- components:
- - type: Transform
- pos: 56.5,66.5
- parent: 2
- - uid: 9807
- components:
- - type: Transform
- pos: 57.5,66.5
- parent: 2
- - uid: 9808
- components:
- - type: Transform
- pos: 58.5,66.5
- parent: 2
- - uid: 9809
- components:
- - type: Transform
- pos: 59.5,66.5
- parent: 2
- - uid: 9810
- components:
- - type: Transform
- pos: 60.5,66.5
- parent: 2
- - uid: 9811
- components:
- - type: Transform
- pos: 61.5,66.5
- parent: 2
- - uid: 9812
- components:
- - type: Transform
- pos: 62.5,66.5
- parent: 2
- - uid: 9813
- components:
- - type: Transform
- pos: 63.5,66.5
- parent: 2
- - uid: 9814
- components:
- - type: Transform
- pos: 64.5,66.5
- parent: 2
- - uid: 9815
- components:
- - type: Transform
- pos: 48.5,66.5
- parent: 2
- - uid: 9816
- components:
- - type: Transform
- pos: 49.5,66.5
- parent: 2
- - uid: 9817
- components:
- - type: Transform
- pos: 50.5,66.5
- parent: 2
- - uid: 9818
- components:
- - type: Transform
- pos: 51.5,66.5
- parent: 2
- - uid: 9819
- components:
- - type: Transform
- pos: 52.5,66.5
- parent: 2
- - uid: 9823
- components:
- - type: Transform
- pos: 60.5,65.5
- parent: 2
- - uid: 9824
- components:
- - type: Transform
- pos: 60.5,64.5
- parent: 2
- - uid: 9825
- components:
- - type: Transform
- pos: 60.5,63.5
- parent: 2
- - uid: 9826
- components:
- - type: Transform
- pos: 60.5,62.5
- parent: 2
- - uid: 9827
- components:
- - type: Transform
- pos: 60.5,61.5
- parent: 2
- - uid: 9828
- components:
- - type: Transform
- pos: 61.5,65.5
- parent: 2
- - uid: 9829
- components:
- - type: Transform
- pos: 61.5,64.5
- parent: 2
- - uid: 9830
- components:
- - type: Transform
- pos: 61.5,63.5
- parent: 2
- - uid: 9831
- components:
- - type: Transform
- pos: 61.5,62.5
- parent: 2
- - uid: 9832
- components:
- - type: Transform
- pos: 61.5,61.5
- parent: 2
- - uid: 9833
- components:
- - type: Transform
- pos: 62.5,65.5
- parent: 2
- - uid: 9834
- components:
- - type: Transform
- pos: 62.5,64.5
- parent: 2
- - uid: 9835
- components:
- - type: Transform
- pos: 62.5,63.5
- parent: 2
- - uid: 9836
- components:
- - type: Transform
- pos: 62.5,62.5
- parent: 2
- - uid: 9837
- components:
- - type: Transform
- pos: 62.5,61.5
- parent: 2
- - uid: 9838
- components:
- - type: Transform
- pos: 63.5,65.5
- parent: 2
- - uid: 9839
- components:
- - type: Transform
- pos: 63.5,64.5
- parent: 2
- - uid: 9840
- components:
- - type: Transform
- pos: 63.5,63.5
- parent: 2
- - uid: 9841
- components:
- - type: Transform
- pos: 63.5,62.5
- parent: 2
- - uid: 9842
- components:
- - type: Transform
- pos: 63.5,61.5
- parent: 2
- - uid: 9843
- components:
- - type: Transform
- pos: 64.5,65.5
- parent: 2
- - uid: 9844
- components:
- - type: Transform
- pos: 64.5,64.5
- parent: 2
- - uid: 9845
- components:
- - type: Transform
- pos: 64.5,63.5
- parent: 2
- - uid: 9846
- components:
- - type: Transform
- pos: 64.5,62.5
- parent: 2
- - uid: 9847
- components:
- - type: Transform
- pos: 64.5,61.5
- parent: 2
- - uid: 9848
- components:
- - type: Transform
- pos: 65.5,65.5
- parent: 2
- - uid: 9849
- components:
- - type: Transform
- pos: 65.5,64.5
- parent: 2
- - uid: 9850
- components:
- - type: Transform
- pos: 65.5,63.5
- parent: 2
- - uid: 9851
- components:
- - type: Transform
- pos: 65.5,62.5
- parent: 2
- - uid: 9852
- components:
- - type: Transform
- pos: 65.5,61.5
- parent: 2
- - uid: 9853
- components:
- - type: Transform
- pos: 66.5,65.5
- parent: 2
- - uid: 9854
- components:
- - type: Transform
- pos: 66.5,64.5
- parent: 2
- - uid: 9855
- components:
- - type: Transform
- pos: 66.5,63.5
- parent: 2
- - uid: 9856
- components:
- - type: Transform
- pos: 66.5,62.5
- parent: 2
- - uid: 9857
- components:
- - type: Transform
- pos: 66.5,61.5
- parent: 2
- - uid: 9858
- components:
- - type: Transform
- pos: 67.5,65.5
- parent: 2
- - uid: 9859
- components:
- - type: Transform
- pos: 67.5,64.5
- parent: 2
- - uid: 9860
- components:
- - type: Transform
- pos: 67.5,63.5
- parent: 2
- - uid: 9861
- components:
- - type: Transform
- pos: 67.5,62.5
- parent: 2
- - uid: 9862
- components:
- - type: Transform
- pos: 67.5,61.5
- parent: 2
- - uid: 9863
- components:
- - type: Transform
- pos: 68.5,64.5
- parent: 2
- - uid: 9864
- components:
- - type: Transform
- pos: 68.5,63.5
- parent: 2
- - uid: 9865
- components:
- - type: Transform
- pos: 68.5,62.5
- parent: 2
- - uid: 9866
- components:
- - type: Transform
- pos: 68.5,61.5
- parent: 2
- - uid: 9867
- components:
- - type: Transform
- pos: 69.5,64.5
- parent: 2
- - uid: 9868
- components:
- - type: Transform
- pos: 69.5,63.5
- parent: 2
- - uid: 9869
- components:
- - type: Transform
- pos: 69.5,62.5
- parent: 2
- - uid: 9870
- components:
- - type: Transform
- pos: 69.5,61.5
- parent: 2
- - uid: 9871
- components:
- - type: Transform
- pos: 70.5,64.5
- parent: 2
- - uid: 9872
- components:
- - type: Transform
- pos: 70.5,63.5
- parent: 2
- - uid: 9873
- components:
- - type: Transform
- pos: 70.5,62.5
- parent: 2
- - uid: 9874
- components:
- - type: Transform
- pos: 70.5,61.5
- parent: 2
- - uid: 9875
- components:
- - type: Transform
- pos: 70.5,60.5
- parent: 2
- - uid: 9876
- components:
- - type: Transform
- pos: 71.5,63.5
- parent: 2
- - uid: 9877
- components:
- - type: Transform
- pos: 71.5,62.5
- parent: 2
- - uid: 9878
- components:
- - type: Transform
- pos: 71.5,61.5
- parent: 2
- - uid: 9879
- components:
- - type: Transform
- pos: 71.5,60.5
- parent: 2
- - uid: 9880
- components:
- - type: Transform
- pos: 72.5,63.5
- parent: 2
- - uid: 9881
- components:
- - type: Transform
- pos: 72.5,62.5
- parent: 2
- - uid: 9882
- components:
- - type: Transform
- pos: 72.5,61.5
- parent: 2
- - uid: 9883
- components:
- - type: Transform
- pos: 72.5,60.5
- parent: 2
- - uid: 9884
- components:
- - type: Transform
- pos: 73.5,63.5
- parent: 2
- - uid: 9885
- components:
- - type: Transform
- pos: 73.5,62.5
- parent: 2
- - uid: 9886
- components:
- - type: Transform
- pos: 73.5,61.5
- parent: 2
- - uid: 9887
- components:
- - type: Transform
- pos: 73.5,60.5
- parent: 2
- - uid: 9888
- components:
- - type: Transform
- pos: 74.5,63.5
- parent: 2
- - uid: 9889
- components:
- - type: Transform
- pos: 74.5,62.5
- parent: 2
- - uid: 9890
- components:
- - type: Transform
- pos: 74.5,61.5
- parent: 2
- - uid: 9891
- components:
- - type: Transform
- pos: 74.5,60.5
- parent: 2
- - uid: 9892
- components:
- - type: Transform
- pos: 75.5,62.5
- parent: 2
- - uid: 9893
- components:
- - type: Transform
- pos: 75.5,61.5
- parent: 2
- - uid: 9894
- components:
- - type: Transform
- pos: 75.5,60.5
- parent: 2
- - uid: 9895
- components:
- - type: Transform
- pos: 75.5,59.5
- parent: 2
- - uid: 9896
- components:
- - type: Transform
- pos: 75.5,58.5
- parent: 2
- - uid: 9897
- components:
- - type: Transform
- pos: 76.5,62.5
- parent: 2
- - uid: 9898
- components:
- - type: Transform
- pos: 76.5,61.5
- parent: 2
- - uid: 9899
- components:
- - type: Transform
- pos: 76.5,60.5
- parent: 2
- - uid: 9900
- components:
- - type: Transform
- pos: 76.5,59.5
- parent: 2
- - uid: 9901
- components:
- - type: Transform
- pos: 76.5,58.5
- parent: 2
- - uid: 9902
- components:
- - type: Transform
- pos: 77.5,62.5
- parent: 2
- - uid: 9903
- components:
- - type: Transform
- pos: 77.5,61.5
- parent: 2
- - uid: 9904
- components:
- - type: Transform
- pos: 77.5,60.5
- parent: 2
- - uid: 9905
- components:
- - type: Transform
- pos: 77.5,58.5
- parent: 2
- - uid: 9906
- components:
- - type: Transform
- pos: 78.5,62.5
- parent: 2
- - uid: 9907
- components:
- - type: Transform
- pos: 77.5,59.5
- parent: 2
- - uid: 9908
- components:
- - type: Transform
- pos: 78.5,61.5
- parent: 2
- - uid: 9909
- components:
- - type: Transform
- pos: 78.5,59.5
- parent: 2
- - uid: 9910
- components:
- - type: Transform
- pos: 78.5,58.5
- parent: 2
- - uid: 9911
- components:
- - type: Transform
- pos: 78.5,60.5
- parent: 2
- - uid: 9912
- components:
- - type: Transform
- pos: 79.5,62.5
- parent: 2
- - uid: 9913
- components:
- - type: Transform
- pos: 79.5,61.5
- parent: 2
- - uid: 9914
- components:
- - type: Transform
- pos: 79.5,60.5
- parent: 2
- - uid: 9915
- components:
- - type: Transform
- pos: 79.5,59.5
- parent: 2
- - uid: 9916
- components:
- - type: Transform
- pos: 79.5,58.5
- parent: 2
- - uid: 9917
- components:
- - type: Transform
- pos: 80.5,61.5
- parent: 2
- - uid: 9918
- components:
- - type: Transform
- pos: 80.5,62.5
- parent: 2
- - uid: 9919
- components:
- - type: Transform
- pos: 80.5,60.5
- parent: 2
- uid: 9920
components:
- type: Transform
- pos: 80.5,59.5
- parent: 2
- - uid: 9921
- components:
- - type: Transform
- pos: 80.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-72.5
parent: 2
- uid: 9922
components:
- type: Transform
- pos: 81.5,62.5
- parent: 2
- - uid: 9923
- components:
- - type: Transform
- pos: 81.5,61.5
- parent: 2
- - uid: 9924
- components:
- - type: Transform
- pos: 81.5,60.5
- parent: 2
- - uid: 9925
- components:
- - type: Transform
- pos: 81.5,59.5
+ pos: 59.5,63.5
parent: 2
- uid: 9926
components:
- type: Transform
- pos: 81.5,58.5
+ pos: 48.5,39.5
parent: 2
- uid: 9927
components:
- type: Transform
- pos: 82.5,62.5
+ pos: 48.5,38.5
parent: 2
- uid: 9928
components:
- type: Transform
- pos: 82.5,60.5
+ pos: 48.5,37.5
parent: 2
- uid: 9929
components:
- type: Transform
- pos: 82.5,59.5
+ pos: 48.5,36.5
parent: 2
- uid: 9930
components:
- type: Transform
- pos: 82.5,58.5
- parent: 2
- - uid: 9931
- components:
- - type: Transform
- pos: 83.5,62.5
- parent: 2
- - uid: 9932
- components:
- - type: Transform
- pos: 82.5,61.5
- parent: 2
- - uid: 9933
- components:
- - type: Transform
- pos: 83.5,61.5
- parent: 2
- - uid: 9934
- components:
- - type: Transform
- pos: 83.5,60.5
- parent: 2
- - uid: 9935
- components:
- - type: Transform
- pos: 83.5,58.5
- parent: 2
- - uid: 9936
- components:
- - type: Transform
- pos: 83.5,59.5
- parent: 2
- - uid: 9937
- components:
- - type: Transform
- pos: 84.5,62.5
- parent: 2
- - uid: 9938
- components:
- - type: Transform
- pos: 84.5,60.5
- parent: 2
- - uid: 9939
- components:
- - type: Transform
- pos: 84.5,61.5
+ pos: 48.5,35.5
parent: 2
- uid: 9940
components:
- type: Transform
- pos: 84.5,59.5
+ pos: 49.5,39.5
parent: 2
- uid: 9941
components:
- type: Transform
- pos: 84.5,58.5
+ pos: 49.5,38.5
parent: 2
- uid: 9942
components:
- type: Transform
- pos: 84.5,63.5
- parent: 2
- - uid: 9943
- components:
- - type: Transform
- pos: 85.5,63.5
- parent: 2
- - uid: 9944
- components:
- - type: Transform
- pos: 85.5,62.5
- parent: 2
- - uid: 9945
- components:
- - type: Transform
- pos: 85.5,61.5
- parent: 2
- - uid: 9946
- components:
- - type: Transform
- pos: 85.5,60.5
- parent: 2
- - uid: 9947
- components:
- - type: Transform
- pos: 85.5,59.5
- parent: 2
- - uid: 9948
- components:
- - type: Transform
- pos: 85.5,58.5
- parent: 2
- - uid: 9949
- components:
- - type: Transform
- pos: 86.5,63.5
- parent: 2
- - uid: 9950
- components:
- - type: Transform
- pos: 86.5,62.5
- parent: 2
- - uid: 9951
- components:
- - type: Transform
- pos: 86.5,61.5
- parent: 2
- - uid: 9952
- components:
- - type: Transform
- pos: 86.5,60.5
+ pos: 49.5,37.5
parent: 2
- uid: 9953
components:
- type: Transform
- pos: 86.5,59.5
+ pos: 50.5,38.5
parent: 2
- uid: 9954
components:
- type: Transform
- pos: 87.5,63.5
+ pos: 50.5,37.5
parent: 2
- uid: 9955
components:
- type: Transform
- pos: 87.5,62.5
- parent: 2
- - uid: 9956
- components:
- - type: Transform
- pos: 87.5,61.5
- parent: 2
- - uid: 9957
- components:
- - type: Transform
- pos: 87.5,60.5
- parent: 2
- - uid: 9958
- components:
- - type: Transform
- pos: 87.5,59.5
- parent: 2
- - uid: 9959
- components:
- - type: Transform
- pos: 87.5,58.5
+ pos: 51.5,48.5
parent: 2
- uid: 9960
components:
- type: Transform
- pos: 86.5,58.5
+ pos: 59.5,62.5
parent: 2
- uid: 9961
components:
- type: Transform
- pos: 88.5,63.5
+ pos: 59.5,60.5
parent: 2
- uid: 9962
components:
- type: Transform
- pos: 88.5,62.5
+ pos: 57.5,61.5
parent: 2
- uid: 9963
components:
- type: Transform
- pos: 88.5,61.5
+ pos: 59.5,61.5
parent: 2
- uid: 9964
components:
- type: Transform
- pos: 88.5,60.5
+ pos: 59.5,59.5
parent: 2
- uid: 9965
components:
- type: Transform
- pos: 88.5,59.5
+ pos: 58.5,62.5
parent: 2
- uid: 9966
components:
- type: Transform
- pos: 88.5,58.5
- parent: 2
- - uid: 9967
- components:
- - type: Transform
- pos: 89.5,63.5
- parent: 2
- - uid: 9968
- components:
- - type: Transform
- pos: 89.5,62.5
- parent: 2
- - uid: 9969
- components:
- - type: Transform
- pos: 89.5,61.5
- parent: 2
- - uid: 9970
- components:
- - type: Transform
- pos: 89.5,60.5
- parent: 2
- - uid: 9971
- components:
- - type: Transform
- pos: 89.5,59.5
- parent: 2
- - uid: 9972
- components:
- - type: Transform
- pos: 89.5,58.5
- parent: 2
- - uid: 9973
- components:
- - type: Transform
- pos: 90.5,63.5
+ pos: 51.5,37.5
parent: 2
- uid: 9974
components:
- type: Transform
- pos: 90.5,62.5
+ pos: 50.5,49.5
parent: 2
- uid: 9975
components:
- type: Transform
- pos: 90.5,61.5
+ pos: 51.5,49.5
parent: 2
- uid: 9976
components:
- type: Transform
- pos: 90.5,59.5
+ pos: 52.5,49.5
parent: 2
- uid: 9977
components:
- type: Transform
- pos: 90.5,58.5
- parent: 2
- - uid: 9978
- components:
- - type: Transform
- pos: 91.5,63.5
- parent: 2
- - uid: 9979
- components:
- - type: Transform
- pos: 90.5,60.5
- parent: 2
- - uid: 9980
- components:
- - type: Transform
- pos: 91.5,62.5
+ pos: 52.5,48.5
parent: 2
- uid: 9981
components:
- type: Transform
- pos: 91.5,61.5
- parent: 2
- - uid: 9982
- components:
- - type: Transform
- pos: 91.5,60.5
+ pos: 46.5,51.5
parent: 2
- uid: 9983
components:
- type: Transform
- pos: 91.5,59.5
- parent: 2
- - uid: 9984
- components:
- - type: Transform
- pos: 91.5,58.5
+ pos: 47.5,51.5
parent: 2
- uid: 9985
components:
- type: Transform
- pos: 92.5,63.5
+ pos: 48.5,51.5
parent: 2
- uid: 9986
components:
- type: Transform
- pos: 92.5,62.5
+ pos: 48.5,50.5
parent: 2
- uid: 9987
components:
- type: Transform
- pos: 92.5,61.5
+ pos: 49.5,51.5
parent: 2
- uid: 9988
components:
- type: Transform
- pos: 92.5,60.5
+ pos: 50.5,51.5
parent: 2
- uid: 9989
components:
- type: Transform
- pos: 92.5,59.5
+ pos: 49.5,50.5
parent: 2
- uid: 9990
components:
- type: Transform
- pos: 92.5,58.5
+ pos: 51.5,51.5
parent: 2
- uid: 9991
components:
- type: Transform
- pos: 93.5,63.5
+ pos: 50.5,50.5
parent: 2
- uid: 9992
components:
- type: Transform
- pos: 93.5,62.5
+ pos: 51.5,50.5
parent: 2
- uid: 9993
components:
- type: Transform
- pos: 93.5,61.5
+ pos: 52.5,51.5
parent: 2
- uid: 9994
components:
- type: Transform
- pos: 93.5,60.5
+ pos: 52.5,50.5
parent: 2
- uid: 9995
components:
- type: Transform
- pos: 93.5,59.5
+ pos: 46.5,53.5
parent: 2
- uid: 9996
components:
- type: Transform
- pos: 93.5,58.5
+ pos: 46.5,52.5
parent: 2
- uid: 9997
components:
- type: Transform
- pos: 94.5,63.5
+ pos: 47.5,53.5
parent: 2
- uid: 9998
components:
- type: Transform
- pos: 94.5,62.5
+ pos: 47.5,52.5
parent: 2
- uid: 9999
components:
- type: Transform
- pos: 94.5,61.5
+ pos: 48.5,53.5
parent: 2
- uid: 10000
components:
- type: Transform
- pos: 94.5,60.5
+ pos: 48.5,52.5
parent: 2
- uid: 10001
components:
- type: Transform
- pos: 94.5,59.5
+ pos: 49.5,53.5
parent: 2
- uid: 10002
components:
- type: Transform
- pos: 94.5,58.5
+ pos: 49.5,52.5
parent: 2
- uid: 10003
components:
- type: Transform
- pos: 88.5,64.5
+ pos: 50.5,53.5
parent: 2
- uid: 10004
components:
- type: Transform
- pos: 89.5,64.5
+ pos: 51.5,53.5
parent: 2
- uid: 10005
components:
- type: Transform
- pos: 90.5,64.5
+ pos: 51.5,52.5
parent: 2
- uid: 10006
components:
- type: Transform
- pos: 91.5,64.5
+ pos: 50.5,52.5
parent: 2
- uid: 10007
components:
- type: Transform
- pos: 95.5,62.5
+ pos: 52.5,53.5
parent: 2
- uid: 10008
components:
- type: Transform
- pos: 95.5,61.5
+ pos: 52.5,52.5
parent: 2
- uid: 10009
components:
- type: Transform
- pos: 95.5,60.5
+ pos: 53.5,53.5
parent: 2
- uid: 10010
components:
- type: Transform
- pos: 95.5,59.5
+ pos: 53.5,52.5
parent: 2
- uid: 10011
components:
- type: Transform
- pos: 95.5,58.5
+ pos: 53.5,51.5
parent: 2
- uid: 10012
components:
- type: Transform
- pos: 96.5,62.5
+ pos: 47.5,54.5
parent: 2
- uid: 10013
components:
- type: Transform
- pos: 96.5,61.5
+ pos: 48.5,55.5
parent: 2
- uid: 10014
components:
- type: Transform
- pos: 96.5,60.5
+ pos: 48.5,54.5
parent: 2
- uid: 10015
components:
- type: Transform
- pos: 96.5,59.5
+ pos: 49.5,55.5
parent: 2
- uid: 10016
components:
- type: Transform
- pos: 96.5,58.5
+ pos: 49.5,54.5
parent: 2
- uid: 10017
components:
- type: Transform
- pos: 97.5,62.5
+ pos: 50.5,55.5
parent: 2
- uid: 10018
components:
- type: Transform
- pos: 97.5,61.5
+ pos: 50.5,54.5
parent: 2
- uid: 10019
components:
- type: Transform
- pos: 97.5,60.5
+ pos: 51.5,55.5
parent: 2
- uid: 10020
components:
- type: Transform
- pos: 97.5,59.5
+ pos: 51.5,54.5
parent: 2
- uid: 10021
components:
- type: Transform
- pos: 97.5,58.5
+ pos: 52.5,54.5
parent: 2
- uid: 10022
components:
- type: Transform
- pos: 98.5,62.5
+ pos: 52.5,55.5
parent: 2
- uid: 10023
components:
- type: Transform
- pos: 98.5,61.5
+ pos: 53.5,54.5
parent: 2
- uid: 10024
components:
- type: Transform
- pos: 98.5,60.5
+ pos: 53.5,55.5
parent: 2
- uid: 10025
components:
- type: Transform
- pos: 98.5,59.5
+ pos: 54.5,55.5
parent: 2
- uid: 10026
components:
- type: Transform
- pos: 99.5,62.5
+ pos: 54.5,54.5
parent: 2
- uid: 10027
components:
- type: Transform
- pos: 99.5,61.5
+ pos: 54.5,53.5
parent: 2
- uid: 10028
components:
- type: Transform
- pos: 99.5,60.5
+ pos: 48.5,56.5
parent: 2
- uid: 10029
components:
- type: Transform
- pos: 98.5,58.5
+ pos: 49.5,57.5
parent: 2
- uid: 10030
components:
- type: Transform
- pos: 99.5,58.5
+ pos: 49.5,56.5
parent: 2
- uid: 10031
components:
- type: Transform
- pos: 99.5,59.5
+ pos: 50.5,58.5
parent: 2
- uid: 10032
components:
- type: Transform
- pos: 100.5,61.5
+ pos: 50.5,57.5
parent: 2
- uid: 10033
components:
- type: Transform
- pos: 100.5,59.5
+ pos: 51.5,59.5
parent: 2
- uid: 10034
components:
- type: Transform
- pos: 100.5,58.5
+ pos: 51.5,58.5
+ parent: 2
+ - uid: 10035
+ components:
+ - type: Transform
+ pos: 52.5,60.5
+ parent: 2
+ - uid: 10036
+ components:
+ - type: Transform
+ pos: 52.5,59.5
+ parent: 2
+ - uid: 10037
+ components:
+ - type: Transform
+ pos: 53.5,61.5
+ parent: 2
+ - uid: 10038
+ components:
+ - type: Transform
+ pos: 53.5,60.5
parent: 2
- uid: 10040
components:
- type: Transform
- pos: 100.5,60.5
+ pos: 50.5,56.5
+ parent: 2
+ - uid: 10042
+ components:
+ - type: Transform
+ pos: 51.5,56.5
+ parent: 2
+ - uid: 10046
+ components:
+ - type: Transform
+ pos: 51.5,57.5
+ parent: 2
+ - uid: 10051
+ components:
+ - type: Transform
+ pos: 52.5,56.5
+ parent: 2
+ - uid: 10052
+ components:
+ - type: Transform
+ pos: 52.5,58.5
+ parent: 2
+ - uid: 10053
+ components:
+ - type: Transform
+ pos: 52.5,57.5
+ parent: 2
+ - uid: 10054
+ components:
+ - type: Transform
+ pos: 53.5,56.5
+ parent: 2
+ - uid: 10055
+ components:
+ - type: Transform
+ pos: 53.5,58.5
parent: 2
- uid: 10056
components:
- type: Transform
- pos: 104.5,63.5
+ pos: 53.5,59.5
+ parent: 2
+ - uid: 10057
+ components:
+ - type: Transform
+ pos: 54.5,56.5
parent: 2
- uid: 10058
components:
- type: Transform
- pos: 105.5,63.5
+ pos: 53.5,57.5
+ parent: 2
+ - uid: 10059
+ components:
+ - type: Transform
+ pos: 54.5,57.5
parent: 2
- uid: 10060
components:
- type: Transform
- pos: 106.5,63.5
+ pos: 54.5,58.5
parent: 2
- uid: 10063
components:
- type: Transform
- pos: 107.5,63.5
+ pos: 54.5,59.5
+ parent: 2
+ - uid: 10065
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-72.5
parent: 2
- uid: 10066
components:
- type: Transform
- pos: 108.5,63.5
+ pos: 55.5,56.5
+ parent: 2
+ - uid: 10067
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-73.5
+ parent: 2
+ - uid: 10068
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-75.5
parent: 2
- uid: 10069
components:
- type: Transform
- pos: 109.5,63.5
+ pos: 55.5,57.5
+ parent: 2
+ - uid: 10070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-74.5
+ parent: 2
+ - uid: 10071
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-75.5
parent: 2
- uid: 10072
components:
- type: Transform
- pos: 110.5,63.5
+ pos: 55.5,58.5
parent: 2
- uid: 10073
components:
- type: Transform
- pos: 110.5,61.5
+ pos: 54.5,60.5
parent: 2
- uid: 10074
components:
- type: Transform
- pos: 114.5,56.5
+ pos: 54.5,62.5
parent: 2
- uid: 10075
components:
- type: Transform
- pos: 114.5,53.5
+ pos: 54.5,63.5
parent: 2
- uid: 10076
components:
- type: Transform
- pos: 114.5,54.5
+ pos: 54.5,61.5
parent: 2
- uid: 10077
components:
- type: Transform
- pos: 110.5,62.5
+ pos: 53.5,64.5
+ parent: 2
+ - uid: 10078
+ components:
+ - type: Transform
+ pos: 54.5,64.5
+ parent: 2
+ - uid: 10079
+ components:
+ - type: Transform
+ pos: 55.5,64.5
parent: 2
- uid: 10080
components:
- type: Transform
- pos: 108.5,64.5
+ pos: 56.5,64.5
parent: 2
- uid: 10081
components:
- type: Transform
- pos: 109.5,64.5
+ pos: 57.5,64.5
parent: 2
- uid: 10082
components:
- type: Transform
- pos: 110.5,64.5
+ pos: 58.5,64.5
parent: 2
- uid: 10083
components:
- type: Transform
- pos: 114.5,55.5
+ pos: 59.5,64.5
parent: 2
- uid: 10084
components:
- type: Transform
- pos: 113.5,56.5
+ pos: 52.5,65.5
parent: 2
- uid: 10085
components:
- type: Transform
- pos: 113.5,54.5
+ pos: 53.5,65.5
parent: 2
- uid: 10086
components:
- type: Transform
- pos: 113.5,57.5
+ pos: 54.5,65.5
parent: 2
- uid: 10087
components:
- type: Transform
- pos: 113.5,61.5
+ pos: 55.5,65.5
parent: 2
- uid: 10088
components:
- type: Transform
- pos: 113.5,58.5
+ pos: 56.5,65.5
parent: 2
- uid: 10089
components:
- type: Transform
- pos: 113.5,62.5
+ pos: 57.5,65.5
parent: 2
- uid: 10090
components:
- type: Transform
- pos: 113.5,63.5
+ pos: 58.5,65.5
parent: 2
- uid: 10091
components:
- type: Transform
- pos: 115.5,64.5
+ pos: 59.5,65.5
parent: 2
- uid: 10092
components:
- type: Transform
- pos: 115.5,63.5
+ pos: 53.5,66.5
parent: 2
- uid: 10093
components:
- type: Transform
- pos: 115.5,62.5
+ pos: 54.5,66.5
parent: 2
- uid: 10094
components:
- type: Transform
- pos: 113.5,64.5
+ pos: 55.5,66.5
parent: 2
- uid: 10095
components:
- type: Transform
- pos: 113.5,65.5
+ pos: 56.5,66.5
parent: 2
- uid: 10096
components:
- type: Transform
- pos: 113.5,59.5
+ pos: 57.5,66.5
parent: 2
- uid: 10097
components:
- type: Transform
- pos: 113.5,60.5
+ pos: 58.5,66.5
parent: 2
- uid: 10098
components:
- type: Transform
- pos: 114.5,67.5
+ pos: 59.5,66.5
parent: 2
- uid: 10099
components:
- type: Transform
- pos: 115.5,67.5
+ pos: 60.5,66.5
parent: 2
- uid: 10100
components:
- type: Transform
- pos: 116.5,65.5
+ pos: 61.5,66.5
parent: 2
- uid: 10101
components:
- type: Transform
- pos: 116.5,64.5
+ pos: 62.5,66.5
parent: 2
- uid: 10102
components:
- type: Transform
- pos: 115.5,66.5
+ pos: 63.5,66.5
parent: 2
- uid: 10103
components:
- type: Transform
- pos: 117.5,64.5
+ pos: 64.5,66.5
parent: 2
- uid: 10104
components:
- type: Transform
- pos: 115.5,68.5
+ pos: 48.5,66.5
parent: 2
- uid: 10105
components:
- type: Transform
- pos: 116.5,66.5
+ pos: 49.5,66.5
parent: 2
- uid: 10106
components:
- type: Transform
- pos: 116.5,68.5
+ pos: 50.5,66.5
parent: 2
- uid: 10107
components:
- type: Transform
- pos: 117.5,65.5
+ pos: 51.5,66.5
parent: 2
- uid: 10108
components:
- type: Transform
- pos: 117.5,66.5
+ pos: 52.5,66.5
parent: 2
- uid: 10109
components:
- type: Transform
- pos: 117.5,67.5
+ pos: 60.5,65.5
parent: 2
- uid: 10110
components:
- type: Transform
- pos: 118.5,65.5
+ pos: 60.5,64.5
parent: 2
- uid: 10111
components:
- type: Transform
- pos: 117.5,68.5
+ pos: 60.5,63.5
parent: 2
- uid: 10112
components:
- type: Transform
- pos: 118.5,67.5
+ pos: 60.5,62.5
parent: 2
- uid: 10113
components:
- type: Transform
- pos: 119.5,66.5
+ pos: 60.5,61.5
parent: 2
- uid: 10114
components:
- type: Transform
- pos: 119.5,67.5
+ pos: 61.5,65.5
parent: 2
- uid: 10115
components:
- type: Transform
- pos: 119.5,68.5
+ pos: 61.5,64.5
parent: 2
- uid: 10116
components:
- type: Transform
- pos: 119.5,69.5
+ pos: 61.5,63.5
parent: 2
- uid: 10117
components:
- type: Transform
- pos: 116.5,63.5
+ pos: 61.5,62.5
parent: 2
- uid: 10118
components:
- type: Transform
- pos: 113.5,66.5
+ pos: 61.5,61.5
parent: 2
- uid: 10119
components:
- type: Transform
- pos: 113.5,67.5
+ pos: 62.5,65.5
parent: 2
- uid: 10120
components:
- type: Transform
- pos: 112.5,53.5
+ pos: 62.5,64.5
parent: 2
- uid: 10121
components:
- type: Transform
- pos: 112.5,55.5
+ pos: 62.5,63.5
parent: 2
- uid: 10122
components:
- type: Transform
- pos: 112.5,58.5
+ pos: 62.5,62.5
parent: 2
- uid: 10123
components:
- type: Transform
- pos: 114.5,57.5
+ pos: 62.5,61.5
parent: 2
- uid: 10124
components:
- type: Transform
- pos: 112.5,57.5
+ pos: 63.5,65.5
parent: 2
- uid: 10125
components:
- type: Transform
- pos: 112.5,56.5
+ pos: 63.5,64.5
parent: 2
- uid: 10126
components:
- type: Transform
- pos: 112.5,54.5
+ pos: 63.5,63.5
parent: 2
- uid: 10127
components:
- type: Transform
- pos: 112.5,59.5
+ pos: 63.5,62.5
parent: 2
- uid: 10128
components:
- type: Transform
- pos: 114.5,58.5
+ pos: 63.5,61.5
parent: 2
- uid: 10129
components:
- type: Transform
- pos: 112.5,61.5
+ pos: 64.5,65.5
parent: 2
- uid: 10130
components:
- type: Transform
- pos: 112.5,62.5
+ pos: 64.5,64.5
parent: 2
- uid: 10131
components:
- type: Transform
- pos: 114.5,59.5
+ pos: 64.5,63.5
parent: 2
- uid: 10132
components:
- type: Transform
- pos: 112.5,63.5
+ pos: 64.5,62.5
parent: 2
- uid: 10133
components:
- type: Transform
- pos: 112.5,64.5
+ pos: 64.5,61.5
parent: 2
- uid: 10138
+ components:
+ - type: Transform
+ pos: 65.5,65.5
+ parent: 2
+ - uid: 10141
+ components:
+ - type: Transform
+ pos: 65.5,64.5
+ parent: 2
+ - uid: 10142
+ components:
+ - type: Transform
+ pos: 65.5,63.5
+ parent: 2
+ - uid: 10143
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-71.5
+ parent: 2
+ - uid: 10145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-72.5
+ parent: 2
+ - uid: 10146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-73.5
+ parent: 2
+ - uid: 10147
+ components:
+ - type: Transform
+ pos: 65.5,62.5
+ parent: 2
+ - uid: 10148
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-71.5
+ parent: 2
+ - uid: 10151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-75.5
+ parent: 2
+ - uid: 10152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-71.5
+ parent: 2
+ - uid: 10153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-72.5
+ parent: 2
+ - uid: 10154
+ components:
+ - type: Transform
+ pos: 65.5,61.5
+ parent: 2
+ - uid: 10155
+ components:
+ - type: Transform
+ pos: 66.5,65.5
+ parent: 2
+ - uid: 10156
+ components:
+ - type: Transform
+ pos: 66.5,64.5
+ parent: 2
+ - uid: 10157
+ components:
+ - type: Transform
+ pos: 66.5,63.5
+ parent: 2
+ - uid: 10158
+ components:
+ - type: Transform
+ pos: 66.5,62.5
+ parent: 2
+ - uid: 10159
+ components:
+ - type: Transform
+ pos: 66.5,61.5
+ parent: 2
+ - uid: 10160
+ components:
+ - type: Transform
+ pos: 67.5,65.5
+ parent: 2
+ - uid: 10161
+ components:
+ - type: Transform
+ pos: 67.5,64.5
+ parent: 2
+ - uid: 10162
+ components:
+ - type: Transform
+ pos: 67.5,63.5
+ parent: 2
+ - uid: 10163
+ components:
+ - type: Transform
+ pos: 67.5,62.5
+ parent: 2
+ - uid: 10164
+ components:
+ - type: Transform
+ pos: 67.5,61.5
+ parent: 2
+ - uid: 10165
+ components:
+ - type: Transform
+ pos: 68.5,64.5
+ parent: 2
+ - uid: 10166
+ components:
+ - type: Transform
+ pos: 68.5,63.5
+ parent: 2
+ - uid: 10167
+ components:
+ - type: Transform
+ pos: 68.5,62.5
+ parent: 2
+ - uid: 10168
+ components:
+ - type: Transform
+ pos: 68.5,61.5
+ parent: 2
+ - uid: 10169
+ components:
+ - type: Transform
+ pos: 69.5,64.5
+ parent: 2
+ - uid: 10170
+ components:
+ - type: Transform
+ pos: 69.5,63.5
+ parent: 2
+ - uid: 10171
+ components:
+ - type: Transform
+ pos: 69.5,62.5
+ parent: 2
+ - uid: 10172
+ components:
+ - type: Transform
+ pos: 69.5,61.5
+ parent: 2
+ - uid: 10173
+ components:
+ - type: Transform
+ pos: 70.5,64.5
+ parent: 2
+ - uid: 10174
+ components:
+ - type: Transform
+ pos: 70.5,63.5
+ parent: 2
+ - uid: 10175
+ components:
+ - type: Transform
+ pos: 70.5,62.5
+ parent: 2
+ - uid: 10176
+ components:
+ - type: Transform
+ pos: 70.5,61.5
+ parent: 2
+ - uid: 10178
+ components:
+ - type: Transform
+ pos: 70.5,60.5
+ parent: 2
+ - uid: 10179
+ components:
+ - type: Transform
+ pos: 71.5,63.5
+ parent: 2
+ - uid: 10180
+ components:
+ - type: Transform
+ pos: 71.5,62.5
+ parent: 2
+ - uid: 10181
+ components:
+ - type: Transform
+ pos: 71.5,61.5
+ parent: 2
+ - uid: 10182
+ components:
+ - type: Transform
+ pos: 71.5,60.5
+ parent: 2
+ - uid: 10183
+ components:
+ - type: Transform
+ pos: 72.5,63.5
+ parent: 2
+ - uid: 10184
+ components:
+ - type: Transform
+ pos: 72.5,62.5
+ parent: 2
+ - uid: 10185
+ components:
+ - type: Transform
+ pos: 72.5,61.5
+ parent: 2
+ - uid: 10186
+ components:
+ - type: Transform
+ pos: 72.5,60.5
+ parent: 2
+ - uid: 10187
+ components:
+ - type: Transform
+ pos: 73.5,63.5
+ parent: 2
+ - uid: 10188
+ components:
+ - type: Transform
+ pos: 73.5,62.5
+ parent: 2
+ - uid: 10189
+ components:
+ - type: Transform
+ pos: 73.5,61.5
+ parent: 2
+ - uid: 10190
+ components:
+ - type: Transform
+ pos: 73.5,60.5
+ parent: 2
+ - uid: 10191
+ components:
+ - type: Transform
+ pos: 74.5,63.5
+ parent: 2
+ - uid: 10192
+ components:
+ - type: Transform
+ pos: 74.5,62.5
+ parent: 2
+ - uid: 10193
+ components:
+ - type: Transform
+ pos: 74.5,61.5
+ parent: 2
+ - uid: 10194
+ components:
+ - type: Transform
+ pos: 74.5,60.5
+ parent: 2
+ - uid: 10195
+ components:
+ - type: Transform
+ pos: 75.5,62.5
+ parent: 2
+ - uid: 10196
+ components:
+ - type: Transform
+ pos: 75.5,61.5
+ parent: 2
+ - uid: 10197
+ components:
+ - type: Transform
+ pos: 75.5,60.5
+ parent: 2
+ - uid: 10198
+ components:
+ - type: Transform
+ pos: 75.5,59.5
+ parent: 2
+ - uid: 10199
+ components:
+ - type: Transform
+ pos: 75.5,58.5
+ parent: 2
+ - uid: 10200
+ components:
+ - type: Transform
+ pos: 76.5,62.5
+ parent: 2
+ - uid: 10201
+ components:
+ - type: Transform
+ pos: 76.5,61.5
+ parent: 2
+ - uid: 10202
+ components:
+ - type: Transform
+ pos: 76.5,60.5
+ parent: 2
+ - uid: 10203
+ components:
+ - type: Transform
+ pos: 76.5,59.5
+ parent: 2
+ - uid: 10204
+ components:
+ - type: Transform
+ pos: 76.5,58.5
+ parent: 2
+ - uid: 10205
+ components:
+ - type: Transform
+ pos: 77.5,62.5
+ parent: 2
+ - uid: 10206
+ components:
+ - type: Transform
+ pos: 77.5,61.5
+ parent: 2
+ - uid: 10207
+ components:
+ - type: Transform
+ pos: 77.5,60.5
+ parent: 2
+ - uid: 10208
+ components:
+ - type: Transform
+ pos: 77.5,58.5
+ parent: 2
+ - uid: 10209
+ components:
+ - type: Transform
+ pos: 78.5,62.5
+ parent: 2
+ - uid: 10210
+ components:
+ - type: Transform
+ pos: 77.5,59.5
+ parent: 2
+ - uid: 10211
+ components:
+ - type: Transform
+ pos: 78.5,61.5
+ parent: 2
+ - uid: 10212
+ components:
+ - type: Transform
+ pos: 78.5,59.5
+ parent: 2
+ - uid: 10213
+ components:
+ - type: Transform
+ pos: 78.5,58.5
+ parent: 2
+ - uid: 10214
+ components:
+ - type: Transform
+ pos: 78.5,60.5
+ parent: 2
+ - uid: 10215
+ components:
+ - type: Transform
+ pos: 79.5,62.5
+ parent: 2
+ - uid: 10216
+ components:
+ - type: Transform
+ pos: 79.5,61.5
+ parent: 2
+ - uid: 10217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-73.5
+ parent: 2
+ - uid: 10218
+ components:
+ - type: Transform
+ pos: 79.5,60.5
+ parent: 2
+ - uid: 10219
+ components:
+ - type: Transform
+ pos: 79.5,59.5
+ parent: 2
+ - uid: 10220
+ components:
+ - type: Transform
+ pos: 79.5,58.5
+ parent: 2
+ - uid: 10221
+ components:
+ - type: Transform
+ pos: 80.5,61.5
+ parent: 2
+ - uid: 10222
+ components:
+ - type: Transform
+ pos: 80.5,62.5
+ parent: 2
+ - uid: 10223
+ components:
+ - type: Transform
+ pos: 80.5,60.5
+ parent: 2
+ - uid: 10224
+ components:
+ - type: Transform
+ pos: 80.5,59.5
+ parent: 2
+ - uid: 10225
+ components:
+ - type: Transform
+ pos: 80.5,58.5
+ parent: 2
+ - uid: 10226
+ components:
+ - type: Transform
+ pos: 81.5,62.5
+ parent: 2
+ - uid: 10227
+ components:
+ - type: Transform
+ pos: 81.5,61.5
+ parent: 2
+ - uid: 10228
+ components:
+ - type: Transform
+ pos: 81.5,60.5
+ parent: 2
+ - uid: 10229
+ components:
+ - type: Transform
+ pos: 81.5,59.5
+ parent: 2
+ - uid: 10230
+ components:
+ - type: Transform
+ pos: 81.5,58.5
+ parent: 2
+ - uid: 10231
+ components:
+ - type: Transform
+ pos: 82.5,62.5
+ parent: 2
+ - uid: 10232
+ components:
+ - type: Transform
+ pos: 82.5,60.5
+ parent: 2
+ - uid: 10233
+ components:
+ - type: Transform
+ pos: 82.5,59.5
+ parent: 2
+ - uid: 10234
+ components:
+ - type: Transform
+ pos: 82.5,58.5
+ parent: 2
+ - uid: 10235
+ components:
+ - type: Transform
+ pos: 83.5,62.5
+ parent: 2
+ - uid: 10236
+ components:
+ - type: Transform
+ pos: 82.5,61.5
+ parent: 2
+ - uid: 10237
+ components:
+ - type: Transform
+ pos: 83.5,61.5
+ parent: 2
+ - uid: 10238
+ components:
+ - type: Transform
+ pos: 83.5,60.5
+ parent: 2
+ - uid: 10239
+ components:
+ - type: Transform
+ pos: 83.5,58.5
+ parent: 2
+ - uid: 10240
+ components:
+ - type: Transform
+ pos: 83.5,59.5
+ parent: 2
+ - uid: 10241
+ components:
+ - type: Transform
+ pos: 84.5,62.5
+ parent: 2
+ - uid: 10242
+ components:
+ - type: Transform
+ pos: 84.5,60.5
+ parent: 2
+ - uid: 10243
+ components:
+ - type: Transform
+ pos: 84.5,61.5
+ parent: 2
+ - uid: 10244
+ components:
+ - type: Transform
+ pos: 84.5,59.5
+ parent: 2
+ - uid: 10245
+ components:
+ - type: Transform
+ pos: 84.5,58.5
+ parent: 2
+ - uid: 10246
+ components:
+ - type: Transform
+ pos: 84.5,63.5
+ parent: 2
+ - uid: 10247
+ components:
+ - type: Transform
+ pos: 85.5,63.5
+ parent: 2
+ - uid: 10248
+ components:
+ - type: Transform
+ pos: 85.5,62.5
+ parent: 2
+ - uid: 10249
+ components:
+ - type: Transform
+ pos: 85.5,61.5
+ parent: 2
+ - uid: 10250
+ components:
+ - type: Transform
+ pos: 85.5,60.5
+ parent: 2
+ - uid: 10251
+ components:
+ - type: Transform
+ pos: 85.5,59.5
+ parent: 2
+ - uid: 10252
+ components:
+ - type: Transform
+ pos: 85.5,58.5
+ parent: 2
+ - uid: 10253
+ components:
+ - type: Transform
+ pos: 86.5,63.5
+ parent: 2
+ - uid: 10254
+ components:
+ - type: Transform
+ pos: 86.5,62.5
+ parent: 2
+ - uid: 10255
+ components:
+ - type: Transform
+ pos: 86.5,61.5
+ parent: 2
+ - uid: 10256
+ components:
+ - type: Transform
+ pos: 86.5,60.5
+ parent: 2
+ - uid: 10257
+ components:
+ - type: Transform
+ pos: 86.5,59.5
+ parent: 2
+ - uid: 10258
+ components:
+ - type: Transform
+ pos: 87.5,63.5
+ parent: 2
+ - uid: 10259
+ components:
+ - type: Transform
+ pos: 87.5,62.5
+ parent: 2
+ - uid: 10260
+ components:
+ - type: Transform
+ pos: 87.5,61.5
+ parent: 2
+ - uid: 10261
+ components:
+ - type: Transform
+ pos: 87.5,60.5
+ parent: 2
+ - uid: 10262
+ components:
+ - type: Transform
+ pos: 87.5,59.5
+ parent: 2
+ - uid: 10263
+ components:
+ - type: Transform
+ pos: 87.5,58.5
+ parent: 2
+ - uid: 10264
+ components:
+ - type: Transform
+ pos: 86.5,58.5
+ parent: 2
+ - uid: 10265
+ components:
+ - type: Transform
+ pos: 88.5,63.5
+ parent: 2
+ - uid: 10266
+ components:
+ - type: Transform
+ pos: 88.5,62.5
+ parent: 2
+ - uid: 10267
+ components:
+ - type: Transform
+ pos: 88.5,61.5
+ parent: 2
+ - uid: 10268
+ components:
+ - type: Transform
+ pos: 88.5,60.5
+ parent: 2
+ - uid: 10269
+ components:
+ - type: Transform
+ pos: 88.5,59.5
+ parent: 2
+ - uid: 10270
+ components:
+ - type: Transform
+ pos: 88.5,58.5
+ parent: 2
+ - uid: 10271
+ components:
+ - type: Transform
+ pos: 89.5,63.5
+ parent: 2
+ - uid: 10272
+ components:
+ - type: Transform
+ pos: 89.5,62.5
+ parent: 2
+ - uid: 10273
+ components:
+ - type: Transform
+ pos: 89.5,61.5
+ parent: 2
+ - uid: 10274
+ components:
+ - type: Transform
+ pos: 89.5,60.5
+ parent: 2
+ - uid: 10275
+ components:
+ - type: Transform
+ pos: 89.5,59.5
+ parent: 2
+ - uid: 10276
+ components:
+ - type: Transform
+ pos: 89.5,58.5
+ parent: 2
+ - uid: 10277
+ components:
+ - type: Transform
+ pos: 90.5,63.5
+ parent: 2
+ - uid: 10278
+ components:
+ - type: Transform
+ pos: 90.5,62.5
+ parent: 2
+ - uid: 10279
+ components:
+ - type: Transform
+ pos: 90.5,61.5
+ parent: 2
+ - uid: 10280
+ components:
+ - type: Transform
+ pos: 90.5,59.5
+ parent: 2
+ - uid: 10281
+ components:
+ - type: Transform
+ pos: 90.5,58.5
+ parent: 2
+ - uid: 10282
+ components:
+ - type: Transform
+ pos: 91.5,63.5
+ parent: 2
+ - uid: 10283
+ components:
+ - type: Transform
+ pos: 90.5,60.5
+ parent: 2
+ - uid: 10284
+ components:
+ - type: Transform
+ pos: 91.5,62.5
+ parent: 2
+ - uid: 10285
+ components:
+ - type: Transform
+ pos: 91.5,61.5
+ parent: 2
+ - uid: 10286
+ components:
+ - type: Transform
+ pos: 91.5,60.5
+ parent: 2
+ - uid: 10287
+ components:
+ - type: Transform
+ pos: 91.5,59.5
+ parent: 2
+ - uid: 10288
+ components:
+ - type: Transform
+ pos: 91.5,58.5
+ parent: 2
+ - uid: 10289
+ components:
+ - type: Transform
+ pos: 92.5,63.5
+ parent: 2
+ - uid: 10290
+ components:
+ - type: Transform
+ pos: 92.5,62.5
+ parent: 2
+ - uid: 10291
+ components:
+ - type: Transform
+ pos: 92.5,61.5
+ parent: 2
+ - uid: 10292
+ components:
+ - type: Transform
+ pos: 92.5,60.5
+ parent: 2
+ - uid: 10293
+ components:
+ - type: Transform
+ pos: 92.5,59.5
+ parent: 2
+ - uid: 10294
+ components:
+ - type: Transform
+ pos: 92.5,58.5
+ parent: 2
+ - uid: 10295
+ components:
+ - type: Transform
+ pos: 93.5,63.5
+ parent: 2
+ - uid: 10296
+ components:
+ - type: Transform
+ pos: 93.5,62.5
+ parent: 2
+ - uid: 10297
+ components:
+ - type: Transform
+ pos: 93.5,61.5
+ parent: 2
+ - uid: 10298
+ components:
+ - type: Transform
+ pos: 93.5,60.5
+ parent: 2
+ - uid: 10299
+ components:
+ - type: Transform
+ pos: 93.5,59.5
+ parent: 2
+ - uid: 10300
+ components:
+ - type: Transform
+ pos: 93.5,58.5
+ parent: 2
+ - uid: 10301
+ components:
+ - type: Transform
+ pos: 94.5,63.5
+ parent: 2
+ - uid: 10302
+ components:
+ - type: Transform
+ pos: 94.5,62.5
+ parent: 2
+ - uid: 10303
+ components:
+ - type: Transform
+ pos: 94.5,61.5
+ parent: 2
+ - uid: 10304
+ components:
+ - type: Transform
+ pos: 94.5,60.5
+ parent: 2
+ - uid: 10305
+ components:
+ - type: Transform
+ pos: 94.5,59.5
+ parent: 2
+ - uid: 10306
+ components:
+ - type: Transform
+ pos: 94.5,58.5
+ parent: 2
+ - uid: 10307
+ components:
+ - type: Transform
+ pos: 88.5,64.5
+ parent: 2
+ - uid: 10308
+ components:
+ - type: Transform
+ pos: 89.5,64.5
+ parent: 2
+ - uid: 10309
+ components:
+ - type: Transform
+ pos: 90.5,64.5
+ parent: 2
+ - uid: 10310
+ components:
+ - type: Transform
+ pos: 91.5,64.5
+ parent: 2
+ - uid: 10311
+ components:
+ - type: Transform
+ pos: 95.5,62.5
+ parent: 2
+ - uid: 10312
+ components:
+ - type: Transform
+ pos: 95.5,61.5
+ parent: 2
+ - uid: 10313
+ components:
+ - type: Transform
+ pos: 95.5,60.5
+ parent: 2
+ - uid: 10314
+ components:
+ - type: Transform
+ pos: 95.5,59.5
+ parent: 2
+ - uid: 10315
+ components:
+ - type: Transform
+ pos: 95.5,58.5
+ parent: 2
+ - uid: 10316
+ components:
+ - type: Transform
+ pos: 96.5,62.5
+ parent: 2
+ - uid: 10317
+ components:
+ - type: Transform
+ pos: 96.5,61.5
+ parent: 2
+ - uid: 10318
+ components:
+ - type: Transform
+ pos: 96.5,60.5
+ parent: 2
+ - uid: 10319
+ components:
+ - type: Transform
+ pos: 96.5,59.5
+ parent: 2
+ - uid: 10320
+ components:
+ - type: Transform
+ pos: 96.5,58.5
+ parent: 2
+ - uid: 10321
+ components:
+ - type: Transform
+ pos: 97.5,62.5
+ parent: 2
+ - uid: 10322
+ components:
+ - type: Transform
+ pos: 97.5,61.5
+ parent: 2
+ - uid: 10323
+ components:
+ - type: Transform
+ pos: 97.5,60.5
+ parent: 2
+ - uid: 10324
+ components:
+ - type: Transform
+ pos: 97.5,59.5
+ parent: 2
+ - uid: 10325
+ components:
+ - type: Transform
+ pos: 97.5,58.5
+ parent: 2
+ - uid: 10326
+ components:
+ - type: Transform
+ pos: 98.5,62.5
+ parent: 2
+ - uid: 10327
+ components:
+ - type: Transform
+ pos: 98.5,61.5
+ parent: 2
+ - uid: 10328
+ components:
+ - type: Transform
+ pos: 98.5,60.5
+ parent: 2
+ - uid: 10329
+ components:
+ - type: Transform
+ pos: 98.5,59.5
+ parent: 2
+ - uid: 10330
+ components:
+ - type: Transform
+ pos: 99.5,62.5
+ parent: 2
+ - uid: 10331
+ components:
+ - type: Transform
+ pos: 99.5,61.5
+ parent: 2
+ - uid: 10332
+ components:
+ - type: Transform
+ pos: 99.5,60.5
+ parent: 2
+ - uid: 10333
+ components:
+ - type: Transform
+ pos: 98.5,58.5
+ parent: 2
+ - uid: 10334
+ components:
+ - type: Transform
+ pos: 99.5,58.5
+ parent: 2
+ - uid: 10335
+ components:
+ - type: Transform
+ pos: 99.5,59.5
+ parent: 2
+ - uid: 10336
+ components:
+ - type: Transform
+ pos: 100.5,61.5
+ parent: 2
+ - uid: 10337
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-71.5
+ parent: 2
+ - uid: 10338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-74.5
+ parent: 2
+ - uid: 10339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-75.5
+ parent: 2
+ - uid: 10340
+ components:
+ - type: Transform
+ pos: 104.5,63.5
+ parent: 2
+ - uid: 10341
+ components:
+ - type: Transform
+ pos: 105.5,63.5
+ parent: 2
+ - uid: 10342
+ components:
+ - type: Transform
+ pos: 106.5,63.5
+ parent: 2
+ - uid: 10343
+ components:
+ - type: Transform
+ pos: 107.5,63.5
+ parent: 2
+ - uid: 10344
+ components:
+ - type: Transform
+ pos: 108.5,63.5
+ parent: 2
+ - uid: 10345
+ components:
+ - type: Transform
+ pos: 109.5,63.5
+ parent: 2
+ - uid: 10346
+ components:
+ - type: Transform
+ pos: 110.5,63.5
+ parent: 2
+ - uid: 10347
+ components:
+ - type: Transform
+ pos: 110.5,61.5
+ parent: 2
+ - uid: 10348
+ components:
+ - type: Transform
+ pos: 114.5,56.5
+ parent: 2
+ - uid: 10349
+ components:
+ - type: Transform
+ pos: 114.5,53.5
+ parent: 2
+ - uid: 10350
+ components:
+ - type: Transform
+ pos: 114.5,54.5
+ parent: 2
+ - uid: 10351
+ components:
+ - type: Transform
+ pos: 110.5,62.5
+ parent: 2
+ - uid: 10352
+ components:
+ - type: Transform
+ pos: 108.5,64.5
+ parent: 2
+ - uid: 10353
+ components:
+ - type: Transform
+ pos: 109.5,64.5
+ parent: 2
+ - uid: 10354
+ components:
+ - type: Transform
+ pos: 110.5,64.5
+ parent: 2
+ - uid: 10355
+ components:
+ - type: Transform
+ pos: 114.5,55.5
+ parent: 2
+ - uid: 10356
+ components:
+ - type: Transform
+ pos: 113.5,56.5
+ parent: 2
+ - uid: 10357
+ components:
+ - type: Transform
+ pos: 113.5,54.5
+ parent: 2
+ - uid: 10358
+ components:
+ - type: Transform
+ pos: 113.5,57.5
+ parent: 2
+ - uid: 10359
+ components:
+ - type: Transform
+ pos: 113.5,61.5
+ parent: 2
+ - uid: 10360
+ components:
+ - type: Transform
+ pos: 113.5,58.5
+ parent: 2
+ - uid: 10361
+ components:
+ - type: Transform
+ pos: 113.5,62.5
+ parent: 2
+ - uid: 10362
+ components:
+ - type: Transform
+ pos: 113.5,63.5
+ parent: 2
+ - uid: 10363
+ components:
+ - type: Transform
+ pos: 115.5,64.5
+ parent: 2
+ - uid: 10364
+ components:
+ - type: Transform
+ pos: 115.5,63.5
+ parent: 2
+ - uid: 10365
+ components:
+ - type: Transform
+ pos: 115.5,62.5
+ parent: 2
+ - uid: 10366
+ components:
+ - type: Transform
+ pos: 113.5,64.5
+ parent: 2
+ - uid: 10367
+ components:
+ - type: Transform
+ pos: 113.5,65.5
+ parent: 2
+ - uid: 10368
+ components:
+ - type: Transform
+ pos: 113.5,59.5
+ parent: 2
+ - uid: 10369
+ components:
+ - type: Transform
+ pos: 113.5,60.5
+ parent: 2
+ - uid: 10370
+ components:
+ - type: Transform
+ pos: 114.5,67.5
+ parent: 2
+ - uid: 10371
+ components:
+ - type: Transform
+ pos: 115.5,67.5
+ parent: 2
+ - uid: 10372
+ components:
+ - type: Transform
+ pos: 116.5,65.5
+ parent: 2
+ - uid: 10373
+ components:
+ - type: Transform
+ pos: 116.5,64.5
+ parent: 2
+ - uid: 10374
+ components:
+ - type: Transform
+ pos: 115.5,66.5
+ parent: 2
+ - uid: 10375
+ components:
+ - type: Transform
+ pos: 117.5,64.5
+ parent: 2
+ - uid: 10376
+ components:
+ - type: Transform
+ pos: 115.5,68.5
+ parent: 2
+ - uid: 10377
+ components:
+ - type: Transform
+ pos: 116.5,66.5
+ parent: 2
+ - uid: 10378
+ components:
+ - type: Transform
+ pos: 116.5,68.5
+ parent: 2
+ - uid: 10379
+ components:
+ - type: Transform
+ pos: 117.5,65.5
+ parent: 2
+ - uid: 10380
+ components:
+ - type: Transform
+ pos: 117.5,66.5
+ parent: 2
+ - uid: 10381
+ components:
+ - type: Transform
+ pos: 117.5,67.5
+ parent: 2
+ - uid: 10382
+ components:
+ - type: Transform
+ pos: 118.5,65.5
+ parent: 2
+ - uid: 10383
+ components:
+ - type: Transform
+ pos: 117.5,68.5
+ parent: 2
+ - uid: 10384
+ components:
+ - type: Transform
+ pos: 118.5,67.5
+ parent: 2
+ - uid: 10385
+ components:
+ - type: Transform
+ pos: 119.5,66.5
+ parent: 2
+ - uid: 10386
+ components:
+ - type: Transform
+ pos: 119.5,67.5
+ parent: 2
+ - uid: 10387
+ components:
+ - type: Transform
+ pos: 119.5,68.5
+ parent: 2
+ - uid: 10388
+ components:
+ - type: Transform
+ pos: 119.5,69.5
+ parent: 2
+ - uid: 10389
+ components:
+ - type: Transform
+ pos: 116.5,63.5
+ parent: 2
+ - uid: 10390
+ components:
+ - type: Transform
+ pos: 113.5,66.5
+ parent: 2
+ - uid: 10391
+ components:
+ - type: Transform
+ pos: 113.5,67.5
+ parent: 2
+ - uid: 10392
+ components:
+ - type: Transform
+ pos: 112.5,53.5
+ parent: 2
+ - uid: 10393
+ components:
+ - type: Transform
+ pos: 112.5,55.5
+ parent: 2
+ - uid: 10394
+ components:
+ - type: Transform
+ pos: 112.5,58.5
+ parent: 2
+ - uid: 10395
+ components:
+ - type: Transform
+ pos: 114.5,57.5
+ parent: 2
+ - uid: 10396
+ components:
+ - type: Transform
+ pos: 112.5,57.5
+ parent: 2
+ - uid: 10397
+ components:
+ - type: Transform
+ pos: 112.5,56.5
+ parent: 2
+ - uid: 10398
+ components:
+ - type: Transform
+ pos: 112.5,54.5
+ parent: 2
+ - uid: 10399
+ components:
+ - type: Transform
+ pos: 112.5,59.5
+ parent: 2
+ - uid: 10400
+ components:
+ - type: Transform
+ pos: 114.5,58.5
+ parent: 2
+ - uid: 10401
+ components:
+ - type: Transform
+ pos: 112.5,61.5
+ parent: 2
+ - uid: 10402
+ components:
+ - type: Transform
+ pos: 112.5,62.5
+ parent: 2
+ - uid: 10403
+ components:
+ - type: Transform
+ pos: 114.5,59.5
+ parent: 2
+ - uid: 10404
+ components:
+ - type: Transform
+ pos: 112.5,63.5
+ parent: 2
+ - uid: 10405
+ components:
+ - type: Transform
+ pos: 112.5,64.5
+ parent: 2
+ - uid: 10406
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 108.5,62.5
parent: 2
- - uid: 10141
+ - uid: 10407
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 107.5,62.5
parent: 2
- - uid: 10142
+ - uid: 10408
components:
- type: Transform
pos: 110.5,57.5
parent: 2
- - uid: 10147
+ - uid: 10409
components:
- type: Transform
pos: 106.5,57.5
parent: 2
- - uid: 10154
+ - uid: 10410
components:
- type: Transform
pos: 115.5,61.5
parent: 2
- - uid: 10155
+ - uid: 10411
components:
- type: Transform
pos: 115.5,60.5
parent: 2
- - uid: 10156
+ - uid: 10412
components:
- type: Transform
pos: 115.5,59.5
parent: 2
- - uid: 10157
+ - uid: 10413
components:
- type: Transform
pos: 115.5,58.5
parent: 2
- - uid: 10158
+ - uid: 10414
components:
- type: Transform
pos: 112.5,65.5
parent: 2
- - uid: 10159
+ - uid: 10415
components:
- type: Transform
pos: 112.5,66.5
parent: 2
- - uid: 10160
+ - uid: 10416
components:
- type: Transform
pos: 115.5,57.5
parent: 2
- - uid: 10161
+ - uid: 10417
components:
- type: Transform
pos: 112.5,67.5
parent: 2
- - uid: 10162
+ - uid: 10418
components:
- type: Transform
pos: 111.5,61.5
parent: 2
- - uid: 10163
+ - uid: 10419
components:
- type: Transform
pos: 111.5,53.5
parent: 2
- - uid: 10164
+ - uid: 10420
components:
- type: Transform
pos: 111.5,54.5
parent: 2
- - uid: 10165
+ - uid: 10421
components:
- type: Transform
pos: 111.5,63.5
parent: 2
- - uid: 10166
+ - uid: 10422
components:
- type: Transform
pos: 111.5,62.5
parent: 2
- - uid: 10167
+ - uid: 10423
components:
- type: Transform
pos: 111.5,66.5
parent: 2
- - uid: 10168
+ - uid: 10424
components:
- type: Transform
pos: 111.5,55.5
parent: 2
- - uid: 10169
+ - uid: 10425
components:
- type: Transform
pos: 111.5,64.5
parent: 2
- - uid: 10170
+ - uid: 10426
components:
- type: Transform
pos: 111.5,56.5
parent: 2
- - uid: 10171
+ - uid: 10427
components:
- type: Transform
pos: 111.5,65.5
parent: 2
- - uid: 10172
+ - uid: 10428
components:
- type: Transform
pos: 111.5,57.5
parent: 2
- - uid: 10173
+ - uid: 10429
components:
- type: Transform
pos: 111.5,67.5
parent: 2
- - uid: 10174
+ - uid: 10430
components:
- type: Transform
pos: 112.5,60.5
parent: 2
- - uid: 10175
+ - uid: 10431
components:
- type: Transform
pos: 111.5,59.5
parent: 2
- - uid: 10176
+ - uid: 10432
components:
- type: Transform
pos: 111.5,58.5
parent: 2
- - uid: 10178
+ - uid: 10433
components:
- type: Transform
pos: 110.5,56.5
parent: 2
- - uid: 10179
+ - uid: 10438
components:
- type: Transform
pos: 110.5,55.5
parent: 2
- - uid: 10180
+ - uid: 10439
components:
- type: Transform
pos: 110.5,54.5
parent: 2
- - uid: 10181
+ - uid: 10440
components:
- type: Transform
pos: 110.5,53.5
parent: 2
- - uid: 10182
+ - uid: 10441
components:
- type: Transform
pos: 116.5,62.5
parent: 2
- - uid: 10183
+ - uid: 10442
components:
- type: Transform
pos: 116.5,61.5
parent: 2
- - uid: 10184
+ - uid: 10449
components:
- type: Transform
pos: 116.5,60.5
parent: 2
- - uid: 10185
+ - uid: 10450
components:
- type: Transform
pos: 116.5,59.5
parent: 2
- - uid: 10186
+ - uid: 10451
components:
- type: Transform
pos: 115.5,65.5
parent: 2
- - uid: 10187
+ - uid: 10455
components:
- type: Transform
pos: 114.5,60.5
parent: 2
- - uid: 10188
+ - uid: 10461
components:
- type: Transform
pos: 114.5,61.5
parent: 2
- - uid: 10189
+ - uid: 10462
components:
- type: Transform
pos: 114.5,62.5
parent: 2
- - uid: 10190
+ - uid: 10471
components:
- type: Transform
pos: 114.5,64.5
parent: 2
- - uid: 10191
+ - uid: 10472
components:
- type: Transform
pos: 114.5,66.5
parent: 2
- - uid: 10192
+ - uid: 10481
components:
- type: Transform
pos: 110.5,66.5
parent: 2
- - uid: 10193
+ - uid: 10482
components:
- type: Transform
pos: 110.5,65.5
parent: 2
- - uid: 10194
+ - uid: 10492
components:
- type: Transform
pos: 109.5,66.5
parent: 2
- - uid: 10195
+ - uid: 10502
components:
- type: Transform
pos: 109.5,65.5
parent: 2
- - uid: 10196
+ - uid: 10503
components:
- type: Transform
pos: 108.5,66.5
parent: 2
- - uid: 10197
+ - uid: 10512
components:
- type: Transform
pos: 108.5,65.5
parent: 2
- - uid: 10198
+ - uid: 10513
components:
- type: Transform
pos: 107.5,66.5
parent: 2
- - uid: 10199
+ - uid: 10514
components:
- type: Transform
pos: 107.5,65.5
parent: 2
- - uid: 10200
+ - uid: 10515
components:
- type: Transform
pos: 107.5,64.5
parent: 2
- - uid: 10201
+ - uid: 10516
components:
- type: Transform
pos: 106.5,66.5
parent: 2
- - uid: 10202
+ - uid: 10517
components:
- type: Transform
pos: 106.5,64.5
parent: 2
- - uid: 10203
+ - uid: 10518
components:
- type: Transform
pos: 106.5,65.5
parent: 2
- - uid: 10204
+ - uid: 10519
components:
- type: Transform
pos: 105.5,65.5
parent: 2
- - uid: 10205
+ - uid: 10520
components:
- type: Transform
pos: 105.5,64.5
parent: 2
- - uid: 10206
+ - uid: 10521
components:
- type: Transform
pos: 104.5,65.5
parent: 2
- - uid: 10207
+ - uid: 10522
components:
- type: Transform
pos: 104.5,64.5
parent: 2
- - uid: 10208
+ - uid: 10523
components:
- type: Transform
pos: 103.5,65.5
parent: 2
- - uid: 10209
+ - uid: 10524
components:
- type: Transform
pos: 103.5,63.5
parent: 2
- - uid: 10210
+ - uid: 10525
components:
- type: Transform
pos: 103.5,64.5
parent: 2
- - uid: 10211
+ - uid: 10526
components:
- type: Transform
pos: 102.5,65.5
parent: 2
- - uid: 10212
+ - uid: 10527
components:
- type: Transform
pos: 102.5,64.5
parent: 2
- - uid: 10213
+ - uid: 10528
components:
- type: Transform
pos: 102.5,63.5
parent: 2
- - uid: 10214
+ - uid: 10529
components:
- type: Transform
pos: 101.5,65.5
parent: 2
- - uid: 10215
+ - uid: 10530
components:
- type: Transform
pos: 101.5,64.5
parent: 2
- - uid: 10216
+ - uid: 10531
components:
- type: Transform
pos: 101.5,63.5
parent: 2
- - uid: 10218
+ - uid: 10532
components:
- type: Transform
pos: 100.5,65.5
parent: 2
- - uid: 10219
+ - uid: 10533
components:
- type: Transform
pos: 100.5,64.5
parent: 2
- - uid: 10220
+ - uid: 10534
components:
- type: Transform
pos: 100.5,63.5
parent: 2
- - uid: 10221
+ - uid: 10535
components:
- type: Transform
pos: 100.5,62.5
parent: 2
- - uid: 10222
+ - uid: 10536
components:
- type: Transform
pos: 99.5,64.5
parent: 2
- - uid: 10223
+ - uid: 10537
components:
- type: Transform
pos: 99.5,63.5
parent: 2
- - uid: 10224
+ - uid: 10538
components:
- type: Transform
pos: 98.5,64.5
parent: 2
- - uid: 10225
+ - uid: 10539
components:
- type: Transform
pos: 98.5,63.5
parent: 2
- - uid: 10226
+ - uid: 10540
components:
- type: Transform
pos: 97.5,64.5
parent: 2
- - uid: 10227
+ - uid: 10541
components:
- type: Transform
pos: 97.5,63.5
parent: 2
- - uid: 10228
+ - uid: 10542
components:
- type: Transform
pos: 96.5,63.5
parent: 2
- - uid: 10229
+ - uid: 10543
components:
- type: Transform
pos: 95.5,63.5
parent: 2
- - uid: 10230
+ - uid: 10544
components:
- type: Transform
pos: 118.5,66.5
parent: 2
- - uid: 10231
+ - uid: 10545
components:
- type: Transform
pos: 118.5,68.5
parent: 2
- - uid: 10232
+ - uid: 10546
components:
- type: Transform
pos: 113.5,53.5
parent: 2
- - uid: 10233
+ - uid: 10547
components:
- type: Transform
pos: 114.5,63.5
parent: 2
- - uid: 10234
+ - uid: 10548
components:
- type: Transform
pos: 116.5,67.5
parent: 2
- - uid: 10235
+ - uid: 10549
components:
- type: Transform
pos: 114.5,65.5
parent: 2
- - uid: 10236
+ - uid: 10550
components:
- type: Transform
pos: 113.5,55.5
parent: 2
- - uid: 10237
+ - uid: 10551
components:
- type: Transform
pos: 111.5,50.5
parent: 2
- - uid: 10238
+ - uid: 10552
components:
- type: Transform
pos: 113.5,52.5
parent: 2
- - uid: 10239
+ - uid: 10553
components:
- type: Transform
pos: 112.5,51.5
parent: 2
- - uid: 10240
+ - uid: 10554
components:
- type: Transform
pos: 112.5,52.5
parent: 2
- - uid: 10241
+ - uid: 10555
components:
- type: Transform
pos: 111.5,52.5
parent: 2
- - uid: 10242
+ - uid: 10556
components:
- type: Transform
pos: 111.5,51.5
parent: 2
- - uid: 10243
+ - uid: 10557
components:
- type: Transform
pos: 110.5,48.5
parent: 2
- - uid: 10244
+ - uid: 10558
components:
- type: Transform
pos: 110.5,49.5
parent: 2
- - uid: 10245
+ - uid: 10559
components:
- type: Transform
pos: 110.5,50.5
parent: 2
- - uid: 10246
+ - uid: 10560
components:
- type: Transform
pos: 110.5,51.5
parent: 2
- - uid: 10247
+ - uid: 10561
components:
- type: Transform
pos: 110.5,52.5
parent: 2
- - uid: 10248
+ - uid: 10562
components:
- type: Transform
pos: 109.5,48.5
parent: 2
- - uid: 10249
+ - uid: 10563
components:
- type: Transform
pos: 109.5,49.5
parent: 2
- - uid: 10250
+ - uid: 10564
components:
- type: Transform
pos: 109.5,50.5
parent: 2
- - uid: 10251
+ - uid: 10565
components:
- type: Transform
pos: 109.5,51.5
parent: 2
- - uid: 10252
+ - uid: 10566
components:
- type: Transform
pos: 109.5,52.5
parent: 2
- - uid: 10253
+ - uid: 10567
components:
- type: Transform
pos: 109.5,56.5
parent: 2
- - uid: 10254
+ - uid: 10568
components:
- type: Transform
pos: 109.5,55.5
parent: 2
- - uid: 10255
+ - uid: 10569
components:
- type: Transform
pos: 109.5,54.5
parent: 2
- - uid: 10256
+ - uid: 10570
components:
- type: Transform
pos: 109.5,53.5
parent: 2
- - uid: 10257
+ - uid: 10571
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 109.5,62.5
parent: 2
- - uid: 10258
+ - uid: 10572
components:
- type: Transform
pos: 108.5,55.5
parent: 2
- - uid: 10259
+ - uid: 10573
components:
- type: Transform
pos: 108.5,54.5
parent: 2
- - uid: 10260
+ - uid: 10574
components:
- type: Transform
pos: 108.5,53.5
parent: 2
- - uid: 10261
+ - uid: 10575
components:
- type: Transform
pos: 108.5,52.5
parent: 2
- - uid: 10262
+ - uid: 10576
components:
- type: Transform
pos: 108.5,50.5
parent: 2
- - uid: 10263
+ - uid: 10577
components:
- type: Transform
pos: 108.5,49.5
parent: 2
- - uid: 10264
+ - uid: 10578
components:
- type: Transform
pos: 108.5,48.5
parent: 2
- - uid: 10265
+ - uid: 10579
components:
- type: Transform
pos: 107.5,56.5
parent: 2
- - uid: 10266
+ - uid: 10580
components:
- type: Transform
pos: 107.5,55.5
parent: 2
- - uid: 10267
+ - uid: 10581
components:
- type: Transform
pos: 108.5,51.5
parent: 2
- - uid: 10268
+ - uid: 10582
components:
- type: Transform
pos: 107.5,54.5
parent: 2
- - uid: 10269
+ - uid: 10583
components:
- type: Transform
pos: 107.5,52.5
parent: 2
- - uid: 10270
+ - uid: 10591
components:
- type: Transform
pos: 107.5,53.5
parent: 2
- - uid: 10271
+ - uid: 10592
components:
- type: Transform
pos: 107.5,51.5
parent: 2
- - uid: 10272
+ - uid: 10594
components:
- type: Transform
pos: 107.5,50.5
parent: 2
- - uid: 10273
+ - uid: 10598
components:
- type: Transform
pos: 107.5,49.5
parent: 2
- - uid: 10274
+ - uid: 10604
components:
- type: Transform
pos: 107.5,48.5
parent: 2
- - uid: 10275
+ - uid: 10605
components:
- type: Transform
pos: 106.5,56.5
parent: 2
- - uid: 10276
+ - uid: 10606
components:
- type: Transform
pos: 106.5,55.5
parent: 2
- - uid: 10277
+ - uid: 10607
components:
- type: Transform
pos: 106.5,54.5
parent: 2
- - uid: 10278
+ - uid: 10616
components:
- type: Transform
pos: 106.5,53.5
parent: 2
- - uid: 10279
+ - uid: 10617
components:
- type: Transform
pos: 106.5,52.5
parent: 2
- - uid: 10280
+ - uid: 10618
components:
- type: Transform
pos: 106.5,51.5
parent: 2
- - uid: 10281
+ - uid: 10619
components:
- type: Transform
pos: 106.5,50.5
parent: 2
- - uid: 10282
+ - uid: 10628
components:
- type: Transform
pos: 106.5,49.5
parent: 2
- - uid: 10283
+ - uid: 10629
components:
- type: Transform
pos: 106.5,48.5
parent: 2
- - uid: 10284
+ - uid: 10630
components:
- type: Transform
pos: 105.5,56.5
parent: 2
- - uid: 10285
+ - uid: 10631
components:
- type: Transform
pos: 105.5,55.5
parent: 2
- - uid: 10286
+ - uid: 10640
components:
- type: Transform
pos: 105.5,54.5
parent: 2
- - uid: 10287
+ - uid: 10641
components:
- type: Transform
pos: 105.5,53.5
parent: 2
- - uid: 10288
+ - uid: 10642
components:
- type: Transform
pos: 105.5,52.5
parent: 2
- - uid: 10289
+ - uid: 10643
components:
- type: Transform
pos: 105.5,51.5
parent: 2
- - uid: 10290
+ - uid: 10644
components:
- type: Transform
pos: 105.5,50.5
parent: 2
- - uid: 10291
+ - uid: 10652
components:
- type: Transform
pos: 105.5,49.5
parent: 2
- - uid: 10292
+ - uid: 10653
components:
- type: Transform
pos: 105.5,48.5
parent: 2
- - uid: 10293
+ - uid: 10654
components:
- type: Transform
pos: 104.5,56.5
parent: 2
- - uid: 10294
+ - uid: 10655
components:
- type: Transform
pos: 104.5,55.5
parent: 2
- - uid: 10295
+ - uid: 10656
components:
- type: Transform
pos: 104.5,54.5
parent: 2
- - uid: 10296
+ - uid: 10664
components:
- type: Transform
pos: 104.5,53.5
parent: 2
- - uid: 10297
+ - uid: 10665
components:
- type: Transform
pos: 104.5,52.5
parent: 2
- - uid: 10298
+ - uid: 10666
components:
- type: Transform
pos: 104.5,48.5
parent: 2
- - uid: 10299
- components:
- - type: Transform
- pos: 103.5,56.5
- parent: 2
- - uid: 10300
- components:
- - type: Transform
- pos: 103.5,55.5
- parent: 2
- - uid: 10301
- components:
- - type: Transform
- pos: 103.5,54.5
- parent: 2
- - uid: 10302
- components:
- - type: Transform
- pos: 103.5,53.5
- parent: 2
- - uid: 10303
- components:
- - type: Transform
- pos: 104.5,50.5
- parent: 2
- - uid: 10304
- components:
- - type: Transform
- pos: 104.5,49.5
- parent: 2
- - uid: 10305
- components:
- - type: Transform
- pos: 103.5,52.5
- parent: 2
- - uid: 10306
- components:
- - type: Transform
- pos: 103.5,51.5
- parent: 2
- - uid: 10307
- components:
- - type: Transform
- pos: 104.5,51.5
- parent: 2
- - uid: 10308
- components:
- - type: Transform
- pos: 103.5,49.5
- parent: 2
- - uid: 10309
- components:
- - type: Transform
- pos: 103.5,48.5
- parent: 2
- - uid: 10310
- components:
- - type: Transform
- pos: 102.5,56.5
- parent: 2
- - uid: 10311
- components:
- - type: Transform
- pos: 103.5,50.5
- parent: 2
- - uid: 10312
- components:
- - type: Transform
- pos: 102.5,55.5
- parent: 2
- - uid: 10313
- components:
- - type: Transform
- pos: 102.5,54.5
- parent: 2
- - uid: 10314
- components:
- - type: Transform
- pos: 102.5,53.5
- parent: 2
- - uid: 10315
- components:
- - type: Transform
- pos: 102.5,52.5
- parent: 2
- - uid: 10316
- components:
- - type: Transform
- pos: 102.5,51.5
- parent: 2
- - uid: 10317
- components:
- - type: Transform
- pos: 102.5,49.5
- parent: 2
- - uid: 10318
- components:
- - type: Transform
- pos: 102.5,48.5
- parent: 2
- - uid: 10319
- components:
- - type: Transform
- pos: 102.5,50.5
- parent: 2
- - uid: 10320
- components:
- - type: Transform
- pos: 105.5,57.5
- parent: 2
- - uid: 10321
- components:
- - type: Transform
- pos: 104.5,57.5
- parent: 2
- - uid: 10322
- components:
- - type: Transform
- pos: 103.5,57.5
- parent: 2
- - uid: 10323
- components:
- - type: Transform
- pos: 102.5,57.5
- parent: 2
- - uid: 10324
- components:
- - type: Transform
- pos: 101.5,57.5
- parent: 2
- - uid: 10325
- components:
- - type: Transform
- pos: 101.5,55.5
- parent: 2
- - uid: 10326
- components:
- - type: Transform
- pos: 101.5,54.5
- parent: 2
- - uid: 10327
- components:
- - type: Transform
- pos: 101.5,53.5
- parent: 2
- - uid: 10328
- components:
- - type: Transform
- pos: 101.5,52.5
- parent: 2
- - uid: 10329
- components:
- - type: Transform
- pos: 101.5,51.5
- parent: 2
- - uid: 10330
- components:
- - type: Transform
- pos: 101.5,50.5
- parent: 2
- - uid: 10331
- components:
- - type: Transform
- pos: 101.5,49.5
- parent: 2
- - uid: 10332
- components:
- - type: Transform
- pos: 101.5,48.5
- parent: 2
- - uid: 10333
- components:
- - type: Transform
- pos: 100.5,57.5
- parent: 2
- - uid: 10334
- components:
- - type: Transform
- pos: 101.5,56.5
- parent: 2
- - uid: 10335
- components:
- - type: Transform
- pos: 100.5,56.5
- parent: 2
- - uid: 10336
- components:
- - type: Transform
- pos: 100.5,55.5
- parent: 2
- - uid: 10337
- components:
- - type: Transform
- pos: 100.5,53.5
- parent: 2
- - uid: 10338
- components:
- - type: Transform
- pos: 100.5,54.5
- parent: 2
- - uid: 10339
- components:
- - type: Transform
- pos: 100.5,51.5
- parent: 2
- - uid: 10340
- components:
- - type: Transform
- pos: 100.5,50.5
- parent: 2
- - uid: 10341
- components:
- - type: Transform
- pos: 100.5,52.5
- parent: 2
- - uid: 10342
- components:
- - type: Transform
- pos: 100.5,49.5
- parent: 2
- - uid: 10343
- components:
- - type: Transform
- pos: 99.5,57.5
- parent: 2
- - uid: 10344
- components:
- - type: Transform
- pos: 99.5,56.5
- parent: 2
- - uid: 10345
- components:
- - type: Transform
- pos: 100.5,48.5
- parent: 2
- - uid: 10346
- components:
- - type: Transform
- pos: 99.5,55.5
- parent: 2
- - uid: 10347
- components:
- - type: Transform
- pos: 99.5,54.5
- parent: 2
- - uid: 10348
- components:
- - type: Transform
- pos: 99.5,53.5
- parent: 2
- - uid: 10349
- components:
- - type: Transform
- pos: 99.5,52.5
- parent: 2
- - uid: 10350
- components:
- - type: Transform
- pos: 99.5,51.5
- parent: 2
- - uid: 10351
- components:
- - type: Transform
- pos: 99.5,50.5
- parent: 2
- - uid: 10352
- components:
- - type: Transform
- pos: 99.5,48.5
- parent: 2
- - uid: 10353
- components:
- - type: Transform
- pos: 99.5,49.5
- parent: 2
- - uid: 10354
- components:
- - type: Transform
- pos: 98.5,57.5
- parent: 2
- - uid: 10355
- components:
- - type: Transform
- pos: 98.5,52.5
- parent: 2
- - uid: 10356
- components:
- - type: Transform
- pos: 98.5,51.5
- parent: 2
- - uid: 10357
- components:
- - type: Transform
- pos: 98.5,50.5
- parent: 2
- - uid: 10358
- components:
- - type: Transform
- pos: 98.5,49.5
- parent: 2
- - uid: 10359
- components:
- - type: Transform
- pos: 98.5,48.5
- parent: 2
- - uid: 10360
- components:
- - type: Transform
- pos: 97.5,51.5
- parent: 2
- - uid: 10361
- components:
- - type: Transform
- pos: 97.5,50.5
- parent: 2
- - uid: 10362
- components:
- - type: Transform
- pos: 97.5,49.5
- parent: 2
- - uid: 10363
- components:
- - type: Transform
- pos: 97.5,48.5
- parent: 2
- - uid: 10364
- components:
- - type: Transform
- pos: 96.5,49.5
- parent: 2
- - uid: 10365
- components:
- - type: Transform
- pos: 96.5,48.5
- parent: 2
- - uid: 10366
- components:
- - type: Transform
- pos: 95.5,49.5
- parent: 2
- - uid: 10367
- components:
- - type: Transform
- pos: 95.5,48.5
- parent: 2
- - uid: 10368
- components:
- - type: Transform
- pos: 94.5,49.5
- parent: 2
- - uid: 10369
- components:
- - type: Transform
- pos: 94.5,48.5
- parent: 2
- - uid: 10370
- components:
- - type: Transform
- pos: 93.5,48.5
- parent: 2
- - uid: 10371
- components:
- - type: Transform
- pos: 92.5,48.5
- parent: 2
- - uid: 10372
- components:
- - type: Transform
- pos: 91.5,57.5
- parent: 2
- - uid: 10373
- components:
- - type: Transform
- pos: 91.5,48.5
- parent: 2
- - uid: 10374
- components:
- - type: Transform
- pos: 109.5,47.5
- parent: 2
- - uid: 10375
- components:
- - type: Transform
- pos: 109.5,46.5
- parent: 2
- - uid: 10376
- components:
- - type: Transform
- pos: 108.5,47.5
- parent: 2
- - uid: 10377
- components:
- - type: Transform
- pos: 108.5,46.5
- parent: 2
- - uid: 10378
- components:
- - type: Transform
- pos: 107.5,47.5
- parent: 2
- - uid: 10379
- components:
- - type: Transform
- pos: 107.5,46.5
- parent: 2
- - uid: 10380
- components:
- - type: Transform
- pos: 106.5,46.5
- parent: 2
- - uid: 10381
- components:
- - type: Transform
- pos: 106.5,47.5
- parent: 2
- - uid: 10382
- components:
- - type: Transform
- pos: 105.5,47.5
- parent: 2
- - uid: 10383
- components:
- - type: Transform
- pos: 105.5,46.5
- parent: 2
- - uid: 10384
- components:
- - type: Transform
- pos: 104.5,47.5
- parent: 2
- - uid: 10385
- components:
- - type: Transform
- pos: 104.5,46.5
- parent: 2
- - uid: 10386
- components:
- - type: Transform
- pos: 107.5,45.5
- parent: 2
- - uid: 10387
- components:
- - type: Transform
- pos: 106.5,45.5
- parent: 2
- - uid: 10388
- components:
- - type: Transform
- pos: 105.5,45.5
- parent: 2
- - uid: 10389
- components:
- - type: Transform
- pos: 104.5,45.5
- parent: 2
- - uid: 10390
- components:
- - type: Transform
- pos: 102.5,45.5
- parent: 2
- - uid: 10391
- components:
- - type: Transform
- pos: 101.5,45.5
- parent: 2
- - uid: 10392
- components:
- - type: Transform
- pos: 100.5,45.5
- parent: 2
- - uid: 10393
- components:
- - type: Transform
- pos: 99.5,45.5
- parent: 2
- - uid: 10394
- components:
- - type: Transform
- pos: 103.5,45.5
- parent: 2
- - uid: 10395
- components:
- - type: Transform
- pos: 103.5,47.5
- parent: 2
- - uid: 10396
- components:
- - type: Transform
- pos: 103.5,46.5
- parent: 2
- - uid: 10397
- components:
- - type: Transform
- pos: 102.5,47.5
- parent: 2
- - uid: 10398
- components:
- - type: Transform
- pos: 102.5,46.5
- parent: 2
- - uid: 10399
- components:
- - type: Transform
- pos: 101.5,47.5
- parent: 2
- - uid: 10400
- components:
- - type: Transform
- pos: 101.5,46.5
- parent: 2
- - uid: 10401
- components:
- - type: Transform
- pos: 100.5,47.5
- parent: 2
- - uid: 10402
- components:
- - type: Transform
- pos: 100.5,46.5
- parent: 2
- - uid: 10403
- components:
- - type: Transform
- pos: 99.5,47.5
- parent: 2
- - uid: 10404
- components:
- - type: Transform
- pos: 99.5,46.5
- parent: 2
- - uid: 10405
- components:
- - type: Transform
- pos: 98.5,47.5
- parent: 2
- - uid: 10406
- components:
- - type: Transform
- pos: 98.5,46.5
- parent: 2
- - uid: 10407
- components:
- - type: Transform
- pos: 97.5,47.5
- parent: 2
- - uid: 10408
- components:
- - type: Transform
- pos: 97.5,46.5
- parent: 2
- - uid: 10409
- components:
- - type: Transform
- pos: 96.5,47.5
- parent: 2
- - uid: 10410
- components:
- - type: Transform
- pos: 96.5,46.5
- parent: 2
- - uid: 10411
- components:
- - type: Transform
- pos: 95.5,47.5
- parent: 2
- - uid: 10412
- components:
- - type: Transform
- pos: 95.5,46.5
- parent: 2
- - uid: 10413
- components:
- - type: Transform
- pos: 94.5,47.5
- parent: 2
- - uid: 10414
- components:
- - type: Transform
- pos: 94.5,46.5
- parent: 2
- - uid: 10415
- components:
- - type: Transform
- pos: 93.5,47.5
- parent: 2
- - uid: 10416
- components:
- - type: Transform
- pos: 93.5,46.5
- parent: 2
- - uid: 10417
- components:
- - type: Transform
- pos: 92.5,47.5
- parent: 2
- - uid: 10418
- components:
- - type: Transform
- pos: 92.5,46.5
- parent: 2
- - uid: 10419
- components:
- - type: Transform
- pos: 104.5,44.5
- parent: 2
- - uid: 10420
- components:
- - type: Transform
- pos: 103.5,44.5
- parent: 2
- - uid: 10421
- components:
- - type: Transform
- pos: 102.5,44.5
- parent: 2
- - uid: 10422
- components:
- - type: Transform
- pos: 101.5,44.5
- parent: 2
- - uid: 10423
- components:
- - type: Transform
- pos: 100.5,44.5
- parent: 2
- - uid: 10424
- components:
- - type: Transform
- pos: 99.5,44.5
- parent: 2
- - uid: 10425
- components:
- - type: Transform
- pos: 98.5,44.5
- parent: 2
- - uid: 10426
- components:
- - type: Transform
- pos: 97.5,44.5
- parent: 2
- - uid: 10427
- components:
- - type: Transform
- pos: 96.5,44.5
- parent: 2
- - uid: 10428
- components:
- - type: Transform
- pos: 94.5,44.5
- parent: 2
- - uid: 10429
- components:
- - type: Transform
- pos: 95.5,44.5
- parent: 2
- - uid: 10430
- components:
- - type: Transform
- pos: 92.5,44.5
- parent: 2
- - uid: 10431
- components:
- - type: Transform
- pos: 91.5,44.5
- parent: 2
- - uid: 10432
- components:
- - type: Transform
- pos: 93.5,44.5
- parent: 2
- - uid: 10433
- components:
- - type: Transform
- pos: 98.5,45.5
- parent: 2
- - uid: 10438
- components:
- - type: Transform
- pos: 97.5,45.5
- parent: 2
- - uid: 10439
- components:
- - type: Transform
- pos: 96.5,45.5
- parent: 2
- - uid: 10440
- components:
- - type: Transform
- pos: 95.5,45.5
- parent: 2
- - uid: 10441
- components:
- - type: Transform
- pos: 94.5,45.5
- parent: 2
- - uid: 10442
- components:
- - type: Transform
- pos: 93.5,45.5
- parent: 2
- - uid: 10449
- components:
- - type: Transform
- pos: 92.5,45.5
- parent: 2
- - uid: 10450
- components:
- - type: Transform
- pos: 91.5,45.5
- parent: 2
- - uid: 10451
- components:
- - type: Transform
- pos: 90.5,45.5
- parent: 2
- - uid: 10455
- components:
- - type: Transform
- pos: 91.5,47.5
- parent: 2
- - uid: 10461
- components:
- - type: Transform
- pos: 91.5,46.5
- parent: 2
- - uid: 10462
- components:
- - type: Transform
- pos: 90.5,57.5
- parent: 2
- - uid: 10471
- components:
- - type: Transform
- pos: 90.5,48.5
- parent: 2
- - uid: 10472
- components:
- - type: Transform
- pos: 90.5,47.5
- parent: 2
- - uid: 10481
- components:
- - type: Transform
- pos: 89.5,57.5
- parent: 2
- - uid: 10482
- components:
- - type: Transform
- pos: 90.5,46.5
- parent: 2
- - uid: 10492
- components:
- - type: Transform
- pos: 89.5,48.5
- parent: 2
- - uid: 10502
- components:
- - type: Transform
- pos: 89.5,46.5
- parent: 2
- - uid: 10503
- components:
- - type: Transform
- pos: 89.5,47.5
- parent: 2
- - uid: 10512
- components:
- - type: Transform
- pos: 88.5,57.5
- parent: 2
- - uid: 10513
- components:
- - type: Transform
- pos: 88.5,48.5
- parent: 2
- - uid: 10514
- components:
- - type: Transform
- pos: 88.5,47.5
- parent: 2
- - uid: 10515
- components:
- - type: Transform
- pos: 88.5,46.5
- parent: 2
- - uid: 10516
- components:
- - type: Transform
- pos: 87.5,57.5
- parent: 2
- - uid: 10517
- components:
- - type: Transform
- pos: 87.5,48.5
- parent: 2
- - uid: 10518
- components:
- - type: Transform
- pos: 87.5,47.5
- parent: 2
- - uid: 10519
- components:
- - type: Transform
- pos: 87.5,46.5
- parent: 2
- - uid: 10520
- components:
- - type: Transform
- pos: 86.5,57.5
- parent: 2
- - uid: 10521
- components:
- - type: Transform
- pos: 86.5,48.5
- parent: 2
- - uid: 10522
- components:
- - type: Transform
- pos: 86.5,47.5
- parent: 2
- - uid: 10523
- components:
- - type: Transform
- pos: 86.5,46.5
- parent: 2
- - uid: 10524
- components:
- - type: Transform
- pos: 85.5,57.5
- parent: 2
- - uid: 10525
- components:
- - type: Transform
- pos: 85.5,56.5
- parent: 2
- - uid: 10526
- components:
- - type: Transform
- pos: 85.5,48.5
- parent: 2
- - uid: 10527
- components:
- - type: Transform
- pos: 85.5,47.5
- parent: 2
- - uid: 10528
- components:
- - type: Transform
- pos: 85.5,46.5
- parent: 2
- - uid: 10529
- components:
- - type: Transform
- pos: 84.5,57.5
- parent: 2
- - uid: 10530
- components:
- - type: Transform
- pos: 84.5,56.5
- parent: 2
- - uid: 10531
- components:
- - type: Transform
- pos: 84.5,48.5
- parent: 2
- - uid: 10532
- components:
- - type: Transform
- pos: 84.5,47.5
- parent: 2
- - uid: 10533
- components:
- - type: Transform
- pos: 84.5,46.5
- parent: 2
- - uid: 10534
- components:
- - type: Transform
- pos: 83.5,57.5
- parent: 2
- - uid: 10535
- components:
- - type: Transform
- pos: 83.5,56.5
- parent: 2
- - uid: 10536
- components:
- - type: Transform
- pos: 83.5,48.5
- parent: 2
- - uid: 10537
- components:
- - type: Transform
- pos: 83.5,47.5
- parent: 2
- - uid: 10538
- components:
- - type: Transform
- pos: 83.5,46.5
- parent: 2
- - uid: 10539
- components:
- - type: Transform
- pos: 82.5,57.5
- parent: 2
- - uid: 10540
- components:
- - type: Transform
- pos: 82.5,56.5
- parent: 2
- - uid: 10541
- components:
- - type: Transform
- pos: 82.5,48.5
- parent: 2
- - uid: 10542
- components:
- - type: Transform
- pos: 82.5,47.5
- parent: 2
- - uid: 10543
- components:
- - type: Transform
- pos: 82.5,46.5
- parent: 2
- - uid: 10544
- components:
- - type: Transform
- pos: 81.5,57.5
- parent: 2
- - uid: 10545
- components:
- - type: Transform
- pos: 81.5,56.5
- parent: 2
- - uid: 10546
- components:
- - type: Transform
- pos: 81.5,55.5
- parent: 2
- - uid: 10547
- components:
- - type: Transform
- pos: 81.5,49.5
- parent: 2
- - uid: 10548
- components:
- - type: Transform
- pos: 81.5,48.5
- parent: 2
- - uid: 10549
- components:
- - type: Transform
- pos: 81.5,47.5
- parent: 2
- - uid: 10550
- components:
- - type: Transform
- pos: 81.5,46.5
- parent: 2
- - uid: 10551
- components:
- - type: Transform
- pos: 80.5,57.5
- parent: 2
- - uid: 10552
- components:
- - type: Transform
- pos: 80.5,56.5
- parent: 2
- - uid: 10553
- components:
- - type: Transform
- pos: 80.5,55.5
- parent: 2
- - uid: 10554
- components:
- - type: Transform
- pos: 80.5,54.5
- parent: 2
- - uid: 10555
- components:
- - type: Transform
- pos: 80.5,50.5
- parent: 2
- - uid: 10556
- components:
- - type: Transform
- pos: 80.5,49.5
- parent: 2
- - uid: 10557
- components:
- - type: Transform
- pos: 80.5,48.5
- parent: 2
- - uid: 10558
- components:
- - type: Transform
- pos: 80.5,47.5
- parent: 2
- - uid: 10559
- components:
- - type: Transform
- pos: 80.5,46.5
- parent: 2
- - uid: 10560
- components:
- - type: Transform
- pos: 79.5,57.5
- parent: 2
- - uid: 10561
- components:
- - type: Transform
- pos: 79.5,56.5
- parent: 2
- - uid: 10562
- components:
- - type: Transform
- pos: 79.5,55.5
- parent: 2
- - uid: 10563
- components:
- - type: Transform
- pos: 79.5,54.5
- parent: 2
- - uid: 10564
- components:
- - type: Transform
- pos: 79.5,53.5
- parent: 2
- - uid: 10565
- components:
- - type: Transform
- pos: 79.5,52.5
- parent: 2
- - uid: 10566
- components:
- - type: Transform
- pos: 79.5,51.5
- parent: 2
- - uid: 10567
- components:
- - type: Transform
- pos: 79.5,50.5
- parent: 2
- - uid: 10568
- components:
- - type: Transform
- pos: 79.5,49.5
- parent: 2
- - uid: 10569
- components:
- - type: Transform
- pos: 79.5,48.5
- parent: 2
- - uid: 10570
- components:
- - type: Transform
- pos: 79.5,47.5
- parent: 2
- - uid: 10571
- components:
- - type: Transform
- pos: 79.5,46.5
- parent: 2
- - uid: 10572
- components:
- - type: Transform
- pos: 78.5,57.5
- parent: 2
- - uid: 10573
- components:
- - type: Transform
- pos: 78.5,56.5
- parent: 2
- - uid: 10574
- components:
- - type: Transform
- pos: 78.5,55.5
- parent: 2
- - uid: 10575
- components:
- - type: Transform
- pos: 78.5,54.5
- parent: 2
- - uid: 10576
- components:
- - type: Transform
- pos: 78.5,53.5
- parent: 2
- - uid: 10577
- components:
- - type: Transform
- pos: 78.5,52.5
- parent: 2
- - uid: 10578
- components:
- - type: Transform
- pos: 78.5,51.5
- parent: 2
- - uid: 10579
- components:
- - type: Transform
- pos: 78.5,50.5
- parent: 2
- - uid: 10580
- components:
- - type: Transform
- pos: 78.5,49.5
- parent: 2
- - uid: 10581
- components:
- - type: Transform
- pos: 78.5,48.5
- parent: 2
- - uid: 10582
- components:
- - type: Transform
- pos: 78.5,47.5
- parent: 2
- - uid: 10583
- components:
- - type: Transform
- pos: 78.5,46.5
- parent: 2
- - uid: 10591
- components:
- - type: Transform
- pos: 77.5,57.5
- parent: 2
- - uid: 10592
- components:
- - type: Transform
- pos: 77.5,56.5
- parent: 2
- - uid: 10594
- components:
- - type: Transform
- pos: 77.5,55.5
- parent: 2
- - uid: 10598
- components:
- - type: Transform
- pos: 77.5,54.5
- parent: 2
- - uid: 10604
- components:
- - type: Transform
- pos: 77.5,53.5
- parent: 2
- - uid: 10605
- components:
- - type: Transform
- pos: 77.5,52.5
- parent: 2
- - uid: 10606
- components:
- - type: Transform
- pos: 77.5,51.5
- parent: 2
- - uid: 10607
- components:
- - type: Transform
- pos: 77.5,50.5
- parent: 2
- - uid: 10616
- components:
- - type: Transform
- pos: 77.5,49.5
- parent: 2
- - uid: 10617
- components:
- - type: Transform
- pos: 77.5,48.5
- parent: 2
- - uid: 10618
- components:
- - type: Transform
- pos: 77.5,47.5
- parent: 2
- - uid: 10619
- components:
- - type: Transform
- pos: 77.5,46.5
- parent: 2
- - uid: 10628
- components:
- - type: Transform
- pos: 76.5,57.5
- parent: 2
- - uid: 10629
- components:
- - type: Transform
- pos: 76.5,56.5
- parent: 2
- - uid: 10630
- components:
- - type: Transform
- pos: 76.5,55.5
- parent: 2
- - uid: 10631
- components:
- - type: Transform
- pos: 76.5,54.5
- parent: 2
- - uid: 10640
- components:
- - type: Transform
- pos: 76.5,53.5
- parent: 2
- - uid: 10641
- components:
- - type: Transform
- pos: 76.5,52.5
- parent: 2
- - uid: 10642
- components:
- - type: Transform
- pos: 76.5,51.5
- parent: 2
- - uid: 10643
- components:
- - type: Transform
- pos: 76.5,50.5
- parent: 2
- - uid: 10644
- components:
- - type: Transform
- pos: 76.5,49.5
- parent: 2
- - uid: 10652
- components:
- - type: Transform
- pos: 76.5,48.5
- parent: 2
- - uid: 10653
- components:
- - type: Transform
- pos: 76.5,47.5
- parent: 2
- - uid: 10654
- components:
- - type: Transform
- pos: 76.5,46.5
- parent: 2
- - uid: 10655
- components:
- - type: Transform
- pos: 90.5,44.5
- parent: 2
- - uid: 10656
- components:
- - type: Transform
- pos: 89.5,44.5
- parent: 2
- - uid: 10664
- components:
- - type: Transform
- pos: 88.5,44.5
- parent: 2
- - uid: 10665
- components:
- - type: Transform
- pos: 88.5,45.5
- parent: 2
- - uid: 10666
- components:
- - type: Transform
- pos: 87.5,44.5
- parent: 2
- uid: 10667
components:
- type: Transform
- pos: 87.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-75.5
parent: 2
- uid: 10668
components:
- type: Transform
- pos: 86.5,44.5
+ pos: 103.5,55.5
parent: 2
- uid: 10676
components:
- type: Transform
- pos: 86.5,45.5
+ pos: 103.5,54.5
parent: 2
- uid: 10677
components:
- type: Transform
- pos: 85.5,44.5
+ pos: 103.5,53.5
parent: 2
- uid: 10678
components:
- type: Transform
- pos: 85.5,45.5
+ pos: 104.5,50.5
parent: 2
- uid: 10680
components:
- type: Transform
- pos: 84.5,45.5
+ pos: 104.5,49.5
parent: 2
- uid: 10689
components:
- type: Transform
- pos: 83.5,45.5
+ pos: 103.5,52.5
parent: 2
- uid: 10690
components:
- type: Transform
- pos: 89.5,45.5
+ pos: 103.5,51.5
parent: 2
- uid: 10692
components:
- type: Transform
- pos: 82.5,45.5
+ pos: 104.5,51.5
parent: 2
- uid: 10699
components:
- type: Transform
- pos: 81.5,45.5
+ pos: 103.5,49.5
parent: 2
- uid: 10701
components:
- type: Transform
- pos: 80.5,45.5
+ pos: 103.5,48.5
parent: 2
- uid: 10703
components:
- type: Transform
- pos: 79.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-73.5
parent: 2
- uid: 10705
components:
- type: Transform
- pos: 78.5,45.5
+ pos: 103.5,50.5
parent: 2
- uid: 10706
components:
- type: Transform
- pos: 77.5,44.5
+ pos: 102.5,55.5
parent: 2
- uid: 10710
components:
- type: Transform
- pos: 77.5,45.5
+ pos: 102.5,54.5
parent: 2
- uid: 10711
components:
- type: Transform
- pos: 76.5,44.5
+ pos: 102.5,53.5
parent: 2
- uid: 10712
components:
- type: Transform
- pos: 76.5,45.5
+ pos: 102.5,52.5
parent: 2
- uid: 10713
components:
- type: Transform
- pos: 102.5,43.5
+ pos: 102.5,51.5
parent: 2
- uid: 10714
components:
- type: Transform
- pos: 101.5,43.5
+ pos: 102.5,49.5
parent: 2
- uid: 10715
components:
- type: Transform
- pos: 100.5,43.5
+ pos: 102.5,48.5
parent: 2
- uid: 10716
components:
- type: Transform
- pos: 99.5,43.5
+ pos: 102.5,50.5
parent: 2
- uid: 10717
components:
- type: Transform
- pos: 98.5,43.5
+ pos: 105.5,57.5
parent: 2
- uid: 10718
components:
- type: Transform
- pos: 97.5,43.5
+ pos: 104.5,57.5
parent: 2
- uid: 10719
components:
- type: Transform
- pos: 96.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-74.5
parent: 2
- uid: 10720
components:
- type: Transform
- pos: 95.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-73.5
parent: 2
- uid: 10721
components:
- type: Transform
- pos: 94.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-74.5
parent: 2
- uid: 10722
components:
- type: Transform
- pos: 93.5,43.5
+ pos: 101.5,55.5
parent: 2
- uid: 10723
components:
- type: Transform
- pos: 92.5,43.5
+ pos: 101.5,54.5
parent: 2
- uid: 10724
components:
- type: Transform
- pos: 91.5,43.5
+ pos: 101.5,53.5
parent: 2
- uid: 10725
components:
- type: Transform
- pos: 90.5,43.5
+ pos: 101.5,52.5
parent: 2
- uid: 10726
components:
- type: Transform
- pos: 89.5,43.5
+ pos: 101.5,51.5
parent: 2
- uid: 10727
components:
- type: Transform
- pos: 88.5,43.5
+ pos: 101.5,50.5
parent: 2
- uid: 10728
components:
- type: Transform
- pos: 87.5,43.5
+ pos: 101.5,49.5
parent: 2
- uid: 10729
components:
- type: Transform
- pos: 86.5,43.5
- parent: 2
- - uid: 10731
- components:
- - type: Transform
- pos: 85.5,43.5
+ pos: 101.5,48.5
parent: 2
- uid: 10732
components:
- type: Transform
- pos: 44.5,7.5
+ pos: 101.5,56.5
parent: 2
- uid: 10733
components:
- type: Transform
- pos: 77.5,43.5
+ pos: 100.5,56.5
parent: 2
- uid: 10734
components:
- type: Transform
- pos: 76.5,43.5
+ pos: 100.5,55.5
parent: 2
- uid: 10735
components:
- type: Transform
- pos: 101.5,42.5
+ pos: 100.5,53.5
parent: 2
- uid: 10736
components:
- type: Transform
- pos: 99.5,42.5
+ pos: 100.5,54.5
parent: 2
- uid: 10737
components:
- type: Transform
- pos: 98.5,42.5
+ pos: 100.5,51.5
parent: 2
- uid: 10738
components:
- type: Transform
- pos: 97.5,42.5
+ pos: 100.5,50.5
parent: 2
- uid: 10739
components:
- type: Transform
- pos: 96.5,42.5
+ pos: 100.5,52.5
parent: 2
- uid: 10740
components:
- type: Transform
- pos: 95.5,42.5
+ pos: 100.5,49.5
parent: 2
- uid: 10741
components:
- type: Transform
- pos: 94.5,42.5
+ pos: 99.5,57.5
parent: 2
- uid: 10742
components:
- type: Transform
- pos: 100.5,42.5
+ pos: 99.5,56.5
parent: 2
- uid: 10743
components:
- type: Transform
- pos: 92.5,42.5
+ pos: 100.5,48.5
parent: 2
- uid: 10744
components:
- type: Transform
- pos: 93.5,42.5
+ pos: 99.5,55.5
parent: 2
- uid: 10745
components:
- type: Transform
- pos: 90.5,42.5
+ pos: 99.5,54.5
parent: 2
- uid: 10746
components:
- type: Transform
- pos: 89.5,42.5
+ pos: 99.5,53.5
parent: 2
- uid: 10747
components:
- type: Transform
- pos: 88.5,42.5
+ pos: 99.5,52.5
parent: 2
- uid: 10748
components:
- type: Transform
- pos: 87.5,42.5
+ pos: 99.5,51.5
parent: 2
- uid: 10749
components:
- type: Transform
- pos: 86.5,42.5
+ pos: 99.5,50.5
parent: 2
- uid: 10750
components:
- type: Transform
- pos: 91.5,42.5
+ pos: 99.5,48.5
parent: 2
- uid: 10751
components:
- type: Transform
- pos: 85.5,42.5
+ pos: 99.5,49.5
parent: 2
- uid: 10754
components:
- type: Transform
- pos: 77.5,42.5
+ pos: 98.5,57.5
parent: 2
- uid: 10755
components:
- type: Transform
- pos: 76.5,42.5
+ pos: 98.5,52.5
parent: 2
- uid: 10756
components:
- type: Transform
- pos: 102.5,42.5
+ pos: 98.5,51.5
parent: 2
- uid: 10757
components:
- type: Transform
- pos: 103.5,43.5
+ pos: 98.5,50.5
+ parent: 2
+ - uid: 10758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-71.5
+ parent: 2
+ - uid: 10759
+ components:
+ - type: Transform
+ pos: 98.5,49.5
+ parent: 2
+ - uid: 10760
+ components:
+ - type: Transform
+ pos: 98.5,48.5
+ parent: 2
+ - uid: 10761
+ components:
+ - type: Transform
+ pos: 97.5,51.5
+ parent: 2
+ - uid: 10762
+ components:
+ - type: Transform
+ pos: 97.5,50.5
+ parent: 2
+ - uid: 10763
+ components:
+ - type: Transform
+ pos: 97.5,49.5
parent: 2
- uid: 10764
components:
- type: Transform
- pos: 56.5,58.5
+ pos: 97.5,48.5
parent: 2
- uid: 10765
components:
- type: Transform
- pos: 56.5,57.5
+ pos: 96.5,49.5
parent: 2
- uid: 10766
components:
- type: Transform
- pos: 56.5,56.5
+ pos: 96.5,48.5
+ parent: 2
+ - uid: 10767
+ components:
+ - type: Transform
+ pos: 95.5,49.5
parent: 2
- uid: 10768
components:
- type: Transform
- pos: 57.5,58.5
+ pos: 95.5,48.5
parent: 2
- uid: 10769
components:
- type: Transform
- pos: 57.5,57.5
+ pos: 94.5,49.5
parent: 2
- uid: 10770
components:
- type: Transform
- pos: 57.5,56.5
+ pos: 94.5,48.5
+ parent: 2
+ - uid: 10771
+ components:
+ - type: Transform
+ pos: 93.5,48.5
parent: 2
- uid: 10772
components:
- type: Transform
- pos: 58.5,58.5
+ pos: 92.5,48.5
parent: 2
- uid: 10773
components:
- type: Transform
- pos: 58.5,57.5
+ pos: 91.5,57.5
parent: 2
- uid: 10774
components:
- type: Transform
- pos: 58.5,56.5
+ pos: 91.5,48.5
+ parent: 2
+ - uid: 10775
+ components:
+ - type: Transform
+ pos: 109.5,47.5
parent: 2
- uid: 10776
components:
- type: Transform
- pos: 59.5,58.5
+ pos: 109.5,46.5
parent: 2
- uid: 10777
components:
- type: Transform
- pos: 59.5,57.5
+ pos: 108.5,47.5
parent: 2
- uid: 10778
components:
- type: Transform
- pos: 59.5,56.5
+ pos: 108.5,46.5
parent: 2
- uid: 10779
components:
- type: Transform
- pos: 60.5,59.5
+ pos: 107.5,47.5
parent: 2
- uid: 10780
components:
- type: Transform
- pos: 60.5,58.5
+ pos: 107.5,46.5
parent: 2
- uid: 10781
components:
- type: Transform
- pos: 60.5,57.5
+ pos: 106.5,46.5
parent: 2
- uid: 10782
components:
- type: Transform
- pos: 60.5,56.5
+ pos: 106.5,47.5
parent: 2
- uid: 10783
components:
- type: Transform
- pos: 61.5,59.5
+ pos: 105.5,47.5
parent: 2
- uid: 10784
components:
- type: Transform
- pos: 61.5,58.5
+ pos: 105.5,46.5
parent: 2
- uid: 10785
components:
- type: Transform
- pos: 61.5,57.5
+ pos: 104.5,47.5
parent: 2
- uid: 10786
components:
- type: Transform
- pos: 61.5,56.5
+ pos: 104.5,46.5
parent: 2
- uid: 10787
components:
- type: Transform
- pos: 62.5,59.5
+ pos: 107.5,45.5
parent: 2
- uid: 10788
components:
- type: Transform
- pos: 62.5,58.5
+ pos: 106.5,45.5
parent: 2
- uid: 10789
components:
- type: Transform
- pos: 62.5,57.5
+ pos: 105.5,45.5
parent: 2
- uid: 10790
components:
- type: Transform
- pos: 63.5,59.5
+ pos: 104.5,45.5
parent: 2
- uid: 10791
components:
- type: Transform
- pos: 63.5,58.5
+ pos: 102.5,45.5
parent: 2
- uid: 10792
components:
- type: Transform
- pos: 63.5,57.5
+ pos: 101.5,45.5
parent: 2
- uid: 10793
components:
- type: Transform
- pos: 62.5,56.5
+ pos: 100.5,45.5
parent: 2
- uid: 10794
components:
- type: Transform
- pos: 64.5,59.5
+ pos: 99.5,45.5
parent: 2
- uid: 10795
components:
- type: Transform
- pos: 64.5,58.5
+ pos: 103.5,45.5
parent: 2
- uid: 10796
components:
- type: Transform
- pos: 64.5,57.5
+ pos: 103.5,47.5
parent: 2
- uid: 10797
components:
- type: Transform
- pos: 63.5,56.5
+ pos: 103.5,46.5
parent: 2
- uid: 10798
components:
- type: Transform
- pos: 65.5,59.5
+ pos: 102.5,47.5
parent: 2
- uid: 10799
components:
- type: Transform
- pos: 65.5,58.5
+ pos: 102.5,46.5
parent: 2
- uid: 10800
components:
- type: Transform
- pos: 65.5,57.5
+ pos: 101.5,47.5
parent: 2
- uid: 10801
components:
- type: Transform
- pos: 65.5,56.5
+ pos: 101.5,46.5
parent: 2
- uid: 10802
components:
- type: Transform
- pos: 64.5,56.5
+ pos: 100.5,47.5
parent: 2
- uid: 10803
components:
- type: Transform
- pos: 66.5,59.5
+ pos: 100.5,46.5
parent: 2
- uid: 10804
components:
- type: Transform
- pos: 66.5,58.5
+ pos: 99.5,47.5
parent: 2
- uid: 10805
components:
- type: Transform
- pos: 66.5,56.5
+ pos: 99.5,46.5
parent: 2
- uid: 10806
components:
- type: Transform
- pos: 67.5,59.5
+ pos: 98.5,47.5
parent: 2
- uid: 10807
components:
- type: Transform
- pos: 67.5,58.5
+ pos: 98.5,46.5
parent: 2
- uid: 10808
components:
- type: Transform
- pos: 67.5,57.5
+ pos: 97.5,47.5
parent: 2
- uid: 10809
components:
- type: Transform
- pos: 66.5,57.5
+ pos: 97.5,46.5
parent: 2
- uid: 10810
components:
- type: Transform
- pos: 67.5,56.5
+ pos: 96.5,47.5
parent: 2
- uid: 10811
components:
- type: Transform
- pos: 68.5,59.5
+ pos: 96.5,46.5
parent: 2
- uid: 10812
components:
- type: Transform
- pos: 68.5,58.5
+ pos: 95.5,47.5
parent: 2
- uid: 10813
components:
- type: Transform
- pos: 68.5,57.5
+ pos: 95.5,46.5
parent: 2
- uid: 10814
components:
- type: Transform
- pos: 68.5,56.5
+ pos: 94.5,47.5
parent: 2
- uid: 10815
components:
- type: Transform
- pos: 69.5,59.5
+ pos: 94.5,46.5
parent: 2
- uid: 10816
components:
- type: Transform
- pos: 69.5,58.5
+ pos: 93.5,47.5
parent: 2
- uid: 10817
components:
- type: Transform
- pos: 69.5,57.5
+ pos: 93.5,46.5
parent: 2
- uid: 10818
components:
- type: Transform
- pos: 69.5,56.5
+ pos: 92.5,47.5
parent: 2
- uid: 10819
components:
- type: Transform
- pos: 70.5,59.5
+ pos: 92.5,46.5
parent: 2
- uid: 10820
components:
- type: Transform
- pos: 70.5,58.5
+ pos: 104.5,44.5
parent: 2
- uid: 10821
components:
- type: Transform
- pos: 70.5,57.5
+ pos: 103.5,44.5
parent: 2
- uid: 10822
components:
- type: Transform
- pos: 70.5,56.5
+ pos: 102.5,44.5
parent: 2
- uid: 10823
components:
- type: Transform
- pos: 71.5,59.5
+ pos: 101.5,44.5
parent: 2
- uid: 10824
components:
- type: Transform
- pos: 71.5,58.5
+ pos: 100.5,44.5
parent: 2
- uid: 10825
components:
- type: Transform
- pos: 71.5,57.5
+ pos: 99.5,44.5
parent: 2
- uid: 10826
components:
- type: Transform
- pos: 71.5,56.5
+ pos: 98.5,44.5
parent: 2
- uid: 10827
components:
- type: Transform
- pos: 72.5,59.5
+ pos: 97.5,44.5
parent: 2
- uid: 10828
components:
- type: Transform
- pos: 72.5,58.5
+ pos: 96.5,44.5
parent: 2
- uid: 10829
components:
- type: Transform
- pos: 72.5,57.5
+ pos: 94.5,44.5
parent: 2
- uid: 10830
components:
- type: Transform
- pos: 72.5,56.5
+ pos: 95.5,44.5
parent: 2
- uid: 10831
components:
- type: Transform
- pos: 73.5,59.5
+ pos: 92.5,44.5
parent: 2
- uid: 10832
components:
- type: Transform
- pos: 73.5,58.5
+ pos: 91.5,44.5
parent: 2
- uid: 10833
components:
- type: Transform
- pos: 73.5,57.5
+ pos: 93.5,44.5
parent: 2
- uid: 10834
components:
- type: Transform
- pos: 73.5,56.5
+ pos: 98.5,45.5
parent: 2
- uid: 10835
components:
- type: Transform
- pos: 74.5,59.5
+ pos: 97.5,45.5
parent: 2
- uid: 10836
components:
- type: Transform
- pos: 74.5,58.5
+ pos: 96.5,45.5
parent: 2
- uid: 10837
components:
- type: Transform
- pos: 74.5,57.5
+ pos: 95.5,45.5
parent: 2
- uid: 10838
components:
- type: Transform
- pos: 74.5,56.5
+ pos: 94.5,45.5
parent: 2
- uid: 10839
components:
- type: Transform
- pos: 60.5,60.5
+ pos: 93.5,45.5
parent: 2
- uid: 10840
components:
- type: Transform
- pos: 61.5,60.5
+ pos: 92.5,45.5
parent: 2
- uid: 10841
components:
- type: Transform
- pos: 62.5,60.5
+ pos: 91.5,45.5
parent: 2
- uid: 10842
components:
- type: Transform
- pos: 63.5,60.5
+ pos: 90.5,45.5
parent: 2
- uid: 10843
components:
- type: Transform
- pos: 64.5,60.5
+ pos: 91.5,47.5
parent: 2
- uid: 10844
components:
- type: Transform
- pos: 65.5,60.5
+ pos: 91.5,46.5
parent: 2
- uid: 10845
components:
- type: Transform
- pos: 66.5,60.5
+ pos: 90.5,57.5
parent: 2
- uid: 10846
components:
- type: Transform
- pos: 67.5,60.5
+ pos: 90.5,48.5
parent: 2
- uid: 10847
components:
- type: Transform
- pos: 68.5,60.5
+ pos: 90.5,47.5
parent: 2
- uid: 10848
components:
- type: Transform
- pos: 69.5,60.5
+ pos: 89.5,57.5
parent: 2
- uid: 10849
components:
- type: Transform
- pos: 75.5,57.5
+ pos: 90.5,46.5
parent: 2
- uid: 10850
components:
- type: Transform
- pos: 75.5,56.5
+ pos: 89.5,48.5
parent: 2
- uid: 10851
components:
- type: Transform
- pos: 54.5,52.5
+ pos: 89.5,46.5
parent: 2
- uid: 10852
components:
- type: Transform
- pos: 54.5,51.5
+ pos: 89.5,47.5
parent: 2
- uid: 10853
components:
- type: Transform
- pos: 54.5,50.5
+ pos: 88.5,57.5
parent: 2
- uid: 10854
components:
- type: Transform
- pos: 54.5,49.5
+ pos: 88.5,48.5
parent: 2
- uid: 10855
components:
- type: Transform
- pos: 54.5,48.5
+ pos: 88.5,47.5
parent: 2
- uid: 10856
components:
- type: Transform
- pos: 54.5,47.5
+ pos: 88.5,46.5
parent: 2
- uid: 10857
components:
- type: Transform
- pos: 54.5,46.5
+ pos: 87.5,57.5
parent: 2
- uid: 10858
components:
- type: Transform
- pos: 54.5,45.5
+ pos: 87.5,48.5
parent: 2
- uid: 10859
components:
- type: Transform
- pos: 54.5,44.5
+ pos: 87.5,47.5
parent: 2
- uid: 10860
components:
- type: Transform
- pos: 54.5,43.5
+ pos: 87.5,46.5
parent: 2
- uid: 10861
components:
- type: Transform
- pos: 55.5,55.5
+ pos: 86.5,57.5
parent: 2
- uid: 10862
components:
- type: Transform
- pos: 55.5,54.5
+ pos: 86.5,48.5
parent: 2
- uid: 10863
components:
- type: Transform
- pos: 55.5,52.5
+ pos: 86.5,47.5
parent: 2
- uid: 10864
components:
- type: Transform
- pos: 55.5,53.5
+ pos: 86.5,46.5
parent: 2
- uid: 10865
components:
- type: Transform
- pos: 55.5,50.5
+ pos: 85.5,57.5
parent: 2
- uid: 10866
components:
- type: Transform
- pos: 55.5,49.5
+ pos: 85.5,56.5
parent: 2
- uid: 10867
components:
- type: Transform
- pos: 55.5,48.5
+ pos: 85.5,48.5
parent: 2
- uid: 10868
components:
- type: Transform
- pos: 55.5,51.5
+ pos: 85.5,47.5
parent: 2
- uid: 10869
components:
- type: Transform
- pos: 55.5,46.5
+ pos: 85.5,46.5
parent: 2
- uid: 10870
components:
- type: Transform
- pos: 55.5,47.5
+ pos: 84.5,57.5
parent: 2
- uid: 10871
components:
- type: Transform
- pos: 55.5,45.5
+ pos: 84.5,56.5
parent: 2
- uid: 10872
components:
- type: Transform
- pos: 55.5,44.5
+ pos: 84.5,48.5
parent: 2
- uid: 10873
components:
- type: Transform
- pos: 55.5,43.5
+ pos: 84.5,47.5
parent: 2
- uid: 10874
components:
- type: Transform
- pos: 56.5,55.5
+ pos: 84.5,46.5
parent: 2
- uid: 10875
components:
- type: Transform
- pos: 56.5,54.5
+ pos: 83.5,57.5
parent: 2
- uid: 10876
components:
- type: Transform
- pos: 56.5,53.5
+ pos: 83.5,56.5
parent: 2
- uid: 10877
components:
- type: Transform
- pos: 56.5,52.5
+ pos: 83.5,48.5
parent: 2
- uid: 10878
components:
- type: Transform
- pos: 56.5,51.5
+ pos: 83.5,47.5
parent: 2
- uid: 10879
components:
- type: Transform
- pos: 56.5,50.5
+ pos: 83.5,46.5
parent: 2
- uid: 10880
components:
- type: Transform
- pos: 56.5,48.5
+ pos: 82.5,57.5
parent: 2
- uid: 10881
components:
- type: Transform
- pos: 56.5,49.5
+ pos: 82.5,56.5
parent: 2
- uid: 10882
components:
- type: Transform
- pos: 56.5,47.5
+ pos: 82.5,48.5
parent: 2
- uid: 10883
components:
- type: Transform
- pos: 56.5,46.5
+ pos: 82.5,47.5
parent: 2
- uid: 10884
components:
- type: Transform
- pos: 56.5,45.5
+ pos: 82.5,46.5
parent: 2
- uid: 10885
components:
- type: Transform
- pos: 57.5,54.5
+ pos: 81.5,57.5
parent: 2
- uid: 10886
components:
- type: Transform
- pos: 56.5,44.5
+ pos: 81.5,56.5
parent: 2
- uid: 10887
components:
- type: Transform
- pos: 57.5,52.5
+ pos: 81.5,55.5
parent: 2
- uid: 10888
components:
- type: Transform
- pos: 56.5,43.5
+ pos: 81.5,49.5
parent: 2
- uid: 10889
components:
- type: Transform
- pos: 57.5,51.5
+ pos: 81.5,48.5
parent: 2
- uid: 10890
components:
- type: Transform
- pos: 57.5,53.5
+ pos: 81.5,47.5
parent: 2
- uid: 10891
components:
- type: Transform
- pos: 57.5,48.5
+ pos: 81.5,46.5
parent: 2
- uid: 10892
components:
- type: Transform
- pos: 57.5,50.5
+ pos: 80.5,57.5
parent: 2
- uid: 10893
components:
- type: Transform
- pos: 57.5,49.5
+ pos: 80.5,56.5
parent: 2
- uid: 10894
components:
- type: Transform
- pos: 57.5,46.5
+ pos: 80.5,55.5
parent: 2
- uid: 10895
components:
- type: Transform
- pos: 57.5,45.5
+ pos: 80.5,54.5
parent: 2
- uid: 10896
components:
- type: Transform
- pos: 57.5,44.5
+ pos: 80.5,50.5
parent: 2
- uid: 10897
components:
- type: Transform
- pos: 57.5,55.5
+ pos: 80.5,49.5
parent: 2
- uid: 10898
components:
- type: Transform
- pos: 57.5,43.5
+ pos: 80.5,48.5
parent: 2
- uid: 10899
components:
- type: Transform
- pos: 58.5,55.5
+ pos: 80.5,47.5
parent: 2
- uid: 10900
components:
- type: Transform
- pos: 58.5,54.5
+ pos: 80.5,46.5
parent: 2
- uid: 10901
components:
- type: Transform
- pos: 58.5,53.5
+ pos: 79.5,57.5
parent: 2
- uid: 10902
components:
- type: Transform
- pos: 58.5,52.5
+ pos: 79.5,56.5
parent: 2
- uid: 10903
components:
- type: Transform
- pos: 58.5,51.5
+ pos: 79.5,55.5
parent: 2
- uid: 10904
components:
- type: Transform
- pos: 58.5,49.5
+ pos: 79.5,54.5
parent: 2
- uid: 10905
components:
- type: Transform
- pos: 58.5,50.5
+ pos: 79.5,53.5
parent: 2
- uid: 10906
components:
- type: Transform
- pos: 58.5,44.5
+ pos: 79.5,52.5
parent: 2
- uid: 10907
components:
- type: Transform
- pos: 58.5,45.5
+ pos: 79.5,51.5
parent: 2
- uid: 10908
components:
- type: Transform
- pos: 58.5,46.5
+ pos: 79.5,50.5
parent: 2
- uid: 10909
components:
- type: Transform
- pos: 58.5,43.5
+ pos: 79.5,49.5
parent: 2
- uid: 10910
components:
- type: Transform
- pos: 59.5,55.5
+ pos: 79.5,48.5
parent: 2
- uid: 10911
components:
- type: Transform
- pos: 59.5,54.5
+ pos: 79.5,47.5
parent: 2
- uid: 10912
components:
- type: Transform
- pos: 58.5,48.5
+ pos: 79.5,46.5
parent: 2
- uid: 10913
components:
- type: Transform
- pos: 59.5,53.5
+ pos: 78.5,57.5
parent: 2
- uid: 10914
components:
- type: Transform
- pos: 58.5,47.5
+ pos: 78.5,56.5
parent: 2
- uid: 10915
components:
- type: Transform
- pos: 59.5,52.5
+ pos: 78.5,55.5
parent: 2
- uid: 10916
components:
- type: Transform
- pos: 59.5,51.5
+ pos: 78.5,54.5
parent: 2
- uid: 10917
components:
- type: Transform
- pos: 59.5,50.5
+ pos: 78.5,53.5
parent: 2
- uid: 10918
components:
- type: Transform
- pos: 59.5,49.5
+ pos: 78.5,52.5
parent: 2
- uid: 10919
components:
- type: Transform
- pos: 59.5,48.5
+ pos: 78.5,51.5
parent: 2
- uid: 10920
components:
- type: Transform
- pos: 59.5,47.5
+ pos: 78.5,50.5
parent: 2
- uid: 10921
components:
- type: Transform
- pos: 59.5,46.5
+ pos: 78.5,49.5
parent: 2
- uid: 10922
components:
- type: Transform
- pos: 59.5,45.5
+ pos: 78.5,48.5
parent: 2
- uid: 10923
components:
- type: Transform
- pos: 59.5,44.5
+ pos: 78.5,47.5
parent: 2
- uid: 10924
components:
- type: Transform
- pos: 59.5,43.5
+ pos: 78.5,46.5
parent: 2
- uid: 10925
components:
- type: Transform
- pos: 60.5,55.5
+ pos: 77.5,57.5
parent: 2
- uid: 10926
components:
- type: Transform
- pos: 60.5,54.5
+ pos: 77.5,56.5
parent: 2
- uid: 10927
components:
- type: Transform
- pos: 60.5,53.5
+ pos: 77.5,55.5
parent: 2
- uid: 10928
components:
- type: Transform
- pos: 60.5,52.5
+ pos: 77.5,54.5
parent: 2
- uid: 10929
components:
- type: Transform
- pos: 60.5,51.5
+ pos: 77.5,53.5
parent: 2
- uid: 10930
components:
- type: Transform
- pos: 60.5,50.5
+ pos: 77.5,52.5
parent: 2
- uid: 10931
components:
- type: Transform
- pos: 60.5,49.5
+ pos: 77.5,51.5
parent: 2
- uid: 10932
components:
- type: Transform
- pos: 60.5,48.5
+ pos: 77.5,50.5
parent: 2
- uid: 10933
components:
- type: Transform
- pos: 60.5,47.5
+ pos: 77.5,49.5
parent: 2
- uid: 10934
components:
- type: Transform
- pos: 60.5,46.5
+ pos: 77.5,48.5
parent: 2
- uid: 10935
components:
- type: Transform
- pos: 60.5,45.5
+ pos: 77.5,47.5
parent: 2
- uid: 10936
components:
- type: Transform
- pos: 60.5,44.5
+ pos: 77.5,46.5
parent: 2
- uid: 10937
components:
- type: Transform
- pos: 60.5,43.5
+ pos: 76.5,57.5
parent: 2
- uid: 10938
components:
- type: Transform
- pos: 61.5,55.5
+ pos: 76.5,56.5
parent: 2
- uid: 10939
components:
- type: Transform
- pos: 61.5,54.5
+ pos: 76.5,55.5
parent: 2
- uid: 10940
components:
- type: Transform
- pos: 61.5,53.5
+ pos: 76.5,54.5
parent: 2
- uid: 10941
components:
- type: Transform
- pos: 61.5,52.5
+ pos: 76.5,53.5
parent: 2
- uid: 10942
components:
- type: Transform
- pos: 61.5,51.5
+ pos: 76.5,52.5
parent: 2
- uid: 10943
components:
- type: Transform
- pos: 61.5,50.5
+ pos: 76.5,51.5
parent: 2
- uid: 10944
components:
- type: Transform
- pos: 61.5,49.5
+ pos: 76.5,50.5
parent: 2
- uid: 10945
components:
- type: Transform
- pos: 61.5,48.5
+ pos: 76.5,49.5
parent: 2
- uid: 10946
components:
- type: Transform
- pos: 61.5,47.5
+ pos: 76.5,48.5
parent: 2
- uid: 10947
components:
- type: Transform
- pos: 61.5,46.5
+ pos: 76.5,47.5
parent: 2
- uid: 10948
components:
- type: Transform
- pos: 61.5,45.5
+ pos: 76.5,46.5
parent: 2
- uid: 10949
components:
- type: Transform
- pos: 61.5,44.5
+ pos: 90.5,44.5
parent: 2
- uid: 10950
components:
- type: Transform
- pos: 61.5,43.5
+ pos: 89.5,44.5
parent: 2
- uid: 10951
components:
- type: Transform
- pos: 62.5,55.5
+ pos: 88.5,44.5
parent: 2
- uid: 10952
components:
- type: Transform
- pos: 62.5,54.5
+ pos: 88.5,45.5
parent: 2
- uid: 10953
components:
- type: Transform
- pos: 62.5,53.5
+ pos: 87.5,44.5
parent: 2
- uid: 10954
components:
- type: Transform
- pos: 62.5,52.5
+ pos: 87.5,45.5
parent: 2
- uid: 10955
components:
- type: Transform
- pos: 62.5,51.5
+ pos: 86.5,44.5
parent: 2
- uid: 10956
components:
- type: Transform
- pos: 62.5,50.5
+ pos: 86.5,45.5
parent: 2
- uid: 10957
components:
- type: Transform
- pos: 62.5,49.5
+ pos: 85.5,44.5
parent: 2
- uid: 10958
components:
- type: Transform
- pos: 62.5,48.5
+ pos: 85.5,45.5
parent: 2
- uid: 10959
components:
- type: Transform
- pos: 62.5,47.5
+ pos: 84.5,45.5
parent: 2
- uid: 10960
components:
- type: Transform
- pos: 62.5,46.5
+ pos: 83.5,45.5
parent: 2
- uid: 10961
components:
- type: Transform
- pos: 62.5,45.5
+ pos: 89.5,45.5
parent: 2
- uid: 10962
components:
- type: Transform
- pos: 62.5,44.5
+ pos: 82.5,45.5
parent: 2
- uid: 10963
components:
- type: Transform
- pos: 62.5,43.5
+ pos: 81.5,45.5
parent: 2
- uid: 10964
components:
- type: Transform
- pos: 63.5,55.5
+ pos: 80.5,45.5
parent: 2
- uid: 10965
components:
- type: Transform
- pos: 63.5,54.5
+ pos: 79.5,45.5
parent: 2
- uid: 10966
components:
- type: Transform
- pos: 63.5,53.5
+ pos: 78.5,45.5
parent: 2
- uid: 10967
components:
- type: Transform
- pos: 63.5,52.5
+ pos: 77.5,44.5
parent: 2
- uid: 10968
components:
- type: Transform
- pos: 63.5,51.5
+ pos: 77.5,45.5
parent: 2
- uid: 10969
components:
- type: Transform
- pos: 63.5,50.5
+ pos: 76.5,44.5
parent: 2
- uid: 10970
components:
- type: Transform
- pos: 63.5,49.5
+ pos: 76.5,45.5
parent: 2
- uid: 10971
components:
- type: Transform
- pos: 63.5,48.5
+ pos: 102.5,43.5
parent: 2
- uid: 10972
components:
- type: Transform
- pos: 63.5,47.5
+ pos: 101.5,43.5
parent: 2
- uid: 10973
components:
- type: Transform
- pos: 63.5,46.5
+ pos: 100.5,43.5
parent: 2
- uid: 10974
components:
- type: Transform
- pos: 63.5,45.5
+ pos: 99.5,43.5
parent: 2
- uid: 10975
components:
- type: Transform
- pos: 63.5,44.5
+ pos: 98.5,43.5
parent: 2
- uid: 10976
components:
- type: Transform
- pos: 63.5,43.5
+ pos: 97.5,43.5
parent: 2
- uid: 10977
components:
- type: Transform
- pos: 64.5,55.5
+ pos: 96.5,43.5
parent: 2
- uid: 10978
components:
- type: Transform
- pos: 64.5,54.5
+ pos: 95.5,43.5
parent: 2
- uid: 10979
components:
- type: Transform
- pos: 64.5,53.5
+ pos: 94.5,43.5
parent: 2
- uid: 10980
components:
- type: Transform
- pos: 64.5,52.5
+ pos: 93.5,43.5
parent: 2
- uid: 10981
components:
- type: Transform
- pos: 64.5,51.5
+ pos: 92.5,43.5
parent: 2
- uid: 10982
components:
- type: Transform
- pos: 64.5,50.5
+ pos: 91.5,43.5
parent: 2
- uid: 10983
components:
- type: Transform
- pos: 64.5,49.5
+ pos: 90.5,43.5
parent: 2
- uid: 10984
components:
- type: Transform
- pos: 64.5,48.5
+ pos: 89.5,43.5
parent: 2
- uid: 10985
components:
- type: Transform
- pos: 64.5,47.5
+ pos: 88.5,43.5
parent: 2
- uid: 10986
components:
- type: Transform
- pos: 64.5,46.5
+ pos: 87.5,43.5
parent: 2
- uid: 10987
components:
- type: Transform
- pos: 64.5,45.5
+ pos: 86.5,43.5
parent: 2
- uid: 10988
components:
- type: Transform
- pos: 64.5,44.5
+ pos: 85.5,43.5
parent: 2
- uid: 10989
components:
- type: Transform
- pos: 64.5,43.5
+ pos: 44.5,7.5
parent: 2
- uid: 10990
components:
- type: Transform
- pos: 65.5,55.5
+ pos: 77.5,43.5
parent: 2
- uid: 10991
components:
- type: Transform
- pos: 65.5,54.5
+ pos: 76.5,43.5
parent: 2
- uid: 10992
components:
- type: Transform
- pos: 65.5,53.5
+ pos: 101.5,42.5
parent: 2
- uid: 10993
components:
- type: Transform
- pos: 65.5,52.5
+ pos: 99.5,42.5
parent: 2
- uid: 10994
components:
- type: Transform
- pos: 65.5,51.5
+ pos: 98.5,42.5
parent: 2
- uid: 10995
components:
- type: Transform
- pos: 65.5,50.5
+ pos: 97.5,42.5
parent: 2
- uid: 10996
components:
- type: Transform
- pos: 65.5,49.5
+ pos: 96.5,42.5
parent: 2
- uid: 10997
components:
- type: Transform
- pos: 65.5,48.5
+ pos: 95.5,42.5
parent: 2
- uid: 10998
components:
- type: Transform
- pos: 65.5,47.5
+ pos: 94.5,42.5
parent: 2
- uid: 10999
components:
- type: Transform
- pos: 65.5,46.5
+ pos: 100.5,42.5
parent: 2
- uid: 11000
components:
- type: Transform
- pos: 65.5,45.5
+ pos: 92.5,42.5
parent: 2
- uid: 11001
components:
- type: Transform
- pos: 65.5,44.5
+ pos: 93.5,42.5
parent: 2
- uid: 11002
components:
- type: Transform
- pos: 65.5,43.5
+ pos: 90.5,42.5
parent: 2
- uid: 11003
components:
- type: Transform
- pos: 66.5,55.5
+ pos: 89.5,42.5
parent: 2
- uid: 11004
components:
- type: Transform
- pos: 66.5,54.5
+ pos: 88.5,42.5
parent: 2
- uid: 11005
components:
- type: Transform
- pos: 66.5,53.5
+ pos: 87.5,42.5
parent: 2
- uid: 11006
components:
- type: Transform
- pos: 66.5,52.5
+ pos: 86.5,42.5
parent: 2
- uid: 11007
components:
- type: Transform
- pos: 66.5,51.5
+ pos: 91.5,42.5
parent: 2
- uid: 11008
components:
- type: Transform
- pos: 66.5,50.5
+ pos: 85.5,42.5
parent: 2
- uid: 11009
components:
- type: Transform
- pos: 66.5,49.5
+ pos: 77.5,42.5
parent: 2
- uid: 11010
components:
- type: Transform
- pos: 66.5,48.5
+ pos: 76.5,42.5
parent: 2
- uid: 11011
components:
- type: Transform
- pos: 66.5,47.5
+ pos: 102.5,42.5
parent: 2
- uid: 11012
components:
- type: Transform
- pos: 66.5,46.5
+ pos: 103.5,43.5
parent: 2
- uid: 11013
components:
- type: Transform
- pos: 66.5,45.5
+ pos: 56.5,58.5
parent: 2
- uid: 11014
components:
- type: Transform
- pos: 66.5,44.5
+ pos: 56.5,57.5
parent: 2
- uid: 11015
components:
- type: Transform
- pos: 66.5,43.5
+ pos: 56.5,56.5
parent: 2
- uid: 11016
components:
- type: Transform
- pos: 67.5,55.5
+ pos: 57.5,58.5
parent: 2
- uid: 11017
components:
- type: Transform
- pos: 67.5,54.5
+ pos: 57.5,57.5
parent: 2
- uid: 11018
components:
- type: Transform
- pos: 67.5,53.5
+ pos: 57.5,56.5
parent: 2
- uid: 11019
components:
- type: Transform
- pos: 67.5,52.5
+ pos: 58.5,58.5
parent: 2
- uid: 11020
components:
- type: Transform
- pos: 67.5,51.5
+ pos: 58.5,57.5
parent: 2
- uid: 11021
components:
- type: Transform
- pos: 67.5,50.5
+ pos: 58.5,56.5
parent: 2
- uid: 11022
components:
- type: Transform
- pos: 67.5,49.5
+ pos: 59.5,58.5
parent: 2
- uid: 11023
components:
- type: Transform
- pos: 67.5,48.5
+ pos: 59.5,57.5
parent: 2
- uid: 11024
components:
- type: Transform
- pos: 67.5,47.5
+ pos: 59.5,56.5
parent: 2
- uid: 11025
components:
- type: Transform
- pos: 67.5,46.5
+ pos: 60.5,59.5
parent: 2
- uid: 11026
components:
- type: Transform
- pos: 67.5,45.5
+ pos: 60.5,58.5
parent: 2
- uid: 11027
components:
- type: Transform
- pos: 67.5,44.5
+ pos: 60.5,57.5
parent: 2
- uid: 11028
components:
- type: Transform
- pos: 67.5,43.5
+ pos: 60.5,56.5
parent: 2
- uid: 11029
components:
- type: Transform
- pos: 68.5,55.5
+ pos: 61.5,59.5
parent: 2
- uid: 11030
components:
- type: Transform
- pos: 68.5,54.5
+ pos: 61.5,58.5
parent: 2
- uid: 11031
components:
- type: Transform
- pos: 68.5,53.5
+ pos: 61.5,57.5
parent: 2
- uid: 11032
components:
- type: Transform
- pos: 68.5,52.5
+ pos: 61.5,56.5
parent: 2
- uid: 11033
components:
- type: Transform
- pos: 68.5,51.5
+ pos: 62.5,59.5
parent: 2
- uid: 11034
components:
- type: Transform
- pos: 68.5,50.5
+ pos: 62.5,58.5
parent: 2
- uid: 11035
components:
- type: Transform
- pos: 68.5,49.5
+ pos: 62.5,57.5
parent: 2
- uid: 11036
components:
- type: Transform
- pos: 68.5,48.5
+ pos: 63.5,59.5
parent: 2
- uid: 11037
components:
- type: Transform
- pos: 68.5,47.5
+ pos: 63.5,58.5
parent: 2
- uid: 11038
components:
- type: Transform
- pos: 68.5,46.5
+ pos: 63.5,57.5
parent: 2
- uid: 11039
components:
- type: Transform
- pos: 68.5,45.5
+ pos: 62.5,56.5
parent: 2
- uid: 11040
components:
- type: Transform
- pos: 68.5,44.5
+ pos: 64.5,59.5
parent: 2
- uid: 11041
components:
- type: Transform
- pos: 68.5,43.5
+ pos: 64.5,58.5
parent: 2
- uid: 11042
components:
- type: Transform
- pos: 69.5,55.5
+ pos: 64.5,57.5
parent: 2
- uid: 11043
components:
- type: Transform
- pos: 69.5,54.5
+ pos: 63.5,56.5
parent: 2
- uid: 11044
components:
- type: Transform
- pos: 69.5,53.5
+ pos: 65.5,59.5
parent: 2
- uid: 11045
components:
- type: Transform
- pos: 69.5,52.5
+ pos: 65.5,58.5
parent: 2
- uid: 11046
components:
- type: Transform
- pos: 69.5,51.5
+ pos: 65.5,57.5
parent: 2
- uid: 11047
components:
- type: Transform
- pos: 69.5,50.5
+ pos: 65.5,56.5
parent: 2
- uid: 11048
components:
- type: Transform
- pos: 69.5,49.5
+ pos: 64.5,56.5
parent: 2
- uid: 11049
components:
- type: Transform
- pos: 69.5,48.5
+ pos: 66.5,59.5
parent: 2
- uid: 11050
components:
- type: Transform
- pos: 69.5,47.5
+ pos: 66.5,58.5
parent: 2
- uid: 11051
components:
- type: Transform
- pos: 69.5,46.5
+ pos: 66.5,56.5
parent: 2
- uid: 11052
components:
- type: Transform
- pos: 69.5,45.5
+ pos: 67.5,59.5
parent: 2
- uid: 11053
components:
- type: Transform
- pos: 69.5,44.5
+ pos: 67.5,58.5
parent: 2
- uid: 11054
components:
- type: Transform
- pos: 69.5,43.5
+ pos: 67.5,57.5
parent: 2
- uid: 11055
components:
- type: Transform
- pos: 70.5,55.5
+ pos: 66.5,57.5
parent: 2
- uid: 11056
components:
- type: Transform
- pos: 70.5,54.5
+ pos: 67.5,56.5
parent: 2
- uid: 11057
components:
- type: Transform
- pos: 70.5,53.5
+ pos: 68.5,59.5
parent: 2
- uid: 11058
components:
- type: Transform
- pos: 70.5,52.5
+ pos: 68.5,58.5
parent: 2
- uid: 11059
components:
- type: Transform
- pos: 70.5,51.5
+ pos: 68.5,57.5
parent: 2
- uid: 11060
components:
- type: Transform
- pos: 70.5,50.5
+ pos: 68.5,56.5
parent: 2
- uid: 11061
components:
- type: Transform
- pos: 70.5,49.5
+ pos: 69.5,59.5
parent: 2
- uid: 11062
components:
- type: Transform
- pos: 70.5,48.5
+ pos: 69.5,58.5
parent: 2
- uid: 11063
components:
- type: Transform
- pos: 70.5,47.5
+ pos: 69.5,57.5
parent: 2
- uid: 11064
components:
- type: Transform
- pos: 70.5,46.5
+ pos: 69.5,56.5
parent: 2
- uid: 11065
components:
- type: Transform
- pos: 70.5,45.5
+ pos: 70.5,59.5
parent: 2
- uid: 11066
components:
- type: Transform
- pos: 70.5,44.5
+ pos: 70.5,58.5
parent: 2
- uid: 11067
components:
- type: Transform
- pos: 70.5,43.5
+ pos: 70.5,57.5
parent: 2
- uid: 11068
components:
- type: Transform
- pos: 71.5,55.5
+ pos: 70.5,56.5
parent: 2
- uid: 11069
components:
- type: Transform
- pos: 71.5,54.5
+ pos: 71.5,59.5
parent: 2
- uid: 11070
components:
- type: Transform
- pos: 71.5,53.5
+ pos: 71.5,58.5
parent: 2
- uid: 11071
components:
- type: Transform
- pos: 71.5,52.5
+ pos: 71.5,57.5
parent: 2
- uid: 11072
components:
- type: Transform
- pos: 71.5,51.5
+ pos: 71.5,56.5
parent: 2
- uid: 11073
components:
- type: Transform
- pos: 71.5,50.5
+ pos: 72.5,59.5
parent: 2
- uid: 11074
components:
- type: Transform
- pos: 71.5,49.5
+ pos: 72.5,58.5
parent: 2
- uid: 11075
components:
- type: Transform
- pos: 71.5,48.5
+ pos: 72.5,57.5
parent: 2
- uid: 11076
components:
- type: Transform
- pos: 71.5,47.5
+ pos: 72.5,56.5
parent: 2
- uid: 11077
components:
- type: Transform
- pos: 71.5,46.5
+ pos: 73.5,59.5
parent: 2
- uid: 11078
components:
- type: Transform
- pos: 71.5,45.5
+ pos: 73.5,58.5
parent: 2
- uid: 11079
components:
- type: Transform
- pos: 71.5,44.5
+ pos: 73.5,57.5
parent: 2
- uid: 11080
components:
- type: Transform
- pos: 71.5,43.5
+ pos: 73.5,56.5
parent: 2
- uid: 11081
components:
- type: Transform
- pos: 72.5,55.5
+ pos: 74.5,59.5
parent: 2
- uid: 11082
components:
- type: Transform
- pos: 72.5,54.5
+ pos: 74.5,58.5
parent: 2
- uid: 11083
components:
- type: Transform
- pos: 72.5,53.5
+ pos: 74.5,57.5
parent: 2
- uid: 11084
components:
- type: Transform
- pos: 72.5,52.5
+ pos: 74.5,56.5
parent: 2
- uid: 11085
components:
- type: Transform
- pos: 72.5,51.5
+ pos: 60.5,60.5
parent: 2
- uid: 11086
components:
- type: Transform
- pos: 72.5,50.5
+ pos: 61.5,60.5
parent: 2
- uid: 11087
components:
- type: Transform
- pos: 72.5,49.5
+ pos: 62.5,60.5
parent: 2
- uid: 11088
components:
- type: Transform
- pos: 72.5,48.5
+ pos: 63.5,60.5
parent: 2
- uid: 11089
components:
- type: Transform
- pos: 72.5,47.5
+ pos: 64.5,60.5
parent: 2
- uid: 11090
components:
- type: Transform
- pos: 72.5,46.5
+ pos: 65.5,60.5
parent: 2
- uid: 11091
components:
- type: Transform
- pos: 72.5,45.5
+ pos: 66.5,60.5
parent: 2
- uid: 11092
components:
- type: Transform
- pos: 72.5,44.5
+ pos: 67.5,60.5
parent: 2
- uid: 11093
components:
- type: Transform
- pos: 72.5,43.5
+ pos: 68.5,60.5
parent: 2
- uid: 11094
components:
- type: Transform
- pos: 73.5,55.5
+ pos: 69.5,60.5
parent: 2
- uid: 11095
components:
- type: Transform
- pos: 73.5,54.5
+ pos: 75.5,57.5
parent: 2
- uid: 11096
components:
- type: Transform
- pos: 73.5,53.5
+ pos: 75.5,56.5
parent: 2
- uid: 11097
components:
- type: Transform
- pos: 73.5,52.5
+ pos: 54.5,52.5
parent: 2
- uid: 11098
components:
- type: Transform
- pos: 73.5,51.5
+ pos: 54.5,51.5
parent: 2
- uid: 11099
components:
- type: Transform
- pos: 73.5,50.5
+ pos: 54.5,50.5
parent: 2
- uid: 11100
components:
- type: Transform
- pos: 73.5,49.5
+ pos: 54.5,49.5
parent: 2
- uid: 11101
components:
- type: Transform
- pos: 73.5,48.5
+ pos: 54.5,48.5
parent: 2
- uid: 11102
components:
- type: Transform
- pos: 73.5,47.5
+ pos: 54.5,47.5
parent: 2
- uid: 11103
components:
- type: Transform
- pos: 73.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-72.5
parent: 2
- uid: 11104
components:
- type: Transform
- pos: 73.5,45.5
- parent: 2
- - uid: 11105
- components:
- - type: Transform
- pos: 73.5,44.5
- parent: 2
- - uid: 11106
- components:
- - type: Transform
- pos: 73.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-74.5
parent: 2
- uid: 11107
components:
- type: Transform
- pos: 74.5,55.5
+ pos: 55.5,55.5
parent: 2
- uid: 11108
components:
- type: Transform
- pos: 74.5,54.5
+ pos: 55.5,54.5
parent: 2
- uid: 11109
components:
- type: Transform
- pos: 74.5,53.5
+ pos: 55.5,52.5
parent: 2
- uid: 11110
components:
- type: Transform
- pos: 74.5,52.5
+ pos: 55.5,53.5
parent: 2
- uid: 11111
components:
- type: Transform
- pos: 74.5,51.5
+ pos: 55.5,50.5
parent: 2
- uid: 11112
components:
- type: Transform
- pos: 74.5,50.5
+ pos: 55.5,49.5
parent: 2
- uid: 11113
components:
- type: Transform
- pos: 74.5,49.5
+ pos: 55.5,48.5
parent: 2
- uid: 11114
components:
- type: Transform
- pos: 74.5,48.5
+ pos: 55.5,51.5
parent: 2
- uid: 11115
components:
- type: Transform
- pos: 74.5,47.5
+ pos: 56.5,62.5
parent: 2
- uid: 11116
components:
- type: Transform
- pos: 74.5,46.5
+ pos: 55.5,47.5
parent: 2
- uid: 11117
components:
- type: Transform
- pos: 74.5,45.5
+ pos: 56.5,59.5
parent: 2
- uid: 11118
components:
- type: Transform
- pos: 74.5,44.5
+ pos: 57.5,63.5
parent: 2
- uid: 11119
components:
- type: Transform
- pos: 74.5,43.5
+ pos: 58.5,61.5
parent: 2
- uid: 11120
components:
- type: Transform
- pos: 75.5,55.5
+ pos: 56.5,55.5
parent: 2
- uid: 11121
components:
- type: Transform
- pos: 75.5,54.5
+ pos: 56.5,54.5
parent: 2
- uid: 11122
components:
- type: Transform
- pos: 75.5,53.5
+ pos: 56.5,53.5
parent: 2
- uid: 11123
components:
- type: Transform
- pos: 75.5,52.5
+ pos: 56.5,52.5
parent: 2
- uid: 11124
components:
- type: Transform
- pos: 75.5,51.5
+ pos: 56.5,51.5
parent: 2
- uid: 11125
components:
- type: Transform
- pos: 75.5,50.5
+ pos: 56.5,50.5
parent: 2
- uid: 11126
components:
- type: Transform
- pos: 75.5,49.5
+ pos: 56.5,48.5
parent: 2
- uid: 11127
components:
- type: Transform
- pos: 75.5,48.5
+ pos: 56.5,49.5
parent: 2
- uid: 11128
components:
- type: Transform
- pos: 75.5,47.5
+ pos: 56.5,47.5
parent: 2
- uid: 11129
components:
- type: Transform
- pos: 75.5,46.5
+ pos: 56.5,46.5
parent: 2
- uid: 11130
components:
- type: Transform
- pos: 75.5,45.5
+ pos: 57.5,60.5
parent: 2
- uid: 11131
components:
- type: Transform
- pos: 75.5,44.5
+ pos: 57.5,54.5
parent: 2
- uid: 11132
components:
- type: Transform
- pos: 75.5,43.5
+ pos: 56.5,61.5
parent: 2
- uid: 11133
components:
- type: Transform
- pos: 57.5,47.5
+ pos: 57.5,52.5
parent: 2
- uid: 11134
components:
- type: Transform
- pos: 75.5,42.5
+ pos: 55.5,63.5
parent: 2
- uid: 11135
components:
- type: Transform
- pos: 74.5,42.5
+ pos: 57.5,51.5
parent: 2
- uid: 11136
components:
- type: Transform
- pos: 73.5,42.5
+ pos: 57.5,53.5
parent: 2
- uid: 11137
components:
- type: Transform
- pos: 72.5,42.5
+ pos: 57.5,48.5
parent: 2
- uid: 11138
components:
- type: Transform
- pos: 71.5,42.5
+ pos: 57.5,50.5
parent: 2
- uid: 11139
components:
- type: Transform
- pos: 70.5,42.5
+ pos: 57.5,49.5
parent: 2
- uid: 11140
components:
- type: Transform
- pos: 69.5,42.5
+ pos: 57.5,46.5
parent: 2
- uid: 11141
components:
- type: Transform
- pos: 68.5,42.5
+ pos: 57.5,45.5
parent: 2
- uid: 11142
components:
- type: Transform
- pos: 67.5,42.5
+ pos: 57.5,62.5
parent: 2
- uid: 11143
components:
- type: Transform
- pos: 66.5,42.5
+ pos: 57.5,55.5
parent: 2
- uid: 11144
components:
- type: Transform
- pos: 65.5,42.5
+ pos: 58.5,60.5
parent: 2
- uid: 11145
components:
- type: Transform
- pos: 63.5,42.5
+ pos: 58.5,55.5
parent: 2
- uid: 11146
components:
- type: Transform
- pos: 62.5,42.5
+ pos: 58.5,54.5
parent: 2
- uid: 11147
components:
- type: Transform
- pos: 61.5,42.5
+ pos: 58.5,53.5
parent: 2
- uid: 11148
components:
- type: Transform
- pos: 60.5,42.5
+ pos: 58.5,52.5
parent: 2
- uid: 11149
components:
- type: Transform
- pos: 64.5,42.5
+ pos: 58.5,51.5
parent: 2
- uid: 11150
components:
- type: Transform
- pos: 58.5,42.5
+ pos: 58.5,49.5
parent: 2
- uid: 11151
components:
- type: Transform
- pos: 56.5,42.5
+ pos: 58.5,50.5
parent: 2
- uid: 11152
components:
- type: Transform
- pos: 59.5,42.5
+ pos: 58.5,44.5
parent: 2
- uid: 11153
components:
- type: Transform
- pos: 57.5,42.5
+ pos: 58.5,45.5
parent: 2
- uid: 11154
components:
- type: Transform
- pos: 55.5,42.5
+ pos: 58.5,46.5
parent: 2
- uid: 11155
components:
- type: Transform
- pos: 54.5,42.5
+ pos: 57.5,59.5
parent: 2
- uid: 11156
components:
- type: Transform
- pos: 53.5,42.5
+ pos: 59.5,55.5
parent: 2
- uid: 11157
components:
- type: Transform
- pos: 52.5,42.5
+ pos: 59.5,54.5
parent: 2
- uid: 11158
components:
- type: Transform
- pos: 52.5,43.5
+ pos: 58.5,48.5
parent: 2
- uid: 11159
components:
- type: Transform
- pos: 52.5,44.5
+ pos: 59.5,53.5
parent: 2
- uid: 11160
components:
- type: Transform
- pos: 52.5,45.5
+ pos: 58.5,47.5
parent: 2
- uid: 11161
components:
- type: Transform
- pos: 52.5,46.5
+ pos: 59.5,52.5
parent: 2
- uid: 11162
components:
- type: Transform
- pos: 52.5,47.5
+ pos: 59.5,51.5
parent: 2
- uid: 11163
components:
- type: Transform
- pos: 53.5,43.5
+ pos: 59.5,50.5
parent: 2
- uid: 11164
components:
- type: Transform
- pos: 53.5,45.5
+ pos: 59.5,49.5
parent: 2
- uid: 11165
components:
- type: Transform
- pos: 53.5,44.5
+ pos: 59.5,48.5
parent: 2
- uid: 11166
components:
- type: Transform
- pos: 53.5,46.5
+ pos: 59.5,47.5
parent: 2
- uid: 11167
components:
- type: Transform
- pos: 53.5,47.5
+ pos: 59.5,46.5
parent: 2
- uid: 11168
components:
- type: Transform
- pos: 53.5,48.5
+ pos: 59.5,45.5
parent: 2
- uid: 11169
components:
- type: Transform
- pos: 53.5,49.5
+ pos: 59.5,44.5
parent: 2
- uid: 11170
components:
- type: Transform
- pos: 53.5,50.5
+ pos: 59.5,43.5
parent: 2
- uid: 11171
components:
- type: Transform
- pos: 100.5,41.5
+ pos: 60.5,55.5
parent: 2
- uid: 11172
components:
- type: Transform
- pos: 99.5,41.5
+ pos: 60.5,54.5
parent: 2
- uid: 11173
components:
- type: Transform
- pos: 98.5,41.5
+ pos: 60.5,53.5
parent: 2
- uid: 11174
components:
- type: Transform
- pos: 97.5,41.5
+ pos: 60.5,52.5
parent: 2
- uid: 11175
components:
- type: Transform
- pos: 96.5,41.5
+ pos: 60.5,51.5
parent: 2
- uid: 11176
components:
- type: Transform
- pos: 95.5,41.5
+ pos: 60.5,50.5
parent: 2
- uid: 11177
components:
- type: Transform
- pos: 94.5,41.5
+ pos: 60.5,49.5
parent: 2
- uid: 11178
components:
- type: Transform
- pos: 93.5,41.5
+ pos: 60.5,48.5
parent: 2
- uid: 11179
components:
- type: Transform
- pos: 92.5,41.5
+ pos: 60.5,47.5
parent: 2
- uid: 11180
components:
- type: Transform
- pos: 91.5,41.5
+ pos: 60.5,46.5
parent: 2
- uid: 11181
components:
- type: Transform
- pos: 90.5,41.5
+ pos: 60.5,45.5
parent: 2
- uid: 11182
components:
- type: Transform
- pos: 89.5,41.5
+ pos: 60.5,44.5
parent: 2
- uid: 11183
components:
- type: Transform
- pos: 88.5,41.5
+ pos: 60.5,43.5
parent: 2
- uid: 11184
components:
- type: Transform
- pos: 87.5,41.5
+ pos: 61.5,55.5
parent: 2
- uid: 11185
components:
- type: Transform
- pos: 86.5,41.5
+ pos: 61.5,54.5
parent: 2
- uid: 11186
components:
- type: Transform
- pos: 85.5,41.5
+ pos: 61.5,53.5
parent: 2
- uid: 11188
components:
- type: Transform
- pos: 43.5,7.5
+ pos: 61.5,52.5
parent: 2
- uid: 11189
components:
- type: Transform
- pos: 77.5,41.5
+ pos: 61.5,51.5
parent: 2
- uid: 11190
components:
- type: Transform
- pos: 76.5,41.5
+ pos: 61.5,50.5
parent: 2
- uid: 11191
components:
- type: Transform
- pos: 75.5,41.5
+ pos: 61.5,49.5
parent: 2
- uid: 11192
components:
- type: Transform
- pos: 74.5,41.5
+ pos: 61.5,48.5
parent: 2
- uid: 11193
components:
- type: Transform
- pos: 73.5,41.5
+ pos: 61.5,47.5
parent: 2
- uid: 11194
components:
- type: Transform
- pos: 72.5,41.5
+ pos: 61.5,46.5
parent: 2
- uid: 11195
components:
- type: Transform
- pos: 70.5,41.5
+ pos: 61.5,45.5
parent: 2
- uid: 11196
components:
- type: Transform
- pos: 69.5,41.5
+ pos: 61.5,44.5
parent: 2
- uid: 11197
components:
- type: Transform
- pos: 68.5,41.5
+ pos: 61.5,43.5
parent: 2
- uid: 11198
components:
- type: Transform
- pos: 71.5,41.5
+ pos: 62.5,55.5
parent: 2
- uid: 11199
components:
- type: Transform
- pos: 66.5,41.5
+ pos: 62.5,54.5
parent: 2
- uid: 11200
components:
- type: Transform
- pos: 67.5,41.5
+ pos: 62.5,53.5
parent: 2
- uid: 11201
components:
- type: Transform
- pos: 65.5,41.5
+ pos: 62.5,52.5
parent: 2
- uid: 11202
components:
- type: Transform
- pos: 64.5,41.5
+ pos: 62.5,51.5
parent: 2
- uid: 11203
components:
- type: Transform
- pos: 63.5,41.5
+ pos: 62.5,50.5
parent: 2
- uid: 11204
components:
- type: Transform
- pos: 61.5,41.5
+ pos: 62.5,49.5
parent: 2
- uid: 11205
components:
- type: Transform
- pos: 62.5,41.5
+ pos: 62.5,48.5
parent: 2
- uid: 11206
components:
- type: Transform
- pos: 60.5,41.5
+ pos: 62.5,47.5
parent: 2
- uid: 11207
components:
- type: Transform
- pos: 59.5,41.5
+ pos: 62.5,46.5
parent: 2
- uid: 11208
components:
- type: Transform
- pos: 58.5,41.5
+ pos: 62.5,45.5
parent: 2
- uid: 11209
components:
- type: Transform
- pos: 57.5,41.5
+ pos: 62.5,44.5
parent: 2
- uid: 11210
components:
- type: Transform
- pos: 56.5,41.5
+ pos: 62.5,43.5
parent: 2
- uid: 11211
components:
- type: Transform
- pos: 55.5,41.5
+ pos: 63.5,55.5
parent: 2
- uid: 11212
components:
- type: Transform
- pos: 54.5,41.5
+ pos: 63.5,54.5
parent: 2
- uid: 11213
components:
- type: Transform
- pos: 53.5,41.5
+ pos: 63.5,53.5
parent: 2
- uid: 11214
components:
- type: Transform
- pos: 52.5,41.5
+ pos: 63.5,52.5
parent: 2
- uid: 11215
components:
- type: Transform
- pos: 52.5,40.5
+ pos: 63.5,51.5
parent: 2
- uid: 11216
components:
- type: Transform
- pos: 53.5,40.5
+ pos: 63.5,50.5
parent: 2
- uid: 11217
components:
- type: Transform
- pos: 54.5,40.5
+ pos: 63.5,49.5
parent: 2
- uid: 11218
components:
- type: Transform
- pos: 55.5,40.5
+ pos: 63.5,48.5
parent: 2
- uid: 11219
components:
- type: Transform
- pos: 56.5,40.5
+ pos: 63.5,47.5
parent: 2
- uid: 11220
components:
- type: Transform
- pos: 57.5,40.5
+ pos: 63.5,46.5
parent: 2
- uid: 11221
components:
- type: Transform
- pos: 64.5,40.5
+ pos: 63.5,45.5
parent: 2
- uid: 11222
components:
- type: Transform
- pos: 65.5,40.5
+ pos: 63.5,44.5
parent: 2
- uid: 11223
components:
- type: Transform
- pos: 67.5,40.5
+ pos: 63.5,43.5
parent: 2
- uid: 11224
components:
- type: Transform
- pos: 68.5,40.5
+ pos: 64.5,55.5
parent: 2
- uid: 11225
components:
- type: Transform
- pos: 69.5,40.5
+ pos: 64.5,54.5
parent: 2
- uid: 11226
components:
- type: Transform
- pos: 66.5,40.5
+ pos: 64.5,53.5
parent: 2
- uid: 11227
components:
- type: Transform
- pos: 70.5,40.5
+ pos: 64.5,52.5
parent: 2
- uid: 11228
components:
- type: Transform
- pos: 71.5,40.5
+ pos: 64.5,51.5
parent: 2
- uid: 11229
components:
- type: Transform
- pos: 72.5,40.5
+ pos: 64.5,50.5
parent: 2
- uid: 11230
components:
- type: Transform
- pos: 73.5,40.5
+ pos: 64.5,49.5
parent: 2
- uid: 11231
components:
- type: Transform
- pos: 74.5,40.5
+ pos: 64.5,48.5
parent: 2
- uid: 11232
components:
- type: Transform
- pos: 76.5,40.5
+ pos: 64.5,47.5
parent: 2
- uid: 11233
components:
- type: Transform
- pos: 75.5,40.5
+ pos: 64.5,46.5
parent: 2
- uid: 11234
components:
- type: Transform
- pos: 77.5,40.5
+ pos: 64.5,45.5
parent: 2
- uid: 11236
components:
- type: Transform
- pos: 42.5,7.5
+ pos: 64.5,44.5
parent: 2
- uid: 11237
components:
- type: Transform
- pos: 85.5,40.5
+ pos: 64.5,43.5
parent: 2
- uid: 11238
components:
- type: Transform
- pos: 86.5,40.5
+ pos: 65.5,55.5
parent: 2
- uid: 11239
components:
- type: Transform
- pos: 87.5,40.5
+ pos: 65.5,54.5
parent: 2
- uid: 11240
components:
- type: Transform
- pos: 88.5,40.5
+ pos: 65.5,53.5
parent: 2
- uid: 11241
components:
- type: Transform
- pos: 89.5,40.5
+ pos: 65.5,52.5
parent: 2
- uid: 11242
components:
- type: Transform
- pos: 90.5,40.5
+ pos: 65.5,51.5
parent: 2
- uid: 11243
components:
- type: Transform
- pos: 91.5,40.5
+ pos: 65.5,50.5
parent: 2
- uid: 11244
components:
- type: Transform
- pos: 92.5,40.5
+ pos: 65.5,49.5
parent: 2
- uid: 11245
components:
- type: Transform
- pos: 93.5,40.5
+ pos: 65.5,48.5
parent: 2
- uid: 11246
components:
- type: Transform
- pos: 94.5,40.5
+ pos: 65.5,47.5
parent: 2
- uid: 11247
components:
- type: Transform
- pos: 95.5,40.5
+ pos: 65.5,46.5
parent: 2
- uid: 11248
components:
- type: Transform
- pos: 96.5,40.5
+ pos: 65.5,45.5
parent: 2
- uid: 11249
components:
- type: Transform
- pos: 97.5,40.5
+ pos: 65.5,44.5
parent: 2
- uid: 11250
components:
- type: Transform
- pos: 98.5,40.5
+ pos: 65.5,43.5
parent: 2
- uid: 11251
components:
- type: Transform
- pos: 99.5,40.5
+ pos: 66.5,55.5
parent: 2
- uid: 11252
components:
- type: Transform
- pos: 100.5,40.5
+ pos: 66.5,54.5
parent: 2
- uid: 11253
components:
- type: Transform
- pos: 97.5,39.5
+ pos: 66.5,53.5
parent: 2
- uid: 11254
components:
- type: Transform
- pos: 96.5,39.5
+ pos: 66.5,52.5
parent: 2
- uid: 11255
components:
- type: Transform
- pos: 95.5,39.5
+ pos: 66.5,51.5
parent: 2
- uid: 11256
components:
- type: Transform
- pos: 94.5,39.5
+ pos: 66.5,50.5
parent: 2
- uid: 11257
components:
- type: Transform
- pos: 93.5,39.5
+ pos: 66.5,49.5
parent: 2
- uid: 11258
components:
- type: Transform
- pos: 92.5,39.5
+ pos: 66.5,48.5
parent: 2
- uid: 11259
components:
- type: Transform
- pos: 91.5,39.5
+ pos: 66.5,47.5
parent: 2
- uid: 11260
components:
- type: Transform
- pos: 90.5,39.5
+ pos: 66.5,46.5
parent: 2
- uid: 11261
components:
- type: Transform
- pos: 89.5,39.5
+ pos: 66.5,45.5
parent: 2
- uid: 11262
components:
- type: Transform
- pos: 88.5,39.5
+ pos: 66.5,44.5
parent: 2
- uid: 11263
components:
- type: Transform
- pos: 87.5,39.5
+ pos: 66.5,43.5
parent: 2
- uid: 11264
components:
- type: Transform
- pos: 86.5,39.5
+ pos: 67.5,55.5
parent: 2
- uid: 11265
components:
- type: Transform
- pos: 85.5,39.5
+ pos: 67.5,54.5
parent: 2
- uid: 11267
components:
- type: Transform
- pos: 77.5,39.5
+ pos: 67.5,53.5
parent: 2
- uid: 11268
components:
- type: Transform
- pos: 76.5,39.5
+ pos: 67.5,52.5
parent: 2
- uid: 11269
components:
- type: Transform
- pos: 75.5,39.5
+ pos: 67.5,51.5
parent: 2
- uid: 11270
components:
- type: Transform
- pos: 74.5,39.5
+ pos: 67.5,50.5
parent: 2
- uid: 11272
components:
- type: Transform
- pos: 73.5,39.5
+ pos: 67.5,49.5
parent: 2
- uid: 11273
components:
- type: Transform
- pos: 72.5,39.5
+ pos: 67.5,48.5
parent: 2
- uid: 11274
components:
- type: Transform
- pos: 71.5,39.5
+ pos: 67.5,47.5
parent: 2
- uid: 11275
components:
- type: Transform
- pos: 70.5,39.5
+ pos: 67.5,46.5
parent: 2
- uid: 11276
components:
- type: Transform
- pos: 69.5,39.5
+ pos: 67.5,45.5
parent: 2
- uid: 11277
components:
- type: Transform
- pos: 68.5,39.5
+ pos: 67.5,44.5
parent: 2
- uid: 11278
components:
- type: Transform
- pos: 67.5,39.5
+ pos: 67.5,43.5
parent: 2
- uid: 11279
components:
- type: Transform
- pos: 66.5,39.5
+ pos: 68.5,55.5
parent: 2
- uid: 11280
components:
- type: Transform
- pos: 54.5,39.5
+ pos: 68.5,54.5
parent: 2
- uid: 11281
components:
- type: Transform
- pos: 55.5,39.5
+ pos: 68.5,53.5
parent: 2
- uid: 11282
components:
- type: Transform
- pos: 52.5,39.5
+ pos: 68.5,52.5
parent: 2
- uid: 11283
components:
- type: Transform
- pos: 53.5,39.5
+ pos: 68.5,51.5
parent: 2
- uid: 11284
components:
- type: Transform
- pos: 98.5,39.5
+ pos: 68.5,50.5
parent: 2
- uid: 11285
components:
- type: Transform
- pos: 97.5,38.5
+ pos: 68.5,49.5
parent: 2
- uid: 11286
components:
- type: Transform
- pos: 96.5,38.5
+ pos: 68.5,48.5
parent: 2
- uid: 11287
components:
- type: Transform
- pos: 95.5,38.5
+ pos: 68.5,47.5
parent: 2
- uid: 11288
components:
- type: Transform
- pos: 94.5,38.5
+ pos: 68.5,46.5
parent: 2
- uid: 11289
components:
- type: Transform
- pos: 93.5,38.5
+ pos: 68.5,45.5
parent: 2
- uid: 11290
components:
- type: Transform
- pos: 92.5,38.5
+ pos: 68.5,44.5
parent: 2
- uid: 11291
components:
- type: Transform
- pos: 91.5,38.5
+ pos: 68.5,43.5
parent: 2
- uid: 11292
components:
- type: Transform
- pos: 90.5,38.5
+ pos: 69.5,55.5
parent: 2
- uid: 11293
components:
- type: Transform
- pos: 89.5,38.5
+ pos: 69.5,54.5
parent: 2
- uid: 11294
components:
- type: Transform
- pos: 88.5,38.5
+ pos: 69.5,53.5
parent: 2
- uid: 11295
components:
- type: Transform
- pos: 87.5,38.5
+ pos: 69.5,52.5
parent: 2
- uid: 11296
components:
- type: Transform
- pos: 86.5,38.5
+ pos: 69.5,51.5
parent: 2
- uid: 11297
components:
- type: Transform
- pos: 85.5,38.5
+ pos: 69.5,50.5
parent: 2
- uid: 11299
components:
- type: Transform
- pos: 48.5,7.5
+ pos: 69.5,49.5
parent: 2
- uid: 11300
components:
- type: Transform
- pos: 44.5,10.5
+ pos: 69.5,48.5
parent: 2
- uid: 11301
components:
- type: Transform
- pos: 45.5,10.5
+ pos: 69.5,47.5
parent: 2
- uid: 11302
components:
- type: Transform
- pos: 52.5,8.5
+ pos: 69.5,46.5
parent: 2
- uid: 11303
components:
- type: Transform
- pos: 46.5,10.5
+ pos: 69.5,45.5
parent: 2
- uid: 11304
components:
- type: Transform
- pos: 47.5,10.5
+ pos: 69.5,44.5
parent: 2
- uid: 11305
components:
- type: Transform
- pos: 77.5,38.5
+ pos: 69.5,43.5
parent: 2
- uid: 11306
components:
- type: Transform
- pos: 76.5,38.5
+ pos: 70.5,55.5
parent: 2
- uid: 11307
components:
- type: Transform
- pos: 75.5,38.5
+ pos: 70.5,54.5
parent: 2
- uid: 11308
components:
- type: Transform
- pos: 74.5,38.5
+ pos: 70.5,53.5
parent: 2
- uid: 11309
components:
- type: Transform
- pos: 73.5,38.5
+ pos: 70.5,52.5
parent: 2
- uid: 11310
components:
- type: Transform
- pos: 72.5,38.5
+ pos: 70.5,51.5
parent: 2
- uid: 11311
components:
- type: Transform
- pos: 71.5,38.5
+ pos: 70.5,50.5
parent: 2
- uid: 11312
components:
- type: Transform
- pos: 70.5,38.5
+ pos: 70.5,49.5
parent: 2
- uid: 11313
components:
- type: Transform
- pos: 69.5,38.5
+ pos: 70.5,48.5
parent: 2
- uid: 11314
components:
- type: Transform
- pos: 68.5,38.5
+ pos: 70.5,47.5
parent: 2
- uid: 11321
components:
- type: Transform
- pos: 67.5,38.5
+ pos: 70.5,46.5
parent: 2
- uid: 11322
components:
- type: Transform
- pos: 66.5,38.5
+ pos: 70.5,45.5
parent: 2
- uid: 11323
components:
- type: Transform
- pos: 52.5,38.5
+ pos: 70.5,44.5
parent: 2
- uid: 11324
components:
- type: Transform
- pos: 97.5,37.5
+ pos: 70.5,43.5
parent: 2
- uid: 11325
components:
- type: Transform
- pos: 96.5,37.5
+ pos: 71.5,55.5
parent: 2
- uid: 11326
components:
- type: Transform
- pos: 95.5,37.5
+ pos: 71.5,54.5
parent: 2
- uid: 11327
components:
- type: Transform
- pos: 94.5,37.5
+ pos: 71.5,53.5
parent: 2
- uid: 11328
components:
- type: Transform
- pos: 93.5,37.5
+ pos: 71.5,52.5
parent: 2
- uid: 11329
components:
- type: Transform
- pos: 92.5,37.5
+ pos: 71.5,51.5
parent: 2
- uid: 11330
components:
- type: Transform
- pos: 91.5,37.5
+ pos: 71.5,50.5
parent: 2
- uid: 11331
components:
- type: Transform
- pos: 90.5,37.5
+ pos: 71.5,49.5
parent: 2
- uid: 11332
components:
- type: Transform
- pos: 89.5,37.5
+ pos: 71.5,48.5
parent: 2
- uid: 11333
components:
- type: Transform
- pos: 88.5,37.5
+ pos: 71.5,47.5
parent: 2
- uid: 11334
components:
- type: Transform
- pos: 87.5,37.5
+ pos: 71.5,46.5
parent: 2
- uid: 11335
components:
- type: Transform
- pos: 86.5,37.5
+ pos: 71.5,45.5
parent: 2
- uid: 11336
components:
- type: Transform
- pos: 85.5,37.5
+ pos: 71.5,44.5
parent: 2
- uid: 11337
components:
- type: Transform
- pos: 84.5,37.5
+ pos: 71.5,43.5
parent: 2
- uid: 11338
components:
- type: Transform
- pos: 83.5,37.5
+ pos: 72.5,55.5
parent: 2
- uid: 11339
components:
- type: Transform
- pos: 82.5,37.5
+ pos: 72.5,54.5
parent: 2
- uid: 11340
components:
- type: Transform
- pos: 81.5,37.5
+ pos: 72.5,53.5
parent: 2
- uid: 11341
components:
- type: Transform
- pos: 80.5,37.5
+ pos: 72.5,52.5
parent: 2
- uid: 11342
components:
- type: Transform
- pos: 79.5,37.5
+ pos: 72.5,51.5
parent: 2
- uid: 11343
components:
- type: Transform
- pos: 78.5,37.5
+ pos: 72.5,50.5
parent: 2
- uid: 11344
components:
- type: Transform
- pos: 77.5,37.5
+ pos: 72.5,49.5
parent: 2
- uid: 11345
components:
- type: Transform
- pos: 76.5,37.5
+ pos: 72.5,48.5
parent: 2
- uid: 11346
components:
- type: Transform
- pos: 74.5,37.5
+ pos: 72.5,47.5
parent: 2
- uid: 11347
components:
- type: Transform
- pos: 73.5,37.5
+ pos: 72.5,46.5
parent: 2
- uid: 11348
components:
- type: Transform
- pos: 72.5,37.5
+ pos: 72.5,45.5
parent: 2
- uid: 11349
components:
- type: Transform
- pos: 75.5,37.5
+ pos: 72.5,44.5
parent: 2
- uid: 11350
components:
- type: Transform
- pos: 70.5,37.5
+ pos: 72.5,43.5
parent: 2
- uid: 11351
components:
- type: Transform
- pos: 69.5,37.5
+ pos: 73.5,55.5
parent: 2
- uid: 11352
components:
- type: Transform
- pos: 71.5,37.5
+ pos: 73.5,54.5
parent: 2
- uid: 11353
components:
- type: Transform
- pos: 67.5,37.5
+ pos: 73.5,53.5
parent: 2
- uid: 11354
components:
- type: Transform
- pos: 68.5,37.5
+ pos: 73.5,52.5
parent: 2
- uid: 11355
components:
- type: Transform
- pos: 52.5,37.5
+ pos: 73.5,51.5
parent: 2
- uid: 11356
components:
- type: Transform
- pos: 69.5,36.5
+ pos: 73.5,50.5
parent: 2
- uid: 11357
components:
- type: Transform
- pos: 70.5,36.5
+ pos: 73.5,49.5
parent: 2
- uid: 11358
components:
- type: Transform
- pos: 72.5,36.5
+ pos: 73.5,48.5
parent: 2
- uid: 11359
components:
- type: Transform
- pos: 73.5,36.5
+ pos: 73.5,47.5
parent: 2
- uid: 11360
components:
- type: Transform
- pos: 74.5,36.5
+ pos: 73.5,46.5
parent: 2
- uid: 11361
components:
- type: Transform
- pos: 71.5,36.5
+ pos: 73.5,45.5
parent: 2
- uid: 11362
components:
- type: Transform
- pos: 76.5,36.5
+ pos: 73.5,44.5
parent: 2
- uid: 11363
components:
- type: Transform
- pos: 77.5,36.5
+ pos: 73.5,43.5
parent: 2
- uid: 11364
components:
- type: Transform
- pos: 78.5,36.5
+ pos: 74.5,55.5
parent: 2
- uid: 11365
components:
- type: Transform
- pos: 75.5,36.5
+ pos: 74.5,54.5
parent: 2
- uid: 11366
components:
- type: Transform
- pos: 79.5,36.5
+ pos: 74.5,53.5
parent: 2
- uid: 11367
components:
- type: Transform
- pos: 80.5,36.5
+ pos: 74.5,52.5
parent: 2
- uid: 11368
components:
- type: Transform
- pos: 81.5,36.5
+ pos: 74.5,51.5
parent: 2
- uid: 11369
components:
- type: Transform
- pos: 82.5,36.5
+ pos: 74.5,50.5
parent: 2
- uid: 11370
components:
- type: Transform
- pos: 83.5,36.5
+ pos: 74.5,49.5
parent: 2
- uid: 11371
components:
- type: Transform
- pos: 85.5,36.5
+ pos: 74.5,48.5
parent: 2
- uid: 11372
components:
- type: Transform
- pos: 84.5,36.5
+ pos: 74.5,47.5
parent: 2
- uid: 11373
components:
- type: Transform
- pos: 86.5,36.5
+ pos: 74.5,46.5
parent: 2
- uid: 11374
components:
- type: Transform
- pos: 87.5,36.5
+ pos: 74.5,45.5
parent: 2
- uid: 11375
components:
- type: Transform
- pos: 88.5,36.5
+ pos: 74.5,44.5
parent: 2
- uid: 11376
components:
- type: Transform
- pos: 89.5,36.5
+ pos: 74.5,43.5
parent: 2
- uid: 11377
components:
- type: Transform
- pos: 90.5,36.5
+ pos: 75.5,55.5
parent: 2
- uid: 11378
components:
- type: Transform
- pos: 91.5,36.5
+ pos: 75.5,54.5
parent: 2
- uid: 11379
components:
- type: Transform
- pos: 93.5,36.5
+ pos: 75.5,53.5
parent: 2
- uid: 11380
components:
- type: Transform
- pos: 92.5,36.5
+ pos: 75.5,52.5
parent: 2
- uid: 11381
components:
- type: Transform
- pos: 94.5,36.5
+ pos: 75.5,51.5
parent: 2
- uid: 11382
components:
- type: Transform
- pos: 95.5,36.5
+ pos: 75.5,50.5
parent: 2
- uid: 11383
components:
- type: Transform
- pos: 98.5,38.5
+ pos: 75.5,49.5
parent: 2
- uid: 11384
components:
- type: Transform
- pos: 99.5,39.5
+ pos: 75.5,48.5
parent: 2
- uid: 11385
components:
- type: Transform
- pos: 93.5,35.5
+ pos: 75.5,47.5
parent: 2
- uid: 11386
components:
- type: Transform
- pos: 92.5,35.5
+ pos: 75.5,46.5
parent: 2
- uid: 11387
components:
- type: Transform
- pos: 91.5,35.5
+ pos: 75.5,45.5
parent: 2
- uid: 11388
components:
- type: Transform
- pos: 90.5,35.5
+ pos: 75.5,44.5
parent: 2
- uid: 11389
components:
- type: Transform
- pos: 89.5,35.5
+ pos: 75.5,43.5
parent: 2
- uid: 11400
components:
- type: Transform
- pos: 88.5,35.5
+ pos: 57.5,47.5
parent: 2
- uid: 11401
components:
- type: Transform
- pos: 87.5,35.5
+ pos: 75.5,42.5
parent: 2
- uid: 11402
components:
- type: Transform
- pos: 86.5,35.5
+ pos: 74.5,42.5
parent: 2
- uid: 11403
components:
- type: Transform
- pos: 85.5,35.5
+ pos: 73.5,42.5
parent: 2
- uid: 11404
components:
- type: Transform
- pos: 84.5,35.5
+ pos: 72.5,42.5
parent: 2
- uid: 11405
components:
- type: Transform
- pos: 83.5,35.5
+ pos: 71.5,42.5
parent: 2
- uid: 11406
components:
- type: Transform
- pos: 82.5,35.5
+ pos: 70.5,42.5
parent: 2
- uid: 11407
components:
- type: Transform
- pos: 81.5,35.5
+ pos: 69.5,42.5
parent: 2
- uid: 11408
components:
- type: Transform
- pos: 80.5,35.5
+ pos: 68.5,42.5
parent: 2
- uid: 11409
components:
- type: Transform
- pos: 79.5,35.5
+ pos: 67.5,42.5
parent: 2
- uid: 11410
components:
- type: Transform
- pos: 78.5,35.5
+ pos: 66.5,42.5
parent: 2
- uid: 11411
components:
- type: Transform
- pos: 77.5,35.5
+ pos: 65.5,42.5
parent: 2
- uid: 11412
components:
- type: Transform
- pos: 75.5,35.5
+ pos: 63.5,42.5
parent: 2
- uid: 11413
components:
- type: Transform
- pos: 74.5,35.5
+ pos: 62.5,42.5
parent: 2
- uid: 11414
components:
- type: Transform
- pos: 73.5,35.5
+ pos: 61.5,42.5
parent: 2
- uid: 11415
components:
- type: Transform
- pos: 72.5,35.5
+ pos: 56.5,60.5
parent: 2
- uid: 11416
components:
- type: Transform
- pos: 76.5,35.5
+ pos: 64.5,42.5
parent: 2
- uid: 11417
components:
- type: Transform
- pos: 90.5,34.5
+ pos: 55.5,62.5
parent: 2
- uid: 11418
components:
- type: Transform
- pos: 89.5,34.5
+ pos: 55.5,61.5
parent: 2
- uid: 11419
components:
- type: Transform
- pos: 88.5,34.5
+ pos: 58.5,63.5
parent: 2
- uid: 11420
components:
- type: Transform
- pos: 87.5,34.5
+ pos: 55.5,60.5
parent: 2
- uid: 11421
components:
- type: Transform
- pos: 86.5,34.5
+ pos: 55.5,59.5
parent: 2
- uid: 11422
components:
- type: Transform
- pos: 85.5,34.5
+ pos: 58.5,59.5
parent: 2
- uid: 11423
components:
- type: Transform
- pos: 84.5,34.5
- parent: 2
- - uid: 11424
- components:
- - type: Transform
- pos: 83.5,34.5
- parent: 2
- - uid: 11425
- components:
- - type: Transform
- pos: 82.5,34.5
- parent: 2
- - uid: 11426
- components:
- - type: Transform
- pos: 81.5,34.5
- parent: 2
- - uid: 11427
- components:
- - type: Transform
- pos: 80.5,34.5
- parent: 2
- - uid: 11428
- components:
- - type: Transform
- pos: 78.5,34.5
- parent: 2
- - uid: 11429
- components:
- - type: Transform
- pos: 77.5,34.5
- parent: 2
- - uid: 11430
- components:
- - type: Transform
- pos: 76.5,34.5
- parent: 2
- - uid: 11431
- components:
- - type: Transform
- pos: 79.5,34.5
- parent: 2
- - uid: 11432
- components:
- - type: Transform
- pos: 75.5,34.5
- parent: 2
- - uid: 11433
- components:
- - type: Transform
- pos: 74.5,34.5
- parent: 2
- - uid: 11434
- components:
- - type: Transform
- pos: 92.5,34.5
+ pos: 56.5,63.5
parent: 2
- uid: 11435
components:
- type: Transform
- pos: 91.5,34.5
+ pos: 53.5,48.5
parent: 2
- uid: 11436
components:
- type: Transform
- pos: 92.5,33.5
+ pos: 53.5,49.5
parent: 2
- uid: 11450
components:
- type: Transform
- pos: 91.5,33.5
+ pos: 53.5,50.5
parent: 2
- uid: 11451
components:
- type: Transform
- pos: 90.5,33.5
+ pos: 100.5,41.5
parent: 2
- uid: 11452
components:
- type: Transform
- pos: 89.5,33.5
+ pos: 99.5,41.5
parent: 2
- uid: 11453
components:
- type: Transform
- pos: 88.5,33.5
+ pos: 98.5,41.5
parent: 2
- uid: 11454
components:
- type: Transform
- pos: 87.5,33.5
+ pos: 97.5,41.5
parent: 2
- uid: 11455
components:
- type: Transform
- pos: 86.5,33.5
+ pos: 96.5,41.5
parent: 2
- uid: 11456
components:
- type: Transform
- pos: 85.5,33.5
+ pos: 95.5,41.5
parent: 2
- uid: 11457
components:
- type: Transform
- pos: 84.5,33.5
+ pos: 94.5,41.5
parent: 2
- uid: 11458
components:
- type: Transform
- pos: 83.5,33.5
+ pos: 93.5,41.5
parent: 2
- uid: 11459
components:
- type: Transform
- pos: 82.5,33.5
+ pos: 92.5,41.5
parent: 2
- uid: 11460
components:
- type: Transform
- pos: 92.5,32.5
+ pos: 91.5,41.5
parent: 2
- uid: 11461
components:
- type: Transform
- pos: 92.5,31.5
+ pos: 90.5,41.5
parent: 2
- uid: 11462
components:
- type: Transform
- pos: 91.5,32.5
+ pos: 89.5,41.5
parent: 2
- uid: 11463
components:
- type: Transform
- pos: 91.5,31.5
+ pos: 88.5,41.5
parent: 2
- uid: 11464
components:
- type: Transform
- pos: 91.5,30.5
+ pos: 87.5,41.5
parent: 2
- uid: 11465
components:
- type: Transform
- pos: 91.5,29.5
+ pos: 86.5,41.5
parent: 2
- uid: 11466
components:
- type: Transform
- pos: 91.5,28.5
+ pos: 85.5,41.5
parent: 2
- uid: 11467
components:
- type: Transform
- pos: 90.5,30.5
+ pos: 43.5,7.5
parent: 2
- uid: 11468
components:
- type: Transform
- pos: 90.5,29.5
+ pos: 77.5,41.5
parent: 2
- uid: 11469
components:
- type: Transform
- pos: 90.5,28.5
+ pos: 76.5,41.5
parent: 2
- uid: 11470
components:
- type: Transform
- pos: 89.5,30.5
+ pos: 75.5,41.5
parent: 2
- uid: 11471
components:
- type: Transform
- pos: 89.5,29.5
+ pos: 74.5,41.5
parent: 2
- uid: 11472
components:
- type: Transform
- pos: 89.5,28.5
+ pos: 73.5,41.5
parent: 2
- uid: 11473
components:
- type: Transform
- pos: 90.5,27.5
+ pos: 72.5,41.5
parent: 2
- uid: 11474
components:
- type: Transform
- pos: 90.5,26.5
+ pos: 70.5,41.5
parent: 2
- uid: 11475
components:
- type: Transform
- pos: 90.5,25.5
+ pos: 69.5,41.5
parent: 2
- uid: 11476
components:
- type: Transform
- pos: 89.5,27.5
+ pos: 68.5,41.5
parent: 2
- uid: 11477
components:
- type: Transform
- pos: 89.5,26.5
+ pos: 71.5,41.5
parent: 2
- uid: 11478
components:
- type: Transform
- pos: 89.5,25.5
+ pos: 66.5,41.5
parent: 2
- uid: 11479
components:
- type: Transform
- pos: 89.5,24.5
+ pos: 67.5,41.5
parent: 2
- uid: 11480
components:
- type: Transform
- pos: 89.5,23.5
+ pos: 65.5,41.5
parent: 2
- uid: 11486
components:
- type: Transform
- pos: 89.5,22.5
+ pos: 64.5,41.5
parent: 2
- uid: 11496
components:
- type: Transform
- pos: 89.5,21.5
- parent: 2
- - uid: 11513
- components:
- - type: Transform
- pos: 88.5,25.5
- parent: 2
- - uid: 11514
- components:
- - type: Transform
- pos: 88.5,24.5
- parent: 2
- - uid: 11516
- components:
- - type: Transform
- pos: 88.5,23.5
- parent: 2
- - uid: 11517
- components:
- - type: Transform
- pos: 88.5,22.5
- parent: 2
- - uid: 11518
- components:
- - type: Transform
- pos: 88.5,21.5
- parent: 2
- - uid: 11519
- components:
- - type: Transform
- pos: 88.5,20.5
- parent: 2
- - uid: 11520
- components:
- - type: Transform
- pos: 88.5,19.5
- parent: 2
- - uid: 11521
- components:
- - type: Transform
- pos: 88.5,18.5
- parent: 2
- - uid: 11522
- components:
- - type: Transform
- pos: 87.5,17.5
- parent: 2
- - uid: 11523
- components:
- - type: Transform
- pos: 87.5,16.5
- parent: 2
- - uid: 11524
- components:
- - type: Transform
- pos: 80.5,12.5
- parent: 2
- - uid: 11525
- components:
- - type: Transform
- pos: 79.5,12.5
- parent: 2
- - uid: 11526
- components:
- - type: Transform
- pos: 78.5,12.5
- parent: 2
- - uid: 11527
- components:
- - type: Transform
- pos: 77.5,12.5
- parent: 2
- - uid: 11528
- components:
- - type: Transform
- pos: 76.5,12.5
- parent: 2
- - uid: 11529
- components:
- - type: Transform
- pos: 76.5,11.5
- parent: 2
- - uid: 11530
- components:
- - type: Transform
- pos: 75.5,12.5
+ pos: 63.5,41.5
parent: 2
- uid: 11531
components:
- type: Transform
- pos: 75.5,11.5
+ pos: 64.5,40.5
parent: 2
- uid: 11532
components:
- type: Transform
- pos: 75.5,10.5
+ pos: 65.5,40.5
parent: 2
- uid: 11533
components:
- type: Transform
- pos: 74.5,12.5
+ pos: 67.5,40.5
parent: 2
- uid: 11534
components:
- type: Transform
- pos: 74.5,11.5
+ pos: 68.5,40.5
parent: 2
- uid: 11535
components:
- type: Transform
- pos: 76.5,10.5
+ pos: 69.5,40.5
parent: 2
- uid: 11536
components:
- type: Transform
- pos: 74.5,10.5
+ pos: 66.5,40.5
parent: 2
- uid: 11537
components:
- type: Transform
- pos: 73.5,11.5
+ pos: 70.5,40.5
parent: 2
- uid: 11538
components:
- type: Transform
- pos: 73.5,10.5
+ pos: 71.5,40.5
parent: 2
- uid: 11539
components:
- type: Transform
- pos: 72.5,12.5
+ pos: 72.5,40.5
parent: 2
- uid: 11540
components:
- type: Transform
- pos: 72.5,11.5
+ pos: 73.5,40.5
parent: 2
- uid: 11541
components:
- type: Transform
- pos: 72.5,10.5
+ pos: 74.5,40.5
parent: 2
- uid: 11542
components:
- type: Transform
- pos: 71.5,12.5
+ pos: 76.5,40.5
parent: 2
- uid: 11543
components:
- type: Transform
- pos: 73.5,12.5
+ pos: 75.5,40.5
parent: 2
- uid: 11544
components:
- type: Transform
- pos: 71.5,11.5
+ pos: 77.5,40.5
parent: 2
- uid: 11545
components:
- type: Transform
- pos: 71.5,10.5
+ pos: 42.5,7.5
parent: 2
- uid: 11546
components:
- type: Transform
- pos: 70.5,12.5
+ pos: 85.5,40.5
parent: 2
- uid: 11547
components:
- type: Transform
- pos: 70.5,11.5
+ pos: 86.5,40.5
parent: 2
- uid: 11548
components:
- type: Transform
- pos: 70.5,10.5
+ pos: 87.5,40.5
parent: 2
- uid: 11549
components:
- type: Transform
- pos: 69.5,10.5
+ pos: 88.5,40.5
parent: 2
- uid: 11550
components:
- type: Transform
- pos: 68.5,10.5
+ pos: 89.5,40.5
parent: 2
- uid: 11551
components:
- type: Transform
- pos: 68.5,9.5
+ pos: 90.5,40.5
parent: 2
- uid: 11552
components:
- type: Transform
- pos: 67.5,10.5
+ pos: 91.5,40.5
parent: 2
- uid: 11553
components:
- type: Transform
- pos: 67.5,9.5
+ pos: 92.5,40.5
parent: 2
- uid: 11554
components:
- type: Transform
- pos: 69.5,9.5
+ pos: 93.5,40.5
parent: 2
- uid: 11555
components:
- type: Transform
- pos: 77.5,11.5
+ pos: 94.5,40.5
parent: 2
- uid: 11556
components:
- type: Transform
- pos: 67.5,8.5
+ pos: 95.5,40.5
parent: 2
- uid: 11557
components:
- type: Transform
- pos: 66.5,7.5
+ pos: 96.5,40.5
parent: 2
- uid: 11558
components:
- type: Transform
- pos: 67.5,7.5
+ pos: 97.5,40.5
parent: 2
- uid: 11559
components:
- type: Transform
- pos: 68.5,8.5
+ pos: 98.5,40.5
parent: 2
- uid: 11560
components:
- type: Transform
- pos: 69.5,8.5
+ pos: 99.5,40.5
parent: 2
- uid: 11561
components:
- type: Transform
- pos: 70.5,9.5
+ pos: 100.5,40.5
parent: 2
- uid: 11562
components:
- type: Transform
- pos: 71.5,9.5
+ pos: 97.5,39.5
parent: 2
- uid: 11563
components:
- type: Transform
- pos: 66.5,6.5
+ pos: 96.5,39.5
parent: 2
- uid: 11568
components:
- type: Transform
- pos: 89.5,20.5
+ pos: 95.5,39.5
parent: 2
- uid: 11585
components:
- type: Transform
- pos: 90.5,23.5
+ pos: 94.5,39.5
parent: 2
- uid: 11586
components:
- type: Transform
- pos: 90.5,24.5
+ pos: 93.5,39.5
parent: 2
- uid: 11587
components:
- type: Transform
- pos: 91.5,23.5
+ pos: 92.5,39.5
parent: 2
- uid: 11588
components:
- type: Transform
- pos: 91.5,24.5
+ pos: 91.5,39.5
parent: 2
- uid: 11589
components:
- type: Transform
- pos: 91.5,25.5
+ pos: 90.5,39.5
parent: 2
- uid: 11590
components:
- type: Transform
- pos: 91.5,26.5
+ pos: 89.5,39.5
parent: 2
- uid: 11591
components:
- type: Transform
- pos: 91.5,27.5
+ pos: 88.5,39.5
parent: 2
- uid: 11592
components:
- type: Transform
- pos: 92.5,26.5
+ pos: 87.5,39.5
parent: 2
- uid: 11593
components:
- type: Transform
- pos: 92.5,24.5
+ pos: 86.5,39.5
parent: 2
- uid: 11594
components:
- type: Transform
- pos: 92.5,25.5
+ pos: 85.5,39.5
parent: 2
- uid: 11595
components:
- type: Transform
- pos: 93.5,25.5
+ pos: 77.5,39.5
parent: 2
- uid: 11596
components:
- type: Transform
- pos: 93.5,26.5
+ pos: 76.5,39.5
parent: 2
- uid: 11597
components:
- type: Transform
- pos: 92.5,27.5
+ pos: 75.5,39.5
parent: 2
- uid: 11598
components:
- type: Transform
- pos: 90.5,32.5
+ pos: 74.5,39.5
parent: 2
- uid: 11599
components:
- type: Transform
- pos: 90.5,31.5
+ pos: 73.5,39.5
parent: 2
- uid: 11600
components:
- type: Transform
- pos: 89.5,32.5
+ pos: 72.5,39.5
parent: 2
- uid: 11601
components:
- type: Transform
- pos: 89.5,31.5
+ pos: 71.5,39.5
parent: 2
- uid: 11624
components:
- type: Transform
- pos: 88.5,32.5
+ pos: 70.5,39.5
parent: 2
- uid: 11625
components:
- type: Transform
- pos: 88.5,31.5
+ pos: 69.5,39.5
parent: 2
- uid: 11626
components:
- type: Transform
- pos: 88.5,30.5
+ pos: 68.5,39.5
parent: 2
- uid: 11627
components:
- type: Transform
- pos: 88.5,29.5
+ pos: 67.5,39.5
parent: 2
- uid: 11628
components:
- type: Transform
- pos: 88.5,28.5
- parent: 2
- - uid: 11629
- components:
- - type: Transform
- pos: 88.5,27.5
- parent: 2
- - uid: 11630
- components:
- - type: Transform
- pos: 88.5,26.5
- parent: 2
- - uid: 11631
- components:
- - type: Transform
- pos: 87.5,32.5
- parent: 2
- - uid: 11632
- components:
- - type: Transform
- pos: 87.5,31.5
+ pos: 66.5,39.5
parent: 2
- uid: 11633
components:
- type: Transform
- pos: 87.5,30.5
+ pos: 98.5,39.5
parent: 2
- uid: 11634
components:
- type: Transform
- pos: 87.5,29.5
+ pos: 97.5,38.5
parent: 2
- uid: 11635
components:
- type: Transform
- pos: 87.5,28.5
+ pos: 96.5,38.5
parent: 2
- uid: 11636
components:
- type: Transform
- pos: 87.5,27.5
+ pos: 95.5,38.5
parent: 2
- uid: 11637
components:
- type: Transform
- pos: 86.5,31.5
+ pos: 94.5,38.5
parent: 2
- uid: 11638
components:
- type: Transform
- pos: 86.5,30.5
+ pos: 93.5,38.5
parent: 2
- uid: 11639
components:
- type: Transform
- pos: 86.5,32.5
+ pos: 92.5,38.5
parent: 2
- uid: 11640
components:
- type: Transform
- pos: 85.5,32.5
+ pos: 91.5,38.5
parent: 2
- uid: 11641
components:
- type: Transform
- pos: 84.5,32.5
+ pos: 90.5,38.5
parent: 2
- uid: 11642
components:
- type: Transform
- pos: 2.5,-50.5
+ pos: 89.5,38.5
parent: 2
- uid: 11643
components:
- type: Transform
- pos: -3.5,-52.5
+ pos: 88.5,38.5
parent: 2
- uid: 11644
components:
- type: Transform
- pos: 9.5,-47.5
+ pos: 87.5,38.5
parent: 2
- uid: 11645
components:
- type: Transform
- pos: 1.5,-51.5
+ pos: 86.5,38.5
parent: 2
- uid: 11646
components:
- type: Transform
- pos: 1.5,-50.5
+ pos: 85.5,38.5
parent: 2
- uid: 11647
components:
- type: Transform
- pos: 24.5,16.5
+ pos: 48.5,7.5
parent: 2
- uid: 11648
components:
- type: Transform
- pos: 24.5,18.5
+ pos: 44.5,10.5
parent: 2
- uid: 11649
components:
- type: Transform
- pos: 24.5,17.5
+ pos: 45.5,10.5
parent: 2
- uid: 11650
components:
- type: Transform
- pos: 81.5,33.5
+ pos: 52.5,8.5
parent: 2
- uid: 11651
components:
- type: Transform
- pos: 24.5,14.5
+ pos: 46.5,10.5
parent: 2
- uid: 11652
components:
- type: Transform
- pos: 24.5,15.5
+ pos: 47.5,10.5
parent: 2
- uid: 11653
components:
- type: Transform
- pos: 80.5,33.5
+ pos: 77.5,38.5
parent: 2
- uid: 11654
components:
- type: Transform
- pos: 2.5,-51.5
+ pos: 76.5,38.5
parent: 2
- uid: 11655
components:
- type: Transform
- pos: -4.5,-51.5
+ pos: 75.5,38.5
parent: 2
- uid: 11656
components:
- type: Transform
- pos: -3.5,-48.5
+ pos: 74.5,38.5
parent: 2
- uid: 11657
components:
- type: Transform
- pos: 2.5,-49.5
+ pos: 73.5,38.5
parent: 2
- uid: 11658
components:
- type: Transform
- pos: 79.5,33.5
+ pos: 72.5,38.5
parent: 2
- uid: 11659
components:
- type: Transform
- pos: 13.5,-47.5
+ pos: 71.5,38.5
parent: 2
- uid: 11660
components:
- type: Transform
- pos: 78.5,33.5
+ pos: 70.5,38.5
parent: 2
- uid: 11661
components:
- type: Transform
- pos: -3.5,-51.5
+ pos: 69.5,38.5
parent: 2
- uid: 11662
components:
- type: Transform
- pos: 26.5,-15.5
+ pos: 68.5,38.5
parent: 2
- uid: 11663
components:
- type: Transform
- pos: 26.5,-16.5
+ pos: 67.5,38.5
parent: 2
- uid: 11664
components:
- type: Transform
- pos: 26.5,-17.5
- parent: 2
- - uid: 11670
- components:
- - type: Transform
- pos: 10.5,-47.5
+ pos: 66.5,38.5
parent: 2
- uid: 11671
components:
- type: Transform
- pos: 77.5,33.5
+ pos: 97.5,37.5
parent: 2
- uid: 11672
components:
- type: Transform
- pos: 2.5,-52.5
+ pos: 96.5,37.5
parent: 2
- uid: 11680
components:
- type: Transform
- pos: 11.5,-47.5
+ pos: 95.5,37.5
parent: 2
- uid: 11681
components:
- type: Transform
- pos: 12.5,-47.5
+ pos: 94.5,37.5
parent: 2
- uid: 11682
components:
- type: Transform
- pos: -3.5,-49.5
+ pos: 93.5,37.5
parent: 2
- uid: 11684
components:
- type: Transform
- pos: 76.5,33.5
+ pos: 92.5,37.5
parent: 2
- uid: 11687
components:
- type: Transform
- pos: 27.5,-15.5
+ pos: 91.5,37.5
parent: 2
- uid: 11689
components:
- type: Transform
- pos: 30.5,1.5
+ pos: 90.5,37.5
parent: 2
- uid: 11690
components:
- type: Transform
- pos: 30.5,3.5
+ pos: 89.5,37.5
parent: 2
- uid: 11691
components:
- type: Transform
- pos: 30.5,-12.5
+ pos: 88.5,37.5
parent: 2
- uid: 11694
components:
- type: Transform
- pos: 27.5,-16.5
+ pos: 87.5,37.5
parent: 2
- uid: 11695
components:
- type: Transform
- pos: 25.5,-14.5
+ pos: 86.5,37.5
parent: 2
- uid: 11696
components:
- type: Transform
- pos: 35.5,5.5
+ pos: 85.5,37.5
parent: 2
- uid: 11697
components:
- type: Transform
- pos: 28.5,-14.5
+ pos: 84.5,37.5
parent: 2
- uid: 11698
components:
- type: Transform
- pos: 30.5,-7.5
+ pos: 83.5,37.5
parent: 2
- uid: 11699
components:
- type: Transform
- pos: 30.5,-10.5
+ pos: 82.5,37.5
parent: 2
- uid: 11700
components:
- type: Transform
- pos: 27.5,-14.5
+ pos: 81.5,37.5
parent: 2
- uid: 11701
components:
- type: Transform
- pos: 26.5,-14.5
+ pos: 80.5,37.5
parent: 2
- uid: 11702
components:
- type: Transform
- pos: 34.5,4.5
+ pos: 79.5,37.5
parent: 2
- uid: 11703
components:
- type: Transform
- pos: 75.5,33.5
+ pos: 78.5,37.5
parent: 2
- uid: 11704
components:
- type: Transform
- pos: 34.5,7.5
+ pos: 77.5,37.5
parent: 2
- uid: 11705
components:
- type: Transform
- pos: 27.5,-13.5
+ pos: 76.5,37.5
parent: 2
- uid: 11706
components:
- type: Transform
- pos: 30.5,-5.5
+ pos: 74.5,37.5
parent: 2
- uid: 11707
components:
- type: Transform
- pos: 30.5,-6.5
+ pos: 73.5,37.5
parent: 2
- uid: 11708
components:
- type: Transform
- pos: 30.5,-4.5
+ pos: 72.5,37.5
parent: 2
- uid: 11709
components:
- type: Transform
- pos: 30.5,0.5
+ pos: 75.5,37.5
parent: 2
- uid: 11710
components:
- type: Transform
- pos: 35.5,6.5
+ pos: 70.5,37.5
parent: 2
- uid: 11711
components:
- type: Transform
- pos: 36.5,6.5
+ pos: 69.5,37.5
parent: 2
- uid: 11712
components:
- type: Transform
- pos: 29.5,-14.5
+ pos: 71.5,37.5
parent: 2
- uid: 11713
components:
- type: Transform
- pos: 25.5,-13.5
+ pos: 67.5,37.5
parent: 2
- uid: 11714
components:
- type: Transform
- pos: 28.5,-13.5
+ pos: 68.5,37.5
parent: 2
- uid: 11715
components:
- type: Transform
- pos: 26.5,-13.5
+ pos: 52.5,37.5
parent: 2
- uid: 11716
components:
- type: Transform
- pos: 29.5,-13.5
+ pos: 69.5,36.5
parent: 2
- uid: 11717
components:
- type: Transform
- pos: 36.5,5.5
+ pos: 70.5,36.5
parent: 2
- uid: 11718
components:
- type: Transform
- pos: 34.5,6.5
+ pos: 72.5,36.5
parent: 2
- uid: 11721
components:
- type: Transform
- pos: 30.5,-0.5
+ pos: 73.5,36.5
parent: 2
- uid: 11722
components:
- type: Transform
- pos: 31.5,-9.5
+ pos: 74.5,36.5
parent: 2
- uid: 11723
components:
- type: Transform
- pos: 31.5,-4.5
+ pos: 71.5,36.5
parent: 2
- uid: 11724
components:
- type: Transform
- pos: 31.5,1.5
+ pos: 76.5,36.5
parent: 2
- uid: 11725
components:
- type: Transform
- pos: 31.5,-8.5
+ pos: 77.5,36.5
parent: 2
- uid: 11726
components:
- type: Transform
- pos: 31.5,-6.5
+ pos: 78.5,36.5
parent: 2
- uid: 11727
components:
- type: Transform
- pos: 30.5,-11.5
+ pos: 75.5,36.5
parent: 2
- uid: 11728
components:
- type: Transform
- pos: 30.5,-8.5
+ pos: 79.5,36.5
parent: 2
- uid: 11729
components:
- type: Transform
- pos: 31.5,-7.5
+ pos: 80.5,36.5
parent: 2
- uid: 11730
components:
- type: Transform
- pos: 31.5,-3.5
+ pos: 81.5,36.5
parent: 2
- uid: 11731
components:
- type: Transform
- pos: 30.5,2.5
+ pos: 82.5,36.5
parent: 2
- uid: 11732
components:
- type: Transform
- pos: 30.5,-9.5
+ pos: 83.5,36.5
parent: 2
- uid: 11733
components:
- type: Transform
- pos: 31.5,-2.5
+ pos: 85.5,36.5
parent: 2
- uid: 11734
components:
- type: Transform
- pos: 31.5,-1.5
+ pos: 84.5,36.5
parent: 2
- uid: 11735
components:
- type: Transform
- pos: 30.5,-3.5
+ pos: 86.5,36.5
parent: 2
- uid: 11736
components:
- type: Transform
- pos: 30.5,-1.5
+ pos: 87.5,36.5
parent: 2
- uid: 11737
components:
- type: Transform
- pos: 31.5,3.5
+ pos: 88.5,36.5
parent: 2
- uid: 11738
components:
- type: Transform
- pos: 31.5,2.5
+ pos: 89.5,36.5
parent: 2
- uid: 11739
components:
- type: Transform
- pos: 31.5,-0.5
+ pos: 90.5,36.5
parent: 2
- uid: 11740
components:
- type: Transform
- pos: 30.5,-2.5
+ pos: 91.5,36.5
parent: 2
- uid: 11741
components:
- type: Transform
- pos: 31.5,-5.5
+ pos: 93.5,36.5
parent: 2
- uid: 11743
components:
- type: Transform
- pos: 34.5,5.5
+ pos: 92.5,36.5
parent: 2
- uid: 11744
components:
- type: Transform
- pos: 31.5,0.5
+ pos: 94.5,36.5
parent: 2
- uid: 11745
components:
- type: Transform
- pos: 35.5,4.5
+ pos: 95.5,36.5
parent: 2
- uid: 11746
components:
- type: Transform
- pos: 36.5,12.5
+ pos: 98.5,38.5
parent: 2
- uid: 11747
components:
- type: Transform
- pos: 36.5,11.5
+ pos: 99.5,39.5
parent: 2
- uid: 11748
components:
- type: Transform
- pos: 35.5,7.5
+ pos: 93.5,35.5
parent: 2
- uid: 11749
components:
- type: Transform
- pos: -4.5,-50.5
+ pos: 92.5,35.5
parent: 2
- uid: 11750
components:
- type: Transform
- pos: -4.5,-49.5
+ pos: 91.5,35.5
parent: 2
- uid: 11751
components:
- type: Transform
- pos: 65.5,15.5
+ pos: 90.5,35.5
parent: 2
- uid: 11752
components:
- type: Transform
- pos: 64.5,15.5
+ pos: 89.5,35.5
parent: 2
- uid: 11753
components:
- type: Transform
- pos: 63.5,15.5
+ pos: 88.5,35.5
parent: 2
- uid: 11754
components:
- type: Transform
- pos: 62.5,15.5
+ pos: 87.5,35.5
parent: 2
- uid: 11755
components:
- type: Transform
- pos: 61.5,16.5
+ pos: 86.5,35.5
parent: 2
- uid: 11756
components:
- type: Transform
- pos: 61.5,15.5
+ pos: 85.5,35.5
parent: 2
- uid: 11757
components:
- type: Transform
- pos: 60.5,16.5
+ pos: 84.5,35.5
parent: 2
- uid: 11758
components:
- type: Transform
- pos: 60.5,15.5
+ pos: 83.5,35.5
parent: 2
- uid: 11759
components:
- type: Transform
- pos: 74.5,13.5
+ pos: 82.5,35.5
parent: 2
- uid: 11760
components:
- type: Transform
- pos: 73.5,13.5
+ pos: 81.5,35.5
parent: 2
- uid: 11761
components:
- type: Transform
- pos: 72.5,13.5
+ pos: 80.5,35.5
parent: 2
- uid: 11762
components:
- type: Transform
- pos: 71.5,13.5
+ pos: 79.5,35.5
parent: 2
- uid: 11763
components:
- type: Transform
- pos: 70.5,13.5
+ pos: 78.5,35.5
parent: 2
- uid: 11764
components:
- type: Transform
- pos: 69.5,13.5
+ pos: 77.5,35.5
parent: 2
- uid: 11765
components:
- type: Transform
- pos: 68.5,13.5
+ pos: 75.5,35.5
parent: 2
- uid: 11766
components:
- type: Transform
- pos: 67.5,14.5
+ pos: 74.5,35.5
parent: 2
- uid: 11767
components:
- type: Transform
- pos: 66.5,14.5
+ pos: 73.5,35.5
parent: 2
- uid: 11768
components:
- type: Transform
- pos: 66.5,13.5
+ pos: 72.5,35.5
parent: 2
- uid: 11769
components:
- type: Transform
- pos: 67.5,13.5
+ pos: 76.5,35.5
parent: 2
- uid: 11770
components:
- type: Transform
- pos: 65.5,13.5
+ pos: 90.5,34.5
parent: 2
- uid: 11771
components:
- type: Transform
- pos: 65.5,14.5
+ pos: 89.5,34.5
parent: 2
- uid: 11772
components:
- type: Transform
- pos: 64.5,14.5
+ pos: 88.5,34.5
parent: 2
- uid: 11773
components:
- type: Transform
- pos: 63.5,14.5
+ pos: 87.5,34.5
parent: 2
- uid: 11774
components:
- type: Transform
- pos: 63.5,13.5
+ pos: 86.5,34.5
parent: 2
- uid: 11775
components:
- type: Transform
- pos: 62.5,14.5
+ pos: 85.5,34.5
parent: 2
- uid: 11776
components:
- type: Transform
- pos: 64.5,13.5
+ pos: 84.5,34.5
parent: 2
- uid: 11777
components:
- type: Transform
- pos: 62.5,13.5
+ pos: 83.5,34.5
parent: 2
- uid: 11778
components:
- type: Transform
- pos: 61.5,14.5
+ pos: 82.5,34.5
parent: 2
- uid: 11779
components:
- type: Transform
- pos: 61.5,13.5
+ pos: 81.5,34.5
parent: 2
- uid: 11780
components:
- type: Transform
- pos: 69.5,12.5
+ pos: 80.5,34.5
parent: 2
- uid: 11781
components:
- type: Transform
- pos: 69.5,11.5
+ pos: 78.5,34.5
parent: 2
- uid: 11782
components:
- type: Transform
- pos: 68.5,12.5
+ pos: 77.5,34.5
parent: 2
- uid: 11784
components:
- type: Transform
- pos: 68.5,11.5
+ pos: 76.5,34.5
parent: 2
- uid: 11786
components:
- type: Transform
- pos: 67.5,12.5
+ pos: 79.5,34.5
parent: 2
- uid: 11787
components:
- type: Transform
- pos: 67.5,11.5
+ pos: 75.5,34.5
parent: 2
- uid: 11788
components:
- type: Transform
- pos: 66.5,8.5
+ pos: 74.5,34.5
parent: 2
- uid: 11789
components:
- type: Transform
- pos: 66.5,9.5
+ pos: 92.5,34.5
parent: 2
- uid: 11790
components:
- type: Transform
- pos: 66.5,10.5
+ pos: 91.5,34.5
parent: 2
- uid: 11791
components:
- type: Transform
- pos: 66.5,11.5
+ pos: 92.5,33.5
parent: 2
- uid: 11792
components:
- type: Transform
- pos: 66.5,12.5
+ pos: 91.5,33.5
parent: 2
- uid: 11793
components:
- type: Transform
- pos: 65.5,7.5
+ pos: 90.5,33.5
parent: 2
- uid: 11794
components:
- type: Transform
- pos: 65.5,8.5
+ pos: 89.5,33.5
parent: 2
- uid: 11795
components:
- type: Transform
- pos: 65.5,9.5
+ pos: 88.5,33.5
parent: 2
- uid: 11796
components:
- type: Transform
- pos: 65.5,10.5
+ pos: 87.5,33.5
parent: 2
- uid: 11797
components:
- type: Transform
- pos: 65.5,11.5
+ pos: 86.5,33.5
parent: 2
- uid: 11798
components:
- type: Transform
- pos: 64.5,7.5
+ pos: 85.5,33.5
parent: 2
- uid: 11799
components:
- type: Transform
- pos: 65.5,12.5
+ pos: 84.5,33.5
parent: 2
- uid: 11800
components:
- type: Transform
- pos: 64.5,9.5
+ pos: 83.5,33.5
parent: 2
- uid: 11801
components:
- type: Transform
- pos: 64.5,10.5
+ pos: 82.5,33.5
parent: 2
- uid: 11802
components:
- type: Transform
- pos: 64.5,11.5
+ pos: 92.5,32.5
parent: 2
- uid: 11803
components:
- type: Transform
- pos: 64.5,12.5
+ pos: 92.5,31.5
parent: 2
- uid: 11804
components:
- type: Transform
- pos: 64.5,8.5
+ pos: 91.5,32.5
parent: 2
- uid: 11805
components:
- type: Transform
- pos: 63.5,7.5
+ pos: 91.5,31.5
parent: 2
- uid: 11806
components:
- type: Transform
- pos: 63.5,8.5
+ pos: 91.5,30.5
parent: 2
- uid: 11807
components:
- type: Transform
- pos: 63.5,9.5
+ pos: 91.5,29.5
parent: 2
- uid: 11808
components:
- type: Transform
- pos: 63.5,10.5
+ pos: 91.5,28.5
parent: 2
- uid: 11809
components:
- type: Transform
- pos: 63.5,11.5
+ pos: 90.5,30.5
parent: 2
- uid: 11810
components:
- type: Transform
- pos: 63.5,12.5
+ pos: 90.5,29.5
parent: 2
- uid: 11811
components:
- type: Transform
- pos: 62.5,7.5
+ pos: 90.5,28.5
parent: 2
- uid: 11812
components:
- type: Transform
- pos: 62.5,8.5
+ pos: 89.5,30.5
parent: 2
- uid: 11814
components:
- type: Transform
- pos: 62.5,9.5
+ pos: 89.5,29.5
parent: 2
- uid: 11815
components:
- type: Transform
- pos: 62.5,10.5
+ pos: 89.5,28.5
parent: 2
- uid: 11816
components:
- type: Transform
- pos: 62.5,11.5
+ pos: 90.5,27.5
parent: 2
- uid: 11817
components:
- type: Transform
- pos: 62.5,12.5
+ pos: 90.5,26.5
parent: 2
- uid: 11818
components:
- type: Transform
- pos: 61.5,7.5
+ pos: 90.5,25.5
parent: 2
- uid: 11819
components:
- type: Transform
- pos: 61.5,8.5
+ pos: 89.5,27.5
parent: 2
- uid: 11820
components:
- type: Transform
- pos: 61.5,9.5
+ pos: 89.5,26.5
parent: 2
- uid: 11821
components:
- type: Transform
- pos: 61.5,10.5
+ pos: 89.5,25.5
parent: 2
- uid: 11822
components:
- type: Transform
- pos: 61.5,11.5
+ pos: 89.5,24.5
parent: 2
- uid: 11823
components:
- type: Transform
- pos: 61.5,12.5
+ pos: 89.5,23.5
parent: 2
- uid: 11824
components:
- type: Transform
- pos: 60.5,14.5
+ pos: 89.5,22.5
parent: 2
- uid: 11825
components:
- type: Transform
- pos: 60.5,12.5
+ pos: 89.5,21.5
parent: 2
- uid: 11826
components:
- type: Transform
- pos: 60.5,11.5
+ pos: 88.5,25.5
parent: 2
- uid: 11827
components:
- type: Transform
- pos: 60.5,10.5
+ pos: 88.5,24.5
parent: 2
- uid: 11828
components:
- type: Transform
- pos: 60.5,9.5
+ pos: 88.5,23.5
parent: 2
- uid: 11829
components:
- type: Transform
- pos: 60.5,8.5
+ pos: 88.5,22.5
parent: 2
- uid: 11830
components:
- type: Transform
- pos: 60.5,7.5
+ pos: 88.5,21.5
parent: 2
- uid: 11831
components:
- type: Transform
- pos: 60.5,13.5
+ pos: 88.5,20.5
parent: 2
- uid: 11832
components:
- type: Transform
- pos: 59.5,7.5
+ pos: 88.5,19.5
parent: 2
- uid: 11834
components:
- type: Transform
- pos: 59.5,8.5
+ pos: 88.5,18.5
parent: 2
- uid: 11835
components:
- type: Transform
- pos: 59.5,9.5
+ pos: 87.5,17.5
parent: 2
- uid: 11839
components:
- type: Transform
- pos: 59.5,10.5
+ pos: 87.5,16.5
parent: 2
- uid: 11840
components:
- type: Transform
- pos: 59.5,11.5
+ pos: 80.5,12.5
parent: 2
- uid: 11842
components:
- type: Transform
- pos: 59.5,12.5
+ pos: 79.5,12.5
parent: 2
- uid: 11845
components:
- type: Transform
- pos: 59.5,13.5
+ pos: 78.5,12.5
parent: 2
- uid: 11846
components:
- type: Transform
- pos: 59.5,14.5
+ pos: 77.5,12.5
parent: 2
- uid: 11852
components:
- type: Transform
- pos: 59.5,15.5
+ pos: 76.5,12.5
parent: 2
- uid: 11863
components:
- type: Transform
- pos: 59.5,16.5
+ pos: 76.5,11.5
parent: 2
- uid: 11864
components:
- type: Transform
- pos: 59.5,17.5
+ pos: 75.5,12.5
parent: 2
- uid: 11871
components:
- type: Transform
- pos: 58.5,7.5
+ pos: 75.5,11.5
parent: 2
- uid: 11883
components:
- type: Transform
- pos: 58.5,8.5
+ pos: 75.5,10.5
parent: 2
- uid: 11884
components:
- type: Transform
- pos: 58.5,10.5
+ pos: 74.5,12.5
parent: 2
- uid: 11885
components:
- type: Transform
- pos: 58.5,9.5
+ pos: 74.5,11.5
parent: 2
- uid: 11887
components:
- type: Transform
- pos: 58.5,11.5
+ pos: 76.5,10.5
parent: 2
- uid: 11890
components:
- type: Transform
- pos: 58.5,13.5
+ pos: 74.5,10.5
parent: 2
- uid: 11892
components:
- type: Transform
- pos: 58.5,12.5
+ pos: 73.5,11.5
+ parent: 2
+ - uid: 11899
+ components:
+ - type: Transform
+ pos: 73.5,10.5
+ parent: 2
+ - uid: 11900
+ components:
+ - type: Transform
+ pos: 72.5,12.5
+ parent: 2
+ - uid: 11902
+ components:
+ - type: Transform
+ pos: 72.5,11.5
parent: 2
- uid: 11909
components:
- type: Transform
- pos: 58.5,14.5
+ pos: 72.5,10.5
parent: 2
- uid: 11913
components:
- type: Transform
- pos: 58.5,15.5
+ pos: 71.5,12.5
parent: 2
- uid: 11914
components:
- type: Transform
- pos: 58.5,16.5
+ pos: 73.5,12.5
parent: 2
- uid: 11915
components:
- type: Transform
- pos: 58.5,17.5
+ pos: 71.5,11.5
parent: 2
- uid: 11916
components:
- type: Transform
- pos: 58.5,18.5
+ pos: 71.5,10.5
parent: 2
- uid: 11927
components:
- type: Transform
- pos: 58.5,19.5
+ pos: 70.5,12.5
parent: 2
- uid: 11928
components:
- type: Transform
- pos: 57.5,7.5
+ pos: 70.5,11.5
parent: 2
- uid: 11929
components:
- type: Transform
- pos: 57.5,8.5
+ pos: 70.5,10.5
parent: 2
- uid: 11930
components:
- type: Transform
- pos: 57.5,9.5
+ pos: 69.5,10.5
parent: 2
- uid: 11931
components:
- type: Transform
- pos: 57.5,10.5
+ pos: 68.5,10.5
parent: 2
- uid: 11932
components:
- type: Transform
- pos: 57.5,11.5
+ pos: 68.5,9.5
parent: 2
- uid: 11947
components:
- type: Transform
- pos: 57.5,12.5
+ pos: 67.5,10.5
parent: 2
- uid: 11948
components:
- type: Transform
- pos: 57.5,13.5
+ pos: 67.5,9.5
parent: 2
- uid: 11949
components:
- type: Transform
- pos: 57.5,14.5
+ pos: 69.5,9.5
parent: 2
- uid: 11950
components:
- type: Transform
- pos: 57.5,15.5
+ pos: 77.5,11.5
parent: 2
- uid: 11951
components:
- type: Transform
- pos: 57.5,16.5
+ pos: 67.5,8.5
parent: 2
- uid: 11952
components:
- type: Transform
- pos: 57.5,18.5
+ pos: 66.5,7.5
parent: 2
- uid: 11953
components:
- type: Transform
- pos: 57.5,19.5
+ pos: 67.5,7.5
parent: 2
- uid: 11954
components:
- type: Transform
- pos: 57.5,20.5
+ pos: 68.5,8.5
parent: 2
- uid: 11955
components:
- type: Transform
- pos: 57.5,17.5
+ pos: 69.5,8.5
parent: 2
- uid: 11956
components:
- type: Transform
- pos: 56.5,7.5
+ pos: 70.5,9.5
parent: 2
- uid: 11957
components:
- type: Transform
- pos: 56.5,8.5
+ pos: 71.5,9.5
parent: 2
- uid: 11959
components:
- type: Transform
- pos: 56.5,9.5
+ pos: 66.5,6.5
parent: 2
- uid: 11960
components:
- type: Transform
- pos: 56.5,10.5
+ pos: 89.5,20.5
parent: 2
- uid: 11961
components:
- type: Transform
- pos: 56.5,11.5
+ pos: 90.5,23.5
parent: 2
- uid: 11962
components:
- type: Transform
- pos: 56.5,12.5
+ pos: 90.5,24.5
parent: 2
- uid: 11963
components:
- type: Transform
- pos: 56.5,13.5
+ pos: 91.5,23.5
parent: 2
- uid: 11964
components:
- type: Transform
- pos: 56.5,14.5
+ pos: 91.5,24.5
parent: 2
- uid: 11965
components:
- type: Transform
- pos: 56.5,15.5
+ pos: 91.5,25.5
parent: 2
- uid: 11966
components:
- type: Transform
- pos: 56.5,16.5
+ pos: 91.5,26.5
parent: 2
- uid: 11967
components:
- type: Transform
- pos: 56.5,17.5
+ pos: 91.5,27.5
parent: 2
- uid: 11968
components:
- type: Transform
- pos: 56.5,18.5
+ pos: 92.5,26.5
parent: 2
- uid: 11969
components:
- type: Transform
- pos: 56.5,19.5
+ pos: 92.5,24.5
parent: 2
- uid: 11970
components:
- type: Transform
- pos: 56.5,20.5
+ pos: 92.5,25.5
parent: 2
- uid: 11971
components:
- type: Transform
- pos: 56.5,21.5
+ pos: 93.5,25.5
parent: 2
- uid: 11972
components:
- type: Transform
- pos: 55.5,7.5
+ pos: 93.5,26.5
parent: 2
- uid: 11973
components:
- type: Transform
- pos: 55.5,8.5
+ pos: 92.5,27.5
parent: 2
- uid: 11974
components:
- type: Transform
- pos: 55.5,9.5
+ pos: 90.5,32.5
parent: 2
- uid: 11975
components:
- type: Transform
- pos: 55.5,10.5
+ pos: 90.5,31.5
parent: 2
- uid: 11976
components:
- type: Transform
- pos: 55.5,11.5
+ pos: 89.5,32.5
parent: 2
- uid: 11977
components:
- type: Transform
- pos: 55.5,12.5
+ pos: 89.5,31.5
parent: 2
- uid: 11978
components:
- type: Transform
- pos: 55.5,14.5
+ pos: 88.5,32.5
parent: 2
- uid: 11979
components:
- type: Transform
- pos: 55.5,16.5
+ pos: 88.5,31.5
parent: 2
- uid: 11980
components:
- type: Transform
- pos: 55.5,15.5
+ pos: 88.5,30.5
parent: 2
- uid: 11981
components:
- type: Transform
- pos: 55.5,19.5
+ pos: 88.5,29.5
parent: 2
- uid: 11982
components:
- type: Transform
- pos: 55.5,13.5
+ pos: 88.5,28.5
parent: 2
- uid: 11983
components:
- type: Transform
- pos: 55.5,20.5
+ pos: 88.5,27.5
parent: 2
- uid: 11984
components:
- type: Transform
- pos: 55.5,21.5
+ pos: 88.5,26.5
parent: 2
- uid: 11988
components:
- type: Transform
- pos: 55.5,18.5
+ pos: 87.5,32.5
parent: 2
- uid: 11989
components:
- type: Transform
- pos: 54.5,7.5
+ pos: 87.5,31.5
parent: 2
- uid: 11990
components:
- type: Transform
- pos: 54.5,8.5
+ pos: 87.5,30.5
parent: 2
- uid: 11991
components:
- type: Transform
- pos: 54.5,9.5
+ pos: 87.5,29.5
parent: 2
- uid: 11992
components:
- type: Transform
- pos: 55.5,17.5
+ pos: 87.5,28.5
parent: 2
- uid: 11994
components:
- type: Transform
- pos: 54.5,10.5
+ pos: 87.5,27.5
parent: 2
- uid: 11995
components:
- type: Transform
- pos: 54.5,11.5
+ pos: 86.5,31.5
parent: 2
- uid: 11997
components:
- type: Transform
- pos: 54.5,12.5
+ pos: 86.5,30.5
parent: 2
- uid: 11998
components:
- type: Transform
- pos: 54.5,13.5
+ pos: 86.5,32.5
parent: 2
- uid: 11999
components:
- type: Transform
- pos: 54.5,14.5
+ pos: 85.5,32.5
parent: 2
- uid: 12000
components:
- type: Transform
- pos: 54.5,15.5
+ pos: 84.5,32.5
parent: 2
- uid: 12003
components:
- type: Transform
- pos: 54.5,16.5
+ pos: 2.5,-50.5
parent: 2
- uid: 12008
components:
- type: Transform
- pos: 54.5,17.5
+ pos: -3.5,-52.5
parent: 2
- uid: 12010
components:
- type: Transform
- pos: 54.5,18.5
+ pos: 9.5,-47.5
parent: 2
- uid: 12011
components:
- type: Transform
- pos: 54.5,19.5
+ pos: 1.5,-51.5
parent: 2
- uid: 12012
components:
- type: Transform
- pos: 54.5,20.5
- parent: 2
- - uid: 12013
- components:
- - type: Transform
- pos: 54.5,21.5
- parent: 2
- - uid: 12014
- components:
- - type: Transform
- pos: 53.5,7.5
- parent: 2
- - uid: 12016
- components:
- - type: Transform
- pos: 53.5,8.5
+ pos: 1.5,-50.5
parent: 2
- uid: 12017
components:
- type: Transform
- pos: 53.5,9.5
- parent: 2
- - uid: 12018
- components:
- - type: Transform
- pos: 48.5,10.5
- parent: 2
- - uid: 12034
- components:
- - type: Transform
- pos: 53.5,11.5
+ pos: 81.5,33.5
parent: 2
- uid: 12035
components:
- type: Transform
- pos: 53.5,12.5
+ pos: 80.5,33.5
parent: 2
- uid: 12049
components:
- type: Transform
- pos: 53.5,13.5
+ pos: 2.5,-51.5
parent: 2
- uid: 12054
components:
- type: Transform
- pos: 53.5,14.5
+ pos: -4.5,-51.5
parent: 2
- uid: 12058
components:
- type: Transform
- pos: 53.5,15.5
+ pos: -3.5,-48.5
parent: 2
- uid: 12059
components:
- type: Transform
- pos: 53.5,16.5
+ pos: 2.5,-49.5
parent: 2
- uid: 12066
components:
- type: Transform
- pos: 53.5,17.5
+ pos: 79.5,33.5
parent: 2
- uid: 12067
components:
- type: Transform
- pos: 53.5,18.5
+ pos: 13.5,-47.5
parent: 2
- uid: 12174
components:
- type: Transform
- pos: 53.5,19.5
+ pos: 78.5,33.5
parent: 2
- uid: 12193
components:
- type: Transform
- pos: 53.5,20.5
+ pos: -3.5,-51.5
parent: 2
- uid: 12212
components:
- type: Transform
- pos: 53.5,21.5
+ pos: 26.5,-15.5
parent: 2
- uid: 12231
components:
- type: Transform
- pos: 51.5,7.5
+ pos: 26.5,-16.5
parent: 2
- uid: 12249
components:
- type: Transform
- pos: 51.5,10.5
+ pos: 26.5,-17.5
parent: 2
- uid: 12250
components:
- type: Transform
- pos: 52.5,10.5
+ pos: 10.5,-47.5
parent: 2
- uid: 12268
components:
- type: Transform
- pos: 50.5,7.5
+ pos: 77.5,33.5
parent: 2
- uid: 12269
components:
- type: Transform
- pos: 52.5,11.5
+ pos: 2.5,-52.5
parent: 2
- uid: 12279
components:
- type: Transform
- pos: 52.5,12.5
+ pos: 11.5,-47.5
parent: 2
- uid: 12281
components:
- type: Transform
- pos: 52.5,13.5
+ pos: 12.5,-47.5
parent: 2
- uid: 12282
components:
- type: Transform
- pos: 52.5,14.5
+ pos: -3.5,-49.5
parent: 2
- uid: 12284
components:
- type: Transform
- pos: 52.5,15.5
+ pos: 76.5,33.5
parent: 2
- uid: 12286
components:
- type: Transform
- pos: 52.5,16.5
- parent: 2
- - uid: 12288
- components:
- - type: Transform
- pos: 52.5,17.5
- parent: 2
- - uid: 12290
- components:
- - type: Transform
- pos: 52.5,18.5
+ pos: 27.5,-15.5
parent: 2
- uid: 12291
components:
- type: Transform
- pos: 52.5,19.5
+ pos: 30.5,-12.5
parent: 2
- uid: 12293
components:
- type: Transform
- pos: 52.5,20.5
+ pos: 27.5,-16.5
parent: 2
- uid: 12294
components:
- type: Transform
- pos: 52.5,21.5
+ pos: 25.5,-14.5
parent: 2
- uid: 12295
components:
- type: Transform
- pos: 53.5,10.5
+ pos: 35.5,5.5
parent: 2
- uid: 12296
components:
- type: Transform
- pos: 50.5,9.5
+ pos: 28.5,-14.5
parent: 2
- uid: 12297
components:
- type: Transform
- pos: 51.5,11.5
+ pos: 30.5,-7.5
parent: 2
- uid: 12298
components:
- type: Transform
- pos: 51.5,12.5
+ pos: 30.5,-10.5
parent: 2
- uid: 12299
components:
- type: Transform
- pos: 51.5,13.5
+ pos: 27.5,-14.5
parent: 2
- uid: 12300
components:
- type: Transform
- pos: 51.5,14.5
+ pos: 26.5,-14.5
parent: 2
- uid: 12301
components:
- type: Transform
- pos: 51.5,15.5
+ pos: 34.5,4.5
parent: 2
- uid: 12302
components:
- type: Transform
- pos: 51.5,16.5
+ pos: 75.5,33.5
parent: 2
- uid: 12303
components:
- type: Transform
- pos: 51.5,17.5
+ pos: 34.5,7.5
parent: 2
- uid: 12304
components:
- type: Transform
- pos: 51.5,18.5
+ pos: 27.5,-13.5
parent: 2
- uid: 12305
components:
- type: Transform
- pos: 51.5,19.5
+ pos: 30.5,-5.5
parent: 2
- uid: 12306
components:
- type: Transform
- pos: 51.5,20.5
+ pos: 30.5,-6.5
parent: 2
- uid: 12307
components:
- type: Transform
- pos: 51.5,21.5
- parent: 2
- - uid: 12308
- components:
- - type: Transform
- pos: 51.5,22.5
+ pos: 30.5,-4.5
parent: 2
- uid: 12309
components:
- type: Transform
- pos: 49.5,7.5
+ pos: 35.5,6.5
parent: 2
- uid: 12310
components:
- type: Transform
- pos: 49.5,9.5
+ pos: 36.5,6.5
parent: 2
- uid: 12311
components:
- type: Transform
- pos: 41.5,7.5
+ pos: 29.5,-14.5
parent: 2
- uid: 12312
components:
- type: Transform
- pos: 52.5,7.5
+ pos: 25.5,-13.5
parent: 2
- uid: 12313
components:
- type: Transform
- pos: 50.5,11.5
+ pos: 28.5,-13.5
parent: 2
- uid: 12314
components:
- type: Transform
- pos: 50.5,12.5
+ pos: 26.5,-13.5
parent: 2
- uid: 12315
components:
- type: Transform
- pos: 50.5,13.5
+ pos: 29.5,-13.5
parent: 2
- uid: 12316
components:
- type: Transform
- pos: 50.5,14.5
+ pos: 36.5,5.5
parent: 2
- uid: 12317
components:
- type: Transform
- pos: 50.5,15.5
- parent: 2
- - uid: 12318
- components:
- - type: Transform
- pos: 50.5,16.5
+ pos: 34.5,6.5
parent: 2
- uid: 12319
components:
- type: Transform
- pos: 50.5,17.5
+ pos: 31.5,-9.5
parent: 2
- uid: 12320
components:
- type: Transform
- pos: 50.5,18.5
- parent: 2
- - uid: 12321
- components:
- - type: Transform
- pos: 50.5,19.5
+ pos: 31.5,-4.5
parent: 2
- uid: 12322
components:
- type: Transform
- pos: 50.5,20.5
+ pos: 31.5,-8.5
parent: 2
- uid: 12323
components:
- type: Transform
- pos: 50.5,21.5
+ pos: 31.5,-6.5
parent: 2
- uid: 12324
components:
- type: Transform
- pos: 50.5,22.5
+ pos: 30.5,-11.5
parent: 2
- uid: 12327
components:
- type: Transform
- pos: 47.5,7.5
+ pos: 30.5,-8.5
parent: 2
- uid: 12328
components:
- type: Transform
- pos: 49.5,11.5
+ pos: 31.5,-7.5
parent: 2
- uid: 12329
components:
- type: Transform
- pos: 49.5,12.5
- parent: 2
- - uid: 12330
- components:
- - type: Transform
- pos: 49.5,13.5
+ pos: 31.5,-3.5
parent: 2
- uid: 12331
components:
- type: Transform
- pos: 49.5,14.5
- parent: 2
- - uid: 12332
- components:
- - type: Transform
- pos: 49.5,15.5
- parent: 2
- - uid: 12333
- components:
- - type: Transform
- pos: 49.5,16.5
+ pos: 30.5,-9.5
parent: 2
- uid: 12334
components:
- type: Transform
- pos: 49.5,17.5
- parent: 2
- - uid: 12335
- components:
- - type: Transform
- pos: 49.5,18.5
- parent: 2
- - uid: 12336
- components:
- - type: Transform
- pos: 49.5,19.5
- parent: 2
- - uid: 12337
- components:
- - type: Transform
- pos: 49.5,20.5
- parent: 2
- - uid: 12338
- components:
- - type: Transform
- pos: 49.5,21.5
- parent: 2
- - uid: 12339
- components:
- - type: Transform
- pos: 49.5,22.5
+ pos: 30.5,-3.5
parent: 2
- uid: 12342
components:
- type: Transform
- pos: 46.5,7.5
+ pos: 31.5,-5.5
parent: 2
- uid: 12344
components:
- type: Transform
- pos: 48.5,11.5
- parent: 2
- - uid: 12345
- components:
- - type: Transform
- pos: 48.5,12.5
+ pos: 34.5,5.5
parent: 2
- uid: 12346
components:
- type: Transform
- pos: 48.5,13.5
+ pos: 35.5,4.5
parent: 2
- uid: 12347
components:
- type: Transform
- pos: 48.5,14.5
+ pos: 36.5,12.5
parent: 2
- uid: 12348
components:
- type: Transform
- pos: 48.5,15.5
+ pos: 36.5,11.5
parent: 2
- uid: 12349
components:
- type: Transform
- pos: 48.5,16.5
+ pos: 35.5,7.5
parent: 2
- uid: 12350
components:
- type: Transform
- pos: 48.5,17.5
+ pos: -4.5,-50.5
parent: 2
- uid: 12351
components:
- type: Transform
- pos: 48.5,18.5
+ pos: -4.5,-49.5
parent: 2
- uid: 12352
components:
- type: Transform
- pos: 48.5,19.5
+ pos: 65.5,15.5
parent: 2
- uid: 12353
components:
- type: Transform
- pos: 48.5,20.5
+ pos: 64.5,15.5
parent: 2
- uid: 12354
components:
- type: Transform
- pos: 48.5,21.5
+ pos: 63.5,15.5
parent: 2
- uid: 12355
components:
- type: Transform
- pos: 48.5,22.5
+ pos: 62.5,15.5
parent: 2
- uid: 12357
components:
- type: Transform
- pos: 45.5,7.5
+ pos: 61.5,16.5
parent: 2
- uid: 12358
components:
- type: Transform
- pos: 39.5,7.5
+ pos: 61.5,15.5
parent: 2
- uid: 12359
components:
- type: Transform
- pos: 47.5,11.5
+ pos: 60.5,16.5
parent: 2
- uid: 12360
components:
- type: Transform
- pos: 47.5,12.5
+ pos: 60.5,15.5
parent: 2
- uid: 12361
components:
- type: Transform
- pos: 47.5,13.5
+ pos: 74.5,13.5
parent: 2
- uid: 12362
components:
- type: Transform
- pos: 47.5,14.5
+ pos: 73.5,13.5
parent: 2
- uid: 12363
components:
- type: Transform
- pos: 47.5,15.5
+ pos: 72.5,13.5
parent: 2
- uid: 12364
components:
- type: Transform
- pos: 47.5,16.5
+ pos: 71.5,13.5
parent: 2
- uid: 12365
components:
- type: Transform
- pos: 47.5,17.5
+ pos: 70.5,13.5
parent: 2
- uid: 12382
components:
- type: Transform
- pos: 47.5,18.5
+ pos: 69.5,13.5
parent: 2
- uid: 12383
components:
- type: Transform
- pos: 47.5,19.5
+ pos: 68.5,13.5
parent: 2
- uid: 12384
components:
- type: Transform
- pos: 47.5,20.5
+ pos: 67.5,14.5
parent: 2
- uid: 12385
components:
- type: Transform
- pos: 47.5,21.5
+ pos: 66.5,14.5
parent: 2
- uid: 12386
components:
- type: Transform
- pos: 47.5,22.5
+ pos: 66.5,13.5
parent: 2
- uid: 12390
components:
- type: Transform
- pos: 46.5,11.5
+ pos: 67.5,13.5
parent: 2
- uid: 12391
components:
- type: Transform
- pos: 46.5,12.5
+ pos: 65.5,13.5
parent: 2
- uid: 12392
components:
- type: Transform
- pos: 46.5,13.5
+ pos: 65.5,14.5
parent: 2
- uid: 12393
components:
- type: Transform
- pos: 46.5,14.5
+ pos: 64.5,14.5
parent: 2
- uid: 12394
components:
- type: Transform
- pos: 46.5,15.5
+ pos: 63.5,14.5
parent: 2
- uid: 12409
components:
- type: Transform
- pos: 46.5,16.5
+ pos: 63.5,13.5
parent: 2
- uid: 12410
components:
- type: Transform
- pos: 46.5,17.5
+ pos: 62.5,14.5
parent: 2
- uid: 12411
components:
- type: Transform
- pos: 46.5,18.5
+ pos: 64.5,13.5
parent: 2
- uid: 12412
components:
- type: Transform
- pos: 46.5,19.5
+ pos: 62.5,13.5
parent: 2
- uid: 12413
components:
- type: Transform
- pos: 46.5,20.5
+ pos: 61.5,14.5
parent: 2
- uid: 12414
components:
- type: Transform
- pos: 46.5,21.5
+ pos: 61.5,13.5
parent: 2
- uid: 12415
components:
- type: Transform
- pos: 46.5,22.5
+ pos: 69.5,12.5
parent: 2
- uid: 12419
components:
- type: Transform
- pos: 45.5,11.5
+ pos: 69.5,11.5
parent: 2
- uid: 12420
components:
- type: Transform
- pos: 45.5,12.5
+ pos: 68.5,12.5
parent: 2
- uid: 12421
components:
- type: Transform
- pos: 45.5,13.5
+ pos: 68.5,11.5
parent: 2
- uid: 12422
components:
- type: Transform
- pos: 45.5,14.5
+ pos: 67.5,12.5
parent: 2
- uid: 12433
components:
- type: Transform
- pos: 45.5,15.5
+ pos: 67.5,11.5
parent: 2
- uid: 12436
components:
- type: Transform
- pos: 45.5,16.5
+ pos: 66.5,8.5
parent: 2
- uid: 12437
components:
- type: Transform
- pos: 45.5,17.5
+ pos: 66.5,9.5
parent: 2
- uid: 12438
components:
- type: Transform
- pos: 45.5,18.5
+ pos: 66.5,10.5
parent: 2
- uid: 12439
components:
- type: Transform
- pos: 45.5,19.5
+ pos: 66.5,11.5
parent: 2
- uid: 12440
components:
- type: Transform
- pos: 45.5,20.5
+ pos: 66.5,12.5
parent: 2
- uid: 12441
components:
- type: Transform
- pos: 45.5,21.5
+ pos: 65.5,7.5
parent: 2
- uid: 12442
components:
- type: Transform
- pos: 45.5,22.5
+ pos: 65.5,8.5
parent: 2
- uid: 12443
components:
- type: Transform
- pos: 45.5,23.5
+ pos: 65.5,9.5
parent: 2
- uid: 12444
components:
- type: Transform
- pos: 45.5,24.5
+ pos: 65.5,10.5
parent: 2
- uid: 12445
components:
- type: Transform
- pos: 45.5,32.5
+ pos: 65.5,11.5
parent: 2
- uid: 12446
components:
- type: Transform
- pos: 45.5,33.5
+ pos: 64.5,7.5
parent: 2
- uid: 12460
components:
- type: Transform
- pos: 44.5,11.5
+ pos: 65.5,12.5
parent: 2
- uid: 12462
components:
- type: Transform
- pos: 44.5,12.5
+ pos: 64.5,9.5
parent: 2
- uid: 12464
components:
- type: Transform
- pos: 44.5,13.5
+ pos: 64.5,10.5
parent: 2
- uid: 12465
components:
- type: Transform
- pos: 44.5,14.5
+ pos: 64.5,11.5
parent: 2
- uid: 12466
components:
- type: Transform
- pos: 44.5,15.5
+ pos: 64.5,12.5
parent: 2
- uid: 12467
components:
- type: Transform
- pos: 44.5,16.5
+ pos: 64.5,8.5
parent: 2
- uid: 12468
components:
- type: Transform
- pos: 44.5,17.5
+ pos: 63.5,7.5
parent: 2
- uid: 12469
components:
- type: Transform
- pos: 44.5,18.5
+ pos: 63.5,8.5
parent: 2
- uid: 12470
components:
- type: Transform
- pos: 44.5,19.5
+ pos: 63.5,9.5
parent: 2
- uid: 12471
components:
- type: Transform
- pos: 44.5,20.5
+ pos: 63.5,10.5
parent: 2
- uid: 12472
components:
- type: Transform
- pos: 44.5,21.5
+ pos: 63.5,11.5
parent: 2
- uid: 12473
components:
- type: Transform
- pos: 44.5,22.5
+ pos: 63.5,12.5
parent: 2
- uid: 12474
components:
- type: Transform
- pos: 44.5,23.5
+ pos: 62.5,7.5
parent: 2
- uid: 12475
components:
- type: Transform
- pos: 44.5,24.5
+ pos: 62.5,8.5
parent: 2
- uid: 12488
components:
- type: Transform
- pos: 44.5,25.5
+ pos: 62.5,9.5
parent: 2
- uid: 12489
components:
- type: Transform
- pos: 44.5,26.5
+ pos: 62.5,10.5
parent: 2
- uid: 12490
components:
- type: Transform
- pos: 44.5,27.5
+ pos: 62.5,11.5
parent: 2
- uid: 12491
components:
- type: Transform
- pos: 44.5,28.5
+ pos: 62.5,12.5
parent: 2
- uid: 12492
components:
- type: Transform
- pos: 44.5,29.5
+ pos: 61.5,7.5
parent: 2
- uid: 12493
components:
- type: Transform
- pos: 44.5,30.5
+ pos: 61.5,8.5
parent: 2
- uid: 12494
components:
- type: Transform
- pos: 44.5,31.5
+ pos: 61.5,9.5
parent: 2
- uid: 12495
components:
- type: Transform
- pos: 44.5,32.5
+ pos: 61.5,10.5
parent: 2
- uid: 12496
components:
- type: Transform
- pos: 44.5,33.5
+ pos: 61.5,11.5
parent: 2
- uid: 12500
components:
- type: Transform
- pos: 43.5,11.5
+ pos: 61.5,12.5
parent: 2
- uid: 12501
components:
- type: Transform
- pos: 43.5,12.5
+ pos: 60.5,14.5
parent: 2
- uid: 12502
components:
- type: Transform
- pos: 43.5,13.5
+ pos: 60.5,12.5
parent: 2
- uid: 12503
components:
- type: Transform
- pos: 43.5,14.5
+ pos: 60.5,11.5
parent: 2
- uid: 12516
components:
- type: Transform
- pos: 43.5,15.5
+ pos: 60.5,10.5
parent: 2
- uid: 12517
components:
- type: Transform
- pos: 43.5,16.5
+ pos: 60.5,9.5
parent: 2
- uid: 12518
components:
- type: Transform
- pos: 43.5,17.5
+ pos: 60.5,8.5
parent: 2
- uid: 12519
components:
- type: Transform
- pos: 43.5,18.5
+ pos: 60.5,7.5
parent: 2
- uid: 12520
components:
- type: Transform
- pos: 43.5,19.5
+ pos: 60.5,13.5
parent: 2
- uid: 12521
components:
- type: Transform
- pos: 43.5,20.5
+ pos: 59.5,7.5
parent: 2
- uid: 12522
components:
- type: Transform
- pos: 43.5,21.5
+ pos: 59.5,8.5
parent: 2
- uid: 12523
components:
- type: Transform
- pos: 43.5,22.5
+ pos: 59.5,9.5
parent: 2
- uid: 12524
components:
- type: Transform
- pos: 43.5,23.5
+ pos: 59.5,10.5
parent: 2
- uid: 12525
components:
- type: Transform
- pos: 43.5,24.5
+ pos: 59.5,11.5
parent: 2
- uid: 12526
components:
- type: Transform
- pos: 43.5,25.5
+ pos: 59.5,12.5
parent: 2
- uid: 12527
components:
- type: Transform
- pos: 43.5,26.5
+ pos: 59.5,13.5
parent: 2
- uid: 12528
components:
- type: Transform
- pos: 43.5,27.5
+ pos: 59.5,14.5
parent: 2
- uid: 12529
components:
- type: Transform
- pos: 43.5,28.5
+ pos: 59.5,15.5
parent: 2
- uid: 12530
components:
- type: Transform
- pos: 43.5,29.5
+ pos: 59.5,16.5
parent: 2
- uid: 12543
components:
- type: Transform
- pos: 43.5,30.5
+ pos: 59.5,17.5
parent: 2
- uid: 12544
components:
- type: Transform
- pos: 43.5,31.5
+ pos: 58.5,7.5
parent: 2
- uid: 12545
components:
- type: Transform
- pos: 43.5,32.5
+ pos: 58.5,8.5
parent: 2
- uid: 12546
components:
- type: Transform
- pos: 43.5,33.5
+ pos: 58.5,10.5
parent: 2
- uid: 12550
components:
- type: Transform
- pos: 42.5,11.5
+ pos: 58.5,9.5
parent: 2
- uid: 12551
components:
- type: Transform
- pos: 42.5,12.5
+ pos: 58.5,11.5
parent: 2
- uid: 12552
components:
- type: Transform
- pos: 42.5,13.5
+ pos: 58.5,13.5
parent: 2
- uid: 12553
components:
- type: Transform
- pos: 42.5,14.5
+ pos: 58.5,12.5
parent: 2
- uid: 12554
components:
- type: Transform
- pos: 42.5,15.5
+ pos: 58.5,14.5
parent: 2
- uid: 12555
components:
- type: Transform
- pos: 42.5,16.5
+ pos: 58.5,15.5
parent: 2
- uid: 12557
components:
- type: Transform
- pos: 42.5,17.5
+ pos: 58.5,16.5
parent: 2
- uid: 12558
components:
- type: Transform
- pos: 42.5,18.5
+ pos: 58.5,17.5
parent: 2
- uid: 12570
components:
- type: Transform
- pos: 42.5,19.5
+ pos: 58.5,18.5
parent: 2
- uid: 12572
components:
- type: Transform
- pos: 42.5,20.5
+ pos: 58.5,19.5
parent: 2
- uid: 12573
components:
- type: Transform
- pos: 42.5,21.5
+ pos: 57.5,7.5
parent: 2
- uid: 12574
components:
- type: Transform
- pos: 42.5,22.5
+ pos: 57.5,8.5
parent: 2
- uid: 12575
components:
- type: Transform
- pos: 42.5,23.5
+ pos: 57.5,9.5
parent: 2
- uid: 12576
components:
- type: Transform
- pos: 42.5,24.5
+ pos: 57.5,10.5
parent: 2
- uid: 12577
components:
- type: Transform
- pos: 42.5,25.5
+ pos: 57.5,11.5
parent: 2
- uid: 12578
components:
- type: Transform
- pos: 42.5,26.5
+ pos: 57.5,12.5
parent: 2
- uid: 12579
components:
- type: Transform
- pos: 42.5,27.5
+ pos: 57.5,13.5
parent: 2
- uid: 12580
components:
- type: Transform
- pos: 42.5,28.5
+ pos: 57.5,14.5
parent: 2
- uid: 12581
components:
- type: Transform
- pos: 42.5,29.5
+ pos: 57.5,16.5
parent: 2
- uid: 12582
components:
- type: Transform
- pos: 42.5,30.5
+ pos: 57.5,19.5
parent: 2
- uid: 12583
components:
- type: Transform
- pos: 42.5,31.5
+ pos: 57.5,17.5
parent: 2
- uid: 12584
components:
- type: Transform
- pos: 42.5,32.5
+ pos: 56.5,8.5
parent: 2
- uid: 12596
components:
- type: Transform
- pos: 42.5,33.5
+ pos: 56.5,9.5
parent: 2
- uid: 12598
components:
- type: Transform
- pos: 41.5,10.5
+ pos: 56.5,10.5
parent: 2
- uid: 12599
components:
- type: Transform
- pos: 41.5,11.5
+ pos: 56.5,11.5
parent: 2
- uid: 12600
components:
- type: Transform
- pos: 41.5,12.5
+ pos: 56.5,12.5
parent: 2
- uid: 12601
components:
- type: Transform
- pos: 41.5,13.5
+ pos: 56.5,13.5
parent: 2
- uid: 12602
components:
- type: Transform
- pos: 41.5,14.5
+ pos: 56.5,14.5
parent: 2
- uid: 12603
components:
- type: Transform
- pos: 41.5,15.5
+ pos: 56.5,15.5
parent: 2
- uid: 12604
components:
- type: Transform
- pos: 41.5,16.5
+ pos: 56.5,16.5
parent: 2
- uid: 12605
components:
- type: Transform
- pos: 41.5,17.5
+ pos: 56.5,17.5
parent: 2
- uid: 12606
components:
- type: Transform
- pos: 41.5,18.5
+ pos: 56.5,18.5
parent: 2
- uid: 12607
components:
- type: Transform
- pos: 41.5,19.5
+ pos: 56.5,19.5
parent: 2
- uid: 12608
components:
- type: Transform
- pos: 41.5,20.5
+ pos: 56.5,20.5
parent: 2
- uid: 12609
components:
- type: Transform
- pos: 41.5,21.5
+ pos: 56.5,21.5
parent: 2
- uid: 12610
components:
- type: Transform
- pos: 41.5,22.5
+ pos: 55.5,7.5
parent: 2
- uid: 12611
components:
- type: Transform
- pos: 41.5,23.5
+ pos: 55.5,8.5
parent: 2
- uid: 12623
components:
- type: Transform
- pos: 41.5,24.5
+ pos: 55.5,9.5
parent: 2
- uid: 12624
components:
- type: Transform
- pos: 41.5,25.5
+ pos: 55.5,10.5
parent: 2
- uid: 12625
components:
- type: Transform
- pos: 41.5,26.5
+ pos: 55.5,11.5
parent: 2
- uid: 12626
components:
- type: Transform
- pos: 41.5,27.5
+ pos: 55.5,12.5
parent: 2
- uid: 12627
components:
- type: Transform
- pos: 41.5,28.5
+ pos: 55.5,14.5
parent: 2
- uid: 12628
components:
- type: Transform
- pos: 41.5,29.5
+ pos: 55.5,16.5
parent: 2
- uid: 12629
components:
- type: Transform
- pos: 41.5,30.5
+ pos: 55.5,15.5
parent: 2
- uid: 12630
components:
- type: Transform
- pos: 41.5,31.5
+ pos: 55.5,19.5
parent: 2
- uid: 12631
components:
- type: Transform
- pos: 41.5,32.5
+ pos: 55.5,13.5
parent: 2
- uid: 12632
components:
- type: Transform
- pos: 41.5,33.5
+ pos: 55.5,20.5
parent: 2
- uid: 12633
components:
- type: Transform
- pos: 41.5,36.5
+ pos: 55.5,21.5
parent: 2
- uid: 12634
components:
- type: Transform
- pos: 41.5,35.5
+ pos: 55.5,18.5
parent: 2
- uid: 12635
components:
- type: Transform
- pos: 41.5,34.5
+ pos: 54.5,7.5
+ parent: 2
+ - uid: 12636
+ components:
+ - type: Transform
+ pos: 54.5,8.5
+ parent: 2
+ - uid: 12648
+ components:
+ - type: Transform
+ pos: 54.5,9.5
+ parent: 2
+ - uid: 12649
+ components:
+ - type: Transform
+ pos: 55.5,17.5
+ parent: 2
+ - uid: 12679
+ components:
+ - type: Transform
+ pos: 54.5,10.5
+ parent: 2
+ - uid: 12681
+ components:
+ - type: Transform
+ pos: 54.5,11.5
+ parent: 2
+ - uid: 12682
+ components:
+ - type: Transform
+ pos: 54.5,12.5
+ parent: 2
+ - uid: 12684
+ components:
+ - type: Transform
+ pos: 54.5,13.5
+ parent: 2
+ - uid: 12685
+ components:
+ - type: Transform
+ pos: 54.5,14.5
+ parent: 2
+ - uid: 12686
+ components:
+ - type: Transform
+ pos: 54.5,15.5
+ parent: 2
+ - uid: 12689
+ components:
+ - type: Transform
+ pos: 54.5,16.5
+ parent: 2
+ - uid: 12690
+ components:
+ - type: Transform
+ pos: 54.5,17.5
+ parent: 2
+ - uid: 12702
+ components:
+ - type: Transform
+ pos: 54.5,18.5
+ parent: 2
+ - uid: 12705
+ components:
+ - type: Transform
+ pos: 54.5,19.5
+ parent: 2
+ - uid: 12709
+ components:
+ - type: Transform
+ pos: 54.5,20.5
+ parent: 2
+ - uid: 12711
+ components:
+ - type: Transform
+ pos: 54.5,21.5
+ parent: 2
+ - uid: 12712
+ components:
+ - type: Transform
+ pos: 53.5,7.5
+ parent: 2
+ - uid: 12714
+ components:
+ - type: Transform
+ pos: 53.5,8.5
+ parent: 2
+ - uid: 12728
+ components:
+ - type: Transform
+ pos: 53.5,9.5
+ parent: 2
+ - uid: 12729
+ components:
+ - type: Transform
+ pos: 48.5,10.5
+ parent: 2
+ - uid: 12730
+ components:
+ - type: Transform
+ pos: 53.5,11.5
+ parent: 2
+ - uid: 12731
+ components:
+ - type: Transform
+ pos: 53.5,12.5
+ parent: 2
+ - uid: 12733
+ components:
+ - type: Transform
+ pos: 53.5,13.5
+ parent: 2
+ - uid: 12734
+ components:
+ - type: Transform
+ pos: 53.5,14.5
+ parent: 2
+ - uid: 12737
+ components:
+ - type: Transform
+ pos: 53.5,15.5
+ parent: 2
+ - uid: 12738
+ components:
+ - type: Transform
+ pos: 53.5,16.5
+ parent: 2
+ - uid: 12739
+ components:
+ - type: Transform
+ pos: 53.5,17.5
+ parent: 2
+ - uid: 12740
+ components:
+ - type: Transform
+ pos: 53.5,18.5
+ parent: 2
+ - uid: 12741
+ components:
+ - type: Transform
+ pos: 53.5,19.5
+ parent: 2
+ - uid: 12742
+ components:
+ - type: Transform
+ pos: 53.5,20.5
+ parent: 2
+ - uid: 12743
+ components:
+ - type: Transform
+ pos: 53.5,21.5
+ parent: 2
+ - uid: 12744
+ components:
+ - type: Transform
+ pos: 51.5,7.5
+ parent: 2
+ - uid: 12752
+ components:
+ - type: Transform
+ pos: 51.5,10.5
+ parent: 2
+ - uid: 12753
+ components:
+ - type: Transform
+ pos: 52.5,10.5
+ parent: 2
+ - uid: 12754
+ components:
+ - type: Transform
+ pos: 50.5,7.5
+ parent: 2
+ - uid: 12755
+ components:
+ - type: Transform
+ pos: 52.5,11.5
+ parent: 2
+ - uid: 12756
+ components:
+ - type: Transform
+ pos: 52.5,12.5
+ parent: 2
+ - uid: 12757
+ components:
+ - type: Transform
+ pos: 52.5,13.5
+ parent: 2
+ - uid: 12758
+ components:
+ - type: Transform
+ pos: 52.5,14.5
+ parent: 2
+ - uid: 12761
+ components:
+ - type: Transform
+ pos: 52.5,15.5
+ parent: 2
+ - uid: 12762
+ components:
+ - type: Transform
+ pos: 52.5,16.5
+ parent: 2
+ - uid: 12763
+ components:
+ - type: Transform
+ pos: 52.5,17.5
+ parent: 2
+ - uid: 12764
+ components:
+ - type: Transform
+ pos: 52.5,18.5
+ parent: 2
+ - uid: 12765
+ components:
+ - type: Transform
+ pos: 52.5,19.5
+ parent: 2
+ - uid: 12766
+ components:
+ - type: Transform
+ pos: 52.5,20.5
+ parent: 2
+ - uid: 12767
+ components:
+ - type: Transform
+ pos: 52.5,21.5
+ parent: 2
+ - uid: 12770
+ components:
+ - type: Transform
+ pos: 53.5,10.5
+ parent: 2
+ - uid: 12771
+ components:
+ - type: Transform
+ pos: 50.5,9.5
+ parent: 2
+ - uid: 12772
+ components:
+ - type: Transform
+ pos: 51.5,11.5
+ parent: 2
+ - uid: 12773
+ components:
+ - type: Transform
+ pos: 51.5,12.5
+ parent: 2
+ - uid: 12774
+ components:
+ - type: Transform
+ pos: 51.5,13.5
+ parent: 2
+ - uid: 12775
+ components:
+ - type: Transform
+ pos: 51.5,14.5
+ parent: 2
+ - uid: 12776
+ components:
+ - type: Transform
+ pos: 51.5,15.5
+ parent: 2
+ - uid: 12777
+ components:
+ - type: Transform
+ pos: 51.5,16.5
+ parent: 2
+ - uid: 12778
+ components:
+ - type: Transform
+ pos: 51.5,17.5
+ parent: 2
+ - uid: 12779
+ components:
+ - type: Transform
+ pos: 51.5,18.5
+ parent: 2
+ - uid: 12780
+ components:
+ - type: Transform
+ pos: 51.5,19.5
+ parent: 2
+ - uid: 12781
+ components:
+ - type: Transform
+ pos: 51.5,20.5
+ parent: 2
+ - uid: 12782
+ components:
+ - type: Transform
+ pos: 51.5,21.5
+ parent: 2
+ - uid: 12783
+ components:
+ - type: Transform
+ pos: 51.5,22.5
+ parent: 2
+ - uid: 12784
+ components:
+ - type: Transform
+ pos: 49.5,7.5
+ parent: 2
+ - uid: 12785
+ components:
+ - type: Transform
+ pos: 49.5,9.5
+ parent: 2
+ - uid: 12786
+ components:
+ - type: Transform
+ pos: 41.5,7.5
+ parent: 2
+ - uid: 12787
+ components:
+ - type: Transform
+ pos: 52.5,7.5
+ parent: 2
+ - uid: 12788
+ components:
+ - type: Transform
+ pos: 50.5,11.5
+ parent: 2
+ - uid: 12789
+ components:
+ - type: Transform
+ pos: 50.5,12.5
+ parent: 2
+ - uid: 12790
+ components:
+ - type: Transform
+ pos: 50.5,13.5
+ parent: 2
+ - uid: 12791
+ components:
+ - type: Transform
+ pos: 50.5,14.5
+ parent: 2
+ - uid: 12792
+ components:
+ - type: Transform
+ pos: 50.5,15.5
+ parent: 2
+ - uid: 12793
+ components:
+ - type: Transform
+ pos: 50.5,16.5
+ parent: 2
+ - uid: 12797
+ components:
+ - type: Transform
+ pos: 50.5,17.5
+ parent: 2
+ - uid: 12798
+ components:
+ - type: Transform
+ pos: 50.5,18.5
+ parent: 2
+ - uid: 12799
+ components:
+ - type: Transform
+ pos: 50.5,19.5
+ parent: 2
+ - uid: 12800
+ components:
+ - type: Transform
+ pos: 50.5,20.5
+ parent: 2
+ - uid: 12801
+ components:
+ - type: Transform
+ pos: 50.5,21.5
+ parent: 2
+ - uid: 12802
+ components:
+ - type: Transform
+ pos: 50.5,22.5
+ parent: 2
+ - uid: 12803
+ components:
+ - type: Transform
+ pos: 47.5,7.5
parent: 2
- uid: 12804
+ components:
+ - type: Transform
+ pos: 49.5,11.5
+ parent: 2
+ - uid: 12805
+ components:
+ - type: Transform
+ pos: 49.5,12.5
+ parent: 2
+ - uid: 12806
+ components:
+ - type: Transform
+ pos: 49.5,13.5
+ parent: 2
+ - uid: 12807
+ components:
+ - type: Transform
+ pos: 49.5,14.5
+ parent: 2
+ - uid: 12808
+ components:
+ - type: Transform
+ pos: 49.5,15.5
+ parent: 2
+ - uid: 12809
+ components:
+ - type: Transform
+ pos: 49.5,16.5
+ parent: 2
+ - uid: 12810
+ components:
+ - type: Transform
+ pos: 49.5,17.5
+ parent: 2
+ - uid: 12811
+ components:
+ - type: Transform
+ pos: 49.5,18.5
+ parent: 2
+ - uid: 12812
+ components:
+ - type: Transform
+ pos: 49.5,19.5
+ parent: 2
+ - uid: 12813
+ components:
+ - type: Transform
+ pos: 49.5,20.5
+ parent: 2
+ - uid: 12814
+ components:
+ - type: Transform
+ pos: 49.5,21.5
+ parent: 2
+ - uid: 12815
+ components:
+ - type: Transform
+ pos: 49.5,22.5
+ parent: 2
+ - uid: 12817
+ components:
+ - type: Transform
+ pos: 46.5,7.5
+ parent: 2
+ - uid: 12819
+ components:
+ - type: Transform
+ pos: 48.5,11.5
+ parent: 2
+ - uid: 12820
+ components:
+ - type: Transform
+ pos: 48.5,12.5
+ parent: 2
+ - uid: 12821
+ components:
+ - type: Transform
+ pos: 48.5,13.5
+ parent: 2
+ - uid: 12822
+ components:
+ - type: Transform
+ pos: 48.5,14.5
+ parent: 2
+ - uid: 12823
+ components:
+ - type: Transform
+ pos: 48.5,15.5
+ parent: 2
+ - uid: 12824
+ components:
+ - type: Transform
+ pos: 48.5,16.5
+ parent: 2
+ - uid: 12825
+ components:
+ - type: Transform
+ pos: 48.5,17.5
+ parent: 2
+ - uid: 12826
+ components:
+ - type: Transform
+ pos: 48.5,18.5
+ parent: 2
+ - uid: 12827
+ components:
+ - type: Transform
+ pos: 48.5,19.5
+ parent: 2
+ - uid: 12828
+ components:
+ - type: Transform
+ pos: 48.5,20.5
+ parent: 2
+ - uid: 12829
+ components:
+ - type: Transform
+ pos: 48.5,21.5
+ parent: 2
+ - uid: 12830
+ components:
+ - type: Transform
+ pos: 48.5,22.5
+ parent: 2
+ - uid: 12831
+ components:
+ - type: Transform
+ pos: 45.5,7.5
+ parent: 2
+ - uid: 12833
+ components:
+ - type: Transform
+ pos: 39.5,7.5
+ parent: 2
+ - uid: 12834
+ components:
+ - type: Transform
+ pos: 47.5,11.5
+ parent: 2
+ - uid: 12835
+ components:
+ - type: Transform
+ pos: 47.5,12.5
+ parent: 2
+ - uid: 12836
+ components:
+ - type: Transform
+ pos: 47.5,13.5
+ parent: 2
+ - uid: 12837
+ components:
+ - type: Transform
+ pos: 47.5,14.5
+ parent: 2
+ - uid: 12838
+ components:
+ - type: Transform
+ pos: 47.5,15.5
+ parent: 2
+ - uid: 12839
+ components:
+ - type: Transform
+ pos: 47.5,16.5
+ parent: 2
+ - uid: 12840
+ components:
+ - type: Transform
+ pos: 47.5,17.5
+ parent: 2
+ - uid: 12841
+ components:
+ - type: Transform
+ pos: 47.5,18.5
+ parent: 2
+ - uid: 12842
+ components:
+ - type: Transform
+ pos: 47.5,19.5
+ parent: 2
+ - uid: 12843
+ components:
+ - type: Transform
+ pos: 47.5,20.5
+ parent: 2
+ - uid: 12844
+ components:
+ - type: Transform
+ pos: 47.5,21.5
+ parent: 2
+ - uid: 12845
+ components:
+ - type: Transform
+ pos: 47.5,22.5
+ parent: 2
+ - uid: 12846
+ components:
+ - type: Transform
+ pos: 46.5,11.5
+ parent: 2
+ - uid: 12847
+ components:
+ - type: Transform
+ pos: 46.5,12.5
+ parent: 2
+ - uid: 12848
+ components:
+ - type: Transform
+ pos: 46.5,13.5
+ parent: 2
+ - uid: 12849
+ components:
+ - type: Transform
+ pos: 46.5,14.5
+ parent: 2
+ - uid: 12850
+ components:
+ - type: Transform
+ pos: 46.5,15.5
+ parent: 2
+ - uid: 12851
+ components:
+ - type: Transform
+ pos: 46.5,16.5
+ parent: 2
+ - uid: 12852
+ components:
+ - type: Transform
+ pos: 46.5,17.5
+ parent: 2
+ - uid: 12853
+ components:
+ - type: Transform
+ pos: 46.5,18.5
+ parent: 2
+ - uid: 12854
+ components:
+ - type: Transform
+ pos: 46.5,19.5
+ parent: 2
+ - uid: 12856
+ components:
+ - type: Transform
+ pos: 46.5,20.5
+ parent: 2
+ - uid: 12857
+ components:
+ - type: Transform
+ pos: 46.5,21.5
+ parent: 2
+ - uid: 12858
+ components:
+ - type: Transform
+ pos: 46.5,22.5
+ parent: 2
+ - uid: 12859
+ components:
+ - type: Transform
+ pos: 45.5,11.5
+ parent: 2
+ - uid: 12860
+ components:
+ - type: Transform
+ pos: 45.5,12.5
+ parent: 2
+ - uid: 12863
+ components:
+ - type: Transform
+ pos: 45.5,13.5
+ parent: 2
+ - uid: 12869
+ components:
+ - type: Transform
+ pos: 45.5,14.5
+ parent: 2
+ - uid: 12870
+ components:
+ - type: Transform
+ pos: 45.5,15.5
+ parent: 2
+ - uid: 13279
+ components:
+ - type: Transform
+ pos: 45.5,16.5
+ parent: 2
+ - uid: 13280
+ components:
+ - type: Transform
+ pos: 45.5,17.5
+ parent: 2
+ - uid: 13281
+ components:
+ - type: Transform
+ pos: 45.5,18.5
+ parent: 2
+ - uid: 13331
+ components:
+ - type: Transform
+ pos: 45.5,19.5
+ parent: 2
+ - uid: 13333
+ components:
+ - type: Transform
+ pos: 45.5,20.5
+ parent: 2
+ - uid: 13368
+ components:
+ - type: Transform
+ pos: 45.5,21.5
+ parent: 2
+ - uid: 13369
+ components:
+ - type: Transform
+ pos: 45.5,22.5
+ parent: 2
+ - uid: 13370
+ components:
+ - type: Transform
+ pos: 45.5,23.5
+ parent: 2
+ - uid: 13371
+ components:
+ - type: Transform
+ pos: 45.5,24.5
+ parent: 2
+ - uid: 13372
+ components:
+ - type: Transform
+ pos: 45.5,32.5
+ parent: 2
+ - uid: 13400
+ components:
+ - type: Transform
+ pos: 45.5,33.5
+ parent: 2
+ - uid: 13401
+ components:
+ - type: Transform
+ pos: 44.5,11.5
+ parent: 2
+ - uid: 13405
+ components:
+ - type: Transform
+ pos: 44.5,12.5
+ parent: 2
+ - uid: 13739
+ components:
+ - type: Transform
+ pos: 44.5,13.5
+ parent: 2
+ - uid: 13772
+ components:
+ - type: Transform
+ pos: 44.5,14.5
+ parent: 2
+ - uid: 13791
+ components:
+ - type: Transform
+ pos: 44.5,15.5
+ parent: 2
+ - uid: 13870
+ components:
+ - type: Transform
+ pos: 44.5,16.5
+ parent: 2
+ - uid: 13871
+ components:
+ - type: Transform
+ pos: 44.5,17.5
+ parent: 2
+ - uid: 13872
+ components:
+ - type: Transform
+ pos: 44.5,18.5
+ parent: 2
+ - uid: 13873
+ components:
+ - type: Transform
+ pos: 44.5,19.5
+ parent: 2
+ - uid: 13874
+ components:
+ - type: Transform
+ pos: 44.5,20.5
+ parent: 2
+ - uid: 13875
+ components:
+ - type: Transform
+ pos: 44.5,21.5
+ parent: 2
+ - uid: 13947
+ components:
+ - type: Transform
+ pos: 44.5,22.5
+ parent: 2
+ - uid: 13994
+ components:
+ - type: Transform
+ pos: 44.5,23.5
+ parent: 2
+ - uid: 13995
+ components:
+ - type: Transform
+ pos: 44.5,24.5
+ parent: 2
+ - uid: 13996
+ components:
+ - type: Transform
+ pos: 44.5,25.5
+ parent: 2
+ - uid: 13997
+ components:
+ - type: Transform
+ pos: 44.5,26.5
+ parent: 2
+ - uid: 13998
+ components:
+ - type: Transform
+ pos: 44.5,27.5
+ parent: 2
+ - uid: 13999
+ components:
+ - type: Transform
+ pos: 44.5,28.5
+ parent: 2
+ - uid: 14000
+ components:
+ - type: Transform
+ pos: 44.5,29.5
+ parent: 2
+ - uid: 14001
+ components:
+ - type: Transform
+ pos: 44.5,30.5
+ parent: 2
+ - uid: 14002
+ components:
+ - type: Transform
+ pos: 44.5,31.5
+ parent: 2
+ - uid: 14003
+ components:
+ - type: Transform
+ pos: 44.5,32.5
+ parent: 2
+ - uid: 14004
+ components:
+ - type: Transform
+ pos: 44.5,33.5
+ parent: 2
+ - uid: 14005
+ components:
+ - type: Transform
+ pos: 43.5,11.5
+ parent: 2
+ - uid: 14006
+ components:
+ - type: Transform
+ pos: 43.5,12.5
+ parent: 2
+ - uid: 14007
+ components:
+ - type: Transform
+ pos: 43.5,13.5
+ parent: 2
+ - uid: 14008
+ components:
+ - type: Transform
+ pos: 43.5,14.5
+ parent: 2
+ - uid: 14009
+ components:
+ - type: Transform
+ pos: 43.5,15.5
+ parent: 2
+ - uid: 14010
+ components:
+ - type: Transform
+ pos: 43.5,16.5
+ parent: 2
+ - uid: 14011
+ components:
+ - type: Transform
+ pos: 43.5,17.5
+ parent: 2
+ - uid: 14012
+ components:
+ - type: Transform
+ pos: 43.5,18.5
+ parent: 2
+ - uid: 14013
+ components:
+ - type: Transform
+ pos: 43.5,19.5
+ parent: 2
+ - uid: 14014
+ components:
+ - type: Transform
+ pos: 43.5,20.5
+ parent: 2
+ - uid: 14015
+ components:
+ - type: Transform
+ pos: 43.5,21.5
+ parent: 2
+ - uid: 14016
+ components:
+ - type: Transform
+ pos: 43.5,22.5
+ parent: 2
+ - uid: 14017
+ components:
+ - type: Transform
+ pos: 43.5,23.5
+ parent: 2
+ - uid: 14018
+ components:
+ - type: Transform
+ pos: 43.5,24.5
+ parent: 2
+ - uid: 14019
+ components:
+ - type: Transform
+ pos: 43.5,25.5
+ parent: 2
+ - uid: 14020
+ components:
+ - type: Transform
+ pos: 43.5,26.5
+ parent: 2
+ - uid: 14021
+ components:
+ - type: Transform
+ pos: 43.5,27.5
+ parent: 2
+ - uid: 14022
+ components:
+ - type: Transform
+ pos: 43.5,28.5
+ parent: 2
+ - uid: 14023
+ components:
+ - type: Transform
+ pos: 43.5,29.5
+ parent: 2
+ - uid: 14024
+ components:
+ - type: Transform
+ pos: 43.5,30.5
+ parent: 2
+ - uid: 14025
+ components:
+ - type: Transform
+ pos: 43.5,31.5
+ parent: 2
+ - uid: 14026
+ components:
+ - type: Transform
+ pos: 43.5,32.5
+ parent: 2
+ - uid: 14027
+ components:
+ - type: Transform
+ pos: 43.5,33.5
+ parent: 2
+ - uid: 14028
+ components:
+ - type: Transform
+ pos: 42.5,11.5
+ parent: 2
+ - uid: 14029
+ components:
+ - type: Transform
+ pos: 42.5,12.5
+ parent: 2
+ - uid: 14030
+ components:
+ - type: Transform
+ pos: 42.5,13.5
+ parent: 2
+ - uid: 14031
+ components:
+ - type: Transform
+ pos: 42.5,14.5
+ parent: 2
+ - uid: 14032
+ components:
+ - type: Transform
+ pos: 42.5,15.5
+ parent: 2
+ - uid: 14033
+ components:
+ - type: Transform
+ pos: 42.5,16.5
+ parent: 2
+ - uid: 14034
+ components:
+ - type: Transform
+ pos: 42.5,17.5
+ parent: 2
+ - uid: 14035
+ components:
+ - type: Transform
+ pos: 42.5,18.5
+ parent: 2
+ - uid: 14036
+ components:
+ - type: Transform
+ pos: 42.5,19.5
+ parent: 2
+ - uid: 14037
+ components:
+ - type: Transform
+ pos: 42.5,20.5
+ parent: 2
+ - uid: 14038
+ components:
+ - type: Transform
+ pos: 42.5,21.5
+ parent: 2
+ - uid: 14039
+ components:
+ - type: Transform
+ pos: 42.5,22.5
+ parent: 2
+ - uid: 14040
+ components:
+ - type: Transform
+ pos: 42.5,23.5
+ parent: 2
+ - uid: 14041
+ components:
+ - type: Transform
+ pos: 42.5,24.5
+ parent: 2
+ - uid: 14042
+ components:
+ - type: Transform
+ pos: 42.5,25.5
+ parent: 2
+ - uid: 14043
+ components:
+ - type: Transform
+ pos: 42.5,26.5
+ parent: 2
+ - uid: 14044
+ components:
+ - type: Transform
+ pos: 42.5,27.5
+ parent: 2
+ - uid: 14045
+ components:
+ - type: Transform
+ pos: 42.5,28.5
+ parent: 2
+ - uid: 14046
+ components:
+ - type: Transform
+ pos: 42.5,29.5
+ parent: 2
+ - uid: 14047
+ components:
+ - type: Transform
+ pos: 42.5,30.5
+ parent: 2
+ - uid: 14048
+ components:
+ - type: Transform
+ pos: 42.5,31.5
+ parent: 2
+ - uid: 14049
+ components:
+ - type: Transform
+ pos: 42.5,32.5
+ parent: 2
+ - uid: 14050
+ components:
+ - type: Transform
+ pos: 42.5,33.5
+ parent: 2
+ - uid: 14051
+ components:
+ - type: Transform
+ pos: 41.5,10.5
+ parent: 2
+ - uid: 14052
+ components:
+ - type: Transform
+ pos: 41.5,11.5
+ parent: 2
+ - uid: 14053
+ components:
+ - type: Transform
+ pos: 41.5,12.5
+ parent: 2
+ - uid: 14054
+ components:
+ - type: Transform
+ pos: 41.5,13.5
+ parent: 2
+ - uid: 14055
+ components:
+ - type: Transform
+ pos: 41.5,14.5
+ parent: 2
+ - uid: 14056
+ components:
+ - type: Transform
+ pos: 41.5,15.5
+ parent: 2
+ - uid: 14057
+ components:
+ - type: Transform
+ pos: 41.5,16.5
+ parent: 2
+ - uid: 14058
+ components:
+ - type: Transform
+ pos: 41.5,17.5
+ parent: 2
+ - uid: 14059
+ components:
+ - type: Transform
+ pos: 41.5,18.5
+ parent: 2
+ - uid: 14060
+ components:
+ - type: Transform
+ pos: 41.5,19.5
+ parent: 2
+ - uid: 14061
+ components:
+ - type: Transform
+ pos: 41.5,20.5
+ parent: 2
+ - uid: 14062
+ components:
+ - type: Transform
+ pos: 41.5,21.5
+ parent: 2
+ - uid: 14063
+ components:
+ - type: Transform
+ pos: 41.5,22.5
+ parent: 2
+ - uid: 14064
+ components:
+ - type: Transform
+ pos: 41.5,23.5
+ parent: 2
+ - uid: 14065
+ components:
+ - type: Transform
+ pos: 41.5,24.5
+ parent: 2
+ - uid: 14066
+ components:
+ - type: Transform
+ pos: 41.5,25.5
+ parent: 2
+ - uid: 14067
+ components:
+ - type: Transform
+ pos: 41.5,26.5
+ parent: 2
+ - uid: 14068
+ components:
+ - type: Transform
+ pos: 41.5,27.5
+ parent: 2
+ - uid: 14069
+ components:
+ - type: Transform
+ pos: 41.5,28.5
+ parent: 2
+ - uid: 14070
+ components:
+ - type: Transform
+ pos: 41.5,29.5
+ parent: 2
+ - uid: 14071
+ components:
+ - type: Transform
+ pos: 41.5,30.5
+ parent: 2
+ - uid: 14072
+ components:
+ - type: Transform
+ pos: 41.5,31.5
+ parent: 2
+ - uid: 14073
+ components:
+ - type: Transform
+ pos: 41.5,32.5
+ parent: 2
+ - uid: 14074
+ components:
+ - type: Transform
+ pos: 41.5,33.5
+ parent: 2
+ - uid: 14075
+ components:
+ - type: Transform
+ pos: 41.5,36.5
+ parent: 2
+ - uid: 14076
+ components:
+ - type: Transform
+ pos: 41.5,35.5
+ parent: 2
+ - uid: 14077
+ components:
+ - type: Transform
+ pos: 41.5,34.5
+ parent: 2
+ - uid: 14078
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -31.5,19.5
parent: 2
+ - uid: 14079
+ components:
+ - type: Transform
+ pos: 57.5,20.5
+ parent: 2
+ - uid: 14080
+ components:
+ - type: Transform
+ pos: 56.5,7.5
+ parent: 2
+ - uid: 14081
+ components:
+ - type: Transform
+ pos: 57.5,15.5
+ parent: 2
+ - uid: 14082
+ components:
+ - type: Transform
+ pos: 57.5,18.5
+ parent: 2
+- proto: CP14BiomeSpawnerLeafMaze
+ entities:
+ - uid: 160
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-12.5
+ parent: 2
+ - uid: 266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-13.5
+ parent: 2
+ - uid: 430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-14.5
+ parent: 2
+ - uid: 467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-15.5
+ parent: 2
+ - uid: 604
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-19.5
+ parent: 2
+ - uid: 665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-17.5
+ parent: 2
+ - uid: 2103
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-15.5
+ parent: 2
+ - uid: 2104
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-17.5
+ parent: 2
+ - uid: 2105
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-18.5
+ parent: 2
+ - uid: 2106
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-16.5
+ parent: 2
+ - uid: 2110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,-18.5
+ parent: 2
+ - uid: 2111
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-18.5
+ parent: 2
+ - uid: 2131
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-13.5
+ parent: 2
+ - uid: 2133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-14.5
+ parent: 2
+ - uid: 2835
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-19.5
+ parent: 2
+ - uid: 2836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-12.5
+ parent: 2
+ - uid: 2837
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-15.5
+ parent: 2
+ - uid: 2838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-16.5
+ parent: 2
+ - uid: 2845
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-14.5
+ parent: 2
+ - uid: 2846
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-16.5
+ parent: 2
+ - uid: 2847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-17.5
+ parent: 2
+ - uid: 2848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-12.5
+ parent: 2
+ - uid: 2855
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-18.5
+ parent: 2
+ - uid: 2856
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-19.5
+ parent: 2
+ - uid: 2857
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-16.5
+ parent: 2
+ - uid: 2858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-17.5
+ parent: 2
+ - uid: 3814
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-13.5
+ parent: 2
+ - uid: 3815
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-14.5
+ parent: 2
+ - uid: 3816
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-11.5
+ parent: 2
+ - uid: 3817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-18.5
+ parent: 2
+ - uid: 3832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-12.5
+ parent: 2
+ - uid: 3833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-13.5
+ parent: 2
+ - uid: 3834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-15.5
+ parent: 2
+ - uid: 3835
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-11.5
+ parent: 2
+ - uid: 3850
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-11.5
+ parent: 2
+ - uid: 3851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-10.5
+ parent: 2
+ - uid: 3852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-11.5
+ parent: 2
+ - uid: 3853
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-10.5
+ parent: 2
+ - uid: 3868
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,-11.5
+ parent: 2
+ - uid: 3869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,44.5
+ parent: 2
+ - uid: 3870
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,44.5
+ parent: 2
+ - uid: 3871
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,44.5
+ parent: 2
+ - uid: 3886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,45.5
+ parent: 2
+ - uid: 3887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,46.5
+ parent: 2
+ - uid: 3888
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,45.5
+ parent: 2
+ - uid: 3889
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,43.5
+ parent: 2
+ - uid: 4278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,48.5
+ parent: 2
+ - uid: 4302
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,47.5
+ parent: 2
+ - uid: 4303
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,45.5
+ parent: 2
+ - uid: 4304
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,44.5
+ parent: 2
+ - uid: 4305
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,43.5
+ parent: 2
+ - uid: 4306
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,42.5
+ parent: 2
+ - uid: 4307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,46.5
+ parent: 2
+ - uid: 4308
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,48.5
+ parent: 2
+ - uid: 4309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,46.5
+ parent: 2
+ - uid: 4310
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,45.5
+ parent: 2
+ - uid: 4311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,44.5
+ parent: 2
+ - uid: 4317
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,47.5
+ parent: 2
+ - uid: 4318
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,43.5
+ parent: 2
+ - uid: 4319
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,42.5
+ parent: 2
+ - uid: 4320
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,48.5
+ parent: 2
+ - uid: 4321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,47.5
+ parent: 2
+ - uid: 4322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,46.5
+ parent: 2
+ - uid: 4323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,45.5
+ parent: 2
+ - uid: 4324
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,44.5
+ parent: 2
+ - uid: 4325
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,43.5
+ parent: 2
+ - uid: 4326
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,42.5
+ parent: 2
+ - uid: 4327
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,41.5
+ parent: 2
+ - uid: 4328
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,48.5
+ parent: 2
+ - uid: 4329
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,47.5
+ parent: 2
+ - uid: 4330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,46.5
+ parent: 2
+ - uid: 4331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,45.5
+ parent: 2
+ - uid: 4332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,44.5
+ parent: 2
+ - uid: 4333
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,43.5
+ parent: 2
+ - uid: 4334
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,42.5
+ parent: 2
+ - uid: 4335
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,41.5
+ parent: 2
+ - uid: 4336
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,48.5
+ parent: 2
+ - uid: 4337
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,47.5
+ parent: 2
+ - uid: 4338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,46.5
+ parent: 2
+ - uid: 4339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,45.5
+ parent: 2
+ - uid: 4340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,44.5
+ parent: 2
+ - uid: 4341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,43.5
+ parent: 2
+ - uid: 4342
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,42.5
+ parent: 2
+ - uid: 4343
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,41.5
+ parent: 2
+ - uid: 4344
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,48.5
+ parent: 2
+ - uid: 4345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,47.5
+ parent: 2
+ - uid: 4346
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,46.5
+ parent: 2
+ - uid: 4347
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,45.5
+ parent: 2
+ - uid: 4348
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,44.5
+ parent: 2
+ - uid: 4349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,43.5
+ parent: 2
+ - uid: 4350
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,42.5
+ parent: 2
+ - uid: 4351
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,41.5
+ parent: 2
+ - uid: 4354
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,40.5
+ parent: 2
+ - uid: 4355
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,48.5
+ parent: 2
+ - uid: 4356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,47.5
+ parent: 2
+ - uid: 4357
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,46.5
+ parent: 2
+ - uid: 4358
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,45.5
+ parent: 2
+ - uid: 4359
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,44.5
+ parent: 2
+ - uid: 4365
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,43.5
+ parent: 2
+ - uid: 4423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,42.5
+ parent: 2
+ - uid: 4428
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,41.5
+ parent: 2
+ - uid: 4452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,40.5
+ parent: 2
+ - uid: 4453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,48.5
+ parent: 2
+ - uid: 4454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,46.5
+ parent: 2
+ - uid: 4458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,47.5
+ parent: 2
+ - uid: 4459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,45.5
+ parent: 2
+ - uid: 4461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,44.5
+ parent: 2
+ - uid: 4462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,43.5
+ parent: 2
+ - uid: 4463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,42.5
+ parent: 2
+ - uid: 4464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,41.5
+ parent: 2
+ - uid: 4465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,40.5
+ parent: 2
+ - uid: 4466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,48.5
+ parent: 2
+ - uid: 4467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,47.5
+ parent: 2
+ - uid: 4468
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,46.5
+ parent: 2
+ - uid: 4492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,45.5
+ parent: 2
+ - uid: 4507
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,44.5
+ parent: 2
+ - uid: 4509
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,43.5
+ parent: 2
+ - uid: 4511
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,42.5
+ parent: 2
+ - uid: 4527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,41.5
+ parent: 2
+ - uid: 4528
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,40.5
+ parent: 2
+ - uid: 4529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,39.5
+ parent: 2
+ - uid: 4536
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,47.5
+ parent: 2
+ - uid: 4537
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,46.5
+ parent: 2
+ - uid: 4538
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,45.5
+ parent: 2
+ - uid: 4540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,44.5
+ parent: 2
+ - uid: 4568
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,43.5
+ parent: 2
+ - uid: 4572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,42.5
+ parent: 2
+ - uid: 4615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,41.5
+ parent: 2
+ - uid: 4752
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,40.5
+ parent: 2
+ - uid: 4926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,39.5
+ parent: 2
+ - uid: 5320
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,38.5
+ parent: 2
+ - uid: 5321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,49.5
+ parent: 2
+ - uid: 6429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,49.5
+ parent: 2
+ - uid: 6430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,49.5
+ parent: 2
+ - uid: 8058
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,49.5
+ parent: 2
+ - uid: 8275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,49.5
+ parent: 2
+ - uid: 8282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,49.5
+ parent: 2
+ - uid: 8283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,49.5
+ parent: 2
+ - uid: 8284
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,50.5
+ parent: 2
+ - uid: 8290
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,51.5
+ parent: 2
+ - uid: 8291
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,50.5
+ parent: 2
+ - uid: 8292
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,50.5
+ parent: 2
+ - uid: 8293
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,50.5
+ parent: 2
+ - uid: 8391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,46.5
+ parent: 2
+ - uid: 8398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,45.5
+ parent: 2
+ - uid: 8409
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,44.5
+ parent: 2
+ - uid: 8410
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,43.5
+ parent: 2
+ - uid: 8412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,46.5
+ parent: 2
+ - uid: 8413
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,45.5
+ parent: 2
+ - uid: 8414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,44.5
+ parent: 2
+ - uid: 8418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,43.5
+ parent: 2
+ - uid: 8419
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,45.5
+ parent: 2
+ - uid: 8422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,44.5
+ parent: 2
+ - uid: 8423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,43.5
+ parent: 2
+ - uid: 8426
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,44.5
+ parent: 2
+ - uid: 9775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,43.5
+ parent: 2
+ - uid: 9776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,43.5
+ parent: 2
+ - uid: 9777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,42.5
+ parent: 2
+ - uid: 9780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,42.5
+ parent: 2
+ - uid: 9781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,42.5
+ parent: 2
+ - uid: 9782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,42.5
+ parent: 2
+ - uid: 9784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,42.5
+ parent: 2
+ - uid: 9785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,42.5
+ parent: 2
+ - uid: 9786
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,42.5
+ parent: 2
+ - uid: 9821
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,42.5
+ parent: 2
+ - uid: 9822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,42.5
+ parent: 2
+ - uid: 9823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,43.5
+ parent: 2
+ - uid: 9824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,44.5
+ parent: 2
+ - uid: 9825
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,45.5
+ parent: 2
+ - uid: 9826
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,46.5
+ parent: 2
+ - uid: 9828
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,47.5
+ parent: 2
+ - uid: 9829
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,43.5
+ parent: 2
+ - uid: 9830
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,45.5
+ parent: 2
+ - uid: 9831
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,44.5
+ parent: 2
+ - uid: 9832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,46.5
+ parent: 2
+ - uid: 9833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,47.5
+ parent: 2
+ - uid: 9834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,41.5
+ parent: 2
+ - uid: 9842
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,41.5
+ parent: 2
+ - uid: 9844
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,41.5
+ parent: 2
+ - uid: 9845
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,41.5
+ parent: 2
+ - uid: 9846
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,41.5
+ parent: 2
+ - uid: 9847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,41.5
+ parent: 2
+ - uid: 9848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,41.5
+ parent: 2
+ - uid: 9849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,41.5
+ parent: 2
+ - uid: 9852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,41.5
+ parent: 2
+ - uid: 9859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,41.5
+ parent: 2
+ - uid: 9860
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,41.5
+ parent: 2
+ - uid: 9861
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,40.5
+ parent: 2
+ - uid: 9862
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,40.5
+ parent: 2
+ - uid: 9863
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,40.5
+ parent: 2
+ - uid: 9864
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,40.5
+ parent: 2
+ - uid: 9865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,40.5
+ parent: 2
+ - uid: 9866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,40.5
+ parent: 2
+ - uid: 9874
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,39.5
+ parent: 2
+ - uid: 9875
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,39.5
+ parent: 2
+ - uid: 9876
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,39.5
+ parent: 2
+ - uid: 9877
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,39.5
+ parent: 2
+ - uid: 9878
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,38.5
+ parent: 2
- proto: CP14BloodFlower
entities:
- uid: 450
@@ -42741,6 +43237,16 @@ entities:
- type: Transform
pos: 12.690238,1.7586405
parent: 2
+ - uid: 14971
+ components:
+ - type: Transform
+ pos: 18.489126,16.696
+ parent: 2
+ - uid: 14972
+ components:
+ - type: Transform
+ pos: 18.607292,16.662266
+ parent: 2
- proto: CP14BlueBottle
entities:
- uid: 1722
@@ -42809,31 +43315,6 @@ entities:
- type: Transform
pos: 27.5,-10.5
parent: 2
- - uid: 1750
- components:
- - type: Transform
- pos: -5.5,5.5
- parent: 2
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1757
- - 1776
- - 1809
- - 1810
- - 1819
- - 1835
- - 1888
- - 1889
- - 1891
- - 1892
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- uid: 12928
components:
- type: Transform
@@ -42846,6 +43327,38 @@ entities:
- type: Transform
pos: -3.5,-14.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:
+ - 1294
+ - 1292
+ - 1291
+ - 1290
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: CP14BrassChestFilledFarmSeeds
entities:
- uid: 7083
@@ -42900,6 +43413,12 @@ entities:
- type: Transform
pos: -13.667878,-31.288353
parent: 2
+ - uid: 1889
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.98245,13.708712
+ parent: 2
- uid: 1894
components:
- type: Transform
@@ -42952,10 +43471,987 @@ entities:
- type: Transform
pos: 3.6474295,-6.118106
parent: 2
- - uid: 14860
+- proto: CP14CandleBlackInfinite
+ entities:
+ - uid: 13910
components:
- type: Transform
- pos: 25.801968,5.8332725
+ pos: -20.330748,12.709661
+ parent: 2
+- proto: CP14CarpetBlue
+ entities:
+ - uid: 23
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,18.5
+ parent: 2
+ - uid: 28
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,19.5
+ parent: 2
+ - uid: 729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,18.5
+ parent: 2
+ - uid: 733
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,20.5
+ parent: 2
+ - uid: 12370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,5.5
+ parent: 2
+ - uid: 12389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,4.5
+ parent: 2
+ - uid: 13578
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,5.5
+ parent: 2
+ - uid: 13627
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,4.5
+ parent: 2
+ - uid: 13629
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,4.5
+ parent: 2
+ - uid: 13630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,5.5
+ parent: 2
+ - uid: 13633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,19.5
+ parent: 2
+ - uid: 13634
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,20.5
+ parent: 2
+ - uid: 13635
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,18.5
+ parent: 2
+ - uid: 13636
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,19.5
+ parent: 2
+ - uid: 13641
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,20.5
+ parent: 2
+ - uid: 13877
+ components:
+ - type: Transform
+ pos: -16.5,2.5
+ parent: 2
+ - uid: 13909
+ components:
+ - type: Transform
+ pos: -16.5,3.5
+ parent: 2
+ - uid: 13912
+ components:
+ - type: Transform
+ pos: -16.5,4.5
+ parent: 2
+ - uid: 14083
+ components:
+ - type: Transform
+ pos: -15.5,2.5
+ parent: 2
+ - uid: 14084
+ components:
+ - type: Transform
+ pos: -15.5,3.5
+ parent: 2
+ - uid: 14085
+ components:
+ - type: Transform
+ pos: -15.5,4.5
+ parent: 2
+ - uid: 14086
+ components:
+ - type: Transform
+ pos: -15.5,-6.5
+ parent: 2
+ - uid: 14087
+ components:
+ - type: Transform
+ pos: -15.5,-5.5
+ parent: 2
+ - uid: 14088
+ components:
+ - type: Transform
+ pos: -16.5,-5.5
+ parent: 2
+ - uid: 14089
+ components:
+ - type: Transform
+ pos: -17.5,-6.5
+ parent: 2
+ - uid: 14090
+ components:
+ - type: Transform
+ pos: -17.5,-5.5
+ parent: 2
+ - uid: 14091
+ components:
+ - type: Transform
+ pos: -16.5,-6.5
+ parent: 2
+ - uid: 14098
+ components:
+ - type: Transform
+ pos: 6.5,-5.5
+ parent: 2
+ - uid: 14099
+ components:
+ - type: Transform
+ pos: 6.5,-4.5
+ parent: 2
+ - uid: 14100
+ components:
+ - type: Transform
+ pos: 6.5,-3.5
+ parent: 2
+ - uid: 14101
+ components:
+ - type: Transform
+ pos: 7.5,-5.5
+ parent: 2
+ - uid: 14102
+ components:
+ - type: Transform
+ pos: 7.5,-4.5
+ parent: 2
+ - uid: 14103
+ components:
+ - type: Transform
+ pos: 7.5,-3.5
+ parent: 2
+ - uid: 14872
+ components:
+ - type: Transform
+ pos: 0.5,14.5
+ parent: 2
+ - uid: 14873
+ components:
+ - type: Transform
+ pos: 0.5,15.5
+ parent: 2
+ - uid: 14874
+ components:
+ - type: Transform
+ pos: -0.5,14.5
+ parent: 2
+ - uid: 14875
+ components:
+ - type: Transform
+ pos: -0.5,15.5
+ parent: 2
+ - uid: 14876
+ components:
+ - type: Transform
+ pos: -0.5,16.5
+ parent: 2
+ - uid: 14877
+ components:
+ - type: Transform
+ pos: 0.5,16.5
+ parent: 2
+ - uid: 14878
+ components:
+ - type: Transform
+ pos: 4.5,-32.5
+ parent: 2
+ - uid: 14879
+ components:
+ - type: Transform
+ pos: 4.5,-31.5
+ parent: 2
+ - uid: 14880
+ components:
+ - type: Transform
+ pos: 5.5,-32.5
+ parent: 2
+ - uid: 14881
+ components:
+ - type: Transform
+ pos: 5.5,-31.5
+ parent: 2
+ - uid: 14882
+ components:
+ - type: Transform
+ pos: 6.5,-32.5
+ parent: 2
+ - uid: 14883
+ components:
+ - type: Transform
+ pos: 6.5,-31.5
+ parent: 2
+ - uid: 14884
+ components:
+ - type: Transform
+ pos: -7.5,-43.5
+ parent: 2
+ - uid: 14885
+ components:
+ - type: Transform
+ pos: -7.5,-42.5
+ parent: 2
+ - uid: 14886
+ components:
+ - type: Transform
+ pos: -7.5,-41.5
+ parent: 2
+ - uid: 14887
+ components:
+ - type: Transform
+ pos: -8.5,-43.5
+ parent: 2
+ - uid: 14888
+ components:
+ - type: Transform
+ pos: -8.5,-42.5
+ parent: 2
+ - uid: 14889
+ components:
+ - type: Transform
+ pos: -8.5,-41.5
+ parent: 2
+ - uid: 14902
+ components:
+ - type: Transform
+ pos: 11.5,-27.5
+ parent: 2
+ - uid: 14903
+ components:
+ - type: Transform
+ pos: 11.5,-26.5
+ parent: 2
+ - uid: 14904
+ components:
+ - type: Transform
+ pos: 12.5,-27.5
+ parent: 2
+ - uid: 14905
+ components:
+ - type: Transform
+ pos: 12.5,-26.5
+ parent: 2
+ - uid: 14906
+ components:
+ - type: Transform
+ pos: 13.5,-27.5
+ parent: 2
+ - uid: 14907
+ components:
+ - type: Transform
+ pos: 13.5,-26.5
+ parent: 2
+ - uid: 14908
+ components:
+ - type: Transform
+ pos: 18.5,-27.5
+ parent: 2
+ - uid: 14909
+ components:
+ - type: Transform
+ pos: 18.5,-26.5
+ parent: 2
+ - uid: 14910
+ components:
+ - type: Transform
+ pos: 19.5,-27.5
+ parent: 2
+ - uid: 14911
+ components:
+ - type: Transform
+ pos: 19.5,-26.5
+ parent: 2
+ - uid: 14912
+ components:
+ - type: Transform
+ pos: 20.5,-27.5
+ parent: 2
+ - uid: 14913
+ components:
+ - type: Transform
+ pos: 20.5,-26.5
+ parent: 2
+ - uid: 14914
+ components:
+ - type: Transform
+ pos: 20.5,-25.5
+ parent: 2
+ - uid: 14915
+ components:
+ - type: Transform
+ pos: 19.5,-25.5
+ parent: 2
+ - uid: 14916
+ components:
+ - type: Transform
+ pos: 18.5,-25.5
+ parent: 2
+ - uid: 14917
+ components:
+ - type: Transform
+ pos: 17.5,-20.5
+ parent: 2
+ - uid: 14918
+ components:
+ - type: Transform
+ pos: 17.5,-19.5
+ parent: 2
+ - uid: 14919
+ components:
+ - type: Transform
+ pos: 17.5,-18.5
+ parent: 2
+ - uid: 14920
+ components:
+ - type: Transform
+ pos: 17.5,-16.5
+ parent: 2
+ - uid: 14921
+ components:
+ - type: Transform
+ pos: 17.5,-15.5
+ parent: 2
+ - uid: 14922
+ components:
+ - type: Transform
+ pos: 17.5,-14.5
+ parent: 2
+ - uid: 14923
+ components:
+ - type: Transform
+ pos: 11.5,-16.5
+ parent: 2
+ - uid: 14924
+ components:
+ - type: Transform
+ pos: 11.5,-15.5
+ parent: 2
+ - uid: 14925
+ components:
+ - type: Transform
+ pos: 11.5,-14.5
+ parent: 2
+ - uid: 14926
+ components:
+ - type: Transform
+ pos: 11.5,-20.5
+ parent: 2
+ - uid: 14927
+ components:
+ - type: Transform
+ pos: 11.5,-19.5
+ parent: 2
+ - uid: 14928
+ components:
+ - type: Transform
+ pos: 11.5,-18.5
+ parent: 2
+ - uid: 14929
+ components:
+ - type: Transform
+ pos: 19.5,-43.5
+ parent: 2
+ - uid: 14930
+ components:
+ - type: Transform
+ pos: 19.5,-42.5
+ parent: 2
+ - uid: 14931
+ components:
+ - type: Transform
+ pos: 20.5,-43.5
+ parent: 2
+ - uid: 14932
+ components:
+ - type: Transform
+ pos: 20.5,-42.5
+ parent: 2
+- proto: CP14CarpetRed
+ entities:
+ - uid: 145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,28.5
+ parent: 2
+ - uid: 262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,29.5
+ parent: 2
+ - uid: 472
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,29.5
+ parent: 2
+ - uid: 473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,28.5
+ parent: 2
+ - uid: 474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,30.5
+ parent: 2
+ - uid: 482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,23.5
+ parent: 2
+ - uid: 483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,18.5
+ parent: 2
+ - uid: 543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,19.5
+ parent: 2
+ - uid: 551
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,22.5
+ parent: 2
+ - uid: 564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,23.5
+ parent: 2
+ - uid: 566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,18.5
+ parent: 2
+ - uid: 712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,30.5
+ parent: 2
+ - uid: 715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,29.5
+ parent: 2
+ - uid: 718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,30.5
+ parent: 2
+ - uid: 742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,19.5
+ parent: 2
+ - uid: 743
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,18.5
+ parent: 2
+ - uid: 810
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,18.5
+ parent: 2
+ - uid: 841
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,19.5
+ parent: 2
+ - uid: 857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,18.5
+ parent: 2
+ - uid: 1322
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,28.5
+ parent: 2
+ - uid: 1326
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,22.5
+ parent: 2
+ - uid: 1331
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,26.5
+ parent: 2
+ - uid: 1332
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,24.5
+ parent: 2
+ - uid: 1334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,25.5
+ parent: 2
+ - uid: 1340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-31.5
+ parent: 2
+ - uid: 1346
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-33.5
+ parent: 2
+ - uid: 1358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,24.5
+ parent: 2
+ - uid: 1710
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,26.5
+ parent: 2
+ - uid: 1726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,24.5
+ parent: 2
+ - uid: 1750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,25.5
+ parent: 2
+ - uid: 1757
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,26.5
+ parent: 2
+ - uid: 1776
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,23.5
+ parent: 2
+ - uid: 1809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,25.5
+ parent: 2
+ - uid: 1835
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-32.5
+ parent: 2
+ - uid: 2051
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,19.5
+ parent: 2
+ - uid: 2066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,18.5
+ parent: 2
+ - uid: 2120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,18.5
+ parent: 2
+ - uid: 2121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,14.5
+ parent: 2
+ - uid: 2300
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,14.5
+ parent: 2
+ - uid: 2301
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,13.5
+ parent: 2
+ - uid: 2340
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,13.5
+ parent: 2
+ - uid: 2344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,14.5
+ parent: 2
+ - uid: 2349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,13.5
+ parent: 2
+ - uid: 2353
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,14.5
+ parent: 2
+ - uid: 4290
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,19.5
+ parent: 2
+ - uid: 4291
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,20.5
+ parent: 2
+ - uid: 4296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,18.5
+ parent: 2
+ - uid: 4297
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,22.5
+ parent: 2
+ - uid: 4300
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,19.5
+ parent: 2
+ - uid: 4301
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,19.5
+ parent: 2
+ - uid: 4366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,19.5
+ parent: 2
+ - uid: 4368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,20.5
+ parent: 2
+ - uid: 9691
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-31.5
+ parent: 2
+ - uid: 12336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,13.5
+ parent: 2
+ - uid: 12338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-32.5
+ parent: 2
+ - uid: 12367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-33.5
+ parent: 2
+ - uid: 12368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-32.5
+ parent: 2
+ - uid: 12369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-31.5
+ parent: 2
+ - uid: 13009
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,20.5
+ parent: 2
+ - uid: 13047
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-33.5
+ parent: 2
+ - uid: 14092
+ components:
+ - type: Transform
+ pos: -7.5,-5.5
+ parent: 2
+ - uid: 14093
+ components:
+ - type: Transform
+ pos: -7.5,-4.5
+ parent: 2
+ - uid: 14094
+ components:
+ - type: Transform
+ pos: -7.5,-3.5
+ parent: 2
+ - uid: 14095
+ components:
+ - type: Transform
+ pos: -6.5,-5.5
+ parent: 2
+ - uid: 14096
+ components:
+ - type: Transform
+ pos: -6.5,-4.5
+ parent: 2
+ - uid: 14097
+ components:
+ - type: Transform
+ pos: -6.5,-3.5
+ parent: 2
+ - uid: 14104
+ components:
+ - type: Transform
+ pos: 24.5,-9.5
+ parent: 2
+ - uid: 14105
+ components:
+ - type: Transform
+ pos: 24.5,-8.5
+ parent: 2
+ - uid: 14375
+ components:
+ - type: Transform
+ pos: 24.5,-7.5
+ parent: 2
+ - uid: 14379
+ components:
+ - type: Transform
+ pos: 25.5,-9.5
+ parent: 2
+ - uid: 14380
+ components:
+ - type: Transform
+ pos: 25.5,-8.5
+ parent: 2
+ - uid: 14583
+ components:
+ - type: Transform
+ pos: 25.5,-7.5
+ parent: 2
+ - uid: 14866
+ components:
+ - type: Transform
+ pos: 10.5,13.5
+ parent: 2
+ - uid: 14867
+ components:
+ - type: Transform
+ pos: 10.5,14.5
+ parent: 2
+ - uid: 14868
+ components:
+ - type: Transform
+ pos: 11.5,13.5
+ parent: 2
+ - uid: 14869
+ components:
+ - type: Transform
+ pos: 11.5,14.5
+ parent: 2
+ - uid: 14870
+ components:
+ - type: Transform
+ pos: 12.5,13.5
+ parent: 2
+ - uid: 14871
+ components:
+ - type: Transform
+ pos: 12.5,14.5
+ parent: 2
+ - uid: 14890
+ components:
+ - type: Transform
+ pos: -4.5,-42.5
+ parent: 2
+ - uid: 14891
+ components:
+ - type: Transform
+ pos: -4.5,-41.5
+ parent: 2
+ - uid: 14892
+ components:
+ - type: Transform
+ pos: -4.5,-40.5
+ parent: 2
+ - uid: 14893
+ components:
+ - type: Transform
+ pos: -3.5,-42.5
+ parent: 2
+ - uid: 14894
+ components:
+ - type: Transform
+ pos: -3.5,-41.5
+ parent: 2
+ - uid: 14895
+ components:
+ - type: Transform
+ pos: -3.5,-40.5
+ parent: 2
+ - uid: 14896
+ components:
+ - type: Transform
+ pos: -16.5,-30.5
+ parent: 2
+ - uid: 14897
+ components:
+ - type: Transform
+ pos: -16.5,-29.5
+ parent: 2
+ - uid: 14898
+ components:
+ - type: Transform
+ pos: -16.5,-28.5
+ parent: 2
+ - uid: 14899
+ components:
+ - type: Transform
+ pos: -15.5,-30.5
+ parent: 2
+ - uid: 14900
+ components:
+ - type: Transform
+ pos: -15.5,-29.5
+ parent: 2
+ - uid: 14901
+ components:
+ - type: Transform
+ pos: -15.5,-28.5
+ parent: 2
+ - uid: 15004
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,15.5
+ parent: 2
+ - uid: 15007
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,16.5
+ parent: 2
+ - uid: 15008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,17.5
+ parent: 2
+ - uid: 15009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,15.5
+ parent: 2
+ - uid: 15010
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,16.5
+ parent: 2
+ - uid: 15011
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,17.5
parent: 2
- proto: CP14CashConverter
entities:
@@ -42964,18 +44460,6 @@ entities:
- type: Transform
pos: -6.5,-14.5
parent: 2
- - uid: 1498
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,20.5
- parent: 2
- - uid: 1505
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,20.5
- parent: 2
- uid: 1815
components:
- type: Transform
@@ -42987,22 +44471,20 @@ entities:
rot: 1.5707963267948966 rad
pos: -9.5,17.5
parent: 2
-- proto: CP14Cauldron
- entities:
- - uid: 15363
+ - uid: 2268
components:
- type: Transform
- pos: -47.49066,-72.15655
+ rot: 1.5707963267948966 rad
+ pos: -20.5,20.5
+ parent: 2
+ - uid: 13008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,20.5
parent: 2
- - type: CollisionWake
- enabled: False
- proto: CP14ChairWooden
entities:
- - uid: 482
- components:
- - type: Transform
- pos: 22.046356,15.55394
- parent: 2
- uid: 959
components:
- type: Transform
@@ -43212,12 +44694,6 @@ entities:
- type: Transform
pos: 33.559635,16.54992
parent: 2
- - uid: 8860
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,2.5
- parent: 2
- uid: 8861
components:
- type: Transform
@@ -43284,6 +44760,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -8.34167,-22.535267
parent: 2
+ - uid: 12388
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.496236,5.6088257
+ parent: 2
- uid: 12883
components:
- type: Transform
@@ -43296,10 +44778,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 22.732063,-41.13462
parent: 2
- - uid: 13762
+ - uid: 13015
components:
- type: Transform
- pos: 20.576557,13.560652
+ rot: -1.5707963267948966 rad
+ pos: 21.445717,13.5019865
parent: 2
- uid: 13911
components:
@@ -43312,6 +44795,12 @@ entities:
- type: Transform
pos: 6.582566,-6.5016246
parent: 2
+ - uid: 14967
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.40942,4.6642976
+ parent: 2
- proto: CP14Chasm
entities:
- uid: 12416
@@ -43404,6 +44893,26 @@ entities:
- type: Transform
pos: -2.5,48.5
parent: 2
+- proto: CP14ClosetGlassShowcase
+ entities:
+ - uid: 13153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,14.5
+ parent: 2
+ - uid: 13600
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,14.5
+ parent: 2
+ - uid: 14965
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,0.5
+ parent: 2
- proto: CP14Cloth10
entities:
- uid: 4079
@@ -43440,37 +44949,108 @@ entities:
- type: Transform
pos: -1.5383277,-16.33084
parent: 2
- - uid: 17925
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.302058,-33.39822
- parent: 2
- uid: 17927
components:
- type: Transform
pos: 13.335819,-37.39392
parent: 2
+ - type: Storage
+ storedItems:
+ 9892:
+ position: 0,0
+ _rotation: South
+ 9893:
+ position: 1,0
+ _rotation: South
+ 9894:
+ position: 2,0
+ _rotation: South
+ 9895:
+ position: 3,0
+ _rotation: South
+ 9896:
+ position: 4,0
+ _rotation: South
+ 9903:
+ position: 5,0
+ _rotation: South
+ 9904:
+ position: 6,0
+ _rotation: South
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 9892
+ - 9893
+ - 9894
+ - 9895
+ - 9896
+ - 9903
+ - 9904
- uid: 17928
components:
- type: Transform
- pos: 13.673441,-37.39392
+ pos: 13.788462,-37.38208
parent: 2
+ - type: Storage
+ storedItems:
+ 9905:
+ position: 0,0
+ _rotation: South
+ 9906:
+ position: 1,0
+ _rotation: South
+ 9907:
+ position: 2,0
+ _rotation: South
+ 9908:
+ position: 3,0
+ _rotation: South
+ 9909:
+ position: 4,0
+ _rotation: South
+ 9910:
+ position: 5,0
+ _rotation: South
+ 9911:
+ position: 6,0
+ _rotation: South
+ 9917:
+ position: 7,0
+ _rotation: South
+ 9918:
+ position: 0,2
+ _rotation: South
+ 9919:
+ position: 1,2
+ _rotation: South
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 9905
+ - 9906
+ - 9907
+ - 9908
+ - 9909
+ - 9910
+ - 9911
+ - 9917
+ - 9918
+ - 9919
- proto: CP14ClothingCloakCaptainJacket
entities:
- - uid: 12389
+ - uid: 9932
components:
- type: Transform
- parent: 12388
+ parent: 9931
- type: Physics
canCollide: False
-- proto: CP14ClothingCloakCommandantJacket
- entities:
- - uid: 1491
- components:
- - type: Transform
- pos: -1.4960303,17.444843
- parent: 2
- proto: CP14ClothingCloakFurcapeBlack
entities:
- uid: 10149
@@ -43507,13 +45087,14 @@ entities:
- type: Transform
pos: -1.1122953,17.77208
parent: 2
-- proto: CP14ClothingHeadBowlerGolden
+- proto: CP14ClothingHeadCaptainCap
entities:
- - uid: 3643
+ - uid: 9933
components:
- type: Transform
- pos: -1.0185453,17.67833
- parent: 2
+ parent: 9931
+ - type: Physics
+ canCollide: False
- proto: CP14ClothingHeadMetalHeadband
entities:
- uid: 12904
@@ -43530,13 +45111,6 @@ entities:
parent: 12897
- type: Physics
canCollide: False
-- proto: CP14ClothingShirtBanker
- entities:
- - uid: 1525
- components:
- - type: Transform
- pos: -28.775259,17.752426
- parent: 2
- proto: CP14ClothingShirtCottonWhite
entities:
- uid: 1831
@@ -43553,6 +45127,13 @@ entities:
parent: 12897
- type: Physics
canCollide: False
+- proto: CP14ClothingShirtMerchant
+ entities:
+ - uid: 1525
+ components:
+ - type: Transform
+ pos: -28.775259,17.752426
+ parent: 2
- proto: CP14ClothingShoesAristocraticBlack
entities:
- uid: 12896
@@ -44028,11 +45609,6 @@ entities:
parent: 2
- proto: CP14CrystalElementalWaterBig
entities:
- - uid: 4615
- components:
- - type: Transform
- pos: -47.562897,-74.41485
- parent: 2
- uid: 12929
components:
- type: Transform
@@ -44321,12 +45897,6 @@ entities:
rot: 3.141592653589793 rad
pos: 4.5,12.5
parent: 2
- - uid: 999
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,12.5
- parent: 2
- uid: 1000
components:
- type: Transform
@@ -44533,12 +46103,6 @@ entities:
rot: 3.141592653589793 rad
pos: 10.5,12.5
parent: 2
- - uid: 4133
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,12.5
- parent: 2
- uid: 4134
components:
- type: Transform
@@ -44622,6 +46186,12 @@ entities:
rot: 3.141592653589793 rad
pos: 14.5,0.5
parent: 2
+ - uid: 11862
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,12.5
+ parent: 2
- uid: 12048
components:
- type: Transform
@@ -44664,18 +46234,20 @@ entities:
rot: 3.141592653589793 rad
pos: 16.5,0.5
parent: 2
+ - uid: 15005
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,18.5
+ parent: 2
+ - uid: 15006
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,17.5
+ parent: 2
- proto: CP14Dayflin
entities:
- - uid: 3609
- components:
- - type: Transform
- pos: -4.763483,-32.3822
- parent: 2
- - uid: 3623
- components:
- - type: Transform
- pos: -4.638483,-32.429073
- parent: 2
- uid: 12108
components:
- type: Transform
@@ -44735,10 +46307,10 @@ entities:
parent: 2
- proto: CP14DemiplaneKeyT2
entities:
- - uid: 2304
+ - uid: 9891
components:
- type: Transform
- pos: -26.134733,-67.31861
+ pos: -3.4921436,-11.302136
parent: 2
- proto: CP14DirtBlock1
entities:
@@ -44780,14 +46352,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 16.07972,-4.6309657
parent: 2
-- proto: CP14FenceIronGrilleGate
- entities:
- - uid: 1334
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,24.5
- parent: 2
- proto: CP14FenceIronGrilleGateDemiplaneCrystal
entities:
- uid: 975
@@ -44811,84 +46375,6 @@ entities:
parent: 2
- proto: CP14FenceIronGrilleStraight
entities:
- - uid: 1298
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,24.5
- parent: 2
- - uid: 1346
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,24.5
- parent: 2
- - uid: 1445
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,21.5
- parent: 2
- - uid: 1454
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,19.5
- parent: 2
- - uid: 1467
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,16.5
- parent: 2
- - uid: 1469
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,18.5
- parent: 2
- - uid: 1471
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,17.5
- parent: 2
- - uid: 1480
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,22.5
- parent: 2
- - uid: 1492
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,20.5
- parent: 2
- - uid: 1534
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,19.5
- parent: 2
- - uid: 1542
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,20.5
- parent: 2
- - uid: 1543
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,21.5
- parent: 2
- - uid: 1592
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,23.5
- parent: 2
- uid: 4657
components:
- type: Transform
@@ -45038,6 +46524,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 14.5,-22.5
parent: 2
+ - uid: 3609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,13.5
+ parent: 2
- uid: 6692
components:
- type: Transform
@@ -45084,6 +46576,12 @@ entities:
- type: Transform
pos: -5.5,-18.5
parent: 2
+ - uid: 12716
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,12.5
+ parent: 2
- uid: 12875
components:
- type: Transform
@@ -45126,6 +46624,18 @@ entities:
- type: Transform
pos: -18.5,16.5
parent: 2
+ - uid: 14604
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,3.5
+ parent: 2
+ - uid: 14855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,3.5
+ parent: 2
- proto: CP14FenceWoodCorner
entities:
- uid: 453
@@ -45190,6 +46700,11 @@ entities:
parent: 2
- proto: CP14FenceWoodSmallCorner
entities:
+ - uid: 1137
+ components:
+ - type: Transform
+ pos: 31.5,-1.5
+ parent: 2
- uid: 1623
components:
- type: Transform
@@ -45256,10 +46771,10 @@ entities:
rot: 3.141592653589793 rad
pos: 28.5,-3.5
parent: 2
- - uid: 5321
+ - uid: 1285
components:
- type: Transform
- pos: -46.5,-75.5
+ pos: 30.5,-1.5
parent: 2
- uid: 9049
components:
@@ -45267,18 +46782,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -12.5,-3.5
parent: 2
- - uid: 10217
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 105.5,60.5
- parent: 2
- - uid: 10758
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,63.5
- parent: 2
- uid: 11847
components:
- type: Transform
@@ -45286,17 +46789,6 @@ entities:
parent: 2
- proto: CP14FenceWoodSmallStraight
entities:
- - uid: 551
- components:
- - type: Transform
- pos: 4.5,18.5
- parent: 2
- - uid: 604
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-25.5
- parent: 2
- uid: 1018
components:
- type: Transform
@@ -45314,12 +46806,23 @@ entities:
rot: 3.141592653589793 rad
pos: 5.5,-25.5
parent: 2
+ - uid: 1142
+ components:
+ - type: Transform
+ pos: 29.5,-1.5
+ parent: 2
- uid: 1165
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 27.5,-3.5
parent: 2
+ - uid: 1183
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-0.5
+ parent: 2
- uid: 1325
components:
- type: Transform
@@ -45810,6 +47313,18 @@ entities:
rot: -1.5707963267948966 rad
pos: 6.5,-24.5
parent: 2
+ - uid: 13038
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,16.5
+ parent: 2
+ - uid: 14963
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,0.5
+ parent: 2
- proto: CP14FenceWoodStraight
entities:
- uid: 574
@@ -46157,12 +47672,37 @@ entities:
parent: 2
- proto: CP14FloorWater
entities:
+ - uid: 22
+ components:
+ - type: Transform
+ pos: 20.5,23.5
+ parent: 2
- uid: 655
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -19.5,-11.5
parent: 2
+ - uid: 871
+ components:
+ - type: Transform
+ pos: 20.5,25.5
+ parent: 2
+ - uid: 873
+ components:
+ - type: Transform
+ pos: 19.5,23.5
+ parent: 2
+ - uid: 875
+ components:
+ - type: Transform
+ pos: 19.5,24.5
+ parent: 2
+ - uid: 877
+ components:
+ - type: Transform
+ pos: 20.5,24.5
+ parent: 2
- uid: 1300
components:
- type: Transform
@@ -46283,6 +47823,76 @@ entities:
rot: 3.141592653589793 rad
pos: -69.5,28.5
parent: 2
+ - uid: 4252
+ components:
+ - type: Transform
+ pos: 19.5,22.5
+ parent: 2
+ - uid: 4253
+ components:
+ - type: Transform
+ pos: 19.5,21.5
+ parent: 2
+ - uid: 4375
+ components:
+ - type: Transform
+ pos: 18.5,24.5
+ parent: 2
+ - uid: 4376
+ components:
+ - type: Transform
+ pos: 21.5,23.5
+ parent: 2
+ - uid: 4378
+ components:
+ - type: Transform
+ pos: 18.5,22.5
+ parent: 2
+ - uid: 4379
+ components:
+ - type: Transform
+ pos: 18.5,23.5
+ parent: 2
+ - uid: 4381
+ components:
+ - type: Transform
+ pos: 22.5,24.5
+ parent: 2
+ - uid: 4382
+ components:
+ - type: Transform
+ pos: 21.5,25.5
+ parent: 2
+ - uid: 4383
+ components:
+ - type: Transform
+ pos: 21.5,24.5
+ parent: 2
+ - uid: 4384
+ components:
+ - type: Transform
+ pos: 20.5,22.5
+ parent: 2
+ - uid: 4385
+ components:
+ - type: Transform
+ pos: 20.5,21.5
+ parent: 2
+ - uid: 4386
+ components:
+ - type: Transform
+ pos: 17.5,23.5
+ parent: 2
+ - uid: 4397
+ components:
+ - type: Transform
+ pos: 19.5,25.5
+ parent: 2
+ - uid: 4407
+ components:
+ - type: Transform
+ pos: 21.5,22.5
+ parent: 2
- uid: 5001
components:
- type: Transform
@@ -46331,28 +47941,35 @@ entities:
rot: -1.5707963267948966 rad
pos: -19.5,-12.5
parent: 2
-- proto: CP14FloraTreeSnow
+- proto: CP14FloraTreeGreen
entities:
- - uid: 12684
- components:
- - type: Transform
- pos: 17.5,-38.5
- parent: 2
- - uid: 12711
+ - uid: 468
components:
- type: Transform
pos: 22.5,-36.5
parent: 2
- - uid: 12729
- components:
- - type: Transform
- pos: -0.5,19.5
- parent: 2
- - uid: 12733
+ - uid: 502
components:
- type: Transform
pos: 3.5,22.5
parent: 2
+ - uid: 4293
+ components:
+ - type: Transform
+ pos: 4.5,-13.5
+ parent: 2
+- proto: CP14FloraTreeGreenLarge
+ entities:
+ - uid: 478
+ components:
+ - type: Transform
+ pos: 17.5,-38.5
+ parent: 2
+ - uid: 526
+ components:
+ - type: Transform
+ pos: -0.5,19.5
+ parent: 2
- proto: CP14FluteInstrument
entities:
- uid: 1136
@@ -46458,6 +48075,11 @@ entities:
- type: Transform
pos: 33.655952,15.855514
parent: 2
+ - uid: 14973
+ components:
+ - type: Transform
+ pos: 18.23591,17.03333
+ parent: 2
- proto: CP14FoodCheeseSlice
entities:
- uid: 13880
@@ -46467,16 +48089,6 @@ entities:
parent: 2
- proto: CP14FoodCheeseWheel
entities:
- - uid: 1376
- components:
- - type: Transform
- pos: -28.577524,19.783827
- parent: 2
- - uid: 1377
- components:
- - type: Transform
- pos: -28.307573,19.536451
- parent: 2
- uid: 13854
components:
- type: Transform
@@ -46484,11 +48096,6 @@ entities:
parent: 2
- proto: CP14FoodCucumber
entities:
- - uid: 1378
- components:
- - type: Transform
- pos: -28.709595,19.25534
- parent: 2
- uid: 5567
components:
- type: Transform
@@ -46511,6 +48118,17 @@ entities:
rot: 3.141592653589793 rad
pos: 18.272541,-43.35927
parent: 2
+ - uid: 14974
+ components:
+ - type: Transform
+ pos: 18.691696,17.252596
+ parent: 2
+ - uid: 15002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.287128,13.164091
+ parent: 2
- proto: CP14FoodEgg
entities:
- uid: 13851
@@ -46833,6 +48451,28 @@ entities:
rot: -1.5707963267948966 rad
pos: 44.5,-18.5
parent: 2
+- proto: CP14GatherableWaterAirLily
+ entities:
+ - uid: 4292
+ components:
+ - type: Transform
+ pos: 20.5,23.5
+ parent: 2
+ - uid: 15014
+ components:
+ - type: Transform
+ pos: 19.5,23.5
+ parent: 2
+ - uid: 15015
+ components:
+ - type: Transform
+ pos: 20.5,25.5
+ parent: 2
+ - uid: 15016
+ components:
+ - type: Transform
+ pos: 18.5,23.5
+ parent: 2
- proto: CP14GatherableWildSage
entities:
- uid: 7796
@@ -46876,10 +48516,10 @@ entities:
parent: 2
- proto: CP14GoldCoin1
entities:
- - uid: 8690
+ - uid: 9943
components:
- type: Transform
- pos: -0.36587298,17.584122
+ pos: -1.4171557,17.239073
parent: 2
- uid: 13403
components:
@@ -46906,6 +48546,14 @@ entities:
- type: Transform
pos: -1.2998962,16.85352
parent: 2
+- proto: CP14HeadSkeleton
+ entities:
+ - uid: 4245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -22.48449,17.24602
+ parent: 2
- proto: CP14Inkwell
entities:
- uid: 594
@@ -47076,10 +48724,22 @@ entities:
parent: 2
- proto: CP14IronDoorMirroredBlacksmith1
entities:
- - uid: 9224
+ - uid: 13621
components:
- type: Transform
- pos: -4.5,2.5
+ pos: 27.5,-1.5
+ parent: 2
+ - uid: 13622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,4.5
+ parent: 2
+ - uid: 14859
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,5.5
parent: 2
- proto: CP14IronDoorMirroredBlacksmith2
entities:
@@ -47102,7 +48762,7 @@ entities:
parent: 2
- proto: CP14IronDoorWindowedBankEntrance
entities:
- - uid: 664
+ - uid: 4370
components:
- type: Transform
pos: -18.5,11.5
@@ -47159,12 +48819,12 @@ entities:
- type: Transform
pos: 8.68605,5.5932236
parent: 2
-- proto: CP14KeyRingBanker
+- proto: CP14KeyRingMerchant
entities:
- - uid: 1536
+ - uid: 2256
components:
- type: Transform
- pos: -17.302443,26.468973
+ pos: -17.403591,26.451305
parent: 2
- uid: 10679
components:
@@ -47173,6 +48833,12 @@ entities:
parent: 2
- proto: CP14LaddersDownStoneAutoLink
entities:
+ - uid: 1888
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-0.5
+ parent: 2
- uid: 2049
components:
- type: Transform
@@ -47185,12 +48851,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 19.5,-18.5
parent: 2
- - uid: 2328
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,5.5
- parent: 2
- uid: 5092
components:
- type: Transform
@@ -47216,11 +48876,11 @@ entities:
parent: 2
- proto: CP14LaddersDownWoodAutoLink
entities:
- - uid: 601
+ - uid: 1819
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,5.5
parent: 2
- uid: 7925
components:
@@ -47245,12 +48905,6 @@ entities:
rot: 3.141592653589793 rad
pos: -6.5,-38.5
parent: 2
- - uid: 12652
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-0.5
- parent: 2
- uid: 12653
components:
- type: Transform
@@ -47395,12 +49049,6 @@ entities:
- type: Transform
pos: 1.5,-24.5
parent: 2
- - uid: 1181
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,10.5
- parent: 2
- uid: 1801
components:
- type: Transform
@@ -47470,11 +49118,6 @@ entities:
parent: 2
- proto: CP14LamppostBlue
entities:
- - uid: 1591
- components:
- - type: Transform
- pos: 5.5,18.5
- parent: 2
- uid: 8789
components:
- type: Transform
@@ -47489,11 +49132,6 @@ entities:
rot: 3.141592653589793 rad
pos: 7.5,-32.5
parent: 2
- - uid: 5320
- components:
- - type: Transform
- pos: -45.5,-74.5
- parent: 2
- uid: 13976
components:
- type: Transform
@@ -47649,12 +49287,6 @@ entities:
- type: Transform
pos: 7.5,-37.5
parent: 2
- - uid: 8374
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,19.5
- parent: 2
- uid: 12914
components:
- type: Transform
@@ -47665,6 +49297,12 @@ entities:
- type: Transform
pos: 17.5,-40.5
parent: 2
+ - uid: 13043
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,19.5
+ parent: 2
- uid: 13402
components:
- type: Transform
@@ -47727,7 +49365,7 @@ entities:
parent: 2
- proto: CP14Mannequin
entities:
- - uid: 12388
+ - uid: 9931
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -47754,7 +49392,7 @@ entities:
cloak: !type:ContainerSlot
showEnts: False
occludes: False
- ent: 12389
+ ent: 9932
eyes: !type:ContainerSlot
showEnts: False
occludes: False
@@ -47782,7 +49420,7 @@ entities:
head: !type:ContainerSlot
showEnts: False
occludes: False
- ent: null
+ ent: 9933
keys: !type:ContainerSlot
showEnts: False
occludes: False
@@ -47846,24 +49484,6 @@ entities:
showEnts: False
occludes: False
ent: null
-- proto: CP14ModularBladeGoldPickaxe
- entities:
- - uid: 1835
- components:
- - type: Transform
- parent: 1750
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CP14ModularBladeGoldRapier
- entities:
- - uid: 1889
- components:
- - type: Transform
- parent: 1750
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: CP14ModularBladeGoldSickle
entities:
- uid: 8890
@@ -47876,80 +49496,26 @@ entities:
- type: Transform
pos: 26.547642,14.641139
parent: 2
-- proto: CP14ModularBladeIronMace
- entities:
- - uid: 1776
+ - uid: 14947
components:
- type: Transform
- parent: 1750
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1809
+ rot: -1.5707963267948966 rad
+ pos: 26.672636,1.6794991
+ parent: 2
+ - uid: 14948
components:
- type: Transform
- parent: 1750
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
+ rot: -1.5707963267948966 rad
+ pos: 26.503826,1.3759007
+ parent: 2
- proto: CP14ModularBladeIronShovel
entities:
- - uid: 1757
- components:
- - type: Transform
- parent: 1750
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 2332
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -23.294449,-16.128548
parent: 2
-- proto: CP14ModularGardeSharpCopper
- entities:
- - uid: 1819
- components:
- - type: Transform
- parent: 1750
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CP14ModularGardeSharpIron
- entities:
- - uid: 1810
- components:
- - type: Transform
- parent: 1750
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CP14ModularGripIronLong
- entities:
- - uid: 1892
- components:
- - type: Transform
- parent: 1750
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CP14ModularGripWooden
- entities:
- - uid: 1888
- components:
- - type: Transform
- parent: 1750
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 1891
- components:
- - type: Transform
- parent: 1750
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: CP14ModularGripWoodenLong
entities:
- uid: 8918
@@ -47962,6 +49528,18 @@ entities:
- type: Transform
pos: 26.232697,14.528695
parent: 2
+ - uid: 14939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.453182,1.9324975
+ parent: 2
+ - uid: 14946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.58823,1.9156308
+ parent: 2
- proto: CP14ModularIronAxe
entities:
- uid: 10134
@@ -48020,6 +49598,12 @@ entities:
- type: Transform
pos: 26.378922,13.8540325
parent: 2
+ - uid: 14938
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.76106,1.578301
+ parent: 2
- proto: CP14ModularIronPickaxe
entities:
- uid: 8858
@@ -48045,6 +49629,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -6.2338047,-17.339983
parent: 2
+ - uid: 14937
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.474083,1.898766
+ parent: 2
- proto: CP14ModularIronShovel
entities:
- uid: 583
@@ -48065,6 +49655,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 12.821366,-56.98659
parent: 2
+ - uid: 14935
+ components:
+ - type: Transform
+ pos: 24.866365,1.8144326
+ parent: 2
- proto: CP14ModularIronSickle
entities:
- uid: 617
@@ -48075,6 +49670,18 @@ entities:
canCollide: False
- proto: CP14ModularIronSpear
entities:
+ - uid: 976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.697556,1.4096341
+ parent: 2
+ - uid: 1278
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.849485,1.4433675
+ parent: 2
- uid: 2065
components:
- type: Transform
@@ -48174,16 +49781,6 @@ entities:
parent: 2
- proto: CP14OreGold1
entities:
- - uid: 1522
- components:
- - type: Transform
- pos: -19.350714,26.635136
- parent: 2
- - uid: 5541
- components:
- - type: Transform
- pos: -17.570698,26.43613
- parent: 2
- uid: 8394
components:
- type: Transform
@@ -48194,11 +49791,6 @@ entities:
- type: Transform
pos: -14.368698,16.498537
parent: 2
- - uid: 8806
- components:
- - type: Transform
- pos: -28.378479,18.575125
- parent: 2
- proto: CP14Paper
entities:
- uid: 654
@@ -48305,25 +49897,11 @@ entities:
rot: 3.141592653589793 rad
pos: 11.330545,-31.235428
parent: 2
- - uid: 1849
+ - uid: 2042
components:
- type: Transform
- pos: -19.45603,12.613821
- parent: 2
- - uid: 1851
- components:
- - type: Transform
- pos: -19.658495,12.726265
- parent: 2
- - uid: 1852
- components:
- - type: Transform
- pos: -19.917196,12.602577
- parent: 2
- - uid: 1853
- components:
- - type: Transform
- pos: -20.119661,12.692532
+ rot: -1.5707963267948966 rad
+ pos: 20.618546,12.827324
parent: 2
- uid: 5480
components:
@@ -48343,18 +49921,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 15.595238,4.8787084
parent: 2
- - uid: 5751
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.784061,2.4306998
- parent: 2
- - uid: 5752
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.721561,2.2275748
- parent: 2
- uid: 7198
components:
- type: Transform
@@ -48365,6 +49931,24 @@ entities:
- type: Transform
pos: 19.183289,-26.37381
parent: 2
+ - uid: 9686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.415974,12.608058
+ parent: 2
+ - uid: 11876
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.551022,12.574326
+ parent: 2
+ - uid: 11877
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.530928,3.635046
+ parent: 2
- uid: 12947
components:
- type: Transform
@@ -48383,6 +49967,18 @@ entities:
rot: 3.141592653589793 rad
pos: -16.922123,-6.373603
parent: 2
+ - uid: 14864
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.24395,3.6687794
+ parent: 2
+ - uid: 14865
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.788965,12.995991
+ parent: 2
- proto: CP14PaperFolderBlue
entities:
- uid: 1162
@@ -48502,16 +50098,6 @@ entities:
- type: Transform
pos: 12.719808,-31.255562
parent: 2
- - uid: 1732
- components:
- - type: Transform
- pos: -20.600025,12.624661
- parent: 2
- - uid: 1735
- components:
- - type: Transform
- pos: -20.926216,12.680883
- parent: 2
- uid: 1736
components:
- type: Transform
@@ -48537,22 +50123,11 @@ entities:
- type: Transform
pos: -8.557014,-3.7369661
parent: 2
- - uid: 5784
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.705936,1.6494498
- parent: 2
- uid: 7197
components:
- type: Transform
pos: 18.599396,-26.33354
parent: 2
- - uid: 8081
- components:
- - type: Transform
- pos: 21.381903,14.643862
- parent: 2
- uid: 12949
components:
- type: Transform
@@ -48638,8 +50213,1180 @@ entities:
- type: Transform
pos: -14.327769,-20.256838
parent: 2
+- proto: CP14RandomBushOffsetSpawner
+ entities:
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 17.5,-55.5
+ parent: 2
+ - uid: 267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-8.5
+ parent: 2
+ - uid: 269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-9.5
+ parent: 2
+ - uid: 411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-10.5
+ parent: 2
+ - uid: 435
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-10.5
+ parent: 2
+ - uid: 458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-8.5
+ parent: 2
+ - uid: 463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-8.5
+ parent: 2
+ - uid: 466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-9.5
+ parent: 2
+ - uid: 618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-0.5
+ parent: 2
+ - uid: 664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-12.5
+ parent: 2
+ - uid: 714
+ components:
+ - type: Transform
+ pos: -17.5,-25.5
+ parent: 2
+ - uid: 4251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-14.5
+ parent: 2
+ - uid: 4267
+ components:
+ - type: Transform
+ pos: 19.5,-0.5
+ parent: 2
+ - uid: 4270
+ components:
+ - type: Transform
+ pos: 19.5,-2.5
+ parent: 2
+ - uid: 4271
+ components:
+ - type: Transform
+ pos: 23.5,-2.5
+ parent: 2
+ - uid: 4272
+ components:
+ - type: Transform
+ pos: 16.5,-55.5
+ parent: 2
+ - uid: 4273
+ components:
+ - type: Transform
+ pos: 15.5,-56.5
+ parent: 2
+ - uid: 4276
+ components:
+ - type: Transform
+ pos: 16.5,-56.5
+ parent: 2
+ - uid: 4277
+ components:
+ - type: Transform
+ pos: 6.5,-16.5
+ parent: 2
+ - uid: 4279
+ components:
+ - type: Transform
+ pos: 14.5,-56.5
+ parent: 2
+ - uid: 4280
+ components:
+ - type: Transform
+ pos: 6.5,-24.5
+ parent: 2
+ - uid: 4282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-9.5
+ parent: 2
+ - uid: 4284
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-8.5
+ parent: 2
+ - uid: 4285
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-3.5
+ parent: 2
+ - uid: 4286
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-8.5
+ parent: 2
+ - uid: 4288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-44.5
+ parent: 2
+ - uid: 4289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-9.5
+ parent: 2
+ - uid: 4412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-3.5
+ parent: 2
+ - uid: 4413
+ components:
+ - type: Transform
+ pos: 19.5,-1.5
+ parent: 2
+ - uid: 4414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-2.5
+ parent: 2
+ - uid: 4415
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-11.5
+ parent: 2
+ - uid: 4416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-15.5
+ parent: 2
+ - uid: 4417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-3.5
+ parent: 2
+ - uid: 4418
+ components:
+ - type: Transform
+ pos: 23.5,-12.5
+ parent: 2
+ - uid: 4419
+ components:
+ - type: Transform
+ pos: -5.5,-46.5
+ parent: 2
+ - uid: 4420
+ components:
+ - type: Transform
+ pos: -6.5,-45.5
+ parent: 2
+ - uid: 4421
+ components:
+ - type: Transform
+ pos: 22.5,-12.5
+ parent: 2
+ - uid: 4422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-34.5
+ parent: 2
+ - uid: 4424
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-34.5
+ parent: 2
+ - uid: 4425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-41.5
+ parent: 2
+ - uid: 4426
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-43.5
+ parent: 2
+ - uid: 4427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-34.5
+ parent: 2
+ - uid: 4429
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-28.5
+ parent: 2
+ - uid: 4430
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-28.5
+ parent: 2
+ - uid: 4432
+ components:
+ - type: Transform
+ pos: -3.5,-45.5
+ parent: 2
+ - uid: 4433
+ components:
+ - type: Transform
+ pos: -4.5,-46.5
+ parent: 2
+ - uid: 4434
+ components:
+ - type: Transform
+ pos: 22.5,-2.5
+ parent: 2
+ - uid: 4435
+ components:
+ - type: Transform
+ pos: 22.5,-3.5
+ parent: 2
+ - uid: 4436
+ components:
+ - type: Transform
+ pos: -4.5,-45.5
+ parent: 2
+ - uid: 4437
+ components:
+ - type: Transform
+ pos: -5.5,-45.5
+ parent: 2
+ - uid: 4438
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-61.5
+ parent: 2
+ - uid: 4439
+ components:
+ - type: Transform
+ pos: 17.5,-56.5
+ parent: 2
+ - uid: 4440
+ components:
+ - type: Transform
+ pos: 17.5,-54.5
+ parent: 2
+ - uid: 4441
+ components:
+ - type: Transform
+ pos: 17.5,-52.5
+ parent: 2
+ - uid: 4442
+ components:
+ - type: Transform
+ pos: 17.5,-53.5
+ parent: 2
+ - uid: 4443
+ components:
+ - type: Transform
+ pos: 16.5,-54.5
+ parent: 2
+ - uid: 4444
+ components:
+ - type: Transform
+ pos: 16.5,-52.5
+ parent: 2
+ - uid: 4445
+ components:
+ - type: Transform
+ pos: 16.5,-53.5
+ parent: 2
+ - uid: 4446
+ components:
+ - type: Transform
+ pos: 15.5,-55.5
+ parent: 2
+ - uid: 4447
+ components:
+ - type: Transform
+ pos: 18.5,-56.5
+ parent: 2
+ - uid: 4448
+ components:
+ - type: Transform
+ pos: 18.5,-55.5
+ parent: 2
+ - uid: 4449
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-60.5
+ parent: 2
+ - uid: 4450
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-59.5
+ parent: 2
+ - uid: 4451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-61.5
+ parent: 2
+ - uid: 4455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-57.5
+ parent: 2
+ - uid: 4456
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-58.5
+ parent: 2
+ - uid: 4457
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-59.5
+ parent: 2
+ - uid: 4460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-60.5
+ parent: 2
+ - uid: 4470
+ components:
+ - type: Transform
+ pos: -16.5,-25.5
+ parent: 2
+ - uid: 4471
+ components:
+ - type: Transform
+ pos: -15.5,-25.5
+ parent: 2
+ - uid: 4472
+ components:
+ - type: Transform
+ pos: -14.5,-25.5
+ parent: 2
+ - uid: 4473
+ components:
+ - type: Transform
+ pos: -13.5,-25.5
+ parent: 2
+ - uid: 4474
+ components:
+ - type: Transform
+ pos: -12.5,-25.5
+ parent: 2
+ - uid: 4475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-36.5
+ parent: 2
+ - uid: 4476
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-41.5
+ parent: 2
+ - uid: 4477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-39.5
+ parent: 2
+ - uid: 4478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-40.5
+ parent: 2
+ - uid: 4479
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-28.5
+ parent: 2
+ - uid: 4482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-31.5
+ parent: 2
+ - uid: 4483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-32.5
+ parent: 2
+ - uid: 4484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-33.5
+ parent: 2
+ - uid: 4485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-28.5
+ parent: 2
+ - uid: 4486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-28.5
+ parent: 2
+ - uid: 4487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-28.5
+ parent: 2
+ - uid: 4488
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-36.5
+ parent: 2
+ - uid: 4489
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-36.5
+ parent: 2
+ - uid: 4490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-36.5
+ parent: 2
+ - uid: 4491
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-36.5
+ parent: 2
+ - uid: 4506
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-9.5
+ parent: 2
+ - uid: 4508
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-2.5
+ parent: 2
+ - uid: 4510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-2.5
+ parent: 2
+ - uid: 4512
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-5.5
+ parent: 2
+ - uid: 4513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-0.5
+ parent: 2
+ - uid: 4514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-0.5
+ parent: 2
+ - uid: 4515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-1.5
+ parent: 2
+ - uid: 4516
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-1.5
+ parent: 2
+ - uid: 4517
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-1.5
+ parent: 2
+ - uid: 4518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-1.5
+ parent: 2
+ - uid: 4519
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-2.5
+ parent: 2
+ - uid: 4520
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-3.5
+ parent: 2
+ - uid: 4521
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-2.5
+ parent: 2
+ - uid: 4522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 2
+ - uid: 4523
+ components:
+ - type: Transform
+ pos: 6.5,-12.5
+ parent: 2
+ - uid: 4524
+ components:
+ - type: Transform
+ pos: 5.5,-12.5
+ parent: 2
+ - uid: 4525
+ components:
+ - type: Transform
+ pos: 5.5,-25.5
+ parent: 2
+ - uid: 4526
+ components:
+ - type: Transform
+ pos: 4.5,-25.5
+ parent: 2
+ - uid: 4530
+ components:
+ - type: Transform
+ pos: -11.5,15.5
+ parent: 2
+ - uid: 4531
+ components:
+ - type: Transform
+ pos: -11.5,18.5
+ parent: 2
+ - uid: 4532
+ components:
+ - type: Transform
+ pos: -11.5,17.5
+ parent: 2
+ - uid: 4533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,5.5
+ parent: 2
+ - uid: 4534
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,4.5
+ parent: 2
+ - uid: 4535
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-0.5
+ parent: 2
+ - uid: 4539
+ components:
+ - type: Transform
+ pos: 5.5,-18.5
+ parent: 2
+ - uid: 4541
+ components:
+ - type: Transform
+ pos: 5.5,-17.5
+ parent: 2
+ - uid: 4542
+ components:
+ - type: Transform
+ pos: 5.5,-20.5
+ parent: 2
+ - uid: 4547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-2.5
+ parent: 2
+ - uid: 4548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-15.5
+ parent: 2
+ - uid: 4549
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-16.5
+ parent: 2
+ - uid: 4550
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-15.5
+ parent: 2
+ - uid: 4551
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-16.5
+ parent: 2
+ - uid: 4552
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-17.5
+ parent: 2
+ - uid: 4553
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-17.5
+ parent: 2
+ - uid: 4554
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-18.5
+ parent: 2
+ - uid: 4555
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-19.5
+ parent: 2
+ - uid: 4556
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-14.5
+ parent: 2
+ - uid: 4557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-36.5
+ parent: 2
+ - uid: 4558
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-36.5
+ parent: 2
+ - uid: 4559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-36.5
+ parent: 2
+ - uid: 4560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-30.5
+ parent: 2
+ - uid: 4561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-32.5
+ parent: 2
+ - uid: 4562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-33.5
+ parent: 2
+ - uid: 4563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-31.5
+ parent: 2
+ - uid: 4564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-46.5
+ parent: 2
+ - uid: 4565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-46.5
+ parent: 2
+ - uid: 4566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-47.5
+ parent: 2
+ - uid: 4567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-6.5
+ parent: 2
+ - uid: 4569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-5.5
+ parent: 2
+ - uid: 4570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-7.5
+ parent: 2
+ - uid: 4571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,3.5
+ parent: 2
+ - uid: 4583
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,19.5
+ parent: 2
+ - uid: 4588
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,19.5
+ parent: 2
+ - uid: 4589
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,18.5
+ parent: 2
+ - uid: 4590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,19.5
+ parent: 2
+ - uid: 4591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,19.5
+ parent: 2
+ - uid: 4592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,18.5
+ parent: 2
+ - uid: 4593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,18.5
+ parent: 2
+ - uid: 4595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,19.5
+ parent: 2
+ - uid: 4596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,19.5
+ parent: 2
+ - uid: 4602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,21.5
+ parent: 2
+ - uid: 4603
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,17.5
+ parent: 2
+ - uid: 4604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,15.5
+ parent: 2
+ - uid: 4612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,21.5
+ parent: 2
+ - uid: 4613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,21.5
+ parent: 2
+ - uid: 4614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,11.5
+ parent: 2
+ - uid: 4616
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,13.5
+ parent: 2
+ - uid: 4624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,12.5
+ parent: 2
+ - uid: 4625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,14.5
+ parent: 2
+ - uid: 4626
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-43.5
+ parent: 2
+ - uid: 4627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-44.5
+ parent: 2
+ - uid: 4628
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-38.5
+ parent: 2
+ - uid: 4629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-38.5
+ parent: 2
+ - uid: 4631
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-37.5
+ parent: 2
+ - uid: 4641
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,-37.5
+ parent: 2
+ - uid: 4642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-33.5
+ parent: 2
+ - uid: 4643
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-34.5
+ parent: 2
+ - uid: 4644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-34.5
+ parent: 2
+ - uid: 4646
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-34.5
+ parent: 2
+ - uid: 4656
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-1.5
+ parent: 2
+ - uid: 4658
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-1.5
+ parent: 2
+ - uid: 4659
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-1.5
+ parent: 2
+ - uid: 4660
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -59.5,26.5
+ parent: 2
+ - uid: 4671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -59.5,27.5
+ parent: 2
+ - uid: 4672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -59.5,28.5
+ parent: 2
+ - uid: 4673
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -59.5,25.5
+ parent: 2
+ - uid: 4674
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,25.5
+ parent: 2
+ - uid: 4684
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,26.5
+ parent: 2
+ - uid: 4685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -66.5,29.5
+ parent: 2
+ - uid: 4686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -66.5,28.5
+ parent: 2
+ - uid: 4687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -67.5,29.5
+ parent: 2
+ - uid: 4697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -67.5,28.5
+ parent: 2
+ - uid: 4698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -68.5,29.5
+ parent: 2
+ - uid: 4699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -68.5,28.5
+ parent: 2
+ - uid: 4703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -66.5,27.5
+ parent: 2
+ - uid: 4710
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -67.5,27.5
+ parent: 2
+ - uid: 4711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -66.5,26.5
+ parent: 2
+ - uid: 4712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -66.5,25.5
+ parent: 2
+ - uid: 4713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -67.5,26.5
+ parent: 2
+ - uid: 4724
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,14.5
+ parent: 2
+ - uid: 4725
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,15.5
+ parent: 2
+ - uid: 4726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,16.5
+ parent: 2
+ - uid: 4737
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,18.5
+ parent: 2
+ - uid: 4738
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,17.5
+ parent: 2
+ - uid: 4739
+ components:
+ - type: Transform
+ pos: -11.5,12.5
+ parent: 2
+ - uid: 4750
+ components:
+ - type: Transform
+ pos: 6.5,-13.5
+ parent: 2
+ - uid: 4751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,-37.5
+ parent: 2
+ - uid: 4763
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,-38.5
+ parent: 2
+ - uid: 4764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-42.5
+ parent: 2
+ - uid: 4765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-60.5
+ parent: 2
+ - uid: 4766
+ components:
+ - type: Transform
+ pos: -11.5,-25.5
+ parent: 2
+ - uid: 4767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,18.5
+ parent: 2
+ - uid: 4768
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,19.5
+ parent: 2
- proto: CP14RoofStone
entities:
+ - uid: 598
+ components:
+ - type: Transform
+ pos: -19.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 601
+ components:
+ - type: Transform
+ pos: -19.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 614
components:
- type: Transform
@@ -48654,6 +51401,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 630
+ components:
+ - type: Transform
+ pos: -19.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 632
components:
- type: Transform
@@ -48675,108 +51429,646 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 1433
+ - uid: 739
components:
- type: Transform
- pos: -7.5,1.5
+ pos: -18.5,28.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 1960
+ - uid: 745
components:
- type: Transform
- pos: -8.5,1.5
+ pos: -17.5,30.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2033
+ - uid: 867
components:
- type: Transform
- pos: -5.5,1.5
+ pos: -17.5,28.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2045
+ - uid: 868
components:
- type: Transform
- pos: -9.5,1.5
+ pos: -18.5,30.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2064
+ - uid: 950
components:
- type: Transform
- pos: -5.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,2.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2119
+ - uid: 973
components:
- type: Transform
- pos: -9.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,1.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2211
+ - uid: 1066
components:
- type: Transform
- pos: -7.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,3.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2302
+ - uid: 1068
components:
- type: Transform
- pos: -6.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,0.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2306
+ - uid: 1217
components:
- type: Transform
- pos: -8.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,-1.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2307
+ - uid: 1298
components:
- type: Transform
- pos: -6.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,4.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2308
+ - uid: 1891
components:
- type: Transform
- pos: -7.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,0.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2309
+ - uid: 1892
components:
- type: Transform
- pos: -5.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,1.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2311
+ - uid: 1922
components:
- type: Transform
- pos: -9.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,3.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2312
+ - uid: 2061
components:
- type: Transform
- pos: -6.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,2.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 4093
+ - uid: 2258
components:
- type: Transform
- pos: -8.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 2263
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4249
+ components:
+ - type: Transform
+ pos: -16.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4250
+ components:
+ - type: Transform
+ pos: -16.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4258
+ components:
+ - type: Transform
+ pos: -16.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4259
+ components:
+ - type: Transform
+ pos: -16.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4262
+ components:
+ - type: Transform
+ pos: -16.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4263
+ components:
+ - type: Transform
+ pos: -20.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4265
+ components:
+ - type: Transform
+ pos: -20.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4266
+ components:
+ - type: Transform
+ pos: -20.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4268
+ components:
+ - type: Transform
+ pos: -20.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4269
+ components:
+ - type: Transform
+ pos: -20.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4281
+ components:
+ - type: Transform
+ pos: -19.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4283
+ components:
+ - type: Transform
+ pos: -18.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4294
+ components:
+ - type: Transform
+ pos: -19.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4295
+ components:
+ - type: Transform
+ pos: -18.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4298
+ components:
+ - type: Transform
+ pos: -18.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4299
+ components:
+ - type: Transform
+ pos: -17.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4369
+ components:
+ - type: Transform
+ pos: -17.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4374
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4377
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4387
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4388
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4390
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4392
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4393
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4396
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4399
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4400
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4401
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4402
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4404
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4405
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4406
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4410
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4469
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4493
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4496
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4497
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4499
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4500
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4501
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4502
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4503
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4543
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4544
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4545
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4546
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4573
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4574
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4575
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-0.5
parent: 2
- type: Fixtures
fixtures: {}
@@ -49071,20 +52363,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 7824
- components:
- - type: Transform
- pos: -9.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 7826
- components:
- - type: Transform
- pos: -9.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 7830
components:
- type: Transform
@@ -49289,20 +52567,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 8766
- components:
- - type: Transform
- pos: -9.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8767
- components:
- - type: Transform
- pos: -9.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 8788
components:
- type: Transform
@@ -49338,14 +52602,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 9055
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 9113
components:
- type: Transform
@@ -49354,481 +52610,11 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 9154
+ - uid: 10688
components:
- type: Transform
- pos: -8.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9155
- components:
- - type: Transform
- pos: -9.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9162
- components:
- - type: Transform
- pos: -8.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9168
- components:
- - type: Transform
- pos: -8.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9169
- components:
- - type: Transform
- pos: -8.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9170
- components:
- - type: Transform
- pos: -7.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9171
- components:
- - type: Transform
- pos: -7.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9172
- components:
- - type: Transform
- pos: -7.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9173
- components:
- - type: Transform
- pos: -8.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9174
- components:
- - type: Transform
- pos: -7.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9176
- components:
- - type: Transform
- pos: -7.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9177
- components:
- - type: Transform
- pos: -6.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9179
- components:
- - type: Transform
- pos: -6.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9180
- components:
- - type: Transform
- pos: -6.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9183
- components:
- - type: Transform
- pos: -6.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9184
- components:
- - type: Transform
- pos: -5.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9185
- components:
- - type: Transform
- pos: -5.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9188
- components:
- - type: Transform
- pos: -5.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9189
- components:
- - type: Transform
- pos: -5.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9190
- components:
- - type: Transform
- pos: -6.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9193
- components:
- - type: Transform
- pos: -5.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9195
- components:
- - type: Transform
- pos: -4.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9198
- components:
- - type: Transform
- pos: -4.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9200
- components:
- - type: Transform
- pos: -4.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9203
- components:
- - type: Transform
- pos: -4.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9204
- components:
- - type: Transform
- pos: -3.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9205
- components:
- - type: Transform
- pos: -3.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9206
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9209
- components:
- - type: Transform
- pos: -4.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9210
- components:
- - type: Transform
- pos: -3.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9211
- components:
- - type: Transform
- pos: -3.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9213
- components:
- - type: Transform
- pos: -2.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9216
- components:
- - type: Transform
- pos: -2.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9218
- components:
- - type: Transform
- pos: -2.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9220
- components:
- - type: Transform
- pos: -2.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9775
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,62.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9776
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,60.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9777
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,63.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9780
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,63.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9781
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,61.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9782
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,59.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10039
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 101.5,58.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10041
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 102.5,60.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10043
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 101.5,59.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10044
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 102.5,61.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10045
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 102.5,58.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10048
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 101.5,60.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10049
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 102.5,62.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10050
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 102.5,59.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10061
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,58.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10062
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,61.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10064
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,59.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10065
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,60.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10067
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 105.5,62.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10068
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 105.5,61.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10070
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 105.5,58.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10071
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 105.5,59.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10143
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 103.5,59.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10145
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 103.5,61.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10146
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 103.5,60.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10148
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 103.5,62.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10151
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 105.5,60.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10152
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 103.5,58.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 10153
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 104.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,5.5
parent: 2
- type: Fixtures
fixtures: {}
@@ -49879,6 +52665,27 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 11428
+ components:
+ - type: Transform
+ pos: -14.5,41.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 11431
+ components:
+ - type: Transform
+ pos: -14.5,40.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 11434
+ components:
+ - type: Transform
+ pos: -13.5,42.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 11685
components:
- type: Transform
@@ -49928,6 +52735,14 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 11841
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 11888
components:
- type: Transform
@@ -49998,6 +52813,27 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 12016
+ components:
+ - type: Transform
+ pos: -13.5,41.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 12018
+ components:
+ - type: Transform
+ pos: -13.5,40.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 12034
+ components:
+ - type: Transform
+ pos: -17.5,42.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 12325
components:
- type: Transform
@@ -50047,6 +52883,77 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 12687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 12713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13010
+ components:
+ - type: Transform
+ pos: -17.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13132
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13134
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13152
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 13212
components:
- type: Transform
@@ -51587,20 +54494,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 13578
- components:
- - type: Transform
- pos: -16.5,27.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13579
- components:
- - type: Transform
- pos: -16.5,28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 13580
components:
- type: Transform
@@ -51734,20 +54627,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 13599
- components:
- - type: Transform
- pos: -16.5,29.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13600
- components:
- - type: Transform
- pos: -16.5,31.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 13601
components:
- type: Transform
@@ -51755,13 +54634,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 13602
- components:
- - type: Transform
- pos: -16.5,30.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 13603
components:
- type: Transform
@@ -51851,41 +54723,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 13615
- components:
- - type: Transform
- pos: -20.5,27.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13616
- components:
- - type: Transform
- pos: -20.5,28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13617
- components:
- - type: Transform
- pos: -20.5,29.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13618
- components:
- - type: Transform
- pos: -20.5,30.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13619
- components:
- - type: Transform
- pos: -20.5,31.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 13620
components:
- type: Transform
@@ -51893,41 +54730,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 13621
- components:
- - type: Transform
- pos: -19.5,27.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13622
- components:
- - type: Transform
- pos: -19.5,28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13623
- components:
- - type: Transform
- pos: -19.5,29.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13624
- components:
- - type: Transform
- pos: -19.5,30.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13625
- components:
- - type: Transform
- pos: -19.5,31.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 13626
components:
- type: Transform
@@ -51935,34 +54737,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 13627
- components:
- - type: Transform
- pos: -18.5,27.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13628
- components:
- - type: Transform
- pos: -18.5,28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13629
- components:
- - type: Transform
- pos: -18.5,30.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13630
- components:
- - type: Transform
- pos: -18.5,31.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 13631
components:
- type: Transform
@@ -51970,48 +54744,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 13632
- components:
- - type: Transform
- pos: -17.5,27.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13633
- components:
- - type: Transform
- pos: -17.5,28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13634
- components:
- - type: Transform
- pos: -17.5,29.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13635
- components:
- - type: Transform
- pos: -17.5,30.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13636
- components:
- - type: Transform
- pos: -18.5,29.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13641
- components:
- - type: Transform
- pos: -17.5,31.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 13644
components:
- type: Transform
@@ -55673,6 +58405,197 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 14950
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14953
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14954
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14957
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14958
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14960
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14961
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15017
+ components:
+ - type: Transform
+ pos: -10.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15018
+ components:
+ - type: Transform
+ pos: -10.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15021
+ components:
+ - type: Transform
+ pos: -15.5,40.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15022
+ components:
+ - type: Transform
+ pos: -12.5,42.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15023
+ components:
+ - type: Transform
+ pos: -11.5,42.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15024
+ components:
+ - type: Transform
+ pos: -17.5,41.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15025
+ components:
+ - type: Transform
+ pos: -17.5,40.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15026
+ components:
+ - type: Transform
+ pos: -12.5,40.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15027
+ components:
+ - type: Transform
+ pos: -11.5,41.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15028
+ components:
+ - type: Transform
+ pos: -16.5,42.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15029
+ components:
+ - type: Transform
+ pos: -16.5,41.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15030
+ components:
+ - type: Transform
+ pos: -12.5,41.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15031
+ components:
+ - type: Transform
+ pos: -11.5,40.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15032
+ components:
+ - type: Transform
+ pos: -15.5,42.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15033
+ components:
+ - type: Transform
+ pos: -15.5,41.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15034
+ components:
+ - type: Transform
+ pos: -16.5,40.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15035
+ components:
+ - type: Transform
+ pos: -14.5,42.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 15113
components:
- type: Transform
@@ -57395,197 +60318,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 15364
- components:
- - type: Transform
- pos: -48.5,-71.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15365
- components:
- - type: Transform
- pos: -48.5,-72.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15366
- components:
- - type: Transform
- pos: -48.5,-74.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15367
- components:
- - type: Transform
- pos: -48.5,-75.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15368
- components:
- - type: Transform
- pos: -47.5,-71.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15369
- components:
- - type: Transform
- pos: -47.5,-72.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15370
- components:
- - type: Transform
- pos: -47.5,-73.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15371
- components:
- - type: Transform
- pos: -47.5,-74.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15372
- components:
- - type: Transform
- pos: -48.5,-73.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15373
- components:
- - type: Transform
- pos: -47.5,-75.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15374
- components:
- - type: Transform
- pos: -46.5,-71.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15375
- components:
- - type: Transform
- pos: -46.5,-72.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15376
- components:
- - type: Transform
- pos: -46.5,-74.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15377
- components:
- - type: Transform
- pos: -46.5,-75.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15378
- components:
- - type: Transform
- pos: -45.5,-71.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15379
- components:
- - type: Transform
- pos: -45.5,-72.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15380
- components:
- - type: Transform
- pos: -45.5,-73.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15381
- components:
- - type: Transform
- pos: -45.5,-74.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15382
- components:
- - type: Transform
- pos: -45.5,-75.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15383
- components:
- - type: Transform
- pos: -44.5,-71.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15384
- components:
- - type: Transform
- pos: -44.5,-72.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15385
- components:
- - type: Transform
- pos: -46.5,-73.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15386
- components:
- - type: Transform
- pos: -44.5,-73.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15387
- components:
- - type: Transform
- pos: -44.5,-75.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15388
- components:
- - type: Transform
- pos: -44.5,-74.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15389
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 101.5,61.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15390
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 101.5,62.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 15391
components:
- type: Transform
@@ -58094,158 +60826,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 15457
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,62.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15458
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,61.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15459
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,60.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15460
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,59.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15461
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,63.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15462
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,62.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15463
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,61.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15464
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,60.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15465
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,59.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15466
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,63.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15467
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,62.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15468
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,61.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15469
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,60.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15470
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,59.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15471
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,62.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15472
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,61.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15473
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,60.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15474
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,59.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15475
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,63.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 15486
components:
- type: Transform
@@ -63027,27 +65607,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 16169
- components:
- - type: Transform
- pos: -11.5,42.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 16170
- components:
- - type: Transform
- pos: -11.5,41.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 16171
- components:
- - type: Transform
- pos: -11.5,40.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 16172
components:
- type: Transform
@@ -63174,27 +65733,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 16190
- components:
- - type: Transform
- pos: -12.5,42.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 16191
- components:
- - type: Transform
- pos: -12.5,41.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 16192
- components:
- - type: Transform
- pos: -12.5,40.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 16193
components:
- type: Transform
@@ -63321,27 +65859,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 16211
- components:
- - type: Transform
- pos: -13.5,42.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 16212
- components:
- - type: Transform
- pos: -13.5,41.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 16213
- components:
- - type: Transform
- pos: -13.5,40.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 16214
components:
- type: Transform
@@ -63468,27 +65985,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 16232
- components:
- - type: Transform
- pos: -14.5,42.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 16233
- components:
- - type: Transform
- pos: -14.5,41.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 16234
- components:
- - type: Transform
- pos: -14.5,40.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 16235
components:
- type: Transform
@@ -64511,27 +67007,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 16381
- components:
- - type: Transform
- pos: -15.5,42.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 16382
- components:
- - type: Transform
- pos: -15.5,41.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 16383
- components:
- - type: Transform
- pos: -15.5,40.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 16384
components:
- type: Transform
@@ -64609,27 +67084,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 16395
- components:
- - type: Transform
- pos: -16.5,42.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 16396
- components:
- - type: Transform
- pos: -16.5,41.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 16397
- components:
- - type: Transform
- pos: -16.5,40.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 16398
components:
- type: Transform
@@ -64707,27 +67161,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 16409
- components:
- - type: Transform
- pos: -17.5,42.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 16410
- components:
- - type: Transform
- pos: -17.5,41.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 16411
- components:
- - type: Transform
- pos: -17.5,40.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 16412
components:
- type: Transform
@@ -75393,6 +77826,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 1433
+ components:
+ - type: Transform
+ pos: -7.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 1752
components:
- type: Transform
@@ -75407,6 +77847,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 1960
+ components:
+ - type: Transform
+ pos: -8.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 1964
components:
- type: Transform
@@ -75463,6 +77910,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 2033
+ components:
+ - type: Transform
+ pos: -5.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 2034
components:
- type: Transform
@@ -75491,6 +77945,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 2045
+ components:
+ - type: Transform
+ pos: -9.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 2048
components:
- type: Transform
@@ -75505,6 +77966,20 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 2064
+ components:
+ - type: Transform
+ pos: -5.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 2119
+ components:
+ - type: Transform
+ pos: -9.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 2153
components:
- type: Transform
@@ -75512,6 +77987,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 2211
+ components:
+ - type: Transform
+ pos: -7.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 2214
components:
- type: Transform
@@ -75582,6 +78064,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 2302
+ components:
+ - type: Transform
+ pos: -6.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 2303
components:
- type: Transform
@@ -75597,6 +78086,34 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 2306
+ components:
+ - type: Transform
+ pos: -8.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 2307
+ components:
+ - type: Transform
+ pos: -6.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 2308
+ components:
+ - type: Transform
+ pos: -7.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 2309
+ components:
+ - type: Transform
+ pos: -5.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 2310
components:
- type: Transform
@@ -75604,6 +78121,20 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 2311
+ components:
+ - type: Transform
+ pos: -9.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 2312
+ components:
+ - type: Transform
+ pos: -6.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 2323
components:
- type: Transform
@@ -75818,6 +78349,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 4093
+ components:
+ - type: Transform
+ pos: -8.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 4108
components:
- type: Transform
@@ -75867,6 +78405,20 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 4609
+ components:
+ - type: Transform
+ pos: 17.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4610
+ components:
+ - type: Transform
+ pos: 17.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 5107
components:
- type: Transform
@@ -75875,6 +78427,20 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 5419
+ components:
+ - type: Transform
+ pos: 18.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5420
+ components:
+ - type: Transform
+ pos: 18.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 5484
components:
- type: Transform
@@ -75910,6 +78476,69 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 5547
+ components:
+ - type: Transform
+ pos: 19.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5548
+ components:
+ - type: Transform
+ pos: 19.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5550
+ components:
+ - type: Transform
+ pos: 20.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5552
+ components:
+ - type: Transform
+ pos: 20.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5553
+ components:
+ - type: Transform
+ pos: 21.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5558
+ components:
+ - type: Transform
+ pos: 22.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5751
+ components:
+ - type: Transform
+ pos: 22.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5752
+ components:
+ - type: Transform
+ pos: 21.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5784
+ components:
+ - type: Transform
+ pos: 23.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 6089
components:
- type: Transform
@@ -76099,6 +78728,181 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 7099
+ components:
+ - type: Transform
+ pos: 23.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7100
+ components:
+ - type: Transform
+ pos: 23.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7101
+ components:
+ - type: Transform
+ pos: 23.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7102
+ components:
+ - type: Transform
+ pos: 23.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7103
+ components:
+ - type: Transform
+ pos: 22.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7111
+ components:
+ - type: Transform
+ pos: 22.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7112
+ components:
+ - type: Transform
+ pos: 22.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7113
+ components:
+ - type: Transform
+ pos: 22.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7114
+ components:
+ - type: Transform
+ pos: 21.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7115
+ components:
+ - type: Transform
+ pos: 21.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7116
+ components:
+ - type: Transform
+ pos: 21.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7117
+ components:
+ - type: Transform
+ pos: 20.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7118
+ components:
+ - type: Transform
+ pos: 20.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7119
+ components:
+ - type: Transform
+ pos: 20.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7122
+ components:
+ - type: Transform
+ pos: 20.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7123
+ components:
+ - type: Transform
+ pos: 19.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7124
+ components:
+ - type: Transform
+ pos: 19.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7125
+ components:
+ - type: Transform
+ pos: 19.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7134
+ components:
+ - type: Transform
+ pos: 19.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7135
+ components:
+ - type: Transform
+ pos: 18.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7136
+ components:
+ - type: Transform
+ pos: 18.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7137
+ components:
+ - type: Transform
+ pos: 18.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7138
+ components:
+ - type: Transform
+ pos: 18.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7139
+ components:
+ - type: Transform
+ pos: 21.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7140
+ components:
+ - type: Transform
+ pos: 17.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 7141
components:
- type: Transform
@@ -76164,6 +78968,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 7824
+ components:
+ - type: Transform
+ pos: -9.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 7825
components:
- type: Transform
@@ -76171,6 +78982,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 7826
+ components:
+ - type: Transform
+ pos: -9.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 7836
components:
- type: Transform
@@ -76371,6 +79189,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 8061
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 8062
components:
- type: Transform
@@ -76379,6 +79204,20 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 8066
+ components:
+ - type: Transform
+ pos: 17.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 8081
+ components:
+ - type: Transform
+ pos: 17.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 8084
components:
- type: Transform
@@ -76394,6 +79233,27 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 8373
+ components:
+ - type: Transform
+ pos: 19.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 8374
+ components:
+ - type: Transform
+ pos: 19.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 8375
+ components:
+ - type: Transform
+ pos: 20.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 8381
components:
- type: Transform
@@ -76408,6 +79268,69 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 8392
+ components:
+ - type: Transform
+ pos: 20.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 8393
+ components:
+ - type: Transform
+ pos: 21.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 8395
+ components:
+ - type: Transform
+ pos: 21.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 8690
+ components:
+ - type: Transform
+ pos: 22.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 8766
+ components:
+ - type: Transform
+ pos: -9.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 8767
+ components:
+ - type: Transform
+ pos: -9.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 8860
+ components:
+ - type: Transform
+ pos: 22.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 8863
+ components:
+ - type: Transform
+ pos: 23.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 8931
+ components:
+ - type: Transform
+ pos: 23.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 9054
components:
- type: Transform
@@ -76415,6 +79338,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 9055
+ components:
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 9096
components:
- type: Transform
@@ -76423,6 +79353,20 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 9154
+ components:
+ - type: Transform
+ pos: -8.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9155
+ components:
+ - type: Transform
+ pos: -9.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 9158
components:
- type: Transform
@@ -76451,6 +79395,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 9162
+ components:
+ - type: Transform
+ pos: -8.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 9163
components:
- type: Transform
@@ -76479,6 +79430,230 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 9168
+ components:
+ - type: Transform
+ pos: -8.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9169
+ components:
+ - type: Transform
+ pos: -8.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9170
+ components:
+ - type: Transform
+ pos: -7.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9171
+ components:
+ - type: Transform
+ pos: -7.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9172
+ components:
+ - type: Transform
+ pos: -7.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9173
+ components:
+ - type: Transform
+ pos: -8.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9174
+ components:
+ - type: Transform
+ pos: -7.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9176
+ components:
+ - type: Transform
+ pos: -7.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9177
+ components:
+ - type: Transform
+ pos: -6.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9179
+ components:
+ - type: Transform
+ pos: -6.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9180
+ components:
+ - type: Transform
+ pos: -6.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9183
+ components:
+ - type: Transform
+ pos: -6.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9184
+ components:
+ - type: Transform
+ pos: -5.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9185
+ components:
+ - type: Transform
+ pos: -5.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9188
+ components:
+ - type: Transform
+ pos: -5.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9189
+ components:
+ - type: Transform
+ pos: -5.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9190
+ components:
+ - type: Transform
+ pos: -6.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9193
+ components:
+ - type: Transform
+ pos: -5.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9195
+ components:
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9198
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9200
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9203
+ components:
+ - type: Transform
+ pos: -4.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9204
+ components:
+ - type: Transform
+ pos: -3.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9205
+ components:
+ - type: Transform
+ pos: -3.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9206
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9209
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9210
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9211
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9213
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9216
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9218
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9220
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 9223
components:
- type: Transform
@@ -76591,6 +79766,190 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 9967
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,58.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9968
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,60.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,59.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9970
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,61.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9971
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,58.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9972
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,60.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9973
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,62.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9978
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,59.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9979
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,58.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9980
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,61.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9982
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,59.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 9984
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,60.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 10039
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,62.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 10041
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,61.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 10043
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,58.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 10044
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,59.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 10045
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,59.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 10048
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,61.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 10049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,60.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 10050
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,62.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 10061
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,60.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 10062
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,58.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 10064
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,62.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 10702
components:
- type: Transform
@@ -76605,6 +79964,22 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 11105
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,61.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 11106
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,62.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 12009
components:
- type: Transform
@@ -77687,356 +81062,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 13008
- components:
- - type: Transform
- pos: 23.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13009
- components:
- - type: Transform
- pos: 23.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13010
- components:
- - type: Transform
- pos: 23.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13011
- components:
- - type: Transform
- pos: 23.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13012
- components:
- - type: Transform
- pos: 23.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13013
- components:
- - type: Transform
- pos: 23.5,1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13014
- components:
- - type: Transform
- pos: 23.5,0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13015
- components:
- - type: Transform
- pos: 24.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13016
- components:
- - type: Transform
- pos: 24.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13017
- components:
- - type: Transform
- pos: 24.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13018
- components:
- - type: Transform
- pos: 24.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13019
- components:
- - type: Transform
- pos: 24.5,1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13020
- components:
- - type: Transform
- pos: 24.5,0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13021
- components:
- - type: Transform
- pos: 25.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13022
- components:
- - type: Transform
- pos: 24.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13023
- components:
- - type: Transform
- pos: 25.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13024
- components:
- - type: Transform
- pos: 25.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13025
- components:
- - type: Transform
- pos: 25.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13026
- components:
- - type: Transform
- pos: 25.5,1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13027
- components:
- - type: Transform
- pos: 25.5,0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13028
- components:
- - type: Transform
- pos: 26.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13029
- components:
- - type: Transform
- pos: 26.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13030
- components:
- - type: Transform
- pos: 26.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13031
- components:
- - type: Transform
- pos: 26.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13032
- components:
- - type: Transform
- pos: 25.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13033
- components:
- - type: Transform
- pos: 26.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13034
- components:
- - type: Transform
- pos: 26.5,0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13035
- components:
- - type: Transform
- pos: 27.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13036
- components:
- - type: Transform
- pos: 27.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13037
- components:
- - type: Transform
- pos: 27.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13038
- components:
- - type: Transform
- pos: 26.5,1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13039
- components:
- - type: Transform
- pos: 27.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13040
- components:
- - type: Transform
- pos: 27.5,1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13041
- components:
- - type: Transform
- pos: 27.5,0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13042
- components:
- - type: Transform
- pos: 27.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13043
- components:
- - type: Transform
- pos: 28.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13044
- components:
- - type: Transform
- pos: 28.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13045
- components:
- - type: Transform
- pos: 28.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13046
- components:
- - type: Transform
- pos: 28.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13047
- components:
- - type: Transform
- pos: 28.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13048
- components:
- - type: Transform
- pos: 28.5,1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13049
- components:
- - type: Transform
- pos: 28.5,0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13050
- components:
- - type: Transform
- pos: 26.5,-1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13051
- components:
- - type: Transform
- pos: 26.5,-0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13052
- components:
- - type: Transform
- pos: 25.5,-1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13053
- components:
- - type: Transform
- pos: 25.5,-0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13054
- components:
- - type: Transform
- pos: 24.5,-1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13055
- components:
- - type: Transform
- pos: 24.5,-0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13056
- components:
- - type: Transform
- pos: 23.5,-1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13057
- components:
- - type: Transform
- pos: 23.5,-0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 13058
components:
- type: Transform
@@ -78359,363 +81384,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 13104
- components:
- - type: Transform
- pos: 17.5,11.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13105
- components:
- - type: Transform
- pos: 17.5,12.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13106
- components:
- - type: Transform
- pos: 18.5,11.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13107
- components:
- - type: Transform
- pos: 18.5,12.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13108
- components:
- - type: Transform
- pos: 19.5,11.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13109
- components:
- - type: Transform
- pos: 19.5,12.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13110
- components:
- - type: Transform
- pos: 20.5,11.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13111
- components:
- - type: Transform
- pos: 20.5,12.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13112
- components:
- - type: Transform
- pos: 21.5,12.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13113
- components:
- - type: Transform
- pos: 22.5,11.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13114
- components:
- - type: Transform
- pos: 22.5,12.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13115
- components:
- - type: Transform
- pos: 21.5,11.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13116
- components:
- - type: Transform
- pos: 23.5,12.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13117
- components:
- - type: Transform
- pos: 23.5,13.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13118
- components:
- - type: Transform
- pos: 23.5,14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13119
- components:
- - type: Transform
- pos: 23.5,15.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13120
- components:
- - type: Transform
- pos: 23.5,16.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13121
- components:
- - type: Transform
- pos: 22.5,13.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13122
- components:
- - type: Transform
- pos: 22.5,14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13123
- components:
- - type: Transform
- pos: 22.5,15.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13124
- components:
- - type: Transform
- pos: 22.5,16.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13125
- components:
- - type: Transform
- pos: 21.5,13.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13126
- components:
- - type: Transform
- pos: 21.5,14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13127
- components:
- - type: Transform
- pos: 21.5,15.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13128
- components:
- - type: Transform
- pos: 20.5,13.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13129
- components:
- - type: Transform
- pos: 20.5,14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13130
- components:
- - type: Transform
- pos: 20.5,15.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13131
- components:
- - type: Transform
- pos: 20.5,16.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13132
- components:
- - type: Transform
- pos: 19.5,13.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13133
- components:
- - type: Transform
- pos: 19.5,14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13134
- components:
- - type: Transform
- pos: 19.5,15.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13135
- components:
- - type: Transform
- pos: 19.5,16.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13136
- components:
- - type: Transform
- pos: 18.5,13.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13137
- components:
- - type: Transform
- pos: 18.5,14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13138
- components:
- - type: Transform
- pos: 18.5,15.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13139
- components:
- - type: Transform
- pos: 18.5,16.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13140
- components:
- - type: Transform
- pos: 21.5,16.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13141
- components:
- - type: Transform
- pos: 17.5,13.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13142
- components:
- - type: Transform
- pos: 17.5,14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13143
- components:
- - type: Transform
- pos: 17.5,15.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13144
- components:
- - type: Transform
- pos: 17.5,16.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13145
- components:
- - type: Transform
- pos: 19.5,18.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13146
- components:
- - type: Transform
- pos: 19.5,17.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13147
- components:
- - type: Transform
- pos: 20.5,18.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13148
- components:
- - type: Transform
- pos: 20.5,17.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13149
- components:
- - type: Transform
- pos: 21.5,18.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13150
- components:
- - type: Transform
- pos: 21.5,17.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13151
- components:
- - type: Transform
- pos: 22.5,18.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13152
- components:
- - type: Transform
- pos: 22.5,17.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13153
- components:
- - type: Transform
- pos: 23.5,18.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13154
- components:
- - type: Transform
- pos: 23.5,17.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 13155
components:
- type: Transform
@@ -82485,6 +85153,125 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 14976
+ components:
+ - type: Transform
+ pos: 17.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14977
+ components:
+ - type: Transform
+ pos: 17.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14978
+ components:
+ - type: Transform
+ pos: 17.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14979
+ components:
+ - type: Transform
+ pos: 17.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14980
+ components:
+ - type: Transform
+ pos: 18.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14981
+ components:
+ - type: Transform
+ pos: 18.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14982
+ components:
+ - type: Transform
+ pos: 18.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14983
+ components:
+ - type: Transform
+ pos: 18.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14984
+ components:
+ - type: Transform
+ pos: 19.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14985
+ components:
+ - type: Transform
+ pos: 19.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14986
+ components:
+ - type: Transform
+ pos: 20.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14987
+ components:
+ - type: Transform
+ pos: 20.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14988
+ components:
+ - type: Transform
+ pos: 21.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14989
+ components:
+ - type: Transform
+ pos: 21.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14990
+ components:
+ - type: Transform
+ pos: 23.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15019
+ components:
+ - type: Transform
+ pos: 48.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15020
+ components:
+ - type: Transform
+ pos: 49.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 15447
components:
- type: Transform
@@ -83025,6 +85812,22 @@ entities:
parent: 2
- proto: CP14Safe
entities:
+ - uid: 475
+ components:
+ - type: Transform
+ pos: -15.5,24.5
+ parent: 2
+ - uid: 480
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,22.5
+ parent: 2
+ - uid: 631
+ components:
+ - type: Transform
+ pos: -20.5,24.5
+ parent: 2
- uid: 1276
components:
- type: Transform
@@ -83035,21 +85838,11 @@ entities:
- type: Transform
pos: -21.5,24.5
parent: 2
- - uid: 1278
- components:
- - type: Transform
- pos: -20.5,24.5
- parent: 2
- uid: 1279
components:
- type: Transform
pos: -16.5,24.5
parent: 2
- - uid: 1280
- components:
- - type: Transform
- pos: -15.5,24.5
- parent: 2
- uid: 1281
components:
- type: Transform
@@ -83061,64 +85854,67 @@ entities:
rot: 3.141592653589793 rad
pos: -22.5,22.5
parent: 2
- - uid: 1285
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,22.5
- parent: 2
- - uid: 1286
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,22.5
- parent: 2
- uid: 1288
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -14.5,22.5
parent: 2
- - uid: 1289
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,22.5
- parent: 2
- - uid: 1290
+ - uid: 1391
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -16.5,22.5
parent: 2
+ - uid: 1491
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.5,22.5
+ parent: 2
+ - uid: 1538
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,22.5
+ parent: 2
- proto: CP14SafeVaultFilled25
entities:
- - uid: 1270
+ - uid: 1313
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -17.5,30.5
parent: 2
- - uid: 1271
- components:
- - type: Transform
- pos: -18.5,30.5
- parent: 2
- - uid: 1272
+ - uid: 1317
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -19.5,30.5
parent: 2
- - uid: 1273
+ - uid: 1318
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,29.5
+ parent: 2
+ - uid: 1634
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,28.5
+ parent: 2
+ - uid: 2333
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -17.5,28.5
parent: 2
- - uid: 1274
+ - uid: 2354
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,29.5
parent: 2
- proto: CP14ScrapCopper
entities:
@@ -83412,12 +86208,6 @@ entities:
- 2065
- 1135
- 1083
- - uid: 9785
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,62.5
- parent: 2
- uid: 10137
components:
- type: Transform
@@ -83526,11 +86316,6 @@ entities:
- type: Transform
pos: 29.5,-3.5
parent: 2
- - uid: 718
- components:
- - type: Transform
- pos: 28.5,-0.5
- parent: 2
- uid: 938
components:
- type: Transform
@@ -83704,12 +86489,6 @@ entities:
- type: Transform
pos: 16.5,15.5
parent: 2
- - uid: 8373
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,19.5
- parent: 2
- uid: 8646
components:
- type: Transform
@@ -83758,1697 +86537,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 11.5,27.5
parent: 2
-- proto: CP14Snowdrift
- entities:
- - uid: 22
- components:
- - type: Transform
- pos: 17.5,-55.5
- parent: 2
- - uid: 23
- components:
- - type: Transform
- pos: 16.5,-55.5
- parent: 2
- - uid: 28
- components:
- - type: Transform
- pos: 16.5,-56.5
- parent: 2
- - uid: 60
- components:
- - type: Transform
- pos: 15.5,-56.5
- parent: 2
- - uid: 98
- components:
- - type: Transform
- pos: 6.5,-24.5
- parent: 2
- - uid: 266
- components:
- - type: Transform
- pos: 14.5,-56.5
- parent: 2
- - uid: 598
- components:
- - type: Transform
- pos: -11.5,12.5
- parent: 2
- - uid: 618
- components:
- - type: Transform
- pos: 6.5,-16.5
- parent: 2
- - uid: 1017
- components:
- - type: Transform
- pos: 6.5,-13.5
- parent: 2
- - uid: 1179
- components:
- - type: Transform
- pos: -11.5,13.5
- parent: 2
- - uid: 4921
- components:
- - type: Transform
- pos: -46.5,-76.5
- parent: 2
- - uid: 4932
- components:
- - type: Transform
- pos: -45.5,-76.5
- parent: 2
- - uid: 4934
- components:
- - type: Transform
- pos: -47.5,-78.5
- parent: 2
- - uid: 5322
- components:
- - type: Transform
- pos: -45.5,-77.5
- parent: 2
- - uid: 6098
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-8.5
- parent: 2
- - uid: 7080
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-11.5
- parent: 2
- - uid: 7158
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-11.5
- parent: 2
- - uid: 7178
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-9.5
- parent: 2
- - uid: 8010
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-9.5
- parent: 2
- - uid: 8047
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-10.5
- parent: 2
- - uid: 8089
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-10.5
- parent: 2
- - uid: 8398
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-8.5
- parent: 2
- - uid: 8399
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-8.5
- parent: 2
- - uid: 8400
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-9.5
- parent: 2
- - uid: 8410
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-8.5
- parent: 2
- - uid: 8412
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-8.5
- parent: 2
- - uid: 8551
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-9.5
- parent: 2
- - uid: 8573
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-11.5
- parent: 2
- - uid: 8579
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-11.5
- parent: 2
- - uid: 8580
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-10.5
- parent: 2
- - uid: 8644
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-14.5
- parent: 2
- - uid: 8647
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-10.5
- parent: 2
- - uid: 8768
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-12.5
- parent: 2
- - uid: 8911
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-10.5
- parent: 2
- - uid: 12636
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-44.5
- parent: 2
- - uid: 12648
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-38.5
- parent: 2
- - uid: 12649
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-37.5
- parent: 2
- - uid: 12679
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-3.5
- parent: 2
- - uid: 12681
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-23.5
- parent: 2
- - uid: 12682
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-0.5
- parent: 2
- - uid: 12685
- components:
- - type: Transform
- pos: -17.5,-25.5
- parent: 2
- - uid: 12686
- components:
- - type: Transform
- pos: 29.5,1.5
- parent: 2
- - uid: 12689
- components:
- - type: Transform
- pos: 29.5,2.5
- parent: 2
- - uid: 12690
- components:
- - type: Transform
- pos: 23.5,-2.5
- parent: 2
- - uid: 12702
- components:
- - type: Transform
- pos: 19.5,-2.5
- parent: 2
- - uid: 12705
- components:
- - type: Transform
- pos: 19.5,-0.5
- parent: 2
- - uid: 12709
- components:
- - type: Transform
- pos: 29.5,3.5
- parent: 2
- - uid: 12712
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-3.5
- parent: 2
- - uid: 12714
- components:
- - type: Transform
- pos: 19.5,-1.5
- parent: 2
- - uid: 12728
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-2.5
- parent: 2
- - uid: 12730
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-11.5
- parent: 2
- - uid: 12731
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-15.5
- parent: 2
- - uid: 12734
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-3.5
- parent: 2
- - uid: 12737
- components:
- - type: Transform
- pos: 23.5,-12.5
- parent: 2
- - uid: 12738
- components:
- - type: Transform
- pos: -5.5,-46.5
- parent: 2
- - uid: 12739
- components:
- - type: Transform
- pos: -6.5,-45.5
- parent: 2
- - uid: 12740
- components:
- - type: Transform
- pos: 22.5,-12.5
- parent: 2
- - uid: 12741
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-34.5
- parent: 2
- - uid: 12742
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-36.5
- parent: 2
- - uid: 12743
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-34.5
- parent: 2
- - uid: 12744
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-41.5
- parent: 2
- - uid: 12752
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-42.5
- parent: 2
- - uid: 12753
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-43.5
- parent: 2
- - uid: 12754
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-34.5
- parent: 2
- - uid: 12755
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-36.5
- parent: 2
- - uid: 12756
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-28.5
- parent: 2
- - uid: 12757
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-28.5
- parent: 2
- - uid: 12758
- components:
- - type: Transform
- pos: -20.5,-24.5
- parent: 2
- - uid: 12761
- components:
- - type: Transform
- pos: -3.5,-45.5
- parent: 2
- - uid: 12762
- components:
- - type: Transform
- pos: -4.5,-46.5
- parent: 2
- - uid: 12763
- components:
- - type: Transform
- pos: 22.5,-2.5
- parent: 2
- - uid: 12764
- components:
- - type: Transform
- pos: 22.5,-3.5
- parent: 2
- - uid: 12765
- components:
- - type: Transform
- pos: -4.5,-45.5
- parent: 2
- - uid: 12766
- components:
- - type: Transform
- pos: -5.5,-45.5
- parent: 2
- - uid: 12767
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-61.5
- parent: 2
- - uid: 12770
- components:
- - type: Transform
- pos: 17.5,-56.5
- parent: 2
- - uid: 12771
- components:
- - type: Transform
- pos: 17.5,-54.5
- parent: 2
- - uid: 12772
- components:
- - type: Transform
- pos: 17.5,-52.5
- parent: 2
- - uid: 12773
- components:
- - type: Transform
- pos: 17.5,-53.5
- parent: 2
- - uid: 12774
- components:
- - type: Transform
- pos: 16.5,-54.5
- parent: 2
- - uid: 12775
- components:
- - type: Transform
- pos: 16.5,-52.5
- parent: 2
- - uid: 12776
- components:
- - type: Transform
- pos: 16.5,-53.5
- parent: 2
- - uid: 12777
- components:
- - type: Transform
- pos: 15.5,-55.5
- parent: 2
- - uid: 12778
- components:
- - type: Transform
- pos: 18.5,-56.5
- parent: 2
- - uid: 12779
- components:
- - type: Transform
- pos: 18.5,-55.5
- parent: 2
- - uid: 12780
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-60.5
- parent: 2
- - uid: 12781
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-59.5
- parent: 2
- - uid: 12782
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-60.5
- parent: 2
- - uid: 12783
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-61.5
- parent: 2
- - uid: 12784
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-57.5
- parent: 2
- - uid: 12785
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-58.5
- parent: 2
- - uid: 12786
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-59.5
- parent: 2
- - uid: 12787
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-57.5
- parent: 2
- - uid: 12788
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-58.5
- parent: 2
- - uid: 12789
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-59.5
- parent: 2
- - uid: 12790
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-59.5
- parent: 2
- - uid: 12791
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-58.5
- parent: 2
- - uid: 12792
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-60.5
- parent: 2
- - uid: 12793
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-60.5
- parent: 2
- - uid: 12797
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,41.5
- parent: 2
- - uid: 12798
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,42.5
- parent: 2
- - uid: 12799
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,42.5
- parent: 2
- - uid: 12800
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,41.5
- parent: 2
- - uid: 12801
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,43.5
- parent: 2
- - uid: 12802
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,43.5
- parent: 2
- - uid: 12803
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,44.5
- parent: 2
- - uid: 12805
- components:
- - type: Transform
- pos: -18.5,-25.5
- parent: 2
- - uid: 12806
- components:
- - type: Transform
- pos: -16.5,-25.5
- parent: 2
- - uid: 12807
- components:
- - type: Transform
- pos: -15.5,-25.5
- parent: 2
- - uid: 12808
- components:
- - type: Transform
- pos: -14.5,-25.5
- parent: 2
- - uid: 12809
- components:
- - type: Transform
- pos: -13.5,-25.5
- parent: 2
- - uid: 12810
- components:
- - type: Transform
- pos: -12.5,-25.5
- parent: 2
- - uid: 12811
- components:
- - type: Transform
- pos: -11.5,-25.5
- parent: 2
- - uid: 12812
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-36.5
- parent: 2
- - uid: 12813
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-41.5
- parent: 2
- - uid: 12814
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-39.5
- parent: 2
- - uid: 12815
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-40.5
- parent: 2
- - uid: 12817
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-28.5
- parent: 2
- - uid: 12819
- components:
- - type: Transform
- pos: -25.5,-24.5
- parent: 2
- - uid: 12820
- components:
- - type: Transform
- pos: -24.5,-24.5
- parent: 2
- - uid: 12821
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-31.5
- parent: 2
- - uid: 12822
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-32.5
- parent: 2
- - uid: 12823
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-33.5
- parent: 2
- - uid: 12824
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-28.5
- parent: 2
- - uid: 12825
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-28.5
- parent: 2
- - uid: 12826
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-28.5
- parent: 2
- - uid: 12827
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-36.5
- parent: 2
- - uid: 12828
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-36.5
- parent: 2
- - uid: 12829
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-36.5
- parent: 2
- - uid: 12830
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-36.5
- parent: 2
- - uid: 12831
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-36.5
- parent: 2
- - uid: 12833
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-28.5
- parent: 2
- - uid: 12834
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-27.5
- parent: 2
- - uid: 12835
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-26.5
- parent: 2
- - uid: 12836
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-30.5
- parent: 2
- - uid: 12837
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-29.5
- parent: 2
- - uid: 12838
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-31.5
- parent: 2
- - uid: 12839
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-29.5
- parent: 2
- - uid: 12840
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-27.5
- parent: 2
- - uid: 12841
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-28.5
- parent: 2
- - uid: 12842
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-28.5
- parent: 2
- - uid: 12843
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-27.5
- parent: 2
- - uid: 12844
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-26.5
- parent: 2
- - uid: 12845
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-30.5
- parent: 2
- - uid: 12846
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-9.5
- parent: 2
- - uid: 12847
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-3.5
- parent: 2
- - uid: 12848
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-2.5
- parent: 2
- - uid: 12849
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-3.5
- parent: 2
- - uid: 12850
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-2.5
- parent: 2
- - uid: 12851
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-4.5
- parent: 2
- - uid: 12852
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-5.5
- parent: 2
- - uid: 12853
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-0.5
- parent: 2
- - uid: 12854
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-0.5
- parent: 2
- - uid: 12856
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-1.5
- parent: 2
- - uid: 12857
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-1.5
- parent: 2
- - uid: 12858
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-1.5
- parent: 2
- - uid: 12859
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-1.5
- parent: 2
- - uid: 12860
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-2.5
- parent: 2
- - uid: 13279
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-3.5
- parent: 2
- - uid: 13280
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-2.5
- parent: 2
- - uid: 13281
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,3.5
- parent: 2
- - uid: 13331
- components:
- - type: Transform
- pos: 6.5,-12.5
- parent: 2
- - uid: 13333
- components:
- - type: Transform
- pos: 5.5,-12.5
- parent: 2
- - uid: 13368
- components:
- - type: Transform
- pos: 5.5,-25.5
- parent: 2
- - uid: 13369
- components:
- - type: Transform
- pos: 4.5,-25.5
- parent: 2
- - uid: 13370
- components:
- - type: Transform
- pos: -0.5,-25.5
- parent: 2
- - uid: 13371
- components:
- - type: Transform
- pos: 0.5,-25.5
- parent: 2
- - uid: 13372
- components:
- - type: Transform
- pos: -11.5,14.5
- parent: 2
- - uid: 13400
- components:
- - type: Transform
- pos: -11.5,15.5
- parent: 2
- - uid: 13401
- components:
- - type: Transform
- pos: -11.5,18.5
- parent: 2
- - uid: 13405
- components:
- - type: Transform
- pos: -11.5,17.5
- parent: 2
- - uid: 13739
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,5.5
- parent: 2
- - uid: 13772
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,4.5
- parent: 2
- - uid: 13791
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-0.5
- parent: 2
- - uid: 13870
- components:
- - type: Transform
- pos: -1.5,-12.5
- parent: 2
- - uid: 13871
- components:
- - type: Transform
- pos: -1.5,-11.5
- parent: 2
- - uid: 13872
- components:
- - type: Transform
- pos: 0.5,-12.5
- parent: 2
- - uid: 13873
- components:
- - type: Transform
- pos: 5.5,-18.5
- parent: 2
- - uid: 13874
- components:
- - type: Transform
- pos: -0.5,-12.5
- parent: 2
- - uid: 13875
- components:
- - type: Transform
- pos: 5.5,-17.5
- parent: 2
- - uid: 13947
- components:
- - type: Transform
- pos: 5.5,-20.5
- parent: 2
- - uid: 14604
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-0.5
- parent: 2
- - uid: 14854
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-1.5
- parent: 2
- - uid: 14857
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-1.5
- parent: 2
- - uid: 14859
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-2.5
- parent: 2
- - uid: 14862
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-2.5
- parent: 2
- - uid: 14863
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-15.5
- parent: 2
- - uid: 14864
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-16.5
- parent: 2
- - uid: 14865
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-15.5
- parent: 2
- - uid: 14866
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-16.5
- parent: 2
- - uid: 14867
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-17.5
- parent: 2
- - uid: 14868
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-17.5
- parent: 2
- - uid: 14869
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-18.5
- parent: 2
- - uid: 14870
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-19.5
- parent: 2
- - uid: 14871
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-14.5
- parent: 2
- - uid: 14872
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-36.5
- parent: 2
- - uid: 14873
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-36.5
- parent: 2
- - uid: 14874
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-36.5
- parent: 2
- - uid: 14875
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-30.5
- parent: 2
- - uid: 14876
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-32.5
- parent: 2
- - uid: 14877
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-33.5
- parent: 2
- - uid: 14878
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-31.5
- parent: 2
- - uid: 14879
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-46.5
- parent: 2
- - uid: 14880
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-46.5
- parent: 2
- - uid: 14881
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-47.5
- parent: 2
- - uid: 14885
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-6.5
- parent: 2
- - uid: 14886
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,1.5
- parent: 2
- - uid: 14888
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-5.5
- parent: 2
- - uid: 14889
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-7.5
- parent: 2
- - uid: 14890
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,3.5
- parent: 2
- - uid: 14892
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,2.5
- parent: 2
- - uid: 14893
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,17.5
- parent: 2
- - uid: 14894
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,18.5
- parent: 2
- - uid: 14895
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,19.5
- parent: 2
- - uid: 14896
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,17.5
- parent: 2
- - uid: 14897
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,19.5
- parent: 2
- - uid: 14898
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,17.5
- parent: 2
- - uid: 14899
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,18.5
- parent: 2
- - uid: 14900
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,19.5
- parent: 2
- - uid: 14901
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,17.5
- parent: 2
- - uid: 14902
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,18.5
- parent: 2
- - uid: 14903
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,19.5
- parent: 2
- - uid: 14904
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,18.5
- parent: 2
- - uid: 14905
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,16.5
- parent: 2
- - uid: 14906
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,16.5
- parent: 2
- - uid: 14907
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,18.5
- parent: 2
- - uid: 14908
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,18.5
- parent: 2
- - uid: 14909
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,19.5
- parent: 2
- - uid: 14910
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,19.5
- parent: 2
- - uid: 14911
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,18.5
- parent: 2
- - uid: 14912
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,19.5
- parent: 2
- - uid: 14913
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,19.5
- parent: 2
- - uid: 14914
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,18.5
- parent: 2
- - uid: 14915
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,18.5
- parent: 2
- - uid: 14916
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,18.5
- parent: 2
- - uid: 14917
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,19.5
- parent: 2
- - uid: 14918
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,19.5
- parent: 2
- - uid: 14919
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,18.5
- parent: 2
- - uid: 14920
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,19.5
- parent: 2
- - uid: 14921
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,18.5
- parent: 2
- - uid: 14922
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,19.5
- parent: 2
- - uid: 14923
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,20.5
- parent: 2
- - uid: 14924
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,21.5
- parent: 2
- - uid: 14925
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,17.5
- parent: 2
- - uid: 14926
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,15.5
- parent: 2
- - uid: 14927
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,20.5
- parent: 2
- - uid: 14928
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,16.5
- parent: 2
- - uid: 14929
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,20.5
- parent: 2
- - uid: 14930
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,20.5
- parent: 2
- - uid: 14931
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,20.5
- parent: 2
- - uid: 14932
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,19.5
- parent: 2
- - uid: 14933
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,19.5
- parent: 2
- - uid: 14934
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,21.5
- parent: 2
- - uid: 14935
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,21.5
- parent: 2
- - uid: 14936
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,11.5
- parent: 2
- - uid: 14937
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,13.5
- parent: 2
- - uid: 14938
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,12.5
- parent: 2
- - uid: 14939
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,14.5
- parent: 2
- - uid: 14947
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-43.5
- parent: 2
- - uid: 14957
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-44.5
- parent: 2
- - uid: 14959
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-38.5
- parent: 2
- - uid: 14960
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-38.5
- parent: 2
- - uid: 14961
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-37.5
- parent: 2
- - uid: 14963
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-37.5
- parent: 2
- - uid: 14965
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-33.5
- parent: 2
- - uid: 14966
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-34.5
- parent: 2
- - uid: 14967
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-34.5
- parent: 2
- - uid: 14968
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-34.5
- parent: 2
- - uid: 14969
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-1.5
- parent: 2
- - uid: 14970
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-1.5
- parent: 2
- - uid: 14971
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-1.5
- parent: 2
- - uid: 14972
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,26.5
- parent: 2
- - uid: 14973
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,27.5
- parent: 2
- - uid: 14974
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,28.5
- parent: 2
- - uid: 14975
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,25.5
- parent: 2
- - uid: 14976
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,25.5
- parent: 2
- - uid: 14977
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,26.5
- parent: 2
- - uid: 14978
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,29.5
- parent: 2
- - uid: 14979
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,28.5
- parent: 2
- - uid: 14980
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,29.5
- parent: 2
- - uid: 14981
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,28.5
- parent: 2
- - uid: 14982
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,29.5
- parent: 2
- - uid: 14983
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,28.5
- parent: 2
- - uid: 14984
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,27.5
- parent: 2
- - uid: 14985
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,27.5
- parent: 2
- - uid: 14986
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,26.5
- parent: 2
- - uid: 14987
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,25.5
- parent: 2
- - uid: 14988
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,26.5
- parent: 2
- - uid: 14989
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,14.5
- parent: 2
- - uid: 14990
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,15.5
- parent: 2
- - uid: 14991
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,16.5
- parent: 2
- - uid: 14992
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,18.5
- parent: 2
- - uid: 14993
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,17.5
- parent: 2
- proto: CP14SpawnerDemiplaneLootT1
entities:
- uid: 983
@@ -85491,6 +86579,23 @@ entities:
- type: Transform
pos: -39.5,-9.5
parent: 2
+- proto: CP14SpawnMobFrog
+ entities:
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 21.5,23.5
+ parent: 2
+ - uid: 4287
+ components:
+ - type: Transform
+ pos: 19.5,25.5
+ parent: 2
+ - uid: 4408
+ components:
+ - type: Transform
+ pos: 18.5,22.5
+ parent: 2
- proto: CP14SpawnMobMonsterMole
entities:
- uid: 3608
@@ -85598,32 +86703,6 @@ entities:
- type: Transform
pos: 33.5,9.5
parent: 2
-- proto: CP14SpawnPointBanker
- entities:
- - uid: 1512
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,19.5
- parent: 2
- - uid: 1528
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,18.5
- parent: 2
- - uid: 1532
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,21.5
- parent: 2
- - uid: 1533
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,20.5
- parent: 2
- proto: CP14SpawnPointBlacksmith
entities:
- uid: 586
@@ -85638,10 +86717,15 @@ entities:
parent: 2
- proto: CP14SpawnPointCommandant
entities:
- - uid: 1002
+ - uid: 2343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,13.5
+ parent: 2
+ - uid: 9925
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 4.5,13.5
parent: 2
- proto: CP14SpawnPointGuard
@@ -85730,6 +86814,62 @@ entities:
- type: Transform
pos: -15.5,-21.5
parent: 2
+- proto: CP14SpawnPointMerchant
+ entities:
+ - uid: 2313
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,23.5
+ parent: 2
+ - uid: 2328
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,19.5
+ parent: 2
+ - uid: 13154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,19.5
+ parent: 2
+ - uid: 13602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,19.5
+ parent: 2
+- proto: CP14SpellScrollDemiplaneInfiltration
+ entities:
+ - uid: 1290
+ components:
+ - type: Transform
+ parent: 8558
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1291
+ components:
+ - type: Transform
+ parent: 8558
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1292
+ components:
+ - type: Transform
+ parent: 8558
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 1294
+ components:
+ - type: Transform
+ parent: 8558
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: CP14SpellScrollFlashLight
entities:
- uid: 12954
@@ -85744,20 +86884,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 18.060596,-42.363495
parent: 2
-- proto: CP14StampApproved
- entities:
- - uid: 1749
- components:
- - type: Transform
- pos: -23.246859,23.592958
- parent: 2
-- proto: CP14StampDenied
- entities:
- - uid: 4086
- components:
- - type: Transform
- pos: -23.505562,23.334337
- parent: 2
- proto: CP14SteelBeerMug
entities:
- uid: 1585
@@ -85815,15 +86941,15 @@ entities:
parent: 2
- proto: CP14String
entities:
- - uid: 630
+ - uid: 901
components:
- type: Transform
- pos: -8.271968,2.5469012
+ pos: 30.588495,4.7120843
parent: 2
- - uid: 631
+ - uid: 1289
components:
- type: Transform
- pos: -8.620842,2.4007246
+ pos: 30.442192,4.554663
parent: 2
- uid: 2057
components:
@@ -85850,25 +86976,20 @@ entities:
- type: Transform
pos: 33.49433,15.576983
parent: 2
- - uid: 10688
+ - uid: 9681
components:
- type: Transform
- pos: 22.315252,14.772459
+ pos: 30.250874,4.667107
parent: 2
- - uid: 13790
+ - uid: 13616
components:
- type: Transform
- pos: -8.3619995,2.7493005
+ pos: 30.419683,4.8695054
parent: 2
- - uid: 13845
+ - uid: 13628
components:
- type: Transform
- pos: -8.542065,2.6031237
- parent: 2
- - uid: 13877
- components:
- - type: Transform
- pos: -8.69962,2.7043233
+ pos: 30.385923,4.7120843
parent: 2
- proto: CP14Syringe
entities:
@@ -85888,6 +87009,18 @@ entities:
rot: 1.5707963267948966 rad
pos: -7.520667,-30.375492
parent: 2
+ - uid: 15000
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.607868,13.737555
+ parent: 2
+ - uid: 15001
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.607868,13.4676895
+ parent: 2
- proto: CP14TableWooden
entities:
- uid: 568
@@ -85900,22 +87033,12 @@ entities:
- type: Transform
pos: -4.5,-23.5
parent: 2
- - uid: 810
- components:
- - type: Transform
- pos: 27.5,1.5
- parent: 2
- uid: 860
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 3.5,-38.5
parent: 2
- - uid: 867
- components:
- - type: Transform
- pos: 27.5,2.5
- parent: 2
- uid: 1010
components:
- type: Transform
@@ -85959,11 +87082,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -28.5,17.5
parent: 2
- - uid: 1382
- components:
- - type: Transform
- pos: -21.5,12.5
- parent: 2
- uid: 1383
components:
- type: Transform
@@ -85979,12 +87097,6 @@ entities:
- type: Transform
pos: 12.5,1.5
parent: 2
- - uid: 1513
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,12.5
- parent: 2
- uid: 1618
components:
- type: Transform
@@ -86183,30 +87295,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -3.5,-38.5
parent: 2
- - uid: 5550
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,12.5
- parent: 2
- uid: 5551
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 20.5,12.5
parent: 2
- - uid: 5552
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,14.5
- parent: 2
- - uid: 5553
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,14.5
- parent: 2
- uid: 5554
components:
- type: Transform
@@ -86289,6 +87383,16 @@ entities:
- type: Transform
pos: 8.5,1.5
parent: 2
+ - uid: 9682
+ components:
+ - type: Transform
+ pos: 18.5,16.5
+ parent: 2
+ - uid: 9688
+ components:
+ - type: Transform
+ pos: 18.5,17.5
+ parent: 2
- uid: 12880
components:
- type: Transform
@@ -86307,6 +87411,12 @@ entities:
rot: 3.141592653589793 rad
pos: -17.5,-28.5
parent: 2
+ - uid: 13618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,13.5
+ parent: 2
- uid: 13746
components:
- type: Transform
@@ -86337,28 +87447,48 @@ entities:
rot: -1.5707963267948966 rad
pos: -4.5,-22.5
parent: 2
+ - uid: 14968
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,5.5
+ parent: 2
+ - uid: 14969
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,5.5
+ parent: 2
+ - uid: 14993
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,13.5
+ parent: 2
+ - uid: 14994
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,12.5
+ parent: 2
+ - uid: 14995
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,14.5
+ parent: 2
- proto: CP14TableWoodenCounter
entities:
+ - uid: 880
+ components:
+ - type: Transform
+ pos: 24.5,3.5
+ parent: 2
- uid: 978
components:
- type: Transform
pos: -5.5,-14.5
parent: 2
- - uid: 1220
- components:
- - type: Transform
- pos: -18.5,16.5
- parent: 2
- - uid: 1223
- components:
- - type: Transform
- pos: -17.5,16.5
- parent: 2
- - uid: 1224
- components:
- - type: Transform
- pos: -15.5,16.5
- parent: 2
- uid: 1227
components:
- type: Transform
@@ -86370,23 +87500,16 @@ entities:
rot: 3.141592653589793 rad
pos: -23.5,22.5
parent: 2
- - uid: 1282
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,23.5
- parent: 2
- uid: 1283
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -13.5,24.5
parent: 2
- - uid: 1287
+ - uid: 1296
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,24.5
+ pos: 25.5,3.5
parent: 2
- uid: 1330
components:
@@ -86399,12 +87522,6 @@ entities:
rot: 3.141592653589793 rad
pos: -6.5,1.5
parent: 2
- - uid: 1399
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,23.5
- parent: 2
- uid: 1419
components:
- type: Transform
@@ -86435,38 +87552,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -20.5,20.5
parent: 2
- - uid: 1462
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,20.5
- parent: 2
- uid: 1463
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -22.5,20.5
parent: 2
- - uid: 1514
- components:
- - type: Transform
- pos: -19.5,25.5
- parent: 2
- - uid: 1529
- components:
- - type: Transform
- pos: -17.5,26.5
- parent: 2
- - uid: 1530
- components:
- - type: Transform
- pos: -17.5,25.5
- parent: 2
- - uid: 1537
- components:
- - type: Transform
- pos: -19.5,26.5
- parent: 2
- uid: 1626
components:
- type: Transform
@@ -86513,11 +87604,31 @@ entities:
rot: 3.141592653589793 rad
pos: 15.5,4.5
parent: 2
+ - uid: 2254
+ components:
+ - type: Transform
+ pos: -17.5,26.5
+ parent: 2
- uid: 2257
components:
- type: Transform
pos: -4.5,-32.5
parent: 2
+ - uid: 2259
+ components:
+ - type: Transform
+ pos: -17.5,25.5
+ parent: 2
+ - uid: 2273
+ components:
+ - type: Transform
+ pos: -19.5,26.5
+ parent: 2
+ - uid: 2274
+ components:
+ - type: Transform
+ pos: -19.5,25.5
+ parent: 2
- uid: 2338
components:
- type: Transform
@@ -86528,6 +87639,18 @@ entities:
- type: Transform
pos: -20.5,-13.5
parent: 2
+ - uid: 2355
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,1.5
+ parent: 2
+ - uid: 2403
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,1.5
+ parent: 2
- uid: 7165
components:
- type: Transform
@@ -86657,6 +87780,46 @@ entities:
- type: Transform
pos: 22.5,-18.5
parent: 2
+ - uid: 12290
+ components:
+ - type: Transform
+ pos: -21.5,20.5
+ parent: 2
+ - uid: 12308
+ components:
+ - type: Transform
+ pos: -18.5,16.5
+ parent: 2
+ - uid: 12318
+ components:
+ - type: Transform
+ pos: -17.5,16.5
+ parent: 2
+ - uid: 12321
+ components:
+ - type: Transform
+ pos: -15.5,16.5
+ parent: 2
+ - uid: 12330
+ components:
+ - type: Transform
+ pos: -23.5,24.5
+ parent: 2
+ - uid: 12332
+ components:
+ - type: Transform
+ pos: -23.5,23.5
+ parent: 2
+ - uid: 12333
+ components:
+ - type: Transform
+ pos: -13.5,23.5
+ parent: 2
+ - uid: 12335
+ components:
+ - type: Transform
+ pos: -28.5,20.5
+ parent: 2
- uid: 12559
components:
- type: Transform
@@ -86697,11 +87860,6 @@ entities:
- type: Transform
pos: -8.5,1.5
parent: 2
- - uid: 12991
- components:
- - type: Transform
- pos: -8.5,2.5
- parent: 2
- uid: 13376
components:
- type: Transform
@@ -86741,6 +87899,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -5.5,-18.5
parent: 2
+ - uid: 13619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,1.5
+ parent: 2
- uid: 13916
components:
- type: Transform
@@ -86759,18 +87923,22 @@ entities:
parent: 2
- proto: CP14TableWoodenFrame
entities:
+ - uid: 802
+ components:
+ - type: Transform
+ pos: -19.5,12.5
+ parent: 2
+ - uid: 863
+ components:
+ - type: Transform
+ pos: -21.5,12.5
+ parent: 2
- uid: 1599
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 27.5,-6.5
parent: 2
- - uid: 15480
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,60.5
- parent: 2
- proto: CP14TableWoodenRound
entities:
- uid: 1472
@@ -86894,33 +88062,18 @@ entities:
- type: Transform
pos: 22.65147,-24.178692
parent: 2
- - uid: 15481
- components:
- - type: Transform
- pos: 56.455624,60.922813
- parent: 2
- - uid: 15482
- components:
- - type: Transform
- pos: 56.538956,60.797813
- parent: 2
- - uid: 15483
- components:
- - type: Transform
- pos: 56.580624,60.714478
- parent: 2
- proto: CP14TravelingShop
entities:
- - uid: 12870
- components:
- - type: Transform
- pos: -19.5,17.5
- parent: 2
- uid: 12871
components:
- type: Transform
pos: -27.5,17.5
parent: 2
+ - uid: 15013
+ components:
+ - type: Transform
+ pos: -19.5,17.5
+ parent: 2
- proto: CP14TravelingStoreshipAnchor
entities:
- uid: 12872
@@ -87022,6 +88175,11 @@ entities:
- type: Transform
pos: -9.5,-10.5
parent: 2
+ - uid: 15012
+ components:
+ - type: Transform
+ pos: 15.5,18.5
+ parent: 2
- uid: 17838
components:
- type: Transform
@@ -87032,11 +88190,6 @@ entities:
- type: Transform
pos: -22.5,-21.5
parent: 2
- - uid: 17889
- components:
- - type: Transform
- pos: 17.5,19.5
- parent: 2
- uid: 17890
components:
- type: Transform
@@ -87150,11 +88303,6 @@ entities:
rot: -6.283185307179586 rad
pos: 16.449919,0.89076805
parent: 2
- - uid: 2340
- components:
- - type: Transform
- pos: -7.9764233,-30.46637
- parent: 2
- proto: CP14VialSmallGroundQuartz
entities:
- uid: 2241
@@ -87169,15 +88317,25 @@ entities:
rot: -6.283185307179586 rad
pos: 16.112478,0.92450154
parent: 2
- - uid: 2273
+ - uid: 14996
components:
- type: Transform
- pos: -7.342439,-30.160282
+ pos: 22.574104,14.631483
parent: 2
- - uid: 2274
+ - uid: 14997
components:
- type: Transform
- pos: -7.229959,-30.238995
+ pos: 22.709152,14.429085
+ parent: 2
+ - uid: 14998
+ components:
+ - type: Transform
+ pos: 22.540344,14.209819
+ parent: 2
+ - uid: 14999
+ components:
+ - type: Transform
+ pos: 22.726036,14.05802
parent: 2
- proto: CP14VialSmallHealthPotion
entities:
@@ -87187,12 +88345,6 @@ entities:
parent: 439
- type: Physics
canCollide: False
- - uid: 17832
- components:
- - type: Transform
- parent: 15047
- - type: Physics
- canCollide: False
- uid: 17922
components:
- type: Transform
@@ -87201,18 +88353,6 @@ entities:
canCollide: False
- proto: CP14VialSmallManaPotion
entities:
- - uid: 12368
- components:
- - type: Transform
- parent: 12367
- - type: Physics
- canCollide: False
- - uid: 15032
- components:
- - type: Transform
- parent: 15013
- - type: Physics
- canCollide: False
- uid: 17836
components:
- type: Transform
@@ -87225,26 +88365,6 @@ entities:
parent: 17920
- type: Physics
canCollide: False
-- proto: CP14VialSmallReinforced
- entities:
- - uid: 12370
- components:
- - type: Transform
- parent: 12367
- - type: Physics
- canCollide: False
- - uid: 15045
- components:
- - type: Transform
- parent: 15013
- - type: Physics
- canCollide: False
- - uid: 17833
- components:
- - type: Transform
- parent: 15047
- - type: Physics
- canCollide: False
- proto: CP14VialTiny
entities:
- uid: 441
@@ -87253,16 +88373,6 @@ entities:
parent: 439
- type: Physics
canCollide: False
- - uid: 880
- components:
- - type: Transform
- pos: -8.692542,-30.39893
- parent: 2
- - uid: 916
- components:
- - type: Transform
- pos: -8.481605,-30.375492
- parent: 2
- uid: 2126
components:
- type: Transform
@@ -87284,28 +88394,10 @@ entities:
- type: Transform
pos: -8.595063,-30.263971
parent: 2
- - uid: 12369
+ - uid: 14975
components:
- type: Transform
- parent: 12367
- - type: Physics
- canCollide: False
- - uid: 15037
- components:
- - type: Transform
- parent: 15013
- - type: Physics
- canCollide: False
- - uid: 15040
- components:
- - type: Transform
- parent: 15013
- - type: Physics
- canCollide: False
- - uid: 17834
- components:
- - type: Transform
- pos: -7.2732205,-34.40948
+ pos: 18.438482,17.353796
parent: 2
- uid: 17915
components:
@@ -87525,6 +88617,173 @@ entities:
rot: 1.5707963267948966 rad
pos: 22.704018,-44.301598
parent: 2
+- proto: CP14WallLeaf
+ entities:
+ - uid: 2107
+ components:
+ - type: Transform
+ pos: 20.5,-58.5
+ parent: 2
+ - uid: 2109
+ components:
+ - type: Transform
+ pos: 20.5,-59.5
+ parent: 2
+ - uid: 8324
+ components:
+ - type: Transform
+ pos: 100.5,59.5
+ parent: 2
+ - uid: 8330
+ components:
+ - type: Transform
+ pos: 102.5,57.5
+ parent: 2
+ - uid: 8336
+ components:
+ - type: Transform
+ pos: 100.5,60.5
+ parent: 2
+ - uid: 8337
+ components:
+ - type: Transform
+ pos: 100.5,57.5
+ parent: 2
+ - uid: 8338
+ components:
+ - type: Transform
+ pos: 100.5,58.5
+ parent: 2
+ - uid: 8344
+ components:
+ - type: Transform
+ pos: 103.5,56.5
+ parent: 2
+ - uid: 8376
+ components:
+ - type: Transform
+ pos: 102.5,56.5
+ parent: 2
+ - uid: 8388
+ components:
+ - type: Transform
+ pos: 101.5,57.5
+ parent: 2
+ - uid: 8390
+ components:
+ - type: Transform
+ pos: 103.5,57.5
+ parent: 2
+ - uid: 9879
+ components:
+ - type: Transform
+ pos: 24.5,16.5
+ parent: 2
+ - uid: 9889
+ components:
+ - type: Transform
+ pos: 24.5,15.5
+ parent: 2
+ - uid: 9890
+ components:
+ - type: Transform
+ pos: 24.5,14.5
+ parent: 2
+ - uid: 9923
+ components:
+ - type: Transform
+ pos: 0.5,-25.5
+ parent: 2
+ - uid: 9934
+ components:
+ - type: Transform
+ pos: -11.5,13.5
+ parent: 2
+ - uid: 9935
+ components:
+ - type: Transform
+ pos: -6.5,-36.5
+ parent: 2
+ - uid: 9936
+ components:
+ - type: Transform
+ pos: -5.5,-36.5
+ parent: 2
+ - uid: 9937
+ components:
+ - type: Transform
+ pos: 19.5,-58.5
+ parent: 2
+ - uid: 9938
+ components:
+ - type: Transform
+ pos: 19.5,-59.5
+ parent: 2
+ - uid: 9939
+ components:
+ - type: Transform
+ pos: 19.5,-60.5
+ parent: 2
+ - uid: 9944
+ components:
+ - type: Transform
+ pos: -4.5,-36.5
+ parent: 2
+ - uid: 9945
+ components:
+ - type: Transform
+ pos: -10.5,-4.5
+ parent: 2
+ - uid: 9946
+ components:
+ - type: Transform
+ pos: -11.5,-3.5
+ parent: 2
+ - uid: 9947
+ components:
+ - type: Transform
+ pos: -10.5,-3.5
+ parent: 2
+ - uid: 9949
+ components:
+ - type: Transform
+ pos: -0.5,-25.5
+ parent: 2
+ - uid: 9950
+ components:
+ - type: Transform
+ pos: -11.5,14.5
+ parent: 2
+ - uid: 9951
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - uid: 9952
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+ - uid: 9956
+ components:
+ - type: Transform
+ pos: -1.5,-11.5
+ parent: 2
+ - uid: 9957
+ components:
+ - type: Transform
+ pos: -1.5,-12.5
+ parent: 2
+ - uid: 9958
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 2
+ - uid: 9959
+ components:
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 2
- proto: CP14WallMarbleBrick
entities:
- uid: 1033
@@ -87896,95 +89155,11 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 12367
+ - uid: 9880
components:
- type: Transform
- pos: -5.5,-33.5
+ pos: -5.5,-14.5
parent: 2
- - type: Storage
- storedItems:
- 12368:
- position: 0,0
- _rotation: South
- 12369:
- position: 1,0
- _rotation: South
- 12370:
- position: 2,0
- _rotation: South
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 12368
- - 12369
- - 12370
- - type: Fixtures
- fixtures: {}
- - uid: 15010
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-32.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15013
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-32.5
- parent: 2
- - type: Storage
- storedItems:
- 15032:
- position: 0,0
- _rotation: South
- 15037:
- position: 1,0
- _rotation: South
- 15040:
- position: 2,0
- _rotation: South
- 15045:
- position: 3,0
- _rotation: South
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 15032
- - 15037
- - 15040
- - 15045
- - type: Fixtures
- fixtures: {}
- - uid: 15047
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-31.5
- parent: 2
- - type: Storage
- storedItems:
- 17832:
- position: 0,0
- _rotation: South
- 17833:
- position: 1,0
- _rotation: South
- - type: ContainerContainer
- containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 17832
- - 17833
- type: Fixtures
fixtures: {}
- uid: 17916
@@ -88029,6 +89204,14 @@ entities:
fixtures: {}
- proto: CP14WallmountBarShelfB
entities:
+ - uid: 1302
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 8566
components:
- type: Transform
@@ -88036,6 +89219,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 9881
+ components:
+ - type: Transform
+ pos: -3.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 13409
components:
- type: Transform
@@ -88043,6 +89233,14 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 14863
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 17835
components:
- type: Transform
@@ -88104,12 +89302,6 @@ entities:
rot: 3.141592653589793 rad
pos: 22.5,19.5
parent: 2
- - uid: 8375
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,19.5
- parent: 2
- uid: 11861
components:
- type: Transform
@@ -88177,14 +89369,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 1297
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 1807
components:
- type: Transform
@@ -88208,51 +89392,22 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2256
+ - uid: 13412
components:
- type: Transform
- pos: -3.5,-30.5
+ pos: 23.5,10.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2258
+ - uid: 13615
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-28.5
+ pos: 17.5,10.5
parent: 2
- type: Fixtures
fixtures: {}
- proto: CP14WallmountFlagBank
entities:
- - uid: 1230
- components:
- - type: Transform
- pos: -13.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1231
- components:
- - type: Transform
- pos: -22.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1232
- components:
- - type: Transform
- pos: -19.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1233
- components:
- - type: Transform
- pos: -16.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 12986
components:
- type: Transform
@@ -88260,42 +89415,12 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
-- proto: CP14WallmountFlagBankCommandant
- entities:
- - uid: 1005
- components:
- - type: Transform
- pos: -0.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1006
- components:
- - type: Transform
- pos: 2.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1007
- components:
- - type: Transform
- pos: -2.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1008
- components:
- - type: Transform
- pos: 6.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- proto: CP14WallmountFlagBankShip
entities:
- - uid: 12863
+ - uid: 13632
components:
- type: Transform
- pos: -29.5,15.5
+ pos: -28.5,15.5
parent: 2
- type: Fixtures
fixtures: {}
@@ -88329,29 +89454,22 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 2270
+ components:
+ - type: Transform
+ pos: -23.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 2330
+ components:
+ - type: Transform
+ pos: -12.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- proto: CP14WallmountFlagBlacksmith
entities:
- - uid: 2042
- components:
- - type: Transform
- pos: -2.5,1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8058
- components:
- - type: Transform
- pos: -6.5,-1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8395
- components:
- - type: Transform
- pos: -3.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 8799
components:
- type: Transform
@@ -88373,10 +89491,17 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 17918
+ - uid: 13339
components:
- type: Transform
- pos: -8.5,5.5
+ pos: 30.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13599
+ components:
+ - type: Transform
+ pos: 24.5,5.5
parent: 2
- type: Fixtures
fixtures: {}
@@ -88524,1016 +89649,8 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
-- proto: CP14WallmountGarlandBlue
- entities:
- - uid: 5419
- components:
- - type: Transform
- pos: -47.5,-76.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 12687
- components:
- - type: Transform
- pos: 8.5,-9.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 12713
- components:
- - type: Transform
- pos: 3.5,-9.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 14995
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,7.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15000
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,11.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15006
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-19.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15017
- components:
- - type: Transform
- pos: 21.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15024
- components:
- - type: Transform
- pos: -21.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15035
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15039
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15046
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15056
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15057
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,18.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15061
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-43.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15077
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,7.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15079
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-27.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15084
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-22.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15086
- components:
- - type: Transform
- pos: 16.5,-62.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15093
- components:
- - type: Transform
- pos: -25.5,-66.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15096
- components:
- - type: Transform
- pos: -63.5,23.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15098
- components:
- - type: Transform
- pos: -61.5,23.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15101
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,25.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15102
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,25.5
- parent: 2
- - type: Fixtures
- fixtures: {}
-- proto: CP14WallmountGarlandGreen
- entities:
- - uid: 14951
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,11.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 14952
- components:
- - type: Transform
- pos: -15.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 14999
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15014
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-42.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15022
- components:
- - type: Transform
- pos: 26.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15025
- components:
- - type: Transform
- pos: 27.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15034
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15038
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,7.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15044
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15048
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15058
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,21.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15062
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-42.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15067
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15081
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-30.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15083
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-23.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15088
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,19.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15092
- components:
- - type: Transform
- pos: -25.5,-73.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15097
- components:
- - type: Transform
- pos: -16.5,-34.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15103
- components:
- - type: Transform
- pos: 12.5,19.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15104
- components:
- - type: Transform
- pos: 34.5,44.5
- parent: 2
- - type: Fixtures
- fixtures: {}
-- proto: CP14WallmountGarlandPurple
- entities:
- - uid: 145
- components:
- - type: Transform
- pos: -10.5,-19.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1137
- components:
- - type: Transform
- pos: -1.5,-19.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13909
- components:
- - type: Transform
- pos: -5.5,-25.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13910
- components:
- - type: Transform
- pos: -7.5,-25.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13912
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-16.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 14998
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-7.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15001
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,11.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15004
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-23.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15005
- components:
- - type: Transform
- pos: -20.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15008
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,7.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15012
- components:
- - type: Transform
- pos: 11.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15015
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-41.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15026
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-16.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15028
- components:
- - type: Transform
- pos: 33.5,12.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15029
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-7.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15033
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15041
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-39.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15051
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-12.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15053
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15059
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-32.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15060
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,20.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15063
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15065
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-41.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15080
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15082
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-31.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15085
- components:
- - type: Transform
- pos: 17.5,-62.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15091
- components:
- - type: Transform
- pos: -26.5,-73.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15095
- components:
- - type: Transform
- pos: -26.5,-66.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15476
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,64.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15479
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 106.5,61.5
- parent: 2
- - type: Fixtures
- fixtures: {}
-- proto: CP14WallmountGarlandRed
- entities:
- - uid: 12759
- components:
- - type: Transform
- pos: 7.5,-9.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13327
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-15.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 14996
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-32.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15002
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-15.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15009
- components:
- - type: Transform
- pos: 10.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15011
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15018
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-32.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15023
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15030
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-20.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15031
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15049
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,7.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15052
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-12.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15054
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,13.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15069
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-40.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15094
- components:
- - type: Transform
- pos: -24.5,-66.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15106
- components:
- - type: Transform
- pos: 36.5,44.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15477
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,64.5
- parent: 2
- - type: Fixtures
- fixtures: {}
-- proto: CP14WallmountGarlandYellow
- entities:
- - uid: 2066
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-15.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 5420
- components:
- - type: Transform
- pos: -45.5,-76.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 12716
- components:
- - type: Transform
- pos: 4.5,-9.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13339
- components:
- - type: Transform
- pos: -4.5,-25.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13412
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-16.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13844
- components:
- - type: Transform
- pos: -8.5,-25.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 14953
- components:
- - type: Transform
- pos: -14.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 14997
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,11.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15007
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15016
- components:
- - type: Transform
- pos: 20.5,10.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15019
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-18.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15020
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-31.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15021
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15027
- components:
- - type: Transform
- pos: 32.5,12.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15042
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-40.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15043
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15055
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,17.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15070
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15072
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-40.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15078
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,7.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15089
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,19.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15090
- components:
- - type: Transform
- pos: -24.5,-73.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15099
- components:
- - type: Transform
- pos: -62.5,28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15100
- components:
- - type: Transform
- pos: -61.5,28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15105
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-58.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 15478
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 106.5,59.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- proto: CP14WallmountLamp
entities:
- - uid: 994
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 995
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 996
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,16.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1217
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,19.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1239
- components:
- - type: Transform
- pos: -24.5,15.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1241
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,16.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1242
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,16.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1243
- components:
- - type: Transform
- pos: -22.5,15.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1350
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,25.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1351
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,25.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1352
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,29.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1354
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,29.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1356
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,23.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1357
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,23.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 1707
components:
- type: Transform
@@ -89565,20 +89682,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2411
- components:
- - type: Transform
- pos: -21.5,20.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 2412
- components:
- - type: Transform
- pos: -14.5,20.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 7163
components:
- type: Transform
@@ -89658,6 +89761,14 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 932
components:
- type: Transform
@@ -89673,21 +89784,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 950
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,2.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1103
- components:
- - type: Transform
- pos: 25.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 1108
components:
- type: Transform
@@ -89788,20 +89884,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 2120
- components:
- - type: Transform
- pos: 19.5,15.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 2121
- components:
- - type: Transform
- pos: 27.5,-0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 2122
components:
- type: Transform
@@ -89940,6 +90022,14 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 13042
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 13793
components:
- type: Transform
@@ -89948,6 +90038,22 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 14951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14952
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 15442
components:
- type: Transform
@@ -89965,6 +90071,13 @@ entities:
fixtures: {}
- proto: CP14WallmountOrdersBorder
entities:
+ - uid: 869
+ components:
+ - type: Transform
+ pos: 20.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 1447
components:
- type: Transform
@@ -89991,14 +90104,6 @@ entities:
- 1101
- type: Fixtures
fixtures: {}
- - uid: 5558
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 12396
components:
- type: Transform
@@ -90055,13 +90160,6 @@ entities:
fixtures: {}
- proto: CP14WallmountPaintingSkull
entities:
- - uid: 262
- components:
- - type: Transform
- pos: 20.5,17.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 3607
components:
- type: Transform
@@ -90092,6 +90190,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 13044
+ components:
+ - type: Transform
+ pos: 22.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- proto: CP14WallmountPaintingWoman
entities:
- uid: 432
@@ -90158,6 +90263,66 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 12652
+ components:
+ - type: Transform
+ pos: -15.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 12867
+ components:
+ - type: Transform
+ pos: -16.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 12990
+ components:
+ - type: Transform
+ pos: -21.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 12991
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13011
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13012
+ components:
+ - type: Transform
+ pos: -18.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13013
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13014
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 13367
components:
- type: Transform
@@ -90373,233 +90538,6 @@ entities:
layers:
- sprite: _CP14/Structures/Wallpaper/wallpaper_red.rsi
state: right
-- proto: CP14WallSnow
- entities:
- - uid: 4499
- components:
- - type: Transform
- pos: -48.5,-72.5
- parent: 2
- - uid: 4511
- components:
- - type: Transform
- pos: -44.5,-75.5
- parent: 2
- - uid: 4525
- components:
- - type: Transform
- pos: -44.5,-71.5
- parent: 2
- - uid: 4527
- components:
- - type: Transform
- pos: -44.5,-72.5
- parent: 2
- - uid: 4528
- components:
- - type: Transform
- pos: -46.5,-71.5
- parent: 2
- - uid: 4530
- components:
- - type: Transform
- pos: -45.5,-71.5
- parent: 2
- - uid: 4531
- components:
- - type: Transform
- pos: -44.5,-73.5
- parent: 2
- - uid: 4532
- components:
- - type: Transform
- pos: -44.5,-74.5
- parent: 2
- - uid: 4533
- components:
- - type: Transform
- pos: -48.5,-71.5
- parent: 2
- - uid: 4534
- components:
- - type: Transform
- pos: -47.5,-71.5
- parent: 2
- - uid: 4859
- components:
- - type: Transform
- pos: -48.5,-74.5
- parent: 2
- - uid: 4927
- components:
- - type: Transform
- pos: -45.5,-75.5
- parent: 2
- - uid: 4933
- components:
- - type: Transform
- pos: -48.5,-75.5
- parent: 2
- - uid: 5297
- components:
- - type: Transform
- pos: -48.5,-73.5
- parent: 2
- - uid: 5407
- components:
- - type: Transform
- pos: -47.5,-75.5
- parent: 2
- - uid: 9769
- components:
- - type: Transform
- pos: 59.5,59.5
- parent: 2
- - uid: 9774
- components:
- - type: Transform
- pos: 59.5,60.5
- parent: 2
- - uid: 9778
- components:
- - type: Transform
- pos: 59.5,61.5
- parent: 2
- - uid: 9783
- components:
- - type: Transform
- pos: 59.5,62.5
- parent: 2
- - uid: 9820
- components:
- - type: Transform
- pos: 55.5,63.5
- parent: 2
- - uid: 9821
- components:
- - type: Transform
- pos: 55.5,62.5
- parent: 2
- - uid: 9822
- components:
- - type: Transform
- pos: 55.5,61.5
- parent: 2
- - uid: 10035
- components:
- - type: Transform
- pos: 105.5,59.5
- parent: 2
- - uid: 10036
- components:
- - type: Transform
- pos: 105.5,61.5
- parent: 2
- - uid: 10037
- components:
- - type: Transform
- pos: 101.5,62.5
- parent: 2
- - uid: 10038
- components:
- - type: Transform
- pos: 101.5,61.5
- parent: 2
- - uid: 10042
- components:
- - type: Transform
- pos: 101.5,60.5
- parent: 2
- - uid: 10046
- components:
- - type: Transform
- pos: 101.5,59.5
- parent: 2
- - uid: 10051
- components:
- - type: Transform
- pos: 101.5,58.5
- parent: 2
- - uid: 10052
- components:
- - type: Transform
- pos: 105.5,62.5
- parent: 2
- - uid: 10053
- components:
- - type: Transform
- pos: 104.5,62.5
- parent: 2
- - uid: 10054
- components:
- - type: Transform
- pos: 103.5,62.5
- parent: 2
- - uid: 10055
- components:
- - type: Transform
- pos: 102.5,62.5
- parent: 2
- - uid: 10057
- components:
- - type: Transform
- pos: 102.5,58.5
- parent: 2
- - uid: 10059
- components:
- - type: Transform
- pos: 105.5,58.5
- parent: 2
- - uid: 10078
- components:
- - type: Transform
- pos: 103.5,58.5
- parent: 2
- - uid: 10079
- components:
- - type: Transform
- pos: 104.5,58.5
- parent: 2
- - uid: 10759
- components:
- - type: Transform
- pos: 56.5,63.5
- parent: 2
- - uid: 10760
- components:
- - type: Transform
- pos: 58.5,63.5
- parent: 2
- - uid: 10761
- components:
- - type: Transform
- pos: 59.5,63.5
- parent: 2
- - uid: 10762
- components:
- - type: Transform
- pos: 55.5,60.5
- parent: 2
- - uid: 10763
- components:
- - type: Transform
- pos: 58.5,59.5
- parent: 2
- - uid: 10767
- components:
- - type: Transform
- pos: 57.5,59.5
- parent: 2
- - uid: 10771
- components:
- - type: Transform
- pos: 56.5,59.5
- parent: 2
- - uid: 10775
- components:
- - type: Transform
- pos: 55.5,59.5
- parent: 2
- proto: CP14WallStone
entities:
- uid: 3
@@ -91332,11 +91270,6 @@ entities:
- type: Transform
pos: -10.5,29.5
parent: 2
- - uid: 160
- components:
- - type: Transform
- pos: -2.5,25.5
- parent: 2
- uid: 161
components:
- type: Transform
@@ -91467,11 +91400,6 @@ entities:
- type: Transform
pos: -0.5,31.5
parent: 2
- - uid: 188
- components:
- - type: Transform
- pos: -1.5,25.5
- parent: 2
- uid: 189
components:
- type: Transform
@@ -94897,26 +94825,6 @@ entities:
- type: Transform
pos: -18.5,43.5
parent: 2
- - uid: 2835
- components:
- - type: Transform
- pos: -18.5,42.5
- parent: 2
- - uid: 2836
- components:
- - type: Transform
- pos: -18.5,41.5
- parent: 2
- - uid: 2837
- components:
- - type: Transform
- pos: -18.5,40.5
- parent: 2
- - uid: 2838
- components:
- - type: Transform
- pos: -18.5,39.5
- parent: 2
- uid: 2839
components:
- type: Transform
@@ -94947,26 +94855,6 @@ entities:
- type: Transform
pos: -17.5,43.5
parent: 2
- - uid: 2845
- components:
- - type: Transform
- pos: -17.5,42.5
- parent: 2
- - uid: 2846
- components:
- - type: Transform
- pos: -17.5,41.5
- parent: 2
- - uid: 2847
- components:
- - type: Transform
- pos: -17.5,40.5
- parent: 2
- - uid: 2848
- components:
- - type: Transform
- pos: -17.5,39.5
- parent: 2
- uid: 2849
components:
- type: Transform
@@ -94997,26 +94885,6 @@ entities:
- type: Transform
pos: -16.5,43.5
parent: 2
- - uid: 2855
- components:
- - type: Transform
- pos: -16.5,42.5
- parent: 2
- - uid: 2856
- components:
- - type: Transform
- pos: -16.5,41.5
- parent: 2
- - uid: 2857
- components:
- - type: Transform
- pos: -16.5,40.5
- parent: 2
- - uid: 2858
- components:
- - type: Transform
- pos: -16.5,39.5
- parent: 2
- uid: 2859
components:
- type: Transform
@@ -98917,26 +98785,6 @@ entities:
- type: Transform
pos: -11.5,38.5
parent: 2
- - uid: 3814
- components:
- - type: Transform
- pos: -11.5,39.5
- parent: 2
- - uid: 3815
- components:
- - type: Transform
- pos: -11.5,40.5
- parent: 2
- - uid: 3816
- components:
- - type: Transform
- pos: -11.5,41.5
- parent: 2
- - uid: 3817
- components:
- - type: Transform
- pos: -11.5,42.5
- parent: 2
- uid: 3818
components:
- type: Transform
@@ -99007,26 +98855,6 @@ entities:
- type: Transform
pos: -12.5,38.5
parent: 2
- - uid: 3832
- components:
- - type: Transform
- pos: -12.5,39.5
- parent: 2
- - uid: 3833
- components:
- - type: Transform
- pos: -12.5,40.5
- parent: 2
- - uid: 3834
- components:
- - type: Transform
- pos: -12.5,41.5
- parent: 2
- - uid: 3835
- components:
- - type: Transform
- pos: -12.5,42.5
- parent: 2
- uid: 3836
components:
- type: Transform
@@ -99097,26 +98925,6 @@ entities:
- type: Transform
pos: -13.5,38.5
parent: 2
- - uid: 3850
- components:
- - type: Transform
- pos: -13.5,39.5
- parent: 2
- - uid: 3851
- components:
- - type: Transform
- pos: -13.5,40.5
- parent: 2
- - uid: 3852
- components:
- - type: Transform
- pos: -13.5,41.5
- parent: 2
- - uid: 3853
- components:
- - type: Transform
- pos: -13.5,42.5
- parent: 2
- uid: 3854
components:
- type: Transform
@@ -99187,26 +98995,6 @@ entities:
- type: Transform
pos: -14.5,38.5
parent: 2
- - uid: 3868
- components:
- - type: Transform
- pos: -14.5,39.5
- parent: 2
- - uid: 3869
- components:
- - type: Transform
- pos: -14.5,40.5
- parent: 2
- - uid: 3870
- components:
- - type: Transform
- pos: -14.5,41.5
- parent: 2
- - uid: 3871
- components:
- - type: Transform
- pos: -14.5,42.5
- parent: 2
- uid: 3872
components:
- type: Transform
@@ -99277,26 +99065,6 @@ entities:
- type: Transform
pos: -15.5,38.5
parent: 2
- - uid: 3886
- components:
- - type: Transform
- pos: -15.5,39.5
- parent: 2
- - uid: 3887
- components:
- - type: Transform
- pos: -15.5,40.5
- parent: 2
- - uid: 3888
- components:
- - type: Transform
- pos: -15.5,41.5
- parent: 2
- - uid: 3889
- components:
- - type: Transform
- pos: -15.5,42.5
- parent: 2
- uid: 3890
components:
- type: Transform
@@ -100112,6 +99880,31 @@ entities:
- type: Transform
pos: 39.5,45.5
parent: 2
+ - uid: 4352
+ components:
+ - type: Transform
+ pos: -2.5,25.5
+ parent: 2
+ - uid: 4353
+ components:
+ - type: Transform
+ pos: -1.5,25.5
+ parent: 2
+ - uid: 4361
+ components:
+ - type: Transform
+ pos: 7.5,23.5
+ parent: 2
+ - uid: 4362
+ components:
+ - type: Transform
+ pos: -2.5,24.5
+ parent: 2
+ - uid: 4363
+ components:
+ - type: Transform
+ pos: 6.5,23.5
+ parent: 2
- uid: 4998
components:
- type: Transform
@@ -100787,6 +100580,156 @@ entities:
- type: Transform
pos: 23.5,42.5
parent: 2
+ - uid: 11424
+ components:
+ - type: Transform
+ pos: -15.5,40.5
+ parent: 2
+ - uid: 11425
+ components:
+ - type: Transform
+ pos: -12.5,42.5
+ parent: 2
+ - uid: 11426
+ components:
+ - type: Transform
+ pos: -14.5,39.5
+ parent: 2
+ - uid: 11427
+ components:
+ - type: Transform
+ pos: -12.5,40.5
+ parent: 2
+ - uid: 11429
+ components:
+ - type: Transform
+ pos: -13.5,40.5
+ parent: 2
+ - uid: 11430
+ components:
+ - type: Transform
+ pos: -14.5,40.5
+ parent: 2
+ - uid: 11432
+ components:
+ - type: Transform
+ pos: -13.5,41.5
+ parent: 2
+ - uid: 11433
+ components:
+ - type: Transform
+ pos: -13.5,42.5
+ parent: 2
+ - uid: 11513
+ components:
+ - type: Transform
+ pos: -15.5,39.5
+ parent: 2
+ - uid: 11514
+ components:
+ - type: Transform
+ pos: -11.5,41.5
+ parent: 2
+ - uid: 11516
+ components:
+ - type: Transform
+ pos: -12.5,41.5
+ parent: 2
+ - uid: 11517
+ components:
+ - type: Transform
+ pos: -13.5,39.5
+ parent: 2
+ - uid: 11518
+ components:
+ - type: Transform
+ pos: -14.5,41.5
+ parent: 2
+ - uid: 11519
+ components:
+ - type: Transform
+ pos: -14.5,42.5
+ parent: 2
+ - uid: 11520
+ components:
+ - type: Transform
+ pos: -11.5,40.5
+ parent: 2
+ - uid: 11521
+ components:
+ - type: Transform
+ pos: -15.5,41.5
+ parent: 2
+ - uid: 11522
+ components:
+ - type: Transform
+ pos: -16.5,39.5
+ parent: 2
+ - uid: 11523
+ components:
+ - type: Transform
+ pos: -12.5,39.5
+ parent: 2
+ - uid: 11524
+ components:
+ - type: Transform
+ pos: -17.5,40.5
+ parent: 2
+ - uid: 11525
+ components:
+ - type: Transform
+ pos: -18.5,40.5
+ parent: 2
+ - uid: 11526
+ components:
+ - type: Transform
+ pos: -11.5,42.5
+ parent: 2
+ - uid: 11527
+ components:
+ - type: Transform
+ pos: -17.5,39.5
+ parent: 2
+ - uid: 11528
+ components:
+ - type: Transform
+ pos: -16.5,42.5
+ parent: 2
+ - uid: 11529
+ components:
+ - type: Transform
+ pos: -18.5,41.5
+ parent: 2
+ - uid: 11530
+ components:
+ - type: Transform
+ pos: -15.5,42.5
+ parent: 2
+ - uid: 11629
+ components:
+ - type: Transform
+ pos: -18.5,39.5
+ parent: 2
+ - uid: 11630
+ components:
+ - type: Transform
+ pos: -17.5,41.5
+ parent: 2
+ - uid: 11631
+ components:
+ - type: Transform
+ pos: -17.5,42.5
+ parent: 2
+ - uid: 11632
+ components:
+ - type: Transform
+ pos: -16.5,41.5
+ parent: 2
+ - uid: 11670
+ components:
+ - type: Transform
+ pos: -18.5,42.5
+ parent: 2
- uid: 11849
components:
- type: Transform
@@ -100897,6 +100840,16 @@ entities:
- type: Transform
pos: 24.5,23.5
parent: 2
+ - uid: 12013
+ components:
+ - type: Transform
+ pos: -16.5,40.5
+ parent: 2
+ - uid: 12014
+ components:
+ - type: Transform
+ pos: -11.5,39.5
+ parent: 2
- uid: 12038
components:
- type: Transform
@@ -100994,31 +100947,6 @@ entities:
parent: 2
- proto: CP14WallStonebrick
entities:
- - uid: 472
- components:
- - type: Transform
- pos: -4.5,6.5
- parent: 2
- - uid: 473
- components:
- - type: Transform
- pos: -3.5,6.5
- parent: 2
- - uid: 474
- components:
- - type: Transform
- pos: -2.5,6.5
- parent: 2
- - uid: 475
- components:
- - type: Transform
- pos: -8.5,6.5
- parent: 2
- - uid: 483
- components:
- - type: Transform
- pos: -6.5,2.5
- parent: 2
- uid: 491
components:
- type: Transform
@@ -101129,16 +101057,6 @@ entities:
- type: Transform
pos: 6.5,11.5
parent: 2
- - uid: 901
- components:
- - type: Transform
- pos: 3.5,11.5
- parent: 2
- - uid: 902
- components:
- - type: Transform
- pos: 2.5,11.5
- parent: 2
- uid: 905
components:
- type: Transform
@@ -101159,26 +101077,11 @@ entities:
- type: Transform
pos: -2.5,14.5
parent: 2
- - uid: 910
- components:
- - type: Transform
- pos: -2.5,15.5
- parent: 2
- uid: 911
components:
- type: Transform
pos: -2.5,12.5
parent: 2
- - uid: 912
- components:
- - type: Transform
- pos: -2.5,16.5
- parent: 2
- - uid: 913
- components:
- - type: Transform
- pos: -2.5,17.5
- parent: 2
- uid: 914
components:
- type: Transform
@@ -101254,35 +101157,30 @@ entities:
- type: Transform
pos: 2.5,14.5
parent: 2
- - uid: 992
- components:
- - type: Transform
- pos: 2.5,12.5
- parent: 2
- - uid: 1066
- components:
- - type: Transform
- pos: -9.5,6.5
- parent: 2
- uid: 1069
components:
- type: Transform
- pos: -9.5,4.5
+ pos: 31.5,2.5
parent: 2
- uid: 1079
components:
- type: Transform
- pos: -9.5,3.5
+ pos: 31.5,1.5
parent: 2
- uid: 1100
components:
- type: Transform
- pos: -9.5,2.5
+ pos: 31.5,5.5
+ parent: 2
+ - uid: 1104
+ components:
+ - type: Transform
+ pos: 31.5,3.5
parent: 2
- uid: 1105
components:
- type: Transform
- pos: -9.5,-0.5
+ pos: 31.5,4.5
parent: 2
- uid: 1109
components:
@@ -101319,15 +101217,15 @@ entities:
- type: Transform
pos: 10.5,-17.5
parent: 2
- - uid: 1183
+ - uid: 1280
components:
- type: Transform
- pos: -7.5,-0.5
+ pos: 30.5,6.5
parent: 2
- - uid: 1391
+ - uid: 1286
components:
- type: Transform
- pos: -3.5,2.5
+ pos: 31.5,6.5
parent: 2
- uid: 1583
components:
@@ -101459,11 +101357,6 @@ entities:
- type: Transform
pos: 12.5,-21.5
parent: 2
- - uid: 1710
- components:
- - type: Transform
- pos: -8.5,-0.5
- parent: 2
- uid: 1714
components:
- type: Transform
@@ -101479,11 +101372,6 @@ entities:
- type: Transform
pos: 13.5,-21.5
parent: 2
- - uid: 1726
- components:
- - type: Transform
- pos: -6.5,-0.5
- parent: 2
- uid: 1733
components:
- type: Transform
@@ -101544,16 +101432,6 @@ entities:
- type: Transform
pos: 10.5,-29.5
parent: 2
- - uid: 1922
- components:
- - type: Transform
- pos: -2.5,2.5
- parent: 2
- - uid: 2061
- components:
- - type: Transform
- pos: -9.5,5.5
- parent: 2
- uid: 2148
components:
- type: Transform
@@ -101564,35 +101442,20 @@ entities:
- type: Transform
pos: -7.5,-17.5
parent: 2
- - uid: 2300
- components:
- - type: Transform
- pos: -9.5,1.5
- parent: 2
- - uid: 2301
- components:
- - type: Transform
- pos: -9.5,0.5
- parent: 2
- uid: 2331
components:
- type: Transform
pos: -10.5,-16.5
parent: 2
- - uid: 2344
+ - uid: 2357
components:
- type: Transform
- pos: -5.5,2.5
+ pos: 28.5,1.5
parent: 2
- - uid: 2349
+ - uid: 2386
components:
- type: Transform
- pos: -7.5,6.5
- parent: 2
- - uid: 2353
- components:
- - type: Transform
- pos: -2.5,5.5
+ pos: 29.5,1.5
parent: 2
- uid: 2401
components:
@@ -101619,6 +101482,11 @@ entities:
- type: Transform
pos: 11.5,-13.5
parent: 2
+ - uid: 4360
+ components:
+ - type: Transform
+ pos: -2.5,23.5
+ parent: 2
- uid: 5083
components:
- type: Transform
@@ -101689,11 +101557,6 @@ entities:
- type: Transform
pos: 23.5,-14.5
parent: 2
- - uid: 7061
- components:
- - type: Transform
- pos: 6.5,22.5
- parent: 2
- uid: 7161
components:
- type: Transform
@@ -101839,6 +101702,11 @@ entities:
- type: Transform
pos: 79.5,43.5
parent: 2
+ - uid: 9924
+ components:
+ - type: Transform
+ pos: 1.5,11.5
+ parent: 2
- uid: 11843
components:
- type: Transform
@@ -101854,26 +101722,11 @@ entities:
- type: Transform
pos: 25.5,16.5
parent: 2
- - uid: 11899
- components:
- - type: Transform
- pos: 6.5,23.5
- parent: 2
- - uid: 11900
- components:
- - type: Transform
- pos: -2.5,24.5
- parent: 2
- uid: 11901
components:
- type: Transform
pos: -3.5,24.5
parent: 2
- - uid: 11902
- components:
- - type: Transform
- pos: 7.5,23.5
- parent: 2
- uid: 11958
components:
- type: Transform
@@ -101929,11 +101782,96 @@ entities:
- type: Transform
pos: 26.5,18.5
parent: 2
+ - uid: 12759
+ components:
+ - type: Transform
+ pos: 30.5,1.5
+ parent: 2
- uid: 13007
components:
- type: Transform
pos: -0.5,-13.5
parent: 2
+ - uid: 13049
+ components:
+ - type: Transform
+ pos: 24.5,0.5
+ parent: 2
+ - uid: 13116
+ components:
+ - type: Transform
+ pos: 23.5,-0.5
+ parent: 2
+ - uid: 13117
+ components:
+ - type: Transform
+ pos: 26.5,-1.5
+ parent: 2
+ - uid: 13118
+ components:
+ - type: Transform
+ pos: 25.5,-1.5
+ parent: 2
+ - uid: 13119
+ components:
+ - type: Transform
+ pos: 24.5,6.5
+ parent: 2
+ - uid: 13120
+ components:
+ - type: Transform
+ pos: 25.5,6.5
+ parent: 2
+ - uid: 13121
+ components:
+ - type: Transform
+ pos: 23.5,6.5
+ parent: 2
+ - uid: 13122
+ components:
+ - type: Transform
+ pos: 23.5,0.5
+ parent: 2
+ - uid: 13123
+ components:
+ - type: Transform
+ pos: 24.5,-1.5
+ parent: 2
+ - uid: 13124
+ components:
+ - type: Transform
+ pos: 23.5,-1.5
+ parent: 2
+ - uid: 13127
+ components:
+ - type: Transform
+ pos: 26.5,6.5
+ parent: 2
+ - uid: 13128
+ components:
+ - type: Transform
+ pos: 27.5,6.5
+ parent: 2
+ - uid: 13131
+ components:
+ - type: Transform
+ pos: 25.5,0.5
+ parent: 2
+ - uid: 13135
+ components:
+ - type: Transform
+ pos: 28.5,-1.5
+ parent: 2
+ - uid: 13136
+ components:
+ - type: Transform
+ pos: 23.5,3.5
+ parent: 2
+ - uid: 13137
+ components:
+ - type: Transform
+ pos: 23.5,5.5
+ parent: 2
- uid: 13344
components:
- type: Transform
@@ -102024,6 +101962,46 @@ entities:
- type: Transform
pos: 23.5,-37.5
parent: 2
+ - uid: 14854
+ components:
+ - type: Transform
+ pos: 26.5,4.5
+ parent: 2
+ - uid: 14856
+ components:
+ - type: Transform
+ pos: 26.5,3.5
+ parent: 2
+ - uid: 15052
+ components:
+ - type: Transform
+ pos: 2.5,12.5
+ parent: 2
+ - uid: 15053
+ components:
+ - type: Transform
+ pos: -2.5,15.5
+ parent: 2
+ - uid: 15054
+ components:
+ - type: Transform
+ pos: 3.5,11.5
+ parent: 2
+ - uid: 15055
+ components:
+ - type: Transform
+ pos: -2.5,16.5
+ parent: 2
+ - uid: 15056
+ components:
+ - type: Transform
+ pos: -2.5,17.5
+ parent: 2
+ - uid: 15057
+ components:
+ - type: Transform
+ pos: 2.5,11.5
+ parent: 2
- proto: CP14WallStoneCopperOre
entities:
- uid: 3062
@@ -102493,11 +102471,6 @@ entities:
- type: Transform
pos: -0.5,-23.5
parent: 2
- - uid: 480
- components:
- - type: Transform
- pos: 22.5,16.5
- parent: 2
- uid: 481
components:
- type: Transform
@@ -102808,24 +102781,6 @@ entities:
layers:
- sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
state: top
- - uid: 564
- components:
- - type: Transform
- pos: -11.5,-33.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: left
- - uid: 566
- components:
- - type: Transform
- pos: -10.5,-35.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: top
- uid: 638
components:
- type: Transform
@@ -102949,51 +102904,57 @@ entities:
- type: Transform
pos: 19.5,11.5
parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: top
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: right
- uid: 736
components:
- type: Transform
pos: 17.5,11.5
parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: left
- uid: 737
components:
- type: Transform
pos: 17.5,12.5
parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: left
- uid: 738
components:
- type: Transform
pos: 17.5,13.5
parent: 2
- - uid: 739
- components:
- - type: Transform
- pos: 17.5,14.5
- parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: left
- uid: 740
components:
- type: Transform
pos: 17.5,15.5
parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: left
- uid: 741
components:
- type: Transform
pos: 17.5,16.5
parent: 2
- - uid: 742
- components:
- - type: Transform
- pos: 18.5,16.5
- parent: 2
- - uid: 743
- components:
- - type: Transform
- pos: 19.5,16.5
- parent: 2
- - uid: 745
- components:
- - type: Transform
- pos: 19.5,18.5
- parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: left
- uid: 751
components:
- type: Transform
@@ -103154,11 +103115,6 @@ entities:
- type: Transform
pos: 15.5,21.5
parent: 2
- - uid: 857
- components:
- - type: Transform
- pos: 22.5,12.5
- parent: 2
- uid: 961
components:
- type: Transform
@@ -103168,30 +103124,11 @@ entities:
layers:
- sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
state: bottom
- - uid: 973
- components:
- - type: Transform
- pos: -11.5,-31.5
- parent: 2
- - uid: 976
- components:
- - type: Transform
- pos: -10.5,-30.5
- parent: 2
- uid: 1015
components:
- type: Transform
pos: -18.5,-12.5
parent: 2
- - uid: 1104
- components:
- - type: Transform
- pos: -9.5,-31.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: left
- uid: 1110
components:
- type: Transform
@@ -103252,11 +103189,6 @@ entities:
- type: Transform
pos: -6.5,-24.5
parent: 2
- - uid: 1142
- components:
- - type: Transform
- pos: 24.5,0.5
- parent: 2
- uid: 1164
components:
- type: Transform
@@ -103267,34 +103199,11 @@ entities:
- type: Transform
pos: -7.5,-37.5
parent: 2
- - uid: 1291
- components:
- - type: Transform
- pos: -2.5,-34.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: right
- uid: 1293
components:
- type: Transform
pos: -18.5,-26.5
parent: 2
- - uid: 1294
- components:
- - type: Transform
- pos: -2.5,-29.5
- parent: 2
- - uid: 1296
- components:
- - type: Transform
- pos: -6.5,-29.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: bottom
- uid: 1299
components:
- type: Transform
@@ -103305,11 +103214,6 @@ entities:
- type: Transform
pos: -18.5,-33.5
parent: 2
- - uid: 1302
- components:
- - type: Transform
- pos: -9.5,-29.5
- parent: 2
- uid: 1303
components:
- type: Transform
@@ -103360,79 +103264,16 @@ entities:
- type: Transform
pos: -7.5,18.5
parent: 2
- - uid: 1313
- components:
- - type: Transform
- pos: -2.5,-30.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: right
- - uid: 1317
- components:
- - type: Transform
- pos: -7.5,-35.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: top
- - uid: 1318
- components:
- - type: Transform
- pos: -6.5,-35.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: top
- - uid: 1322
- components:
- - type: Transform
- pos: -5.5,-35.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: top
- uid: 1324
components:
- type: Transform
pos: -18.5,-32.5
parent: 2
- - uid: 1326
- components:
- - type: Transform
- pos: -2.5,-35.5
- parent: 2
- uid: 1327
components:
- type: Transform
pos: -18.5,-29.5
parent: 2
- - uid: 1331
- components:
- - type: Transform
- pos: -3.5,-29.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: bottom
- - uid: 1332
- components:
- - type: Transform
- pos: -5.5,-30.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: left
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: bottom
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: right
- uid: 1335
components:
- type: Transform
@@ -103451,21 +103292,12 @@ entities:
- uid: 1338
components:
- type: Transform
- pos: -2.5,-33.5
+ pos: 20.5,11.5
parent: 2
- type: CP14WallpaperHolder
layers:
- sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: right
- - uid: 1340
- components:
- - type: Transform
- pos: -9.5,-30.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: left
+ state: top
- uid: 1341
components:
- type: Transform
@@ -103496,15 +103328,6 @@ entities:
- type: Transform
pos: -10.5,15.5
parent: 2
- - uid: 1358
- components:
- - type: Transform
- pos: -3.5,-35.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: top
- uid: 1360
components:
- type: Transform
@@ -103695,11 +103518,6 @@ entities:
- type: Transform
pos: -7.5,-40.5
parent: 2
- - uid: 1538
- components:
- - type: Transform
- pos: -5.5,-29.5
- parent: 2
- uid: 1586
components:
- type: Transform
@@ -103853,41 +103671,6 @@ entities:
state: right
- sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
state: top
- - uid: 2252
- components:
- - type: Transform
- pos: -5.5,-32.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: left
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: left
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: bottom
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: bottom
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: bottom
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: bottom
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: bottom
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: bottom
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: bottom
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: right
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: right
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: right
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: top
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: top
- uid: 2255
components:
- type: Transform
@@ -103925,41 +103708,11 @@ entities:
- type: Transform
pos: -8.5,-44.5
parent: 2
- - uid: 2330
- components:
- - type: Transform
- pos: -9.5,-32.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: bottom
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: left
- - uid: 2333
- components:
- - type: Transform
- pos: -4.5,-35.5
- parent: 2
- - type: CP14WallpaperHolder
- layers:
- - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
- state: top
- - uid: 2343
- components:
- - type: Transform
- pos: -11.5,-32.5
- parent: 2
- uid: 2346
components:
- type: Transform
pos: -9.5,-7.5
parent: 2
- - uid: 2357
- components:
- - type: Transform
- pos: -11.5,-35.5
- parent: 2
- uid: 2383
components:
- type: Transform
@@ -104009,6 +103762,17 @@ entities:
- type: Transform
pos: 46.5,-19.5
parent: 2
+ - uid: 3643
+ components:
+ - type: Transform
+ pos: 18.5,14.5
+ parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: bottom
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: left
- uid: 4056
components:
- type: Transform
@@ -104039,6 +103803,15 @@ entities:
- type: Transform
pos: 10.5,17.5
parent: 2
+ - uid: 4127
+ components:
+ - type: Transform
+ pos: 18.5,20.5
+ parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: bottom
- uid: 4128
components:
- type: Transform
@@ -104409,71 +104182,6 @@ entities:
- type: Transform
pos: 23.5,-4.5
parent: 2
- - uid: 7099
- components:
- - type: Transform
- pos: 23.5,-0.5
- parent: 2
- - uid: 7100
- components:
- - type: Transform
- pos: 26.5,-1.5
- parent: 2
- - uid: 7101
- components:
- - type: Transform
- pos: 25.5,-1.5
- parent: 2
- - uid: 7102
- components:
- - type: Transform
- pos: 24.5,6.5
- parent: 2
- - uid: 7103
- components:
- - type: Transform
- pos: 25.5,6.5
- parent: 2
- - uid: 7111
- components:
- - type: Transform
- pos: 23.5,6.5
- parent: 2
- - uid: 7112
- components:
- - type: Transform
- pos: 23.5,0.5
- parent: 2
- - uid: 7113
- components:
- - type: Transform
- pos: 24.5,-1.5
- parent: 2
- - uid: 7114
- components:
- - type: Transform
- pos: 23.5,-1.5
- parent: 2
- - uid: 7115
- components:
- - type: Transform
- pos: 28.5,6.5
- parent: 2
- - uid: 7116
- components:
- - type: Transform
- pos: 28.5,5.5
- parent: 2
- - uid: 7117
- components:
- - type: Transform
- pos: 26.5,6.5
- parent: 2
- - uid: 7118
- components:
- - type: Transform
- pos: 27.5,6.5
- parent: 2
- uid: 7120
components:
- type: Transform
@@ -104484,26 +104192,6 @@ entities:
- type: Transform
pos: 26.5,-3.5
parent: 2
- - uid: 7122
- components:
- - type: Transform
- pos: 28.5,0.5
- parent: 2
- - uid: 7123
- components:
- - type: Transform
- pos: 28.5,4.5
- parent: 2
- - uid: 7124
- components:
- - type: Transform
- pos: 27.5,0.5
- parent: 2
- - uid: 7125
- components:
- - type: Transform
- pos: 28.5,3.5
- parent: 2
- uid: 7126
components:
- type: Transform
@@ -104519,31 +104207,6 @@ entities:
- type: Transform
pos: 24.5,-3.5
parent: 2
- - uid: 7134
- components:
- - type: Transform
- pos: 28.5,2.5
- parent: 2
- - uid: 7135
- components:
- - type: Transform
- pos: 28.5,1.5
- parent: 2
- - uid: 7136
- components:
- - type: Transform
- pos: 26.5,0.5
- parent: 2
- - uid: 7138
- components:
- - type: Transform
- pos: 23.5,3.5
- parent: 2
- - uid: 7140
- components:
- - type: Transform
- pos: 23.5,5.5
- parent: 2
- uid: 7811
components:
- type: Transform
@@ -104594,6 +104257,10 @@ entities:
- type: Transform
pos: 22.5,18.5
parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: bottom
- uid: 8065
components:
- type: Transform
@@ -104634,11 +104301,6 @@ entities:
- type: Transform
pos: 2.5,-44.5
parent: 2
- - uid: 8863
- components:
- - type: Transform
- pos: 22.5,11.5
- parent: 2
- uid: 8893
components:
- type: Transform
@@ -104664,41 +104326,30 @@ entities:
- type: Transform
pos: -16.5,-7.5
parent: 2
+ - uid: 9224
+ components:
+ - type: Transform
+ pos: 21.5,20.5
+ parent: 2
- uid: 9592
components:
- type: Transform
pos: 2.5,2.5
parent: 2
- - uid: 11841
- components:
- - type: Transform
- pos: 23.5,17.5
- parent: 2
- uid: 11844
components:
- type: Transform
pos: 23.5,12.5
parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: right
- uid: 11848
components:
- type: Transform
pos: 23.5,18.5
parent: 2
- - uid: 11862
- components:
- - type: Transform
- pos: 23.5,14.5
- parent: 2
- - uid: 11876
- components:
- - type: Transform
- pos: 23.5,15.5
- parent: 2
- - uid: 11877
- components:
- - type: Transform
- pos: 23.5,16.5
- parent: 2
- uid: 11881
components:
- type: Transform
@@ -104709,6 +104360,10 @@ entities:
- type: Transform
pos: 23.5,13.5
parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: right
- uid: 12036
components:
- type: Transform
@@ -104729,6 +104384,15 @@ entities:
- type: Transform
pos: -13.5,-16.5
parent: 2
+ - uid: 12337
+ components:
+ - type: Transform
+ pos: 17.5,19.5
+ parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: left
- uid: 12378
components:
- type: Transform
@@ -104754,6 +104418,315 @@ entities:
- type: Transform
pos: -7.5,-8.5
parent: 2
+ - uid: 13016
+ components:
+ - type: Transform
+ pos: 19.5,20.5
+ parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: bottom
+ - uid: 13017
+ components:
+ - type: Transform
+ pos: -4.5,6.5
+ parent: 2
+ - uid: 13018
+ components:
+ - type: Transform
+ pos: -3.5,6.5
+ parent: 2
+ - uid: 13019
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 2
+ - uid: 13020
+ components:
+ - type: Transform
+ pos: -8.5,6.5
+ parent: 2
+ - uid: 13021
+ components:
+ - type: Transform
+ pos: -6.5,2.5
+ parent: 2
+ - uid: 13022
+ components:
+ - type: Transform
+ pos: -9.5,6.5
+ parent: 2
+ - uid: 13023
+ components:
+ - type: Transform
+ pos: -9.5,4.5
+ parent: 2
+ - uid: 13024
+ components:
+ - type: Transform
+ pos: -9.5,3.5
+ parent: 2
+ - uid: 13025
+ components:
+ - type: Transform
+ pos: -9.5,2.5
+ parent: 2
+ - uid: 13026
+ components:
+ - type: Transform
+ pos: -9.5,-0.5
+ parent: 2
+ - uid: 13027
+ components:
+ - type: Transform
+ pos: -7.5,-0.5
+ parent: 2
+ - uid: 13028
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 2
+ - uid: 13029
+ components:
+ - type: Transform
+ pos: -8.5,-0.5
+ parent: 2
+ - uid: 13030
+ components:
+ - type: Transform
+ pos: -6.5,-0.5
+ parent: 2
+ - uid: 13031
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 2
+ - uid: 13032
+ components:
+ - type: Transform
+ pos: -9.5,5.5
+ parent: 2
+ - uid: 13033
+ components:
+ - type: Transform
+ pos: -9.5,1.5
+ parent: 2
+ - uid: 13034
+ components:
+ - type: Transform
+ pos: -9.5,0.5
+ parent: 2
+ - uid: 13035
+ components:
+ - type: Transform
+ pos: -5.5,2.5
+ parent: 2
+ - uid: 13036
+ components:
+ - type: Transform
+ pos: -7.5,6.5
+ parent: 2
+ - uid: 13037
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 2
+ - uid: 13039
+ components:
+ - type: Transform
+ pos: -11.5,-33.5
+ parent: 2
+ - uid: 13040
+ components:
+ - type: Transform
+ pos: -10.5,-35.5
+ parent: 2
+ - uid: 13041
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 2
+ - uid: 13045
+ components:
+ - type: Transform
+ pos: 23.5,11.5
+ parent: 2
+ - uid: 13046
+ components:
+ - type: Transform
+ pos: -11.5,-32.5
+ parent: 2
+ - uid: 13048
+ components:
+ - type: Transform
+ pos: -9.5,-31.5
+ parent: 2
+ - uid: 13050
+ components:
+ - type: Transform
+ pos: -2.5,-34.5
+ parent: 2
+ - uid: 13051
+ components:
+ - type: Transform
+ pos: -2.5,-29.5
+ parent: 2
+ - uid: 13052
+ components:
+ - type: Transform
+ pos: -6.5,-29.5
+ parent: 2
+ - uid: 13053
+ components:
+ - type: Transform
+ pos: -9.5,-29.5
+ parent: 2
+ - uid: 13054
+ components:
+ - type: Transform
+ pos: -2.5,-30.5
+ parent: 2
+ - uid: 13055
+ components:
+ - type: Transform
+ pos: -7.5,-35.5
+ parent: 2
+ - uid: 13056
+ components:
+ - type: Transform
+ pos: -6.5,-35.5
+ parent: 2
+ - uid: 13057
+ components:
+ - type: Transform
+ pos: -5.5,-35.5
+ parent: 2
+ - uid: 13104
+ components:
+ - type: Transform
+ pos: -2.5,-35.5
+ parent: 2
+ - uid: 13105
+ components:
+ - type: Transform
+ pos: -3.5,-29.5
+ parent: 2
+ - uid: 13106
+ components:
+ - type: Transform
+ pos: -5.5,-30.5
+ parent: 2
+ - uid: 13107
+ components:
+ - type: Transform
+ pos: -2.5,-33.5
+ parent: 2
+ - uid: 13108
+ components:
+ - type: Transform
+ pos: -9.5,-30.5
+ parent: 2
+ - uid: 13109
+ components:
+ - type: Transform
+ pos: -3.5,-35.5
+ parent: 2
+ - uid: 13110
+ components:
+ - type: Transform
+ pos: -5.5,-29.5
+ parent: 2
+ - uid: 13111
+ components:
+ - type: Transform
+ pos: -5.5,-32.5
+ parent: 2
+ - uid: 13112
+ components:
+ - type: Transform
+ pos: -9.5,-32.5
+ parent: 2
+ - uid: 13113
+ components:
+ - type: Transform
+ pos: -4.5,-35.5
+ parent: 2
+ - uid: 13114
+ components:
+ - type: Transform
+ pos: -10.5,-32.5
+ parent: 2
+ - uid: 13115
+ components:
+ - type: Transform
+ pos: -11.5,-35.5
+ parent: 2
+ - uid: 13139
+ components:
+ - type: Transform
+ pos: 23.5,17.5
+ parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: right
+ - uid: 13140
+ components:
+ - type: Transform
+ pos: 23.5,14.5
+ parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: right
+ - uid: 13141
+ components:
+ - type: Transform
+ pos: 23.5,15.5
+ parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: right
+ - uid: 13142
+ components:
+ - type: Transform
+ pos: 23.5,16.5
+ parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: right
+ - uid: 13143
+ components:
+ - type: Transform
+ pos: 17.5,20.5
+ parent: 2
+ - uid: 13144
+ components:
+ - type: Transform
+ pos: 20.5,20.5
+ parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: bottom
+ - uid: 13149
+ components:
+ - type: Transform
+ pos: 20.5,14.5
+ parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: bottom
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: left
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: top
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: right
- uid: 13353
components:
- type: Transform
@@ -104854,11 +104827,6 @@ entities:
- type: Transform
pos: 5.5,-8.5
parent: 2
- - uid: 13752
- components:
- - type: Transform
- pos: 21.5,16.5
- parent: 2
- uid: 13753
components:
- type: Transform
@@ -104869,16 +104837,17 @@ entities:
- type: Transform
pos: 12.5,17.5
parent: 2
- - uid: 13755
- components:
- - type: Transform
- pos: 20.5,18.5
- parent: 2
- uid: 13759
components:
- type: Transform
pos: 21.5,18.5
parent: 2
+ - type: CP14WallpaperHolder
+ layers:
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: right
+ - sprite: _CP14/Structures/Wallpaper/wallpaper_green.rsi
+ state: bottom
- uid: 13761
components:
- type: Transform
@@ -104929,6 +104898,140 @@ entities:
- type: Transform
pos: -0.5,-20.5
parent: 2
+ - uid: 15037
+ components:
+ - type: Transform
+ pos: 105.5,59.5
+ parent: 2
+ - uid: 15038
+ components:
+ - type: Transform
+ pos: 105.5,61.5
+ parent: 2
+ - uid: 15039
+ components:
+ - type: Transform
+ pos: 101.5,62.5
+ parent: 2
+ - uid: 15040
+ components:
+ - type: Transform
+ pos: 101.5,61.5
+ parent: 2
+ - uid: 15041
+ components:
+ - type: Transform
+ pos: 101.5,60.5
+ parent: 2
+ - uid: 15042
+ components:
+ - type: Transform
+ pos: 101.5,59.5
+ parent: 2
+ - uid: 15043
+ components:
+ - type: Transform
+ pos: 101.5,58.5
+ parent: 2
+ - uid: 15044
+ components:
+ - type: Transform
+ pos: 105.5,62.5
+ parent: 2
+ - uid: 15045
+ components:
+ - type: Transform
+ pos: 104.5,62.5
+ parent: 2
+ - uid: 15046
+ components:
+ - type: Transform
+ pos: 103.5,62.5
+ parent: 2
+ - uid: 15047
+ components:
+ - type: Transform
+ pos: 102.5,62.5
+ parent: 2
+ - uid: 15048
+ components:
+ - type: Transform
+ pos: 102.5,58.5
+ parent: 2
+ - uid: 15049
+ components:
+ - type: Transform
+ pos: 105.5,58.5
+ parent: 2
+ - uid: 15050
+ components:
+ - type: Transform
+ pos: 103.5,58.5
+ parent: 2
+ - uid: 15051
+ components:
+ - type: Transform
+ pos: 104.5,58.5
+ parent: 2
+- proto: CP14WaterLilies
+ entities:
+ - uid: 615
+ components:
+ - type: Transform
+ pos: 19.237251,24.056967
+ parent: 2
+ - uid: 4275
+ components:
+ - type: Transform
+ pos: 20.565228,24.686651
+ parent: 2
+ - uid: 4364
+ components:
+ - type: Transform
+ pos: 19.586126,22.763863
+ parent: 2
+ - uid: 4380
+ components:
+ - type: Transform
+ pos: 20.587734,23.213638
+ parent: 2
+- proto: CP14WaterReeds
+ entities:
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 21.488056,25.260115
+ parent: 2
+ - uid: 735
+ components:
+ - type: Transform
+ pos: 21.341755,22.83133
+ parent: 2
+ - uid: 788
+ components:
+ - type: Transform
+ pos: 19.619888,21.437027
+ parent: 2
+ - uid: 4254
+ components:
+ - type: Transform
+ pos: 18.381947,22.696398
+ parent: 2
+ - uid: 4255
+ components:
+ - type: Transform
+ pos: 22.19706,24.293098
+ parent: 2
+ - uid: 4274
+ components:
+ - type: Transform
+ pos: 20.385162,21.459517
+ parent: 2
+ - uid: 4409
+ components:
+ - type: Transform
+ pos: 17.627928,23.708391
+ parent: 2
- proto: CP14WindowDirectional
entities:
- uid: 4221
@@ -104966,11 +105069,6 @@ entities:
- type: Transform
pos: -15.5,11.5
parent: 2
- - uid: 665
- components:
- - type: Transform
- pos: -20.5,11.5
- parent: 2
- uid: 666
components:
- type: Transform
@@ -105010,6 +105108,11 @@ entities:
rot: 3.141592653589793 rad
pos: -29.5,21.5
parent: 2
+ - uid: 4367
+ components:
+ - type: Transform
+ pos: -20.5,11.5
+ parent: 2
- proto: CP14WindowStoneBrick
entities:
- uid: 420
@@ -105051,12 +105154,6 @@ entities:
- type: Transform
pos: 4.5,11.5
parent: 2
- - uid: 903
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,11.5
- parent: 2
- uid: 904
components:
- type: Transform
@@ -105096,6 +105193,11 @@ entities:
- type: Transform
pos: 10.5,-19.5
parent: 2
+ - uid: 1103
+ components:
+ - type: Transform
+ pos: 29.5,6.5
+ parent: 2
- uid: 1157
components:
- type: Transform
@@ -105124,16 +105226,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 10.5,-23.5
parent: 2
- - uid: 2354
- components:
- - type: Transform
- pos: -5.5,6.5
- parent: 2
- - uid: 2386
- components:
- - type: Transform
- pos: -6.5,6.5
- parent: 2
- uid: 4257
components:
- type: Transform
@@ -105188,16 +105280,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 16.5,-43.5
parent: 2
- - uid: 8392
- components:
- - type: Transform
- pos: -2.5,4.5
- parent: 2
- - uid: 8393
- components:
- - type: Transform
- pos: -2.5,3.5
- parent: 2
- uid: 8657
components:
- type: Transform
@@ -105228,6 +105310,33 @@ entities:
rot: 1.5707963267948966 rad
pos: 33.5,13.5
parent: 2
+ - uid: 8932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,-0.5
+ parent: 2
+ - uid: 13125
+ components:
+ - type: Transform
+ pos: 28.5,6.5
+ parent: 2
+ - uid: 13129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,0.5
+ parent: 2
+ - uid: 13150
+ components:
+ - type: Transform
+ pos: 23.5,1.5
+ parent: 2
+ - uid: 13151
+ components:
+ - type: Transform
+ pos: 23.5,2.5
+ parent: 2
- proto: CP14WindowWooden
entities:
- uid: 455
@@ -105331,11 +105440,6 @@ entities:
- type: Transform
pos: 21.5,11.5
parent: 2
- - uid: 733
- components:
- - type: Transform
- pos: 20.5,11.5
- parent: 2
- uid: 755
components:
- type: Transform
@@ -105458,11 +105562,6 @@ entities:
- type: Transform
pos: -8.5,-35.5
parent: 2
- - uid: 2403
- components:
- - type: Transform
- pos: 23.5,2.5
- parent: 2
- uid: 3563
components:
- type: Transform
@@ -105489,6 +105588,18 @@ entities:
rot: -1.5707963267948966 rad
pos: 48.5,-12.5
parent: 2
+ - uid: 4133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,18.5
+ parent: 2
+ - uid: 4244
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,17.5
+ parent: 2
- uid: 5534
components:
- type: Transform
@@ -105541,11 +105652,6 @@ entities:
- type: Transform
pos: 23.5,-5.5
parent: 2
- - uid: 7119
- components:
- - type: Transform
- pos: 23.5,1.5
- parent: 2
- uid: 7798
components:
- type: Transform
@@ -105670,6 +105776,36 @@ entities:
- type: Transform
pos: 16.5,-0.5
parent: 2
+ - uid: 13138
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,11.5
+ parent: 2
+ - uid: 13145
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,6.5
+ parent: 2
+ - uid: 13146
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,6.5
+ parent: 2
+ - uid: 13147
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,4.5
+ parent: 2
+ - uid: 13148
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 2
- uid: 13378
components:
- type: Transform
@@ -105678,11 +105814,6 @@ entities:
parent: 2
- proto: CP14WoodenBed
entities:
- - uid: 872
- components:
- - type: Transform
- pos: 27.5,5.5
- parent: 2
- uid: 1001
components:
- type: Transform
@@ -105743,11 +105874,6 @@ entities:
- type: Transform
pos: 7.5,-41.5
parent: 2
- - uid: 4926
- components:
- - type: Transform
- pos: -45.5,-72.5
- parent: 2
- uid: 5493
components:
- type: Transform
@@ -105808,16 +105934,21 @@ entities:
- type: Transform
pos: 13.5,16.5
parent: 2
- - uid: 9786
+ - uid: 9687
components:
- type: Transform
- pos: 58.5,60.5
+ pos: -3.5,3.5
parent: 2
- uid: 10047
components:
- type: Transform
pos: 102.5,61.5
parent: 2
+ - uid: 14860
+ components:
+ - type: Transform
+ pos: 18.5,18.5
+ parent: 2
- proto: CP14WoodenBeerMug
entities:
- uid: 1545
@@ -105877,11 +106008,6 @@ entities:
- type: Transform
pos: -8.5,-41.5
parent: 2
- - uid: 869
- components:
- - type: Transform
- pos: 26.5,5.5
- parent: 2
- uid: 1235
components:
- type: Transform
@@ -105959,12 +106085,6 @@ entities:
- type: Transform
pos: 14.5,-59.5
parent: 2
- - uid: 8061
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,13.5
- parent: 2
- uid: 8631
components:
- type: Transform
@@ -105977,6 +106097,12 @@ entities:
rot: 3.141592653589793 rad
pos: -15.5,-6.5
parent: 2
+ - uid: 12288
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,2.5
+ parent: 2
- uid: 12923
components:
- type: Transform
@@ -105991,32 +106117,13 @@ entities:
rot: 1.5707963267948966 rad
pos: 12.5,4.5
parent: 2
-- proto: CP14WoodenCabinetBanker
- entities:
- - uid: 1365
+ - uid: 14861
components:
- type: Transform
- pos: -27.5,22.5
- parent: 2
- - uid: 1367
- components:
- - type: Transform
- pos: -25.5,22.5
- parent: 2
- - uid: 1374
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,17.5
+ pos: 18.5,19.5
parent: 2
- proto: CP14WoodenCabinetBlacksmith
entities:
- - uid: 2051
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,3.5
- parent: 2
- uid: 8823
components:
- type: Transform
@@ -106089,12 +106196,23 @@ entities:
- type: Transform
pos: -5.5,-11.5
parent: 2
-- proto: CP14WoodenChest
+- proto: CP14WoodenCabinetMerchant
entities:
- - uid: 9784
+ - uid: 13752
components:
- type: Transform
- pos: 56.5,62.5
+ pos: -27.5,22.5
+ parent: 2
+ - uid: 13755
+ components:
+ - type: Transform
+ pos: -25.5,22.5
+ parent: 2
+ - uid: 13762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,17.5
parent: 2
- proto: CP14WoodenChestFrame
entities:
@@ -106116,11 +106234,6 @@ entities:
- type: Transform
pos: -6.5,-41.5
parent: 2
- - uid: 868
- components:
- - type: Transform
- pos: 24.5,5.5
- parent: 2
- uid: 1672
components:
- type: Transform
@@ -106174,18 +106287,18 @@ entities:
rot: -1.5707963267948966 rad
pos: 7.5,-43.5
parent: 2
- - uid: 8066
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,14.5
- parent: 2
- uid: 8914
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 14.5,12.5
parent: 2
+ - uid: 14970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,3.5
+ parent: 2
- proto: CP14WoodenClosetAlchemyFilled
entities:
- uid: 12052
@@ -106194,38 +106307,13 @@ entities:
rot: 1.5707963267948966 rad
pos: 12.5,3.5
parent: 2
- - uid: 15003
+ - uid: 14862
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-34.5
- parent: 2
-- proto: CP14WoodenClosetBankerFilled
- entities:
- - uid: 1362
- components:
- - type: Transform
- pos: -26.5,22.5
- parent: 2
- - uid: 1371
- components:
- - type: Transform
- pos: -28.5,22.5
- parent: 2
- - uid: 1373
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,20.5
+ pos: 19.5,19.5
parent: 2
- proto: CP14WoodenClosetBlacksmithFilled
entities:
- - uid: 2268
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,3.5
- parent: 2
- uid: 8824
components:
- type: Transform
@@ -106233,11 +106321,29 @@ entities:
parent: 2
- proto: CP14WoodenClosetCommandantFilled
entities:
- - uid: 1003
+ - uid: 4373
components:
- type: Transform
pos: 3.5,14.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
- proto: CP14WoodenClosetGuardCommanderFilled
entities:
- uid: 12905
@@ -106299,6 +106405,24 @@ entities:
- type: Transform
pos: -6.5,-11.5
parent: 2
+- proto: CP14WoodenClosetMerchantFilled
+ entities:
+ - uid: 13790
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,20.5
+ parent: 2
+ - uid: 13844
+ components:
+ - type: Transform
+ pos: -26.5,22.5
+ parent: 2
+ - uid: 13845
+ components:
+ - type: Transform
+ pos: -28.5,22.5
+ parent: 2
- proto: CP14WoodenDoor
entities:
- uid: 2374
@@ -106334,6 +106458,12 @@ entities:
- type: Transform
pos: 13.5,-58.5
parent: 2
+ - uid: 9921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,60.5
+ parent: 2
- proto: CP14WoodenDoorMirrored
entities:
- uid: 3980
@@ -106463,41 +106593,29 @@ entities:
parent: 2
- proto: CP14WoodenDoorPersonalHouse5
entities:
- - uid: 4127
+ - uid: 13623
components:
- type: Transform
- pos: 20.5,16.5
+ pos: -4.5,-29.5
parent: 2
- - uid: 8931
- components:
- - type: Transform
- pos: 18.5,11.5
- parent: 2
- - uid: 8932
+ - uid: 13624
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 19.5,17.5
+ pos: -5.5,-31.5
+ parent: 2
+ - uid: 13625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-34.5
parent: 2
- proto: CP14WoodenDoorPersonalHouse6
entities:
- - uid: 1634
+ - uid: 1810
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,0.5
- parent: 2
- - uid: 7137
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-0.5
- parent: 2
- - uid: 7139
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,4.5
+ pos: -4.5,2.5
parent: 2
- proto: CP14WoodenDoorPersonalHouse7
entities:
@@ -106548,22 +106666,22 @@ entities:
parent: 2
- proto: CP14WoodenDoorTavernAlchemy1
entities:
- - uid: 1292
+ - uid: 3623
components:
- type: Transform
- pos: -4.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,14.5
parent: 2
- - uid: 2259
+ - uid: 12345
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -5.5,-31.5
+ pos: 21.5,19.5
parent: 2
- - uid: 2355
+ - uid: 13617
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-34.5
+ pos: 18.5,11.5
parent: 2
- proto: CP14WoodenDoorTavernAlchemy2
entities:
@@ -106624,6 +106742,26 @@ entities:
rot: -1.5707963267948966 rad
pos: -0.5,-21.5
parent: 2
+- proto: CP14WoodenPallet
+ entities:
+ - uid: 13327
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,14.5
+ parent: 2
+ - uid: 13579
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,14.5
+ parent: 2
+ - uid: 14966
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,0.5
+ parent: 2
- proto: CP14WoodenPlanks10
entities:
- uid: 446
@@ -106680,21 +106818,6 @@ entities:
parent: 2
- type: CollisionWake
enabled: False
- - uid: 15360
- components:
- - type: Transform
- pos: -46.657326,-72.364876
- parent: 2
- - uid: 15361
- components:
- - type: Transform
- pos: -46.594826,-72.552376
- parent: 2
- - uid: 15362
- components:
- - type: Transform
- pos: -46.594826,-72.739876
- parent: 2
- proto: CP14Workbench
entities:
- uid: 447
@@ -106713,11 +106836,6 @@ entities:
- type: Transform
pos: 20.5,-31.5
parent: 2
- - uid: 2313
- components:
- - type: Transform
- pos: -6.5,3.5
- parent: 2
- uid: 5502
components:
- type: Transform
@@ -106730,18 +106848,25 @@ entities:
rot: -1.5707963267948966 rad
pos: 28.5,17.5
parent: 2
-- proto: CP14WorkbenchAnvil
- entities:
- - uid: 2263
+ - uid: 14934
components:
- type: Transform
- pos: -8.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,4.5
parent: 2
+- proto: CP14WorkbenchAnvil
+ entities:
- uid: 12020
components:
- type: Transform
pos: 26.5,17.5
parent: 2
+ - uid: 14936
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,2.5
+ parent: 2
- proto: CP14WorkbenchCooking
entities:
- uid: 5716
@@ -106768,10 +106893,11 @@ entities:
parent: 2
- proto: CP14WorkbenchFurnace
entities:
- - uid: 1068
+ - uid: 916
components:
- type: Transform
- pos: -7.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,3.5
parent: 2
- uid: 4158
components:
@@ -106788,6 +106914,11 @@ entities:
parent: 2
- proto: DeskBell
entities:
+ - uid: 1297
+ components:
+ - type: Transform
+ pos: 20.264044,13.687519
+ parent: 2
- uid: 13404
components:
- type: Transform
@@ -106828,6 +106959,11 @@ entities:
- type: Transform
pos: -11.280857,-22.228916
parent: 2
+ - uid: 14857
+ components:
+ - type: Transform
+ pos: 24.368738,3.595302
+ parent: 2
- proto: DrinkBeerGrowler
entities:
- uid: 12946
@@ -106847,6 +106983,13 @@ entities:
- type: Transform
pos: 19.349468,-26.151648
parent: 2
+- proto: PlushieLizardInversed
+ entities:
+ - uid: 15036
+ components:
+ - type: Transform
+ pos: -124.5,21.5
+ parent: 2
- proto: SmokingPipeFilledCannabisRainbow
entities:
- uid: 7218
@@ -106925,14 +107068,6 @@ entities:
parent: 2
- proto: WarpPoint
entities:
- - uid: 729
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,19.5
- parent: 2
- - type: WarpPoint
- location: Bank
- uid: 2284
components:
- type: Transform
@@ -106956,14 +107091,6 @@ entities:
parent: 2
- type: WarpPoint
location: Blacksmith 2
- - uid: 12867
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-32.5
- parent: 2
- - type: WarpPoint
- location: Alchemist 1
- uid: 12868
components:
- type: Transform
@@ -106972,21 +107099,6 @@ entities:
parent: 2
- type: WarpPoint
location: Alchemist 2
- - uid: 12869
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,15.5
- parent: 2
- - type: WarpPoint
- location: Commandant house
- - uid: 15484
- components:
- - type: Transform
- pos: -6.5,3.5
- parent: 2
- - type: WarpPoint
- location: Blacksmith 1
- uid: 15485
components:
- type: Transform
diff --git a/Resources/Maps/_CP14/comoss_d.yml b/Resources/Maps/_CP14/comoss_d.yml
index 19afb99992..6f6028fbea 100644
--- a/Resources/Maps/_CP14/comoss_d.yml
+++ b/Resources/Maps/_CP14/comoss_d.yml
@@ -98,11 +98,11 @@ entities:
version: 6
-1,-2:
ind: -1,-2
- tiles: CQAAAAAACQAAAAAAAwAAAAAAAwAAAAAACQAAAAAAMwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACQAAAAADCQAAAAAMCQAAAAAJCQAAAAABCQAAAAALCQAAAAAGCQAAAAAICQAAAAAHCQAAAAAMAwAAAAAAAwAAAAAACQAAAAALAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACQAAAAADCQAAAAAJCQAAAAACCQAAAAAECQAAAAAHCQAAAAALCQAAAAAKCQAAAAAKCQAAAAAHMwAAAAAAAwAAAAAACQAAAAALAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACQAAAAAICQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAJCQAAAAABCQAAAAAFCQAAAAAJCQAAAAAECQAAAAAFCQAAAAAMCQAAAAACCQAAAAAJCQAAAAAACQAAAAAACQAAAAALCQAAAAAACQAAAAAACQAAAAAICQAAAAABCQAAAAAJCQAAAAALCQAAAAAFCQAAAAANCQAAAAAMCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAFCQAAAAACCQAAAAABCQAAAAAFCQAAAAAACQAAAAAECQAAAAAMCQAAAAAHCQAAAAANCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAGCQAAAAABCQAAAAABCQAAAAAFCQAAAAALCQAAAAADCQAAAAACCQAAAAALCQAAAAAECQAAAAAACQAAAAAFCQAAAAACCQAAAAAJCQAAAAAGCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAANCQAAAAAFCQAAAAACCQAAAAADCQAAAAAKCQAAAAAECQAAAAAACQAAAAALCQAAAAADCQAAAAANCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAHCQAAAAAMCQAAAAAJCQAAAAAFCQAAAAAFCQAAAAAMCQAAAAAJCQAAAAAICQAAAAAMCQAAAAAFCQAAAAACCQAAAAALCQAAAAAJCQAAAAAACQAAAAAACQAAAAAFCQAAAAAMCQAAAAAHCQAAAAAFCQAAAAAHCQAAAAAJCQAAAAADCQAAAAACCQAAAAAECQAAAAABCQAAAAABCQAAAAANCQAAAAAGCQAAAAAMCQAAAAAACQAAAAADCQAAAAABCQAAAAAECQAAAAANCQAAAAAKCQAAAAAHCQAAAAAFCQAAAAAACQAAAAAICQAAAAAKCQAAAAANCQAAAAAMCQAAAAAICQAAAAAHCQAAAAAKCQAAAAAACQAAAAAFCQAAAAADCQAAAAACCQAAAAADCQAAAAAKCQAAAAAMCQAAAAAFCQAAAAAICQAAAAADCQAAAAAACQAAAAACCQAAAAABHAAAAAAACQAAAAALCQAAAAAMCQAAAAAAHAAAAAAAHAAAAAAACQAAAAALCQAAAAAKCQAAAAABCQAAAAAMMQAAAAAAMQAAAAAAMQAAAAAAHQAAAAAACQAAAAAACQAAAAANCQAAAAAKCQAAAAAGCQAAAAAEHQAAAAAAHAAAAAAACQAAAAAFCQAAAAAECQAAAAABCQAAAAAKCQAAAAAGMQAAAAAAMQAAAAAACQAAAAAAMQAAAAAACQAAAAAAHQAAAAAACQAAAAAJHAAAAAAAHQAAAAAAHAAAAAAACQAAAAAACQAAAAAJCQAAAAAACQAAAAADCQAAAAAMCQAAAAAHMQAAAAAAMQAAAAAAMwAAAAAAMQAAAAAAMgAAAAAACQAAAAAMCQAAAAAMHAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAALCQAAAAAFCQAAAAAECQAAAAANCQAAAAADMQAAAAAAMQAAAAAAMwAAAAAAMQAAAAAAMgAAAAAAMQAAAAAACQAAAAAMCQAAAAABMQAAAAAAMQAAAAAACQAAAAAMCQAAAAAD
+ tiles: CQAAAAAACQAAAAAAAwAAAAAAAwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAMCQAAAAAJCQAAAAABCQAAAAALCQAAAAAGCQAAAAAICQAAAAAHCQAAAAAMAwAAAAAAAwAAAAAACQAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAJCQAAAAACCQAAAAAECQAAAAAHCQAAAAALCQAAAAAKCQAAAAAKCQAAAAAHMwAAAAAAAwAAAAAACQAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAICQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAJCQAAAAABCQAAAAAFCQAAAAAJCQAAAAAECQAAAAAFCQAAAAAMCQAAAAACCQAAAAAJCQAAAAAACQAAAAAACQAAAAALCQAAAAAACQAAAAAACQAAAAAICQAAAAABCQAAAAAJCQAAAAALCQAAAAAFCQAAAAANCQAAAAAMCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAFCQAAAAACCQAAAAABCQAAAAAFCQAAAAAACQAAAAAECQAAAAAMCQAAAAAHCQAAAAANCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAGCQAAAAABCQAAAAABCQAAAAAFCQAAAAALCQAAAAADCQAAAAACCQAAAAALCQAAAAAECQAAAAAACQAAAAAFCQAAAAACCQAAAAAJCQAAAAAGCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAANCQAAAAAFCQAAAAACCQAAAAADCQAAAAAKCQAAAAAECQAAAAAACQAAAAALCQAAAAADCQAAAAANCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAHCQAAAAAMCQAAAAAJCQAAAAAFCQAAAAAFCQAAAAAMCQAAAAAJCQAAAAAICQAAAAAMCQAAAAAFCQAAAAACCQAAAAALCQAAAAAJCQAAAAAACQAAAAAACQAAAAAFCQAAAAAMCQAAAAAHCQAAAAAFCQAAAAAHCQAAAAAJCQAAAAADCQAAAAACCQAAAAAECQAAAAABCQAAAAABCQAAAAANCQAAAAAGCQAAAAAMCQAAAAAACQAAAAADCQAAAAABCQAAAAAECQAAAAANCQAAAAAKCQAAAAAHCQAAAAAFCQAAAAAACQAAAAAICQAAAAAKCQAAAAANCQAAAAAMCQAAAAAICQAAAAAHCQAAAAAKCQAAAAAACQAAAAAFCQAAAAADCQAAAAACCQAAAAADCQAAAAAKCQAAAAAMCQAAAAAFCQAAAAAICQAAAAADCQAAAAAACQAAAAACCQAAAAABHAAAAAAACQAAAAALCQAAAAAMCQAAAAAAHAAAAAAAHAAAAAAACQAAAAALCQAAAAAKCQAAAAABCQAAAAAMMQAAAAAAMQAAAAAAMQAAAAAAHQAAAAAACQAAAAAACQAAAAANCQAAAAAKCQAAAAAGCQAAAAAEHQAAAAAAHAAAAAAACQAAAAAFCQAAAAAECQAAAAABCQAAAAAKCQAAAAAGMQAAAAAAMQAAAAAACQAAAAAAMQAAAAAACQAAAAAAHQAAAAAACQAAAAAJHAAAAAAAHQAAAAAAHAAAAAAACQAAAAAACQAAAAAJCQAAAAAACQAAAAADCQAAAAAMCQAAAAAHMQAAAAAAMQAAAAAAMwAAAAAAMQAAAAAAMgAAAAAACQAAAAAMCQAAAAAMHAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAALCQAAAAAFCQAAAAAECQAAAAANCQAAAAADMQAAAAAAMQAAAAAAMwAAAAAAMQAAAAAAMgAAAAAAMQAAAAAACQAAAAAMCQAAAAABMQAAAAAAMQAAAAAACQAAAAAMCQAAAAAD
version: 6
0,-2:
ind: 0,-2
- tiles: CQAAAAAECQAAAAABCQAAAAAHCQAAAAAMCQAAAAAACQAAAAAACQAAAAAKCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAALCQAAAAAMCQAAAAAHCQAAAAAMCQAAAAAHCQAAAAAMCQAAAAALCQAAAAAICQAAAAAACQAAAAACCQAAAAAACQAAAAAMCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAMCQAAAAADCQAAAAABCQAAAAAGCQAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAMCQAAAAAGCQAAAAAMCQAAAAAFCQAAAAAKCQAAAAANCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAICQAAAAAACQAAAAAICQAAAAALCQAAAAAHCQAAAAAFCQAAAAAMCQAAAAAECQAAAAANCQAAAAAKCQAAAAACCQAAAAANCQAAAAAICQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAANCQAAAAALCQAAAAAACQAAAAAMCQAAAAAMCQAAAAAGCQAAAAACCQAAAAAFCQAAAAAMCQAAAAAFCQAAAAAKCQAAAAAFCQAAAAAECQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAJCQAAAAAICQAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAAHCQAAAAAACQAAAAAACQAAAAAGCQAAAAAICQAAAAAHCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAALCQAAAAAFCQAAAAAHCQAAAAAKCQAAAAAFCQAAAAABCQAAAAAJCQAAAAAACQAAAAAACQAAAAACCQAAAAANCQAAAAALCQAAAAABCQAAAAANCQAAAAACCQAAAAADCQAAAAAMCQAAAAAFCQAAAAAGCQAAAAAECQAAAAAECQAAAAAMCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAKCQAAAAAACQAAAAABCQAAAAALCQAAAAAJCQAAAAAECQAAAAALCQAAAAAICQAAAAALCQAAAAAICQAAAAAECQAAAAAACQAAAAAACQAAAAABCQAAAAAICQAAAAAHCQAAAAAGCQAAAAAFCQAAAAAICQAAAAAGCQAAAAAFCQAAAAABCQAAAAAICQAAAAAKCQAAAAANCQAAAAAHCQAAAAAGCQAAAAACCQAAAAAACQAAAAAFCQAAAAAACQAAAAACCQAAAAADCQAAAAAECQAAAAAHCQAAAAAACQAAAAAJCQAAAAAICQAAAAAKCQAAAAACCQAAAAAKCQAAAAAHCQAAAAAMHAAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAFCQAAAAANCQAAAAAHCQAAAAAACQAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAHHAAAAAAACQAAAAAACQAAAAAGCQAAAAALCQAAAAAICQAAAAAICQAAAAAACQAAAAANCQAAAAAJCQAAAAAACQAAAAAACQAAAAAKCQAAAAAAMgAAAAAAMgAAAAAAHAAAAAAACQAAAAAECQAAAAAACQAAAAACCQAAAAANCQAAAAAGCQAAAAAHCQAAAAABCQAAAAADCQAAAAANCQAAAAAACQAAAAABCQAAAAAACQAAAAAHMgAAAAAAMgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAAKCQAAAAAJCQAAAAAMCQAAAAAJCQAAAAALCQAAAAAFCQAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAA
+ tiles: CQAAAAAECQAAAAABCQAAAAAHCQAAAAAMCQAAAAAACQAAAAAACQAAAAAKCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAALCQAAAAAMCQAAAAAHCQAAAAAMCQAAAAAHCQAAAAAMCQAAAAALCQAAAAAICQAAAAAACQAAAAACCQAAAAAACQAAAAAMCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAMCQAAAAADCQAAAAABCQAAAAAGCQAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAMCQAAAAAGCQAAAAAMCQAAAAAFCQAAAAAKCQAAAAANCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAICQAAAAAACQAAAAAICQAAAAALCQAAAAAHCQAAAAAFCQAAAAAMCQAAAAAECQAAAAANCQAAAAAKCQAAAAACCQAAAAANCQAAAAAICQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAANCQAAAAALCQAAAAAACQAAAAAMCQAAAAAMCQAAAAAGCQAAAAACCQAAAAAFCQAAAAAMCQAAAAAFCQAAAAAKCQAAAAAFCQAAAAAECQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAJCQAAAAAICQAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAAHCQAAAAAACQAAAAAACQAAAAAGCQAAAAAICQAAAAAHCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAALCQAAAAAFCQAAAAAHCQAAAAAKCQAAAAAFCQAAAAABCQAAAAAJCQAAAAAACQAAAAAACQAAAAACCQAAAAANCQAAAAALCQAAAAABCQAAAAANCQAAAAACCQAAAAADCQAAAAAMCQAAAAAFCQAAAAAGCQAAAAAECQAAAAAECQAAAAAMCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAKCQAAAAAACQAAAAABCQAAAAALCQAAAAAJCQAAAAAECQAAAAALCQAAAAAICQAAAAALCQAAAAAICQAAAAAECQAAAAAACQAAAAAACQAAAAABCQAAAAAICQAAAAAHCQAAAAAGCQAAAAAFCQAAAAAICQAAAAAGCQAAAAAFCQAAAAABCQAAAAAICQAAAAAKCQAAAAANCQAAAAAHCQAAAAAGCQAAAAACCQAAAAAACQAAAAAFCQAAAAAACQAAAAACCQAAAAADCQAAAAAECQAAAAAHCQAAAAAACQAAAAAJCQAAAAAICQAAAAAKCQAAAAACCQAAAAAKCQAAAAAHCQAAAAAMHAAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAFCQAAAAANCQAAAAAHCQAAAAAACQAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAHHAAAAAAACQAAAAAAMQAAAAAAMQAAAAAACQAAAAAICQAAAAAIMQAAAAAACQAAAAANCQAAAAAJMQAAAAAAMQAAAAAAMQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAHAAAAAAACQAAAAAECQAAAAAACQAAAAACMQAAAAAACQAAAAAGMQAAAAAAMQAAAAAACQAAAAADCQAAAAANCQAAAAAACQAAAAABMQAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAAKCQAAAAAJCQAAAAAMCQAAAAAJCQAAAAALCQAAAAAFCQAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAA
version: 6
-2,2:
ind: -2,2
@@ -134,11 +134,11 @@ entities:
version: 6
1,0:
ind: 1,0
- tiles: CQAAAAAMCQAAAAABCQAAAAAACQAAAAAACQAAAAALCQAAAAADIAAAAAAAIAAAAAAAIAAAAAAACQAAAAAJCQAAAAAMCQAAAAABCQAAAAACCQAAAAAKCQAAAAABCQAAAAAICQAAAAAFCQAAAAAICQAAAAAACQAAAAAACQAAAAAJCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAANCQAAAAAICQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAKCQAAAAAACQAAAAAACQAAAAAICQAAAAAGCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAECQAAAAAACQAAAAAACQAAAAAFCQAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAICQAAAAAACQAAAAAACQAAAAAFCQAAAAAACQAAAAAACQAAAAAACQAAAAANCQAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAMCQAAAAAACQAAAAAACQAAAAAGCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAKCQAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAICQAAAAAJCQAAAAAGCQAAAAAACQAAAAACCQAAAAADCQAAAAAKCQAAAAAHCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAANCQAAAAABCQAAAAAFCQAAAAABCQAAAAAFCQAAAAAHCQAAAAAHCQAAAAADCQAAAAAECQAAAAAFCQAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAJCQAAAAANCQAAAAAMCQAAAAAICQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAHCQAAAAANCQAAAAAECQAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAECQAAAAAECQAAAAAACQAAAAAJCQAAAAAKCQAAAAAICQAAAAAICQAAAAAFCQAAAAABCQAAAAALCQAAAAAACQAAAAADCQAAAAAMCQAAAAAHCQAAAAABCQAAAAANCQAAAAAACQAAAAACCQAAAAAACQAAAAAKCQAAAAAKCQAAAAAFCQAAAAAKCQAAAAAGCQAAAAAJCQAAAAAGCQAAAAAMCQAAAAAJCQAAAAACCQAAAAAMCQAAAAAJCQAAAAAMCQAAAAAJCQAAAAAECQAAAAAJCQAAAAALCQAAAAABCQAAAAALCQAAAAALCQAAAAADCQAAAAAICQAAAAAECQAAAAAECQAAAAAJCQAAAAADCQAAAAAGCQAAAAAHCQAAAAAACQAAAAADCQAAAAAKCQAAAAACCQAAAAAMCQAAAAAACQAAAAACCQAAAAAKCQAAAAAJCQAAAAAGCQAAAAAGCQAAAAAICQAAAAAECQAAAAANCQAAAAAECQAAAAALCQAAAAAJCQAAAAANCQAAAAAJCQAAAAANCQAAAAAFCQAAAAAH
+ tiles: CQAAAAAMCQAAAAABCQAAAAAACQAAAAAACQAAAAALCQAAAAADAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAJCQAAAAAMCQAAAAABCQAAAAACCQAAAAAKCQAAAAABCQAAAAAICQAAAAAFCQAAAAAICQAAAAAACQAAAAAACQAAAAAJCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAANCQAAAAAICQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAKCQAAAAAACQAAAAAACQAAAAAICQAAAAAGCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAECQAAAAAACQAAAAAACQAAAAAFCQAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAICQAAAAAACQAAAAAACQAAAAAFCQAAAAAACQAAAAAACQAAAAAACQAAAAANCQAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAMCQAAAAAACQAAAAAACQAAAAAGCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAKCQAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAHCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAICQAAAAAJCQAAAAAGCQAAAAAACQAAAAACCQAAAAADCQAAAAAKCQAAAAAHCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAANCQAAAAABCQAAAAAFCQAAAAABCQAAAAAFCQAAAAAHCQAAAAAHCQAAAAADCQAAAAAECQAAAAAFCQAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAJCQAAAAANCQAAAAAMCQAAAAAICQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAHCQAAAAANCQAAAAAECQAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAECQAAAAAECQAAAAAACQAAAAAJCQAAAAAKCQAAAAAICQAAAAAICQAAAAAFCQAAAAABCQAAAAALCQAAAAAACQAAAAADCQAAAAAMCQAAAAAHCQAAAAABCQAAAAANCQAAAAAACQAAAAACCQAAAAAACQAAAAAKCQAAAAAKCQAAAAAFCQAAAAAKCQAAAAAGCQAAAAAJCQAAAAAGCQAAAAAMCQAAAAAJCQAAAAACCQAAAAAMCQAAAAAJCQAAAAAMCQAAAAAJCQAAAAAECQAAAAAJCQAAAAALCQAAAAABCQAAAAALCQAAAAALCQAAAAADCQAAAAAICQAAAAAECQAAAAAECQAAAAAJCQAAAAADCQAAAAAGCQAAAAAHCQAAAAAACQAAAAADCQAAAAAKCQAAAAACCQAAAAAMCQAAAAAACQAAAAACCQAAAAAKCQAAAAAJCQAAAAAGCQAAAAAGCQAAAAAICQAAAAAECQAAAAANCQAAAAAECQAAAAALCQAAAAAJCQAAAAANCQAAAAAJCQAAAAANCQAAAAAFCQAAAAAH
version: 6
1,-1:
ind: 1,-1
- tiles: CQAAAAAAMQAAAAAAMQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAANCQAAAAAFCQAAAAADCQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACQAAAAACCQAAAAABCQAAAAALMQAAAAAAMQAAAAAACQAAAAAACQAAAAAACQAAAAAHCQAAAAADCQAAAAAJCQAAAAABCQAAAAAAAwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACQAAAAAIIAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAAGAwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAANCQAAAAAGCQAAAAANIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACQAAAAABCQAAAAAKCQAAAAAHCQAAAAACCQAAAAAMCQAAAAAMCQAAAAAACQAAAAAACQAAAAALCQAAAAALCQAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACQAAAAAECQAAAAAKCQAAAAAICQAAAAAGCQAAAAAMCQAAAAAHCQAAAAAACQAAAAAACQAAAAALCQAAAAAHCQAAAAAKIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABMwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAALCQAAAAADCQAAAAAMCQAAAAADCQAAAAABCQAAAAACCQAAAAALCQAAAAAJCQAAAAAJCQAAAAAACQAAAAAACQAAAAAGCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAANCQAAAAABCQAAAAALCQAAAAAHCQAAAAABCQAAAAAMCQAAAAAJCQAAAAALCQAAAAAJCQAAAAAACQAAAAAACQAAAAANCQAAAAAGCQAAAAAACQAAAAAACQAAAAAKCQAAAAAMCQAAAAAECQAAAAANCQAAAAAGCQAAAAAJCQAAAAAICQAAAAAACQAAAAAECQAAAAAJCQAAAAAACQAAAAAACQAAAAAKCQAAAAALCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAAICQAAAAALCQAAAAAECQAAAAAFCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAAFCQAAAAAGCQAAAAAGCQAAAAAICQAAAAAHCQAAAAAECQAAAAAHCQAAAAADCQAAAAAFCQAAAAAACQAAAAAACQAAAAADCQAAAAAJCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAHCQAAAAAACQAAAAAECQAAAAABCQAAAAADCQAAAAADCQAAAAAGCQAAAAAACQAAAAAACQAAAAACCQAAAAAKCQAAAAAACQAAAAAACQAAAAADCQAAAAAJCQAAAAACCQAAAAADCQAAAAAKCQAAAAADCQAAAAAKCQAAAAAECQAAAAAECQAAAAABCQAAAAAACQAAAAAACQAAAAAJCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAAGCQAAAAANCQAAAAABCQAAAAAHCQAAAAAFCQAAAAAICQAAAAAECQAAAAAGCQAAAAAICQAAAAAACQAAAAAACQAAAAAHCQAAAAALIAAAAAAAIAAAAAAAMwAAAAAACQAAAAANCQAAAAADCQAAAAAFCQAAAAAJCQAAAAADCQAAAAANCQAAAAAM
+ tiles: CQAAAAAAMQAAAAAAMQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAANCQAAAAAFCQAAAAADCQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACQAAAAACCQAAAAABCQAAAAALMQAAAAAAMQAAAAAACQAAAAAACQAAAAAACQAAAAAHCQAAAAADCQAAAAAJCQAAAAABCQAAAAAAAwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACQAAAAAIIAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAGCQAAAAAGAwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAANCQAAAAAGCQAAAAANIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACQAAAAABCQAAAAAKCQAAAAAHCQAAAAACCQAAAAAMCQAAAAAMCQAAAAAACQAAAAAACQAAAAALCQAAAAALCQAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACQAAAAAECQAAAAAKCQAAAAAICQAAAAAGCQAAAAAMCQAAAAAHCQAAAAAACQAAAAAACQAAAAALCQAAAAAHCQAAAAAKIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABMwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAFCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAALCQAAAAADCQAAAAAMCQAAAAADCQAAAAABCQAAAAACCQAAAAALCQAAAAAJCQAAAAAJCQAAAAAACQAAAAAACQAAAAAGCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAANCQAAAAABCQAAAAALCQAAAAAHCQAAAAABCQAAAAAMCQAAAAAJCQAAAAALCQAAAAAJCQAAAAAACQAAAAAACQAAAAANCQAAAAAGCQAAAAAACQAAAAAACQAAAAAKCQAAAAAMCQAAAAAECQAAAAANCQAAAAAGCQAAAAAJCQAAAAAICQAAAAAACQAAAAAECQAAAAAJCQAAAAAACQAAAAAACQAAAAAKCQAAAAALCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAAICQAAAAALCQAAAAAECQAAAAAFCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAAFCQAAAAAGCQAAAAAGCQAAAAAICQAAAAAHCQAAAAAECQAAAAAHCQAAAAADCQAAAAAFCQAAAAAACQAAAAAACQAAAAADCQAAAAAJCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAHCQAAAAAACQAAAAAECQAAAAABCQAAAAADCQAAAAADCQAAAAAGCQAAAAAACQAAAAAACQAAAAACCQAAAAAKCQAAAAAACQAAAAAACQAAAAADCQAAAAAJCQAAAAACCQAAAAADCQAAAAAKCQAAAAADCQAAAAAKCQAAAAAECQAAAAAECQAAAAABCQAAAAAACQAAAAAACQAAAAAJCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAAGCQAAAAANCQAAAAABCQAAAAAHCQAAAAAFCQAAAAAICQAAAAAECQAAAAAGCQAAAAAICQAAAAAACQAAAAAACQAAAAAHCQAAAAALAgAAAAAAAgAAAAAAMwAAAAAACQAAAAANCQAAAAADCQAAAAAFCQAAAAAJCQAAAAADCQAAAAANCQAAAAAM
version: 6
2,0:
ind: 2,0
@@ -1375,7 +1375,8 @@ entities:
12,11:
0: 65535
5,0:
- 0: 65309
+ 0: 65305
+ 1: 4
5,1:
0: 65535
5,2:
@@ -2549,7 +2550,8 @@ entities:
21,5:
0: 61439
21,7:
- 0: 819
+ 0: 307
+ 1: 512
21,3:
0: 65535
21,6:
@@ -3436,6 +3438,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
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
@@ -3614,11 +3631,6 @@ entities:
- type: Transform
pos: 4.5,-22.5
parent: 2
- - uid: 23
- components:
- - type: Transform
- pos: 4.5,-21.5
- parent: 2
- uid: 24
components:
- type: Transform
@@ -5607,11 +5619,6 @@ entities:
- type: Transform
pos: -25.5,25.5
parent: 2
- - uid: 653
- components:
- - type: Transform
- pos: 4.5,-20.5
- parent: 2
- uid: 655
components:
- type: Transform
@@ -6319,11 +6326,6 @@ entities:
- type: Transform
pos: 17.5,-11.5
parent: 2
- - uid: 842
- components:
- - type: Transform
- pos: 17.5,-12.5
- parent: 2
- uid: 843
components:
- type: Transform
@@ -6840,16 +6842,6 @@ entities:
- type: Transform
pos: 20.5,-10.5
parent: 2
- - uid: 965
- components:
- - type: Transform
- pos: 20.5,-13.5
- parent: 2
- - uid: 966
- components:
- - type: Transform
- pos: 20.5,-14.5
- parent: 2
- uid: 969
components:
- type: Transform
@@ -6880,11 +6872,6 @@ entities:
- type: Transform
pos: 18.5,-11.5
parent: 2
- - uid: 975
- components:
- - type: Transform
- pos: 18.5,-12.5
- parent: 2
- uid: 976
components:
- type: Transform
@@ -6932,11 +6919,6 @@ entities:
- type: Transform
pos: 20.5,-11.5
parent: 2
- - uid: 986
- components:
- - type: Transform
- pos: 20.5,-12.5
- parent: 2
- uid: 990
components:
- type: Transform
@@ -7002,11 +6984,6 @@ entities:
- type: Transform
pos: 14.5,2.5
parent: 2
- - uid: 1003
- components:
- - type: Transform
- pos: 14.5,-12.5
- parent: 2
- uid: 1005
components:
- type: Transform
@@ -7115,11 +7092,6 @@ entities:
rot: 3.141592653589793 rad
pos: 13.5,-6.5
parent: 2
- - uid: 1028
- components:
- - type: Transform
- pos: 12.5,-12.5
- parent: 2
- uid: 1029
components:
- type: Transform
@@ -7151,16 +7123,6 @@ entities:
rot: 3.141592653589793 rad
pos: 15.5,-6.5
parent: 2
- - uid: 1038
- components:
- - type: Transform
- pos: 12.5,-13.5
- parent: 2
- - uid: 1039
- components:
- - type: Transform
- pos: 12.5,-14.5
- parent: 2
- uid: 1040
components:
- type: Transform
@@ -8443,11 +8405,6 @@ entities:
- type: Transform
pos: 9.5,-23.5
parent: 2
- - uid: 1336
- components:
- - type: Transform
- pos: 9.5,-21.5
- parent: 2
- uid: 1340
components:
- type: Transform
@@ -9293,11 +9250,6 @@ entities:
- type: Transform
pos: 5.5,-22.5
parent: 2
- - uid: 1542
- components:
- - type: Transform
- pos: 5.5,-21.5
- parent: 2
- uid: 1543
components:
- type: Transform
@@ -9983,11 +9935,6 @@ entities:
- type: Transform
pos: 2.5,33.5
parent: 2
- - uid: 1687
- components:
- - type: Transform
- pos: 8.5,-21.5
- parent: 2
- uid: 1688
components:
- type: Transform
@@ -10108,11 +10055,6 @@ entities:
- type: Transform
pos: 6.5,-23.5
parent: 2
- - uid: 1722
- components:
- - type: Transform
- pos: 6.5,-21.5
- parent: 2
- uid: 1723
components:
- type: Transform
@@ -10163,11 +10105,6 @@ entities:
- type: Transform
pos: 5.5,-38.5
parent: 2
- - uid: 1737
- components:
- - type: Transform
- pos: 7.5,-21.5
- parent: 2
- uid: 1738
components:
- type: Transform
@@ -12873,11 +12810,6 @@ entities:
- type: Transform
pos: 91.5,32.5
parent: 2
- - uid: 2472
- components:
- - type: Transform
- pos: 13.5,-12.5
- parent: 2
- uid: 2474
components:
- type: Transform
@@ -13369,11 +13301,6 @@ entities:
- type: Transform
pos: -9.5,-22.5
parent: 2
- - uid: 2667
- components:
- - type: Transform
- pos: -5.5,-12.5
- parent: 2
- uid: 2669
components:
- type: Transform
@@ -15775,11 +15702,6 @@ entities:
rot: 3.141592653589793 rad
pos: 12.5,-7.5
parent: 2
- - uid: 3455
- components:
- - type: Transform
- pos: 5.5,-14.5
- parent: 2
- uid: 3456
components:
- type: Transform
@@ -17587,11 +17509,6 @@ entities:
- type: Transform
pos: 7.5,-13.5
parent: 2
- - uid: 4109
- components:
- - type: Transform
- pos: 7.5,-14.5
- parent: 2
- uid: 4110
components:
- type: Transform
@@ -17875,11 +17792,6 @@ entities:
- type: Transform
pos: 8.5,-10.5
parent: 2
- - uid: 4196
- components:
- - type: Transform
- pos: 6.5,-14.5
- parent: 2
- uid: 4197
components:
- type: Transform
@@ -19573,11 +19485,6 @@ entities:
rot: 3.141592653589793 rad
pos: -10.5,5.5
parent: 2
- - uid: 4631
- components:
- - type: Transform
- pos: -6.5,-11.5
- parent: 2
- uid: 4632
components:
- type: Transform
@@ -19588,11 +19495,6 @@ entities:
- type: Transform
pos: -5.5,3.5
parent: 2
- - uid: 4635
- components:
- - type: Transform
- pos: -6.5,-12.5
- parent: 2
- uid: 4640
components:
- type: Transform
@@ -19628,11 +19530,6 @@ entities:
- type: Transform
pos: -9.5,-4.5
parent: 2
- - uid: 4661
- components:
- - type: Transform
- pos: -5.5,-11.5
- parent: 2
- uid: 4664
components:
- type: Transform
@@ -20068,11 +19965,6 @@ entities:
- type: Transform
pos: -0.5,11.5
parent: 2
- - uid: 4791
- components:
- - type: Transform
- pos: -4.5,-11.5
- parent: 2
- uid: 4792
components:
- type: Transform
@@ -20599,11 +20491,6 @@ entities:
- type: Transform
pos: 34.5,17.5
parent: 2
- - uid: 4949
- components:
- - type: Transform
- pos: 16.5,-20.5
- parent: 2
- uid: 4950
components:
- type: Transform
@@ -20750,11 +20637,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -13.5,-27.5
parent: 2
- - uid: 4984
- components:
- - type: Transform
- pos: 17.5,-20.5
- parent: 2
- uid: 4985
components:
- type: Transform
@@ -20930,11 +20812,6 @@ entities:
- type: Transform
pos: 36.5,-2.5
parent: 2
- - uid: 5028
- components:
- - type: Transform
- pos: 18.5,-20.5
- parent: 2
- uid: 5029
components:
- type: Transform
@@ -20960,25 +20837,20 @@ entities:
- type: Transform
pos: 35.5,4.5
parent: 2
- - uid: 5038
- components:
- - type: Transform
- pos: 19.5,-20.5
- parent: 2
- uid: 5041
components:
- type: Transform
- pos: 21.5,-18.5
+ pos: -10.5,-31.5
parent: 2
- uid: 5042
components:
- type: Transform
- pos: 21.5,-19.5
+ pos: -7.5,-31.5
parent: 2
- uid: 5043
components:
- type: Transform
- pos: 21.5,-20.5
+ pos: -9.5,-31.5
parent: 2
- uid: 5044
components:
@@ -20993,12 +20865,12 @@ entities:
- uid: 5048
components:
- type: Transform
- pos: 21.5,-16.5
+ pos: -9.5,-32.5
parent: 2
- uid: 5049
components:
- type: Transform
- pos: 21.5,-17.5
+ pos: -6.5,-31.5
parent: 2
- uid: 5050
components:
@@ -21008,17 +20880,17 @@ entities:
- uid: 5051
components:
- type: Transform
- pos: 20.5,-15.5
+ pos: -10.5,-29.5
parent: 2
- uid: 5054
components:
- type: Transform
- pos: 20.5,-20.5
+ pos: -10.5,-30.5
parent: 2
- uid: 5055
components:
- type: Transform
- pos: 21.5,-15.5
+ pos: -8.5,-30.5
parent: 2
- uid: 5056
components:
@@ -21200,6 +21072,11 @@ entities:
- type: Transform
pos: 24.5,-15.5
parent: 2
+ - uid: 5094
+ components:
+ - type: Transform
+ pos: -8.5,-32.5
+ parent: 2
- uid: 5095
components:
- type: Transform
@@ -21223,12 +21100,17 @@ entities:
- uid: 5099
components:
- type: Transform
- pos: 5.5,-19.5
+ pos: -10.5,-32.5
parent: 2
- uid: 5100
components:
- type: Transform
- pos: 5.5,-20.5
+ pos: -9.5,-28.5
+ parent: 2
+ - uid: 5101
+ components:
+ - type: Transform
+ pos: -6.5,-28.5
parent: 2
- uid: 5102
components:
@@ -21243,12 +21125,17 @@ entities:
- uid: 5105
components:
- type: Transform
- pos: 6.5,-15.5
+ pos: -7.5,-32.5
parent: 2
- uid: 5106
components:
- type: Transform
- pos: 6.5,-16.5
+ pos: -7.5,-29.5
+ parent: 2
+ - uid: 5107
+ components:
+ - type: Transform
+ pos: -6.5,-29.5
parent: 2
- uid: 5108
components:
@@ -21268,112 +21155,52 @@ entities:
- uid: 5111
components:
- type: Transform
- pos: 7.5,-15.5
+ pos: -6.5,-30.5
parent: 2
- uid: 5112
components:
- type: Transform
- pos: 7.5,-16.5
+ pos: -7.5,-28.5
parent: 2
- uid: 5113
components:
- type: Transform
- pos: 5.5,-15.5
+ pos: -7.5,-30.5
parent: 2
- uid: 5114
components:
- type: Transform
- pos: 5.5,-16.5
+ pos: -9.5,-29.5
parent: 2
- uid: 5115
components:
- type: Transform
- pos: 5.5,-17.5
+ pos: -6.5,-32.5
parent: 2
- uid: 5116
components:
- type: Transform
- pos: 5.5,-18.5
+ pos: -8.5,-31.5
parent: 2
- uid: 5117
components:
- type: Transform
- pos: 7.5,-17.5
+ pos: -9.5,-30.5
parent: 2
- uid: 5118
components:
- type: Transform
- pos: 7.5,-18.5
+ pos: -8.5,-28.5
parent: 2
- uid: 5119
components:
- type: Transform
- pos: 6.5,-17.5
+ pos: -8.5,-29.5
parent: 2
- uid: 5120
components:
- type: Transform
- pos: 6.5,-18.5
- parent: 2
- - uid: 5121
- components:
- - type: Transform
- pos: 6.5,-19.5
- parent: 2
- - uid: 5122
- components:
- - type: Transform
- pos: 6.5,-20.5
- parent: 2
- - uid: 5123
- components:
- - type: Transform
- pos: 7.5,-19.5
- parent: 2
- - uid: 5124
- components:
- - type: Transform
- pos: 7.5,-20.5
- parent: 2
- - uid: 5125
- components:
- - type: Transform
- pos: 12.5,-17.5
- parent: 2
- - uid: 5126
- components:
- - type: Transform
- pos: 12.5,-18.5
- parent: 2
- - uid: 5129
- components:
- - type: Transform
- pos: 8.5,-15.5
- parent: 2
- - uid: 5130
- components:
- - type: Transform
- pos: 8.5,-16.5
- parent: 2
- - uid: 5131
- components:
- - type: Transform
- pos: 12.5,-19.5
- parent: 2
- - uid: 5132
- components:
- - type: Transform
- pos: 12.5,-20.5
- parent: 2
- - uid: 5136
- components:
- - type: Transform
- pos: 13.5,-20.5
- parent: 2
- - uid: 5142
- components:
- - type: Transform
- pos: 15.5,-20.5
+ pos: -10.5,-28.5
parent: 2
- uid: 5143
components:
@@ -21430,11 +21257,6 @@ entities:
- type: Transform
pos: 38.5,-16.5
parent: 2
- - uid: 5157
- components:
- - type: Transform
- pos: 14.5,-20.5
- parent: 2
- uid: 5158
components:
- type: Transform
@@ -21500,46 +21322,6 @@ entities:
- type: Transform
pos: 38.5,-18.5
parent: 2
- - uid: 5175
- components:
- - type: Transform
- pos: 8.5,-17.5
- parent: 2
- - uid: 5176
- components:
- - type: Transform
- pos: 8.5,-18.5
- parent: 2
- - uid: 5177
- components:
- - type: Transform
- pos: 9.5,-17.5
- parent: 2
- - uid: 5178
- components:
- - type: Transform
- pos: 9.5,-18.5
- parent: 2
- - uid: 5179
- components:
- - type: Transform
- pos: 10.5,-17.5
- parent: 2
- - uid: 5180
- components:
- - type: Transform
- pos: 10.5,-18.5
- parent: 2
- - uid: 5181
- components:
- - type: Transform
- pos: 11.5,-17.5
- parent: 2
- - uid: 5182
- components:
- - type: Transform
- pos: 11.5,-18.5
- parent: 2
- uid: 5185
components:
- type: Transform
@@ -21565,46 +21347,6 @@ entities:
- type: Transform
pos: 47.5,-20.5
parent: 2
- - uid: 5195
- components:
- - type: Transform
- pos: 8.5,-19.5
- parent: 2
- - uid: 5196
- components:
- - type: Transform
- pos: 8.5,-20.5
- parent: 2
- - uid: 5197
- components:
- - type: Transform
- pos: 9.5,-19.5
- parent: 2
- - uid: 5198
- components:
- - type: Transform
- pos: 9.5,-20.5
- parent: 2
- - uid: 5199
- components:
- - type: Transform
- pos: 10.5,-19.5
- parent: 2
- - uid: 5200
- components:
- - type: Transform
- pos: 10.5,-20.5
- parent: 2
- - uid: 5201
- components:
- - type: Transform
- pos: 11.5,-19.5
- parent: 2
- - uid: 5202
- components:
- - type: Transform
- pos: 11.5,-20.5
- parent: 2
- uid: 5203
components:
- type: Transform
@@ -21630,46 +21372,6 @@ entities:
- type: Transform
pos: 44.5,-20.5
parent: 2
- - uid: 5215
- components:
- - type: Transform
- pos: 9.5,-15.5
- parent: 2
- - uid: 5216
- components:
- - type: Transform
- pos: 9.5,-16.5
- parent: 2
- - uid: 5217
- components:
- - type: Transform
- pos: 10.5,-15.5
- parent: 2
- - uid: 5218
- components:
- - type: Transform
- pos: 10.5,-16.5
- parent: 2
- - uid: 5219
- components:
- - type: Transform
- pos: 11.5,-15.5
- parent: 2
- - uid: 5220
- components:
- - type: Transform
- pos: 11.5,-16.5
- parent: 2
- - uid: 5221
- components:
- - type: Transform
- pos: 12.5,-15.5
- parent: 2
- - uid: 5222
- components:
- - type: Transform
- pos: 12.5,-16.5
- parent: 2
- uid: 5225
components:
- type: Transform
@@ -23005,11 +22707,6 @@ entities:
- type: Transform
pos: 19.5,7.5
parent: 2
- - uid: 5562
- components:
- - type: Transform
- pos: 11.5,-14.5
- parent: 2
- uid: 5563
components:
- type: Transform
@@ -23528,11 +23225,6 @@ entities:
- type: Transform
pos: 11.5,19.5
parent: 2
- - uid: 5671
- components:
- - type: Transform
- pos: 10.5,-14.5
- parent: 2
- uid: 5672
components:
- type: Transform
@@ -23573,11 +23265,6 @@ entities:
- type: Transform
pos: 11.5,15.5
parent: 2
- - uid: 5680
- components:
- - type: Transform
- pos: 19.5,-12.5
- parent: 2
- uid: 5681
components:
- type: Transform
@@ -23679,11 +23366,6 @@ entities:
- type: Transform
pos: 9.5,-4.5
parent: 2
- - uid: 5707
- components:
- - type: Transform
- pos: 9.5,-14.5
- parent: 2
- uid: 5708
components:
- type: Transform
@@ -24044,11 +23726,6 @@ entities:
- type: Transform
pos: 22.5,-8.5
parent: 2
- - uid: 5804
- components:
- - type: Transform
- pos: 15.5,-12.5
- parent: 2
- uid: 5805
components:
- type: Transform
@@ -24219,11 +23896,6 @@ entities:
- type: Transform
pos: 16.5,-10.5
parent: 2
- - uid: 5842
- components:
- - type: Transform
- pos: 16.5,-12.5
- parent: 2
- uid: 5844
components:
- type: Transform
@@ -31689,6 +31361,41 @@ entities:
- type: Transform
pos: 14.5,-3.5
parent: 2
+ - uid: 8377
+ components:
+ - type: Transform
+ pos: 6.5,-16.5
+ parent: 2
+ - uid: 8378
+ components:
+ - type: Transform
+ pos: 5.5,-16.5
+ parent: 2
+ - uid: 8379
+ components:
+ - type: Transform
+ pos: 11.5,-16.5
+ parent: 2
+ - uid: 8380
+ components:
+ - type: Transform
+ pos: 10.5,-16.5
+ parent: 2
+ - uid: 8381
+ components:
+ - type: Transform
+ pos: 8.5,-19.5
+ parent: 2
+ - uid: 8382
+ components:
+ - type: Transform
+ pos: 7.5,-19.5
+ parent: 2
+ - uid: 8383
+ components:
+ - type: Transform
+ pos: 6.5,-19.5
+ parent: 2
- uid: 9176
components:
- type: Transform
@@ -94632,6 +94339,24 @@ entities:
- type: Transform
pos: 85.5,30.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
- proto: CP14Bucket
entities:
- uid: 692
@@ -95080,6 +94805,7 @@ entities:
- type: Transform
pos: -36.5,25.5
parent: 2
+ - type: StepTriggerActive
- uid: 11453
components:
- type: Transform
@@ -95145,6 +94871,7 @@ entities:
- type: Transform
pos: -35.5,26.5
parent: 2
+ - type: StepTriggerActive
- uid: 11516
components:
- type: Transform
@@ -95175,6 +94902,7 @@ entities:
- type: Transform
pos: -35.5,25.5
parent: 2
+ - type: StepTriggerActive
- uid: 11538
components:
- type: Transform
@@ -95255,6 +94983,7 @@ entities:
- type: Transform
pos: -36.5,26.5
parent: 2
+ - type: StepTriggerActive
- proto: CP14Cloth1
entities:
- uid: 8135
@@ -95280,6 +95009,26 @@ entities:
parent: 9086
- type: Physics
canCollide: False
+- proto: CP14ClothingCloakGuardBlue
+ entities:
+ - uid: 8369
+ components:
+ - type: Transform
+ parent: 8368
+ - type: Physics
+ canCollide: False
+ - uid: 8372
+ components:
+ - type: Transform
+ parent: 8371
+ - type: Physics
+ canCollide: False
+ - uid: 8375
+ components:
+ - type: Transform
+ parent: 8374
+ - type: Physics
+ canCollide: False
- proto: CP14ClothingEyesAlchemyGlasses
entities:
- uid: 23403
@@ -95312,6 +95061,15 @@ entities:
parent: 9086
- type: Physics
canCollide: False
+- proto: CP14ClothingHeadBascinet
+ entities:
+ - uid: 5157
+ components:
+ - type: Transform
+ parent: 5791
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: CP14ClothingHeadBeretMercenary
entities:
- uid: 4422
@@ -95503,44 +95261,6 @@ entities:
- type: Transform
pos: -18.5,-7.5
parent: 2
-- proto: CP14CrateCoffin
- entities:
- - uid: 2697
- components:
- - type: Transform
- pos: -7.5,-30.5
- parent: 2
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 2699
- - 3340
- - 3372
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 4050
- components:
- - type: Transform
- pos: -7.5,-29.5
- parent: 2
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 4127
- - 4154
- - 4175
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: CP14CrystalElementalDarknessBig
entities:
- uid: 526
@@ -95549,12 +95269,6 @@ entities:
rot: 3.141592653589793 rad
pos: -52.513706,-31.587868
parent: 2
- - uid: 4025
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.4767203,-17.70248
- parent: 2
- uid: 4750
components:
- type: Transform
@@ -95829,14 +95543,6 @@ entities:
rot: 3.141592653589793 rad
pos: -70.899994,32.127666
parent: 2
-- proto: CP14EnergyCrystalMedium
- entities:
- - uid: 17105
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.284084,-16.200495
- parent: 2
- proto: CP14EnergyCrystalMediumEmpty
entities:
- uid: 8969
@@ -95853,11 +95559,17 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
- - uid: 13001
+- proto: CP14EnergyCrystalSmall
+ entities:
+ - uid: 922
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.422703,-16.362125
+ pos: 52.197514,-16.246778
+ parent: 2
+ - uid: 924
+ components:
+ - type: Transform
+ pos: 52.416264,-16.199903
parent: 2
- proto: CP14EnergyCrystalSmallEmpty
entities:
@@ -95903,6 +95615,19 @@ entities:
- type: Transform
pos: -0.5,-12.5
parent: 2
+- proto: CP14FenceIronGrilleGateGuard
+ entities:
+ - uid: 945
+ components:
+ - type: Transform
+ pos: 14.5,-16.5
+ parent: 2
+ - uid: 946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,-16.5
+ parent: 2
- proto: CP14FenceIronGrilleStraight
entities:
- uid: 15
@@ -95997,12 +95722,6 @@ entities:
- type: Transform
pos: -1.5,-12.5
parent: 2
- - uid: 8167
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-15.5
- parent: 2
- uid: 23474
components:
- type: Transform
@@ -96023,12 +95742,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -12.5,-29.5
parent: 2
- - uid: 4026
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-31.5
- parent: 2
- uid: 4490
components:
- type: Transform
@@ -99734,27 +99447,11 @@ entities:
parent: 2
- proto: CP14HeadSkeleton
entities:
- - uid: 4127
- components:
- - type: Transform
- parent: 4050
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 18696
components:
- type: Transform
pos: 36.87656,39.29631
parent: 2
-- proto: CP14HeadZombie
- entities:
- - uid: 3372
- components:
- - type: Transform
- parent: 2697
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: CP14Inkwell
entities:
- uid: 4020
@@ -99883,12 +99580,6 @@ entities:
- type: Transform
pos: -51.5,-76.5
parent: 2
- - uid: 4338
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-16.5
- parent: 2
- uid: 11330
components:
- type: Transform
@@ -99901,20 +99592,54 @@ entities:
rot: 3.141592653589793 rad
pos: 41.5,-17.5
parent: 2
-- proto: CP14IronDoorWindowedMirrored
+- proto: CP14IronDoorWindowedGuardEntrance
entities:
- - uid: 8141
+ - uid: 3399
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-17.5
parent: 2
+ - uid: 4109
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-17.5
+ parent: 2
+- proto: CP14IronDoorWindowedMirrored
+ entities:
- uid: 11391
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 50.5,-14.5
parent: 2
+- proto: CP14IronDoorWindowedMirroredGuardEntrance
+ entities:
+ - uid: 4183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-18.5
+ parent: 2
+ - uid: 5129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-18.5
+ parent: 2
+- proto: CP14JewelrySapphire
+ entities:
+ - uid: 8386
+ components:
+ - type: Transform
+ pos: -36.558018,25.937458
+ parent: 2
+ - uid: 8387
+ components:
+ - type: Transform
+ pos: -36.058018,25.937458
+ parent: 2
- proto: CP14LargeWoodenCrate
entities:
- uid: 1187
@@ -100331,6 +100056,29 @@ entities:
rot: -1.5707963267948966 rad
pos: 78.04069,28.695343
parent: 2
+- proto: CP14ModularBladeIronAxe
+ entities:
+ - uid: 5132
+ components:
+ - type: Transform
+ parent: 5791
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 5136
+ components:
+ - type: Transform
+ parent: 5791
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 5142
+ components:
+ - type: Transform
+ parent: 5791
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: CP14ModularBladeIronDagger
entities:
- uid: 8260
@@ -100355,6 +100103,13 @@ entities:
rot: -1.5707963267948966 rad
pos: 78.686516,29.049511
parent: 2
+- proto: CP14ModularInlayQuartzHealing
+ entities:
+ - uid: 5220
+ components:
+ - type: Transform
+ pos: -52.349045,-71.34594
+ parent: 2
- proto: CP14ModularIronDagger
entities:
- uid: 702
@@ -100582,6 +100337,13 @@ entities:
- type: Transform
pos: 72.233284,40.61485
parent: 2
+- proto: CP14Passport
+ entities:
+ - uid: 8385
+ components:
+ - type: Transform
+ pos: 32.850803,-9.185882
+ parent: 2
- proto: CP14PenFeather
entities:
- uid: 4044
@@ -100693,24 +100455,6 @@ entities:
- type: Transform
pos: 36.9571,38.752686
parent: 2
-- proto: CP14RightLegSkeleton
- entities:
- - uid: 4154
- components:
- - type: Transform
- parent: 4050
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: CP14RightLegZombie
- entities:
- - uid: 2699
- components:
- - type: Transform
- parent: 2697
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: CP14RockBig
entities:
- uid: 475
@@ -102016,6 +101760,166 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 5176
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5180
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5181
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5182
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5196
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5198
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5200
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5201
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5215
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5216
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5217
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5218
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5219
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 8263
components:
- type: Transform
@@ -102432,286 +102336,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 8742
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,7.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8743
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8744
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8745
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8746
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8747
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,7.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8748
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8749
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8750
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8751
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8752
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,7.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8753
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8754
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8755
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8756
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8757
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,7.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8758
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8759
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8760
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8761
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8762
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,7.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8763
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8764
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8765
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8766
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8767
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,7.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8768
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8769
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8770
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8771
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8772
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,7.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8773
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,6.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8774
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,5.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8775
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,4.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8776
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,3.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 9381
components:
- type: Transform
@@ -106551,31 +106175,11 @@ entities:
fixtures: {}
- proto: CP14RoofWooden
entities:
- - uid: 2547
+ - uid: 1746
components:
- type: Transform
- pos: -7.5,-31.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 2619
- components:
- - type: Transform
- pos: -9.5,-28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 3399
- components:
- - type: Transform
- pos: -10.5,-30.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 3400
- components:
- - type: Transform
- pos: -10.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,7.5
parent: 2
- type: Fixtures
fixtures: {}
@@ -106627,17 +106231,235 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 3943
+ - uid: 4249
components:
- type: Transform
- pos: -10.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,6.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 3970
+ - uid: 4257
components:
- type: Transform
- pos: -10.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4264
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4272
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4278
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4279
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4285
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4362
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4691
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4722
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4725
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4730
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4848
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4862
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4922
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,3.5
parent: 2
- type: Fixtures
fixtures: {}
@@ -106649,6 +106471,14 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 5028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 5036
components:
- type: Transform
@@ -106657,87 +106487,35 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 8161
+ - uid: 5037
components:
- type: Transform
- pos: -9.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,6.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 8162
+ - uid: 5038
components:
- type: Transform
- pos: -9.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,5.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 8164
+ - uid: 5052
components:
- type: Transform
- pos: -9.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,4.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 8165
+ - uid: 5175
components:
- type: Transform
- pos: -8.5,-32.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8166
- components:
- - type: Transform
- pos: -8.5,-31.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8175
- components:
- - type: Transform
- pos: -7.5,-28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8176
- components:
- - type: Transform
- pos: -8.5,-28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8177
- components:
- - type: Transform
- pos: -7.5,-29.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8178
- components:
- - type: Transform
- pos: -7.5,-30.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8188
- components:
- - type: Transform
- pos: -7.5,-32.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8189
- components:
- - type: Transform
- pos: -8.5,-30.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8190
- components:
- - type: Transform
- pos: -8.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,3.5
parent: 2
- type: Fixtures
fixtures: {}
@@ -106941,55 +106719,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 8345
- components:
- - type: Transform
- pos: -6.5,-32.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8347
- components:
- - type: Transform
- pos: -9.5,-32.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8348
- components:
- - type: Transform
- pos: -10.5,-28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8351
- components:
- - type: Transform
- pos: -6.5,-31.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8352
- components:
- - type: Transform
- pos: -6.5,-30.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8353
- components:
- - type: Transform
- pos: -6.5,-29.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8354
- components:
- - type: Transform
- pos: -6.5,-28.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 8389
components:
- type: Transform
@@ -108398,166 +108127,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 8570
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8571
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8572
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8573
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8574
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8575
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8576
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8577
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8578
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8579
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8580
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8581
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8582
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8583
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8584
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8585
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8586
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8587
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8588
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-0.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8589
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-1.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 8590
components:
- type: Transform
@@ -110334,6 +109903,12 @@ entities:
- type: Transform
pos: 17.5,26.5
parent: 2
+ - uid: 1722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-12.5
+ parent: 2
- uid: 2663
components:
- type: Transform
@@ -110361,11 +109936,6 @@ entities:
parent: 2
- proto: CP14SpawnerDemiplaneLootT1
entities:
- - uid: 679
- components:
- - type: Transform
- pos: 2.5,-17.5
- parent: 2
- uid: 2255
components:
- type: Transform
@@ -110417,13 +109987,6 @@ entities:
rot: 3.141592653589793 rad
pos: 110.5,65.5
parent: 2
-- proto: CP14SpawnMobBoar
- entities:
- - uid: 1746
- components:
- - type: Transform
- pos: -13.5,-66.5
- parent: 2
- proto: CP14SpawnMobDinoSmallHydra
entities:
- uid: 4925
@@ -110457,11 +110020,6 @@ entities:
parent: 2
- proto: CP14SpawnMobDinoYumkaraptor
entities:
- - uid: 20391
- components:
- - type: Transform
- pos: 29.5,-28.5
- parent: 2
- uid: 20423
components:
- type: Transform
@@ -110533,6 +110091,16 @@ entities:
parent: 2
- proto: CP14SpawnMobUndeadZombieRandom
entities:
+ - uid: 5707
+ components:
+ - type: Transform
+ pos: 71.5,23.5
+ parent: 2
+ - uid: 5793
+ components:
+ - type: Transform
+ pos: 51.5,-17.5
+ parent: 2
- uid: 8938
components:
- type: Transform
@@ -110583,11 +110151,6 @@ entities:
- type: Transform
pos: 69.5,26.5
parent: 2
- - uid: 9055
- components:
- - type: Transform
- pos: 70.5,22.5
- parent: 2
- uid: 9057
components:
- type: Transform
@@ -110703,24 +110266,19 @@ entities:
- type: Transform
pos: 56.5,55.5
parent: 2
-- proto: CP14SpellScrollEarthWall
+- proto: CP14SpellScrollDemiplaneInfiltration
entities:
- - uid: 9330
+ - uid: 5562
components:
- type: Transform
- pos: 71.282234,40.40937
+ pos: 71.28023,40.062893
parent: 2
- - uid: 9379
- components:
- - type: Transform
- pos: 71.375984,40.362495
- parent: 2
-- proto: CP14SpellScrollFireball
+- proto: CP14SpellScrollFreeze
entities:
- - uid: 9329
+ - uid: 5694
components:
- type: Transform
- pos: 71.313484,39.862495
+ pos: 71.7646,40.500393
parent: 2
- proto: CP14SpellScrollIceShards
entities:
@@ -110729,19 +110287,36 @@ entities:
- type: Transform
pos: 35.97446,55.636757
parent: 2
-- proto: CP14SpellScrollManaGift
+- proto: CP14SpellScrollMonolithWarp
entities:
- - uid: 9377
+ - uid: 5680
components:
- type: Transform
- pos: 71.782234,40.393745
+ pos: 71.29585,39.906643
+ parent: 2
+ - uid: 8384
+ components:
+ - type: Transform
+ pos: 1.5003786,-13.27071
+ parent: 2
+- proto: CP14SpellScrollResurrection
+ entities:
+ - uid: 5671
+ components:
+ - type: Transform
+ pos: 71.73335,39.969143
+ parent: 2
+ - uid: 8376
+ components:
+ - type: Transform
+ pos: 71.73335,39.859768
parent: 2
- proto: CP14SpellScrollShadowStep
entities:
- - uid: 9380
+ - uid: 5222
components:
- type: Transform
- pos: 71.76661,39.893745
+ pos: 71.37398,40.562893
parent: 2
- proto: CP14SteelBeerMug
entities:
@@ -110826,11 +110401,6 @@ entities:
- type: Transform
pos: 1.5,-13.5
parent: 2
- - uid: 2660
- components:
- - type: Transform
- pos: 2.5,-17.5
- parent: 2
- uid: 3191
components:
- type: Transform
@@ -110858,11 +110428,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -20.5,-13.5
parent: 2
- - uid: 3833
- components:
- - type: Transform
- pos: -7.5,-31.5
- parent: 2
- uid: 4120
components:
- type: Transform
@@ -110875,16 +110440,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -11.5,-10.5
parent: 2
- - uid: 4183
- components:
- - type: Transform
- pos: -9.5,-31.5
- parent: 2
- - uid: 4186
- components:
- - type: Transform
- pos: -8.5,-31.5
- parent: 2
- uid: 4204
components:
- type: Transform
@@ -111134,27 +110689,11 @@ entities:
parent: 2
- proto: CP14TorsoSkeleton
entities:
- - uid: 4175
- components:
- - type: Transform
- parent: 4050
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- uid: 18685
components:
- type: Transform
pos: 36.87656,39.215775
parent: 2
-- proto: CP14TorsoZombie
- entities:
- - uid: 3340
- components:
- - type: Transform
- parent: 2697
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: CP14VialSmall
entities:
- uid: 9524
@@ -111822,28 +111361,27 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 8174
- components:
- - type: Transform
- pos: -8.5,-15.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- proto: CP14WallmountLamp
entities:
- - uid: 5037
+ - uid: 5804
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,-18.5
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 5052
+ - uid: 5842
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-16.5
+ pos: 14.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 8141
+ components:
+ - type: Transform
+ pos: 17.5,-14.5
parent: 2
- type: Fixtures
fixtures: {}
@@ -112040,28 +111578,6 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
- - uid: 9426
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-18.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9550
- components:
- - type: Transform
- pos: 17.5,-14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 9551
- components:
- - type: Transform
- pos: 14.5,-14.5
- parent: 2
- - type: Fixtures
- fixtures: {}
- uid: 11568
components:
- type: Transform
@@ -112177,6 +111693,13 @@ entities:
parent: 2
- type: Fixtures
fixtures: {}
+ - uid: 4338
+ components:
+ - type: Transform
+ pos: 8.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
- uid: 4728
components:
- type: Transform
@@ -112221,10 +111744,20 @@ entities:
- type: Transform
pos: -3.5,-7.5
parent: 2
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 6.5,-21.5
+ parent: 2
+ - uid: 653
+ components:
+ - type: Transform
+ pos: 6.5,-20.5
+ parent: 2
- uid: 654
components:
- type: Transform
- pos: 4.5,-19.5
+ pos: 17.5,-12.5
parent: 2
- uid: 658
components:
@@ -112234,7 +111767,7 @@ entities:
- uid: 659
components:
- type: Transform
- pos: 4.5,-18.5
+ pos: 20.5,-13.5
parent: 2
- uid: 662
components:
@@ -112251,6 +111784,11 @@ entities:
- type: Transform
pos: 2.5,-10.5
parent: 2
+ - uid: 679
+ components:
+ - type: Transform
+ pos: 20.5,-14.5
+ parent: 2
- uid: 686
components:
- type: Transform
@@ -112269,7 +111807,7 @@ entities:
- uid: 717
components:
- type: Transform
- pos: 3.5,-19.5
+ pos: 18.5,-12.5
parent: 2
- uid: 718
components:
@@ -112299,12 +111837,12 @@ entities:
- uid: 747
components:
- type: Transform
- pos: 3.5,-17.5
+ pos: 20.5,-12.5
parent: 2
- uid: 752
components:
- type: Transform
- pos: 3.5,-16.5
+ pos: 14.5,-12.5
parent: 2
- uid: 766
components:
@@ -112314,7 +111852,7 @@ entities:
- uid: 769
components:
- type: Transform
- pos: 2.5,-18.5
+ pos: 12.5,-12.5
parent: 2
- uid: 774
components:
@@ -112329,7 +111867,7 @@ entities:
- uid: 788
components:
- type: Transform
- pos: 3.5,-18.5
+ pos: 12.5,-13.5
parent: 2
- uid: 813
components:
@@ -112346,10 +111884,15 @@ entities:
- type: Transform
pos: -3.5,-10.5
parent: 2
+ - uid: 842
+ components:
+ - type: Transform
+ pos: 12.5,-14.5
+ parent: 2
- uid: 851
components:
- type: Transform
- pos: -5.5,-10.5
+ pos: 9.5,-21.5
parent: 2
- uid: 857
components:
@@ -112364,7 +111907,7 @@ entities:
- uid: 892
components:
- type: Transform
- pos: -6.5,-10.5
+ pos: 5.5,-20.5
parent: 2
- uid: 895
components:
@@ -112386,16 +111929,56 @@ entities:
- type: Transform
pos: 3.5,-11.5
parent: 2
+ - uid: 965
+ components:
+ - type: Transform
+ pos: 8.5,-21.5
+ parent: 2
+ - uid: 966
+ components:
+ - type: Transform
+ pos: 4.5,-21.5
+ parent: 2
+ - uid: 975
+ components:
+ - type: Transform
+ pos: 7.5,-21.5
+ parent: 2
+ - uid: 986
+ components:
+ - type: Transform
+ pos: 13.5,-12.5
+ parent: 2
- uid: 989
components:
- type: Transform
pos: 12.5,-39.5
parent: 2
+ - uid: 1003
+ components:
+ - type: Transform
+ pos: -5.5,-10.5
+ parent: 2
+ - uid: 1028
+ components:
+ - type: Transform
+ pos: 6.5,-14.5
+ parent: 2
- uid: 1030
components:
- type: Transform
pos: -2.5,-21.5
parent: 2
+ - uid: 1038
+ components:
+ - type: Transform
+ pos: 6.5,-15.5
+ parent: 2
+ - uid: 1039
+ components:
+ - type: Transform
+ pos: 7.5,-14.5
+ parent: 2
- uid: 1230
components:
- type: Transform
@@ -112406,6 +111989,11 @@ entities:
- type: Transform
pos: 14.5,-42.5
parent: 2
+ - uid: 1336
+ components:
+ - type: Transform
+ pos: -6.5,-11.5
+ parent: 2
- uid: 1448
components:
- type: Transform
@@ -112426,6 +112014,11 @@ entities:
- type: Transform
pos: 7.5,-38.5
parent: 2
+ - uid: 1542
+ components:
+ - type: Transform
+ pos: -6.5,-10.5
+ parent: 2
- uid: 1660
components:
- type: Transform
@@ -112441,6 +112034,11 @@ entities:
- type: Transform
pos: 6.5,-40.5
parent: 2
+ - uid: 1687
+ components:
+ - type: Transform
+ pos: -5.5,-11.5
+ parent: 2
- uid: 1704
components:
- type: Transform
@@ -112461,6 +112059,11 @@ entities:
- type: Transform
pos: 14.5,-48.5
parent: 2
+ - uid: 1737
+ components:
+ - type: Transform
+ pos: 14.5,-20.5
+ parent: 2
- uid: 1739
components:
- type: Transform
@@ -112621,6 +112224,11 @@ entities:
- type: Transform
pos: 65.5,25.5
parent: 2
+ - uid: 2472
+ components:
+ - type: Transform
+ pos: 17.5,-20.5
+ parent: 2
- uid: 2487
components:
- type: Transform
@@ -112676,11 +112284,21 @@ entities:
- type: Transform
pos: -13.5,-14.5
parent: 2
+ - uid: 2547
+ components:
+ - type: Transform
+ pos: 15.5,-20.5
+ parent: 2
- uid: 2552
components:
- type: Transform
pos: -7.5,-22.5
parent: 2
+ - uid: 2553
+ components:
+ - type: Transform
+ pos: 16.5,-20.5
+ parent: 2
- uid: 2556
components:
- type: Transform
@@ -112716,6 +112334,11 @@ entities:
- type: Transform
pos: -1.5,-21.5
parent: 2
+ - uid: 2568
+ components:
+ - type: Transform
+ pos: 21.5,-18.5
+ parent: 2
- uid: 2575
components:
- type: Transform
@@ -112771,6 +112394,11 @@ entities:
- type: Transform
pos: -7.5,-21.5
parent: 2
+ - uid: 2619
+ components:
+ - type: Transform
+ pos: 21.5,-19.5
+ parent: 2
- uid: 2622
components:
- type: Transform
@@ -112816,6 +112444,11 @@ entities:
- type: Transform
pos: 3.5,-13.5
parent: 2
+ - uid: 2660
+ components:
+ - type: Transform
+ pos: 20.5,-20.5
+ parent: 2
- uid: 2661
components:
- type: Transform
@@ -112826,15 +112459,20 @@ entities:
- type: Transform
pos: -7.5,-11.5
parent: 2
+ - uid: 2667
+ components:
+ - type: Transform
+ pos: 21.5,-16.5
+ parent: 2
- uid: 2680
components:
- type: Transform
- pos: 4.5,-17.5
+ pos: 21.5,-17.5
parent: 2
- uid: 2683
components:
- type: Transform
- pos: 4.5,-16.5
+ pos: 20.5,-15.5
parent: 2
- uid: 2685
components:
@@ -112846,11 +112484,21 @@ entities:
- type: Transform
pos: 65.5,24.5
parent: 2
+ - uid: 2697
+ components:
+ - type: Transform
+ pos: 19.5,-20.5
+ parent: 2
- uid: 2698
components:
- type: Transform
pos: -12.5,-12.5
parent: 2
+ - uid: 2699
+ components:
+ - type: Transform
+ pos: 21.5,-15.5
+ parent: 2
- uid: 2703
components:
- type: Transform
@@ -113221,6 +112869,21 @@ entities:
- type: Transform
pos: 8.5,-38.5
parent: 2
+ - uid: 3340
+ components:
+ - type: Transform
+ pos: 5.5,-21.5
+ parent: 2
+ - uid: 3372
+ components:
+ - type: Transform
+ pos: 5.5,-14.5
+ parent: 2
+ - uid: 3400
+ components:
+ - type: Transform
+ pos: 7.5,-15.5
+ parent: 2
- uid: 3430
components:
- type: Transform
@@ -113231,6 +112894,11 @@ entities:
- type: Transform
pos: 10.5,-49.5
parent: 2
+ - uid: 3455
+ components:
+ - type: Transform
+ pos: 10.5,-20.5
+ parent: 2
- uid: 3481
components:
- type: Transform
@@ -113241,6 +112909,16 @@ entities:
- type: Transform
pos: 10.5,-39.5
parent: 2
+ - uid: 3564
+ components:
+ - type: Transform
+ pos: 5.5,-15.5
+ parent: 2
+ - uid: 3565
+ components:
+ - type: Transform
+ pos: 10.5,-19.5
+ parent: 2
- uid: 3598
components:
- type: Transform
@@ -113296,11 +112974,36 @@ entities:
- type: Transform
pos: -4.5,-10.5
parent: 2
+ - uid: 3833
+ components:
+ - type: Transform
+ pos: 9.5,-20.5
+ parent: 2
- uid: 3942
components:
- type: Transform
pos: -2.5,-7.5
parent: 2
+ - uid: 3943
+ components:
+ - type: Transform
+ pos: 4.5,-20.5
+ parent: 2
+ - uid: 3970
+ components:
+ - type: Transform
+ pos: 5.5,-19.5
+ parent: 2
+ - uid: 4025
+ components:
+ - type: Transform
+ pos: 8.5,-20.5
+ parent: 2
+ - uid: 4026
+ components:
+ - type: Transform
+ pos: 8.5,-15.5
+ parent: 2
- uid: 4045
components:
- type: Transform
@@ -113316,6 +113019,26 @@ entities:
- type: Transform
pos: -1.5,-7.5
parent: 2
+ - uid: 4127
+ components:
+ - type: Transform
+ pos: 13.5,-20.5
+ parent: 2
+ - uid: 4154
+ components:
+ - type: Transform
+ pos: 18.5,-20.5
+ parent: 2
+ - uid: 4187
+ components:
+ - type: Transform
+ pos: 9.5,-19.5
+ parent: 2
+ - uid: 4196
+ components:
+ - type: Transform
+ pos: 7.5,-16.5
+ parent: 2
- uid: 4203
components:
- type: Transform
@@ -113326,16 +113049,86 @@ entities:
- type: Transform
pos: -0.5,-7.5
parent: 2
+ - uid: 4630
+ components:
+ - type: Transform
+ pos: 7.5,-20.5
+ parent: 2
+ - uid: 4631
+ components:
+ - type: Transform
+ pos: 9.5,-16.5
+ parent: 2
+ - uid: 4635
+ components:
+ - type: Transform
+ pos: 9.5,-15.5
+ parent: 2
+ - uid: 4636
+ components:
+ - type: Transform
+ pos: 11.5,-20.5
+ parent: 2
+ - uid: 4644
+ components:
+ - type: Transform
+ pos: 10.5,-15.5
+ parent: 2
+ - uid: 4645
+ components:
+ - type: Transform
+ pos: 12.5,-16.5
+ parent: 2
+ - uid: 4648
+ components:
+ - type: Transform
+ pos: 11.5,-15.5
+ parent: 2
+ - uid: 4660
+ components:
+ - type: Transform
+ pos: 12.5,-19.5
+ parent: 2
+ - uid: 4661
+ components:
+ - type: Transform
+ pos: 12.5,-15.5
+ parent: 2
+ - uid: 4672
+ components:
+ - type: Transform
+ pos: 12.5,-20.5
+ parent: 2
+ - uid: 4714
+ components:
+ - type: Transform
+ pos: 11.5,-14.5
+ parent: 2
- uid: 4738
components:
- type: Transform
pos: -3.5,-8.5
parent: 2
+ - uid: 4769
+ components:
+ - type: Transform
+ pos: 10.5,-14.5
+ parent: 2
- uid: 4780
components:
- type: Transform
pos: 3.5,-15.5
parent: 2
+ - uid: 4791
+ components:
+ - type: Transform
+ pos: 19.5,-12.5
+ parent: 2
+ - uid: 4841
+ components:
+ - type: Transform
+ pos: 9.5,-14.5
+ parent: 2
- uid: 4852
components:
- type: Transform
@@ -113346,6 +113139,21 @@ entities:
- type: Transform
pos: 2.5,-8.5
parent: 2
+ - uid: 4949
+ components:
+ - type: Transform
+ pos: 15.5,-12.5
+ parent: 2
+ - uid: 4984
+ components:
+ - type: Transform
+ pos: 16.5,-12.5
+ parent: 2
+ - uid: 5126
+ components:
+ - type: Transform
+ pos: 21.5,-20.5
+ parent: 2
- uid: 11567
components:
- type: Transform
@@ -114068,6 +113876,11 @@ entities:
- type: Transform
pos: -7.5,-13.5
parent: 2
+ - uid: 4050
+ components:
+ - type: Transform
+ pos: 11.5,-19.5
+ parent: 2
- uid: 4155
components:
- type: Transform
@@ -114088,6 +113901,16 @@ entities:
- type: Transform
pos: -2.5,-12.5
parent: 2
+ - uid: 4175
+ components:
+ - type: Transform
+ pos: 20.5,-19.5
+ parent: 2
+ - uid: 4186
+ components:
+ - type: Transform
+ pos: 8.5,-16.5
+ parent: 2
- uid: 4266
components:
- type: Transform
@@ -114123,16 +113946,6 @@ entities:
- type: Transform
pos: 13.5,-13.5
parent: 2
- - uid: 4644
- components:
- - type: Transform
- pos: 20.5,-19.5
- parent: 2
- - uid: 4645
- components:
- - type: Transform
- pos: 13.5,-17.5
- parent: 2
- uid: 4646
components:
- type: Transform
@@ -114143,116 +113956,11 @@ entities:
- type: Transform
pos: 20.5,-17.5
parent: 2
- - uid: 4648
- components:
- - type: Transform
- pos: 13.5,-18.5
- parent: 2
- uid: 4662
components:
- type: Transform
pos: -6.5,-13.5
parent: 2
- - uid: 4667
- components:
- - type: Transform
- pos: -2.5,7.5
- parent: 2
- - uid: 4680
- components:
- - type: Transform
- pos: -0.5,7.5
- parent: 2
- - uid: 4691
- components:
- - type: Transform
- pos: 1.5,4.5
- parent: 2
- - uid: 4722
- components:
- - type: Transform
- pos: 0.5,7.5
- parent: 2
- - uid: 4723
- components:
- - type: Transform
- pos: 1.5,3.5
- parent: 2
- - uid: 4724
- components:
- - type: Transform
- pos: -2.5,3.5
- parent: 2
- - uid: 4725
- components:
- - type: Transform
- pos: -0.5,3.5
- parent: 2
- - uid: 4730
- components:
- - type: Transform
- pos: 1.5,5.5
- parent: 2
- - uid: 4744
- components:
- - type: Transform
- pos: -3.5,3.5
- parent: 2
- - uid: 4811
- components:
- - type: Transform
- pos: 0.5,3.5
- parent: 2
- - uid: 4845
- components:
- - type: Transform
- pos: -1.5,7.5
- parent: 2
- - uid: 4848
- components:
- - type: Transform
- pos: -3.5,7.5
- parent: 2
- - uid: 4862
- components:
- - type: Transform
- pos: -4.5,3.5
- parent: 2
- - uid: 4889
- components:
- - type: Transform
- pos: -4.5,7.5
- parent: 2
- - uid: 4896
- components:
- - type: Transform
- pos: -1.5,3.5
- parent: 2
- - uid: 4899
- components:
- - type: Transform
- pos: -4.5,6.5
- parent: 2
- - uid: 4900
- components:
- - type: Transform
- pos: -4.5,5.5
- parent: 2
- - uid: 4912
- components:
- - type: Transform
- pos: -4.5,4.5
- parent: 2
- - uid: 4914
- components:
- - type: Transform
- pos: 1.5,6.5
- parent: 2
- - uid: 4922
- components:
- - type: Transform
- pos: 1.5,7.5
- parent: 2
- uid: 4946
components:
- type: Transform
@@ -114288,6 +113996,31 @@ entities:
- type: Transform
pos: 16.5,-15.5
parent: 2
+ - uid: 5121
+ components:
+ - type: Transform
+ pos: -8.5,-15.5
+ parent: 2
+ - uid: 5122
+ components:
+ - type: Transform
+ pos: 4.5,-19.5
+ parent: 2
+ - uid: 5123
+ components:
+ - type: Transform
+ pos: 3.5,-19.5
+ parent: 2
+ - uid: 5124
+ components:
+ - type: Transform
+ pos: 3.5,-16.5
+ parent: 2
+ - uid: 5125
+ components:
+ - type: Transform
+ pos: 4.5,-16.5
+ parent: 2
- uid: 8169
components:
- type: Transform
@@ -114318,6 +114051,76 @@ entities:
- type: Transform
pos: -8.5,-16.5
parent: 2
+ - uid: 8353
+ components:
+ - type: Transform
+ pos: 21.5,0.5
+ parent: 2
+ - uid: 8354
+ components:
+ - type: Transform
+ pos: 21.5,-0.5
+ parent: 2
+ - uid: 8355
+ components:
+ - type: Transform
+ pos: 21.5,-1.5
+ parent: 2
+ - uid: 8356
+ components:
+ - type: Transform
+ pos: 21.5,1.5
+ parent: 2
+ - uid: 8357
+ components:
+ - type: Transform
+ pos: 22.5,-1.5
+ parent: 2
+ - uid: 8358
+ components:
+ - type: Transform
+ pos: 25.5,-0.5
+ parent: 2
+ - uid: 8359
+ components:
+ - type: Transform
+ pos: 23.5,-1.5
+ parent: 2
+ - uid: 8360
+ components:
+ - type: Transform
+ pos: 23.5,1.5
+ parent: 2
+ - uid: 8361
+ components:
+ - type: Transform
+ pos: 24.5,1.5
+ parent: 2
+ - uid: 8362
+ components:
+ - type: Transform
+ pos: 25.5,0.5
+ parent: 2
+ - uid: 8363
+ components:
+ - type: Transform
+ pos: 24.5,-1.5
+ parent: 2
+ - uid: 8364
+ components:
+ - type: Transform
+ pos: 25.5,-1.5
+ parent: 2
+ - uid: 8366
+ components:
+ - type: Transform
+ pos: 25.5,1.5
+ parent: 2
+ - uid: 8367
+ components:
+ - type: Transform
+ pos: 22.5,1.5
+ parent: 2
- uid: 8865
components:
- type: Transform
@@ -124548,26 +124351,6 @@ entities:
- type: Transform
pos: 11.5,-35.5
parent: 2
- - uid: 922
- components:
- - type: Transform
- pos: 21.5,0.5
- parent: 2
- - uid: 924
- components:
- - type: Transform
- pos: 21.5,-0.5
- parent: 2
- - uid: 945
- components:
- - type: Transform
- pos: 21.5,-1.5
- parent: 2
- - uid: 946
- components:
- - type: Transform
- pos: 21.5,1.5
- parent: 2
- uid: 967
components:
- type: Transform
@@ -124673,21 +124456,11 @@ entities:
- type: Transform
pos: -15.5,-7.5
parent: 2
- - uid: 2553
- components:
- - type: Transform
- pos: -10.5,-32.5
- parent: 2
- uid: 2554
components:
- type: Transform
pos: -15.5,-6.5
parent: 2
- - uid: 2568
- components:
- - type: Transform
- pos: -10.5,-28.5
- parent: 2
- uid: 2577
components:
- type: Transform
@@ -125063,11 +124836,6 @@ entities:
- type: Transform
pos: 7.5,-6.5
parent: 2
- - uid: 4187
- components:
- - type: Transform
- pos: -9.5,-28.5
- parent: 2
- uid: 4190
components:
- type: Transform
@@ -125088,51 +124856,11 @@ entities:
- type: Transform
pos: 6.5,18.5
parent: 2
- - uid: 4249
- components:
- - type: Transform
- pos: 22.5,-1.5
- parent: 2
- - uid: 4257
- components:
- - type: Transform
- pos: 25.5,-0.5
- parent: 2
- uid: 4259
components:
- type: Transform
pos: -14.5,-32.5
parent: 2
- - uid: 4264
- components:
- - type: Transform
- pos: 23.5,-1.5
- parent: 2
- - uid: 4272
- components:
- - type: Transform
- pos: 23.5,1.5
- parent: 2
- - uid: 4278
- components:
- - type: Transform
- pos: 24.5,1.5
- parent: 2
- - uid: 4279
- components:
- - type: Transform
- pos: 25.5,0.5
- parent: 2
- - uid: 4280
- components:
- - type: Transform
- pos: 24.5,-1.5
- parent: 2
- - uid: 4285
- components:
- - type: Transform
- pos: 25.5,-1.5
- parent: 2
- uid: 4312
components:
- type: Transform
@@ -125178,31 +124906,16 @@ entities:
- type: Transform
pos: -11.5,-11.5
parent: 2
- - uid: 4362
- components:
- - type: Transform
- pos: 25.5,1.5
- parent: 2
- uid: 4585
components:
- type: Transform
pos: -13.5,-6.5
parent: 2
- - uid: 4630
- components:
- - type: Transform
- pos: -5.5,-9.5
- parent: 2
- uid: 4634
components:
- type: Transform
pos: -8.5,2.5
parent: 2
- - uid: 4636
- components:
- - type: Transform
- pos: -8.5,-28.5
- parent: 2
- uid: 4637
components:
- type: Transform
@@ -125238,11 +124951,6 @@ entities:
- type: Transform
pos: -12.5,-10.5
parent: 2
- - uid: 4660
- components:
- - type: Transform
- pos: -6.5,-28.5
- parent: 2
- uid: 4670
components:
- type: Transform
@@ -125253,36 +124961,16 @@ entities:
- type: Transform
pos: -5.5,-5.5
parent: 2
- - uid: 4672
- components:
- - type: Transform
- pos: -9.5,-32.5
- parent: 2
- uid: 4678
components:
- type: Transform
pos: -4.5,-6.5
parent: 2
- - uid: 4714
- components:
- - type: Transform
- pos: -8.5,-32.5
- parent: 2
- uid: 4716
components:
- type: Transform
pos: -6.5,-5.5
parent: 2
- - uid: 4769
- components:
- - type: Transform
- pos: -6.5,-9.5
- parent: 2
- - uid: 4841
- components:
- - type: Transform
- pos: -7.5,-32.5
- parent: 2
- uid: 4881
components:
- type: Transform
@@ -125308,20 +124996,15 @@ entities:
- type: Transform
pos: 23.5,15.5
parent: 2
- - uid: 5094
+ - uid: 5130
components:
- type: Transform
- pos: -6.5,-32.5
+ pos: -5.5,-9.5
parent: 2
- - uid: 5101
+ - uid: 5131
components:
- type: Transform
- pos: -7.5,-28.5
- parent: 2
- - uid: 5107
- components:
- - type: Transform
- pos: -6.5,-29.5
+ pos: -6.5,-9.5
parent: 2
- uid: 5138
components:
@@ -125397,11 +125080,6 @@ entities:
layers:
- sprite: _CP14/Structures/Wallpaper/wallpaper_yellow.rsi
state: left
- - uid: 5694
- components:
- - type: Transform
- pos: -6.5,-31.5
- parent: 2
- uid: 5712
components:
- type: Transform
@@ -125466,11 +125144,6 @@ entities:
- type: Transform
pos: 16.5,25.5
parent: 2
- - uid: 5793
- components:
- - type: Transform
- pos: 22.5,1.5
- parent: 2
- uid: 5885
components:
- type: Transform
@@ -125625,13 +125298,108 @@ entities:
- uid: 8146
components:
- type: Transform
- pos: -6.5,-30.5
+ pos: -2.5,7.5
parent: 2
- uid: 8148
components:
- type: Transform
pos: -4.5,-34.5
parent: 2
+ - uid: 8161
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 2
+ - uid: 8162
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 2
+ - uid: 8164
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 2
+ - uid: 8165
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 2
+ - uid: 8166
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 2
+ - uid: 8167
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 2
+ - uid: 8174
+ components:
+ - type: Transform
+ pos: 1.5,5.5
+ parent: 2
+ - uid: 8175
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 2
+ - uid: 8176
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 2
+ - uid: 8177
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 2
+ - uid: 8178
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 2
+ - uid: 8188
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 2
+ - uid: 8189
+ components:
+ - type: Transform
+ pos: -4.5,7.5
+ parent: 2
+ - uid: 8190
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 2
+ - uid: 8345
+ components:
+ - type: Transform
+ pos: -4.5,6.5
+ parent: 2
+ - uid: 8347
+ components:
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 2
+ - uid: 8348
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 2
+ - uid: 8351
+ components:
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 2
+ - uid: 8352
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 2
- uid: 8414
components:
- type: Transform
@@ -125883,29 +125651,83 @@ entities:
- type: Transform
pos: 5.5,-7.5
parent: 2
- - uid: 8874
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 82.5,28.5
- parent: 2
- - uid: 9042
+ - uid: 5221
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 70.5,22.5
parent: 2
- - uid: 9052
+ - uid: 8368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,22.5
+ parent: 2
+ - type: Storage
+ storedItems:
+ 8369:
+ position: 0,0
+ _rotation: South
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 8369
+ - uid: 8370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,22.5
+ parent: 2
+ - uid: 8371
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 73.5,22.5
parent: 2
- - uid: 9155
+ - type: Storage
+ storedItems:
+ 8372:
+ position: 0,0
+ _rotation: South
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 8372
+ - uid: 8373
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,25.5
+ parent: 2
+ - uid: 8374
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 77.5,22.5
+ pos: 82.5,25.5
+ parent: 2
+ - type: Storage
+ storedItems:
+ 8375:
+ position: 0,0
+ _rotation: South
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 8375
+ - uid: 8874
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,28.5
parent: 2
- uid: 9541
components:
@@ -125918,20 +125740,6 @@ entities:
- type: Transform
pos: 81.5,30.5
parent: 2
-- proto: CP14WoodenCabinetAlchemist
- entities:
- - uid: 3564
- components:
- - type: Transform
- pos: -10.5,-29.5
- parent: 2
-- proto: CP14WoodenCabinetBanker
- entities:
- - uid: 5135
- components:
- - type: Transform
- pos: -8.5,-35.5
- parent: 2
- proto: CP14WoodenCabinetBlacksmith
entities:
- uid: 4838
@@ -125945,25 +125753,12 @@ entities:
rot: 3.141592653589793 rad
pos: -10.5,-10.5
parent: 2
-- proto: CP14WoodenCabinetGuard
+- proto: CP14WoodenCabinetMerchant
entities:
- - uid: 9043
+ - uid: 5135
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 82.5,25.5
- parent: 2
- - uid: 9063
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 68.5,25.5
- parent: 2
- - uid: 9154
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 80.5,22.5
+ pos: -8.5,-35.5
parent: 2
- proto: CP14WoodenChest
entities:
@@ -126004,6 +125799,38 @@ entities:
rot: 1.5707963267948966 rad
pos: 22.5,0.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:
+ - 5157
+ - 5142
+ - 5136
+ - 5132
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- uid: 9009
components:
- type: Transform
@@ -126017,11 +125844,6 @@ entities:
parent: 2
- proto: CP14WoodenClosetAlchemyFilled
entities:
- - uid: 3565
- components:
- - type: Transform
- pos: -9.5,-29.5
- parent: 2
- uid: 13267
components:
- type: Transform
diff --git a/Resources/Maps/_CP14/factoria.yml b/Resources/Maps/_CP14/factoria.yml
new file mode 100644
index 0000000000..9f66708d70
--- /dev/null
+++ b/Resources/Maps/_CP14/factoria.yml
@@ -0,0 +1,106231 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 16: CP14FloorBase
+ 11: CP14FloorBirchWoodPlanks
+ 1: CP14FloorBirchWoodPlanksBig
+ 3: CP14FloorBirchWoodPlanksCruciform
+ 21: CP14FloorBirchWoodPlanksStairways
+ 22: CP14FloorDarkWoodPlanks
+ 18: CP14FloorDarkWoodPlanksBig
+ 23: CP14FloorDarkWoodPlanksBroken
+ 19: CP14FloorDarkWoodPlanksCruciform
+ 24: CP14FloorDarkWoodPlanksCruciformBroken
+ 4: CP14FloorDirt
+ 2: CP14FloorFoundation
+ 20: CP14FloorGrass
+ 13: CP14FloorGrassLight
+ 15: CP14FloorGrassTall
+ 28: CP14FloorLucensWoodPlanksBig
+ 9: CP14FloorMarble
+ 5: CP14FloorOakWoodPlanks
+ 8: CP14FloorOakWoodPlanksBig
+ 10: CP14FloorOakWoodPlanksBigBroken
+ 17: CP14FloorOakWoodPlanksBroken
+ 6: CP14FloorOakWoodPlanksCruciform
+ 27: CP14FloorOakWoodPlanksCruciformBroken
+ 25: CP14FloorOakWoodPlanksStairways
+ 12: CP14FloorRedWoodPlanks
+ 7: CP14FloorRedWoodPlanksCruciform
+ 14: CP14FloorSand
+ 52: CP14FloorStonebricks
+ 53: CP14FloorStonebricksSmallCarved1
+ 54: CP14FloorStonebricksSmallCarved2
+ 26: CP14FloorStonebricksSquareCarved
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ name: Map Entity
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
+ - type: CP14CloudShadows
+ - type: CP14MapFloorOccluder
+ - type: MapLight
+ - type: MapAtmosphere
+ space: False
+ mixture:
+ volume: 2500
+ immutable: True
+ temperature: 293.15
+ moles:
+ - 21.82478
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: CP14DayCycle
+ - type: CP14WeatherController
+ entries:
+ - visuals: CP14Mist
+ - visuals: CP14Rain
+ - visuals: CP14Storm
+ - type: CP14MapDamage
+ - type: LoadedMap
+ - type: Parallax
+ parallax: CP14Ocean
+ - uid: 2
+ components:
+ - type: MetaData
+ name: grid
+ - type: Transform
+ parent: 1
+ - type: BecomesStation
+ id: Factoria
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: AQAAAAADAQAAAAADAgAAAAAFFAAAAAAFNAAAAAABNAAAAAAEAgAAAAAFCwAAAAADCwAAAAACCwAAAAAACwAAAAADAgAAAAAKFAAAAAAFDQAAAAACDQAAAAAADQAAAAACAQAAAAABAQAAAAADAgAAAAADDQAAAAACNAAAAAAHNAAAAAAGAgAAAAAMCwAAAAADCwAAAAADCwAAAAABCwAAAAAAAgAAAAAMFAAAAAAEFAAAAAACDQAAAAAADQAAAAAAAgAAAAAAAgAAAAAFAgAAAAALDQAAAAAANAAAAAAENAAAAAAIAgAAAAAFAgAAAAAFAgAAAAALAgAAAAAHAgAAAAAMAgAAAAAEFAAAAAADFAAAAAACFAAAAAACFAAAAAAAAgAAAAALAwAAAAADAgAAAAAJDQAAAAAFNAAAAAAENAAAAAAINAAAAAAABAAAAAAKFAAAAAACFAAAAAADBAAAAAAABAAAAAALBAAAAAADBAAAAAAPBAAAAAAABAAAAAAGAwAAAAADAwAAAAACAgAAAAAMFAAAAAAENAAAAAAFNAAAAAACNAAAAAAGNAAAAAAANAAAAAAGNAAAAAADNAAAAAAFNAAAAAAINAAAAAADNAAAAAAANAAAAAAFNAAAAAAAAgAAAAAIAgAAAAAHAgAAAAAAFAAAAAACFAAAAAABNAAAAAAINAAAAAADNAAAAAAINAAAAAABNAAAAAAFNAAAAAACNAAAAAAINAAAAAAINAAAAAABNAAAAAAINAAAAAAEFAAAAAAADQAAAAACFAAAAAABDQAAAAACFAAAAAAFFAAAAAADNAAAAAADNAAAAAAFNAAAAAACNAAAAAACNAAAAAAGNAAAAAAENAAAAAAENAAAAAAGNAAAAAACNAAAAAAGAgAAAAAGAgAAAAACAgAAAAAFAgAAAAAEBAAAAAAPAgAAAAADAgAAAAAJBgAAAAACAgAAAAACAgAAAAABFAAAAAADNAAAAAAENAAAAAAFNAAAAAAINAAAAAAHNAAAAAAIBQAAAAADBQAAAAACBQAAAAADAgAAAAAFBAAAAAADAgAAAAACBQAAAAABBQAAAAAABQAAAAACAgAAAAABFAAAAAAFNAAAAAAINAAAAAAFNAAAAAAHNAAAAAAHNAAAAAAABQAAAAABBQAAAAACBQAAAAAAAgAAAAACBAAAAAAIAgAAAAAIBQAAAAAABQAAAAAABQAAAAAAAgAAAAAIFAAAAAADNAAAAAABNAAAAAAHNAAAAAAANAAAAAAFNAAAAAAEBQAAAAABBQAAAAACBQAAAAAAAgAAAAAIBAAAAAAAAgAAAAACBQAAAAABBQAAAAACBQAAAAACAgAAAAAHFAAAAAAANAAAAAAHNAAAAAAANAAAAAAINAAAAAAANAAAAAAABQAAAAAABQAAAAABBQAAAAADAgAAAAAKBAAAAAANAgAAAAAGBQAAAAABBQAAAAACBQAAAAABAgAAAAACFAAAAAADNAAAAAAANAAAAAAHNAAAAAACNAAAAAABNAAAAAADBgAAAAAAAgAAAAAEAgAAAAAFAgAAAAAMBAAAAAACAgAAAAAHAgAAAAAEAgAAAAABAgAAAAAHAgAAAAAHBAAAAAAJNAAAAAAINAAAAAAANAAAAAAINAAAAAACNAAAAAAENAAAAAAINAAAAAAENAAAAAAGNAAAAAAENAAAAAACNAAAAAACNAAAAAAFNAAAAAAFNAAAAAAHNAAAAAADNAAAAAAENAAAAAACNAAAAAAGNAAAAAAHNAAAAAACNAAAAAAFNAAAAAAHNAAAAAACNAAAAAAFNAAAAAABNAAAAAABNAAAAAAGNAAAAAAHNAAAAAADNAAAAAADNAAAAAACNAAAAAADNAAAAAAFNAAAAAAHNAAAAAABNAAAAAADNAAAAAAHNAAAAAAHNAAAAAADNAAAAAABNAAAAAAHNAAAAAAHNAAAAAACNAAAAAAHNAAAAAAGNAAAAAACNAAAAAAHNAAAAAAGNAAAAAACNAAAAAAANAAAAAADNAAAAAADNAAAAAAE
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AgAAAAAAAgAAAAADAgAAAAANAgAAAAAADQAAAAAAFAAAAAAANQAAAAAANQAAAAAANQAAAAAAAgAAAAAIAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAALAQAAAAADNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAAgAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAADAgAAAAAJAQAAAAABNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAAgAAAAAGAQAAAAACAwAAAAABAwAAAAABAQAAAAADAgAAAAAEAwAAAAAABQAAAAACAgAAAAANAgAAAAAHAgAAAAAIAgAAAAABAgAAAAACAgAAAAABAgAAAAAFNQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAABAQAAAAADBQAAAAABBQAAAAAABgAAAAAANAAAAAADNAAAAAAINAAAAAABNAAAAAACAgAAAAABNQAAAAAAAgAAAAAJAQAAAAADAQAAAAADAQAAAAAAAQAAAAACAQAAAAADAQAAAAADBQAAAAADBQAAAAABBQAAAAABNAAAAAAHNAAAAAAFNAAAAAAINAAAAAAGAgAAAAALFAAAAAAEAgAAAAAAAgAAAAAIAgAAAAAJAgAAAAAJAgAAAAADAgAAAAANAgAAAAAGAgAAAAABBgAAAAAAAgAAAAAFNAAAAAABNAAAAAAANAAAAAAGNAAAAAACAgAAAAAKDQAAAAAFDQAAAAAEFAAAAAABDQAAAAAAFAAAAAAAFAAAAAAADQAAAAADFAAAAAAEBQAAAAADBQAAAAAAGgAAAAAANAAAAAADNAAAAAAGNAAAAAAFNAAAAAAEAgAAAAAADQAAAAACAgAAAAAMAgAAAAAJAgAAAAACAgAAAAALAgAAAAAKDQAAAAADAgAAAAABBQAAAAABBQAAAAADGgAAAAAAGgAAAAAANgAAAAAANgAAAAAANgAAAAAAAgAAAAAHFAAAAAAFAgAAAAACBQAAAAAABQAAAAABBQAAAAABAgAAAAAHFAAAAAAEAgAAAAAAAgAAAAALBQAAAAADBQAAAAADBQAAAAAAAgAAAAALAgAAAAABAgAAAAAHAgAAAAACDQAAAAABAgAAAAADBQAAAAADBQAAAAADBQAAAAACAgAAAAANFAAAAAABAgAAAAAGNAAAAAAGBQAAAAADBQAAAAAABQAAAAADBgAAAAACFAAAAAAAFAAAAAABFAAAAAADFAAAAAAEAgAAAAAKBQAAAAAABQAAAAAABQAAAAADAgAAAAAEFAAAAAADAgAAAAAKAgAAAAACAgAAAAAJAgAAAAAHAgAAAAALAgAAAAADFAAAAAAEFAAAAAACFAAAAAAFFAAAAAADAgAAAAACBQAAAAACBQAAAAACBQAAAAABAgAAAAAMFAAAAAAAAgAAAAAENAAAAAAENAAAAAAHNAAAAAAHNAAAAAAHNAAAAAAHNAAAAAAGNAAAAAACNAAAAAACNAAAAAAAAgAAAAABAgAAAAAHAgAAAAAFBgAAAAADAgAAAAAJFAAAAAABAgAAAAANNAAAAAABNAAAAAAENAAAAAADNAAAAAADNAAAAAAANAAAAAAHNAAAAAAFNAAAAAAGNAAAAAAINAAAAAAGNAAAAAACNAAAAAACNAAAAAAFNAAAAAAHNAAAAAAENAAAAAAFNAAAAAABNAAAAAACNAAAAAAFNAAAAAAFNAAAAAAFNAAAAAADNAAAAAAHNAAAAAAENAAAAAAINAAAAAABNAAAAAAFNAAAAAAFNAAAAAAENAAAAAAENAAAAAAFNAAAAAAHNAAAAAACNAAAAAAINAAAAAADNAAAAAAHNAAAAAAGNAAAAAAGNAAAAAAANAAAAAAENAAAAAABNAAAAAAHNAAAAAAFNAAAAAAENAAAAAAFNAAAAAADNAAAAAAFNAAAAAAI
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AgAAAAALAgAAAAABAgAAAAACAgAAAAADAgAAAAANAgAAAAAHAgAAAAALBAAAAAABBAAAAAAEBAAAAAAGAgAAAAAIFAAAAAAEFAAAAAAFDQAAAAADDQAAAAABDQAAAAAENAAAAAAANAAAAAAINAAAAAAANAAAAAAHNAAAAAAENAAAAAAINAAAAAAGNQAAAAAANQAAAAAANQAAAAAANQAAAAAAFAAAAAAEFAAAAAAFFAAAAAAABAAAAAANNQAAAAAANAAAAAAFNAAAAAABNAAAAAAINAAAAAAFNAAAAAAFNAAAAAAINAAAAAAHNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAAgAAAAAEAgAAAAAMAgAAAAACAgAAAAADFAAAAAACNAAAAAAFNAAAAAAINQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABQAAAAADBQAAAAABBQAAAAADAgAAAAALFAAAAAABNAAAAAACNAAAAAAGNQAAAAAANQAAAAAANQAAAAAANQAAAAAADQAAAAACDQAAAAACFAAAAAADBAAAAAAMBAAAAAAEBQAAAAABBQAAAAABBQAAAAAAAgAAAAAJFAAAAAABNAAAAAAGNAAAAAAEBAAAAAALBAAAAAABBAAAAAALAgAAAAAKFAAAAAAFFAAAAAADFAAAAAADFAAAAAABFAAAAAAEBQAAAAACBQAAAAADBQAAAAADAgAAAAADFAAAAAAANAAAAAAFNAAAAAADFAAAAAADBAAAAAAHBAAAAAAABAAAAAAGBAAAAAAEDQAAAAAEBAAAAAAPBAAAAAAJBAAAAAAOBgAAAAACAgAAAAAHAgAAAAADAgAAAAAHFAAAAAAFNAAAAAABNAAAAAAAFAAAAAACFAAAAAACBAAAAAAMBAAAAAACBAAAAAAIBAAAAAACBAAAAAALBAAAAAAFBAAAAAAABAAAAAAHBAAAAAAFBAAAAAAEBAAAAAAFFAAAAAADNAAAAAAGNAAAAAABFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAFBAAAAAAMEAAAAAAGBgAAAAAAEAAAAAAHBAAAAAANBAAAAAAMBAAAAAAIBAAAAAAINAAAAAAINAAAAAAANAAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAADFAAAAAAFFAAAAAAFEAAAAAAICAAAAAACEAAAAAAHBAAAAAAHBAAAAAAJBAAAAAAGBAAAAAAMNAAAAAACNAAAAAAAAgAAAAAJAgAAAAAEAgAAAAAKAgAAAAADAgAAAAADAgAAAAAEFAAAAAADEAAAAAALEAAAAAAMEAAAAAALBAAAAAACBAAAAAAIBAAAAAAIBAAAAAAMNAAAAAAHNAAAAAADAgAAAAABDAAAAAADDAAAAAACAgAAAAACDAAAAAACAgAAAAAAFAAAAAADEAAAAAABEAAAAAAIEAAAAAACBAAAAAAFBAAAAAANBAAAAAACBAAAAAAPNAAAAAAFNAAAAAAFAgAAAAACDAAAAAABDAAAAAADDAAAAAACDAAAAAACAgAAAAACFAAAAAAAEAAAAAAFEAAAAAAMEAAAAAAKFAAAAAAFFAAAAAAEDQAAAAAFFAAAAAAFNAAAAAAANAAAAAAGBwAAAAABDAAAAAACDAAAAAAADAAAAAADDAAAAAAAAgAAAAADFAAAAAAEEAAAAAABEAAAAAAGEAAAAAANAgAAAAAHAgAAAAAJAgAAAAADDQAAAAAANAAAAAADNAAAAAAAAgAAAAAEAgAAAAAEAgAAAAABAgAAAAAEAgAAAAAKAgAAAAAGFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAADAQAAAAADAQAAAAADAgAAAAAKFAAAAAACNAAAAAAGNAAAAAADAwAAAAAACwAAAAADCwAAAAACAgAAAAALCwAAAAADAgAAAAAKFAAAAAACFAAAAAACFAAAAAAAFAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AgAAAAAFAgAAAAACAgAAAAADAgAAAAAGNQAAAAAANQAAAAAANQAAAAAAAgAAAAAFBgAAAAACAgAAAAALAgAAAAAKAgAAAAAFAgAAAAANAgAAAAAHAgAAAAALBAAAAAAHNAAAAAAANAAAAAACNAAAAAAINAAAAAAFNAAAAAAFNAAAAAACNAAAAAADNAAAAAABNAAAAAAENAAAAAAFNAAAAAAENAAAAAAFNAAAAAAGNAAAAAADNAAAAAACNAAAAAAGNAAAAAACNAAAAAAGNAAAAAAGNAAAAAAANAAAAAAFNAAAAAACNAAAAAAENAAAAAABNAAAAAAHNAAAAAACNAAAAAAANAAAAAAENAAAAAAINAAAAAAFNAAAAAAINAAAAAABBAAAAAAKNQAAAAAABAAAAAANDQAAAAAADQAAAAAFBAAAAAAMNQAAAAAANQAAAAAANQAAAAAAAgAAAAAGAgAAAAABAgAAAAANAgAAAAAHAgAAAAABAgAAAAALAgAAAAAMDQAAAAAENQAAAAAADQAAAAACDQAAAAACDQAAAAAADQAAAAACNQAAAAAANQAAAAAANQAAAAAABgAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAACCAAAAAACBgAAAAABNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAADQAAAAABNQAAAAAANQAAAAAANQAAAAAABgAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAADCAAAAAABAgAAAAADDQAAAAAFDwAAAAAFDwAAAAAADQAAAAAFNQAAAAAADQAAAAAANQAAAAAANQAAAAAANQAAAAAABgAAAAACCAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAAAAgAAAAAGBAAAAAABBAAAAAANBAAAAAAIBAAAAAAONQAAAAAADQAAAAADNQAAAAAANQAAAAAANQAAAAAAAgAAAAAGAgAAAAABAgAAAAAIAgAAAAABBQAAAAABBQAAAAACAgAAAAADBwAAAAAABwAAAAADBwAAAAAABAAAAAALNQAAAAAABAAAAAACNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABgAAAAADBQAAAAAABQAAAAADBQAAAAADAgAAAAAHBQAAAAAABQAAAAAABwAAAAACBAAAAAADBgAAAAADBAAAAAAINQAAAAAANQAAAAAANQAAAAAAFAAAAAAADQAAAAAAAgAAAAAHBQAAAAADBQAAAAACBQAAAAAAAgAAAAAMBQAAAAADBQAAAAADBwAAAAADBAAAAAAHBQAAAAAABAAAAAAONQAAAAAANQAAAAAANQAAAAAADQAAAAAEFAAAAAABAgAAAAAGAgAAAAAEAgAAAAAFAgAAAAAKAgAAAAAGBwAAAAABBwAAAAACBwAAAAAABgAAAAABBQAAAAACBAAAAAAMNQAAAAAANQAAAAAANQAAAAAAFAAAAAABDQAAAAABFAAAAAAFFAAAAAAADQAAAAAAFAAAAAADBAAAAAAHAgAAAAALAgAAAAAKBgAAAAACBAAAAAADBAAAAAANBAAAAAAPNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAADQAAAAAFBAAAAAADAgAAAAANBQAAAAADBQAAAAABAgAAAAADDQAAAAAFFAAAAAABNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAFAAAAAAFDQAAAAAFAgAAAAAEBQAAAAAABQAAAAACAgAAAAAFFAAAAAAADQAAAAADNQAAAAAANQAAAAAANQAAAAAAAgAAAAAEAgAAAAABAgAAAAALAgAAAAAGAgAAAAADAgAAAAAHAgAAAAAKAgAAAAADBQAAAAABBQAAAAADAgAAAAAKFAAAAAAFDQAAAAABNQAAAAAANQAAAAAANQAAAAAAAgAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAALAQAAAAAA
+ version: 6
+ -2,0:
+ ind: -2,0
+ tiles: AgAAAAAFCQAAAAABCQAAAAAFCQAAAAAAAgAAAAAAFAAAAAAEFAAAAAACFAAAAAACBAAAAAAONAAAAAAINAAAAAAFNAAAAAAENQAAAAAANQAAAAAANQAAAAAANQAAAAAAAgAAAAANAgAAAAALAgAAAAAJAgAAAAAHAgAAAAALFAAAAAAFBAAAAAAJBAAAAAADBAAAAAAENAAAAAABNAAAAAAINAAAAAAEDQAAAAADFAAAAAAENQAAAAAANQAAAAAANAAAAAAANAAAAAAFNAAAAAACNAAAAAAHNAAAAAAFNAAAAAACNAAAAAAINAAAAAAHNAAAAAAANAAAAAAHNAAAAAAFNAAAAAAFDQAAAAABFAAAAAAENQAAAAAANQAAAAAANAAAAAACNAAAAAAFNAAAAAADNAAAAAABNAAAAAAHNAAAAAAENAAAAAAENAAAAAAENAAAAAAANAAAAAAHNAAAAAAHNAAAAAACFAAAAAAEDQAAAAABDQAAAAAFAgAAAAAFNAAAAAAINAAAAAAFNAAAAAAINAAAAAADNAAAAAAANAAAAAAANAAAAAAENAAAAAAHNAAAAAAGNAAAAAAANAAAAAABNAAAAAAAFAAAAAAEFAAAAAABFAAAAAACAgAAAAAMFAAAAAABFAAAAAAEEAAAAAAJEAAAAAALEAAAAAACEAAAAAABEAAAAAAAEAAAAAAFNAAAAAAFNAAAAAAHNAAAAAAFNAAAAAADFAAAAAAFFAAAAAACFAAAAAAEAgAAAAAIAgAAAAAEDQAAAAAFEAAAAAANEAAAAAAEEAAAAAAJEAAAAAAAEAAAAAAFEAAAAAAMNAAAAAACNAAAAAAGNAAAAAAFNAAAAAAIFAAAAAAAFAAAAAAEFAAAAAAEAgAAAAAJAgAAAAABFAAAAAADEAAAAAABCAAAAAADEAAAAAAJEAAAAAALEAAAAAAKEAAAAAAFNAAAAAAHNAAAAAAINAAAAAAFNAAAAAAHFAAAAAAAFAAAAAAAFAAAAAAEAgAAAAAHAgAAAAANDQAAAAABEAAAAAAHEAAAAAAFEAAAAAABEAAAAAACEAAAAAALEAAAAAAMNAAAAAAHNAAAAAAINAAAAAAHNAAAAAADFAAAAAABFAAAAAAAFAAAAAAFAgAAAAALAgAAAAAMFAAAAAAFDQAAAAAADQAAAAACFAAAAAADFAAAAAADFAAAAAAAFAAAAAABNAAAAAAGNAAAAAAANAAAAAAANAAAAAAGFAAAAAAFFAAAAAAEFAAAAAACAgAAAAAKAgAAAAACDQAAAAABAgAAAAAAAgAAAAAKAgAAAAAEAgAAAAACAgAAAAAGAgAAAAALNAAAAAACNAAAAAAANAAAAAACNAAAAAAIFAAAAAAEFAAAAAADFAAAAAADAgAAAAAKAgAAAAAJFAAAAAAAAgAAAAACBgAAAAACAgAAAAANBgAAAAACBgAAAAACAgAAAAAJNAAAAAADNAAAAAABNAAAAAAFNAAAAAAAFAAAAAACFAAAAAADFAAAAAAEAgAAAAAAAgAAAAAFFAAAAAADAgAAAAAIBgAAAAAABgAAAAABBgAAAAAABgAAAAACAgAAAAADNAAAAAAHNAAAAAAHNAAAAAAENAAAAAAHNAAAAAAGNAAAAAAENAAAAAADNAAAAAABAgAAAAADFAAAAAAAAgAAAAABBgAAAAAAAgAAAAAABgAAAAACBgAAAAAABgAAAAABNAAAAAAGNAAAAAAHNAAAAAADNAAAAAAENAAAAAAANAAAAAAENAAAAAAGNAAAAAAHAgAAAAAJFAAAAAAAAgAAAAAMAgAAAAADAgAAAAAKAgAAAAALAgAAAAALAgAAAAAFNAAAAAAINAAAAAAANAAAAAABNAAAAAAHNAAAAAAGNAAAAAADNAAAAAACNAAAAAAEAgAAAAAJFAAAAAAFFAAAAAAFFAAAAAABDQAAAAABDQAAAAAEFAAAAAADFAAAAAABNAAAAAAENAAAAAAHNAAAAAADNAAAAAAINAAAAAAGNAAAAAAFNAAAAAAGNAAAAAAB
+ version: 6
+ -2,-1:
+ ind: -2,-1
+ tiles: AgAAAAAJAgAAAAAICQAAAAAFCQAAAAABCQAAAAAFCQAAAAADCQAAAAAECQAAAAABNAAAAAAENAAAAAAANAAAAAAABAAAAAAPAgAAAAANAgAAAAABCAAAAAACAgAAAAACFAAAAAACAgAAAAADCQAAAAADCQAAAAAFCQAAAAABCQAAAAAFCQAAAAADAgAAAAAJNAAAAAAANAAAAAABNAAAAAAFNAAAAAAANAAAAAABNAAAAAACNAAAAAAGNAAAAAAGAgAAAAANAgAAAAACCQAAAAAAAgAAAAALCQAAAAACCQAAAAABCQAAAAADAgAAAAAMNAAAAAAANAAAAAADNAAAAAABNAAAAAADNAAAAAAFNAAAAAAGNAAAAAAENAAAAAAFAgAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAAAgAAAAANNAAAAAADNAAAAAAENAAAAAAGNAAAAAAGAgAAAAAMAgAAAAADAgAAAAABAgAAAAAHAgAAAAANCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAADAgAAAAAENAAAAAACNAAAAAADNAAAAAAENAAAAAAEAgAAAAAGBQAAAAADBQAAAAADAgAAAAAJAgAAAAAACQAAAAAFCQAAAAACCQAAAAAECQAAAAABCQAAAAAFCQAAAAADAgAAAAAHNAAAAAAHNAAAAAAFNAAAAAAHNAAAAAAEAgAAAAAMBQAAAAABBQAAAAABBQAAAAADAgAAAAAEAgAAAAAHCQAAAAAEAgAAAAACAgAAAAAGAgAAAAAAAgAAAAADAgAAAAAKAgAAAAAMNAAAAAABNAAAAAACNAAAAAADAgAAAAAHBQAAAAACBQAAAAACAgAAAAAFAgAAAAAKCQAAAAACCQAAAAADCQAAAAAECQAAAAAFCQAAAAACCQAAAAADCQAAAAAAAgAAAAANNAAAAAACNAAAAAAHNAAAAAAFAgAAAAADBgAAAAADBgAAAAABBAAAAAADAgAAAAALCQAAAAAFCQAAAAAFCQAAAAACCQAAAAABCQAAAAAFCQAAAAAFCQAAAAAFAgAAAAAFNAAAAAAENAAAAAAFNAAAAAADAgAAAAAABwAAAAACBwAAAAACBwAAAAACAgAAAAAICQAAAAADCQAAAAAACQAAAAAECQAAAAAECQAAAAABCQAAAAAECQAAAAAFAgAAAAAKNAAAAAAINAAAAAAFNAAAAAAHAgAAAAALBwAAAAAABQAAAAACBQAAAAADAgAAAAALCQAAAAABCQAAAAABCQAAAAABAgAAAAABAgAAAAAIAgAAAAAKAgAAAAANAgAAAAAGNAAAAAAENAAAAAAENAAAAAAEAgAAAAAEBwAAAAAABQAAAAABBQAAAAACAgAAAAANAgAAAAACCQAAAAAEAgAAAAAJAgAAAAAICQAAAAACCQAAAAADCQAAAAACAgAAAAAJNAAAAAAGNAAAAAAINAAAAAADAgAAAAAABwAAAAABBwAAAAADBwAAAAABAgAAAAALCQAAAAAFCQAAAAAFCQAAAAAEAgAAAAABCQAAAAACCQAAAAAACQAAAAAEAgAAAAANNAAAAAAENAAAAAAANAAAAAAFAgAAAAALAgAAAAAAAgAAAAABAgAAAAAFAgAAAAACCQAAAAACCQAAAAAFCQAAAAACCQAAAAAACQAAAAAFCQAAAAABCQAAAAACAgAAAAAFNAAAAAAGNAAAAAAHNAAAAAAIFAAAAAAEFAAAAAADDwAAAAAFDwAAAAAEAgAAAAAECQAAAAACCQAAAAAFCQAAAAAEAgAAAAAKCQAAAAAECQAAAAACCQAAAAAFAgAAAAAFNAAAAAAANAAAAAAHNAAAAAAFDQAAAAABFAAAAAAEFAAAAAAEDwAAAAABAgAAAAAECQAAAAAFCQAAAAADCQAAAAAFAgAAAAAMAgAAAAAFAgAAAAADAgAAAAAAAgAAAAADNAAAAAAFNAAAAAACNAAAAAABNQAAAAAANQAAAAAANQAAAAAANQAAAAAA
+ version: 6
+ -2,-2:
+ ind: -2,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAAACAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAACAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAADCgAAAAABCgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAACCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAAACAAAAAABCgAAAAACCgAAAAADDgAAAAAEBAAAAAACCAAAAAADCAAAAAADCAAAAAABCgAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAAACgAAAAABCAAAAAADAgAAAAAFAgAAAAACNAAAAAAFNAAAAAAANAAAAAABNAAAAAAENAAAAAADNAAAAAAENAAAAAACNAAAAAADNAAAAAAINAAAAAADBAAAAAAJBAAAAAACBAAAAAAIFAAAAAACAgAAAAAJAgAAAAALNAAAAAAHNAAAAAAHNAAAAAAFNAAAAAADNAAAAAACNAAAAAADNAAAAAADNAAAAAAGNAAAAAAFNAAAAAABAgAAAAAICAAAAAADAgAAAAAJAgAAAAAKAgAAAAAMAgAAAAAFAgAAAAAJAgAAAAAGAgAAAAAKAgAAAAAIAgAAAAAJAgAAAAAJNAAAAAAENAAAAAAGNAAAAAAGFAAAAAACAgAAAAAJCAAAAAABAgAAAAALAgAAAAALAgAAAAAAAgAAAAAFCQAAAAAFCQAAAAABCQAAAAAACQAAAAAECQAAAAAAAgAAAAANNAAAAAAANAAAAAABNAAAAAABFAAAAAABAgAAAAAHCAAAAAADAgAAAAAEAgAAAAABAgAAAAAEAgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAAENAAAAAAENAAAAAAENAAAAAAIBAAAAAAFAgAAAAANCAAAAAADCAAAAAABCAAAAAACAgAAAAACAgAAAAAHCQAAAAACCQAAAAAACQAAAAAACQAAAAAECQAAAAAEAgAAAAAHNAAAAAABNAAAAAAANAAAAAAIBAAAAAAFAgAAAAAICAAAAAADCAAAAAABAgAAAAABAgAAAAABAgAAAAAHCQAAAAADCQAAAAAFCQAAAAABCQAAAAADCQAAAAAEAgAAAAAHNAAAAAAGNAAAAAADNAAAAAAHBAAAAAAFAgAAAAAECAAAAAAACAAAAAAAAgAAAAAKAgAAAAAGAgAAAAAGCQAAAAAAAgAAAAAJCQAAAAADAgAAAAAHAgAAAAAEAgAAAAAHNAAAAAACNAAAAAAHNAAAAAAHBAAAAAAKAgAAAAAGCAAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAANCQAAAAADCQAAAAABCQAAAAAFCQAAAAACCQAAAAACAgAAAAAANAAAAAAHNAAAAAADNAAAAAAIBAAAAAAEAgAAAAAECAAAAAADCAAAAAAACAAAAAAAAgAAAAAHAgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAFCQAAAAABCQAAAAACNAAAAAADNAAAAAAINAAAAAAGBAAAAAAJAgAAAAAKCAAAAAABCAAAAAACAgAAAAAD
+ version: 6
+ -1,-2:
+ ind: -1,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAAACAAAAAADDgAAAAABDgAAAAAADgAAAAADFAAAAAAAFAAAAAAEDQAAAAAEBAAAAAABBAAAAAACBAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAABCAAAAAABDgAAAAAADgAAAAADFAAAAAAAFAAAAAACFAAAAAAEBAAAAAAIBAAAAAAFBAAAAAAPDwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAACCAAAAAACDgAAAAADFAAAAAAEFAAAAAADFAAAAAADDwAAAAABDwAAAAAFDwAAAAABDwAAAAADDwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAAACAAAAAADFAAAAAABFAAAAAAFFAAAAAADDwAAAAABDwAAAAAFDwAAAAAFDQAAAAAEDQAAAAAADwAAAAAECgAAAAAACgAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAADDgAAAAAAFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAFDQAAAAACFAAAAAAFDwAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAACCAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACDQAAAAADFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAACFAAAAAABBAAAAAAEBAAAAAAHBAAAAAAOAgAAAAAJAgAAAAADAgAAAAAJAgAAAAANAgAAAAAABAAAAAAGFAAAAAABAgAAAAAFAgAAAAAGAgAAAAAEAgAAAAAHBAAAAAABFAAAAAAAFAAAAAAEFAAAAAADBAAAAAAJAgAAAAAIBQAAAAADBQAAAAABBQAAAAACAgAAAAAFBAAAAAALFAAAAAAECAAAAAAACAAAAAAACAAAAAACAgAAAAAIBAAAAAAJBAAAAAADBAAAAAAFBAAAAAAJBAAAAAAHAgAAAAAKBQAAAAACBQAAAAADBQAAAAABAgAAAAAGBAAAAAANFAAAAAADCAAAAAACCAAAAAADCAAAAAADAgAAAAAIBAAAAAAAAgAAAAAFAgAAAAADAgAAAAALBgAAAAABAgAAAAAFAgAAAAAHBgAAAAABAgAAAAADAgAAAAABAgAAAAANFAAAAAADCAAAAAABCAAAAAADCAAAAAADAgAAAAAJBAAAAAAPAgAAAAAMBQAAAAACAgAAAAAIBQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAACBQAAAAACAgAAAAAEFAAAAAAEAgAAAAAMAgAAAAAJAgAAAAANAgAAAAAKBAAAAAAHAgAAAAABBQAAAAACBQAAAAACBQAAAAADBQAAAAADBQAAAAABBQAAAAABBQAAAAADBQAAAAAAAgAAAAADFAAAAAABNAAAAAAFNAAAAAACNAAAAAACAgAAAAAANQAAAAAAAgAAAAANAgAAAAAIAgAAAAAGAgAAAAALAgAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAADAgAAAAAJBAAAAAADNAAAAAAINAAAAAABNAAAAAABNAAAAAABNQAAAAAANQAAAAAABAAAAAANAgAAAAAHCAAAAAADCAAAAAACCAAAAAABCAAAAAACCAAAAAADCAAAAAACAgAAAAABBAAAAAADNAAAAAABNAAAAAAGNAAAAAAINAAAAAAGNQAAAAAANQAAAAAABAAAAAAIAgAAAAAICAAAAAABCAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAABAgAAAAAHFAAAAAAENAAAAAAANAAAAAACNAAAAAAGAgAAAAALNQAAAAAANQAAAAAABAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAACCAAAAAADAgAAAAAFBAAAAAAL
+ version: 6
+ 0,-2:
+ ind: 0,-2
+ tiles: BAAAAAAKBAAAAAAHBAAAAAAAEAAAAAAMEAAAAAAMEAAAAAAEEAAAAAAAEAAAAAAHEAAAAAAKEAAAAAAEEAAAAAAHEAAAAAAIEAAAAAAJBAAAAAAOBAAAAAAMBAAAAAAFDwAAAAABBAAAAAABBAAAAAAPBAAAAAAJBAAAAAAEBAAAAAAKBAAAAAACEAAAAAANEAAAAAAAEAAAAAAJEAAAAAAKEAAAAAAGFAAAAAADEAAAAAABBAAAAAANFAAAAAAADwAAAAAEDwAAAAACDwAAAAADDQAAAAACDQAAAAAFFAAAAAAEBAAAAAAEEAAAAAADEAAAAAAKEAAAAAAEDQAAAAACDQAAAAACFAAAAAADBAAAAAAFBAAAAAAHFAAAAAACDQAAAAACDQAAAAADDwAAAAABDwAAAAAFDQAAAAABDQAAAAAEDQAAAAAFEAAAAAAKEAAAAAAEDQAAAAABDQAAAAAAFAAAAAADFAAAAAAEBAAAAAAMFAAAAAACFAAAAAAFDwAAAAACDwAAAAAFDwAAAAABDwAAAAAFFAAAAAAFDQAAAAACFAAAAAACDQAAAAAEEAAAAAALDQAAAAABFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABDQAAAAADDwAAAAAFDwAAAAAFDwAAAAABDwAAAAAFDQAAAAAEFAAAAAAEDQAAAAAADQAAAAADDQAAAAAEAgAAAAAHFAAAAAACFAAAAAABFAAAAAADFAAAAAAEFAAAAAAADQAAAAABDQAAAAAFDQAAAAADDQAAAAABDQAAAAAFDQAAAAAEFAAAAAAEDQAAAAAADQAAAAAFFAAAAAAAFAAAAAAFFAAAAAAADQAAAAABDQAAAAABDQAAAAACDQAAAAADFAAAAAAFDQAAAAAEDQAAAAAADQAAAAACDQAAAAAEDQAAAAAADQAAAAAFDQAAAAADFAAAAAAAFAAAAAAFFAAAAAAFDQAAAAAEDQAAAAAFBAAAAAAJBAAAAAAHBAAAAAABFAAAAAACFAAAAAACFAAAAAAADQAAAAAFDQAAAAAADQAAAAACDQAAAAABFAAAAAADFAAAAAABFAAAAAABDQAAAAAEDQAAAAAABAAAAAADBAAAAAAHBAAAAAAJBAAAAAAJFAAAAAAFFAAAAAAEFAAAAAACFAAAAAABFAAAAAADFAAAAAABFAAAAAACFAAAAAAEFAAAAAABFAAAAAAFDQAAAAAADQAAAAABBAAAAAAJBAAAAAAOBAAAAAAOBAAAAAAKFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAACFAAAAAABFAAAAAAFFAAAAAADFAAAAAACFAAAAAAFDQAAAAADDQAAAAAABAAAAAAOBAAAAAAPBAAAAAAJBAAAAAACAgAAAAAEAgAAAAAHAgAAAAADAgAAAAABAgAAAAAIAgAAAAABAgAAAAAHBAAAAAAHBAAAAAANBAAAAAAEAgAAAAAMFAAAAAAAFAAAAAABBAAAAAALBAAAAAAMBAAAAAABAgAAAAAHCAAAAAAACAAAAAACCgAAAAACCAAAAAABCAAAAAABAgAAAAALBAAAAAALBAAAAAAKBAAAAAAGBAAAAAABFAAAAAACFAAAAAACFAAAAAAEFAAAAAAAFAAAAAACAgAAAAAGCgAAAAAACgAAAAAACgAAAAABCgAAAAABCgAAAAAACgAAAAABBAAAAAABBAAAAAAOBAAAAAACBAAAAAAHFAAAAAAEFAAAAAABFAAAAAAAFAAAAAACDQAAAAAEAgAAAAAMCgAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAADBAAAAAAEBAAAAAAJBAAAAAAABAAAAAABFAAAAAAFFAAAAAACDQAAAAAFDQAAAAADDQAAAAACAgAAAAAJCAAAAAACCAAAAAACCAAAAAADCAAAAAACCgAAAAACAgAAAAALBAAAAAAOBAAAAAAJBAAAAAAPBAAAAAANDQAAAAAEDQAAAAAADQAAAAABDQAAAAAEDQAAAAAA
+ version: 6
+ -2,1:
+ ind: -2,1
+ tiles: AgAAAAAHBAAAAAAPAgAAAAAIAgAAAAAHAgAAAAAIAgAAAAAAAgAAAAAAAgAAAAAANAAAAAAFNAAAAAAANAAAAAABNAAAAAAINAAAAAADNAAAAAAHNAAAAAAANAAAAAAGAgAAAAAABAAAAAABAgAAAAAGAwAAAAADAgAAAAAEAwAAAAACAwAAAAAAAwAAAAABNQAAAAAAAgAAAAABAgAAAAAIAgAAAAANAgAAAAAIAgAAAAAMAgAAAAAFAgAAAAAJAgAAAAAFBAAAAAAMAgAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAFNQAAAAAAAgAAAAAHBgAAAAADBgAAAAACBgAAAAADAgAAAAAABgAAAAAABgAAAAAAAgAAAAAABAAAAAADAgAAAAAIAwAAAAACAgAAAAAGAwAAAAABAwAAAAAAAgAAAAANNQAAAAAAAgAAAAAGBgAAAAABBgAAAAAABgAAAAACAgAAAAACBgAAAAABBgAAAAACAgAAAAANBAAAAAAEAgAAAAADAgAAAAAKAgAAAAAMAgAAAAAJAgAAAAAFAgAAAAAMBAAAAAAPAgAAAAAMBgAAAAACBgAAAAADBgAAAAAAAgAAAAAKBgAAAAACBgAAAAABAgAAAAAAFAAAAAABFAAAAAAFDQAAAAABDQAAAAAFDQAAAAAAFAAAAAACFAAAAAABBAAAAAAAAgAAAAAJAgAAAAAKAgAAAAAIBgAAAAADAgAAAAAKAgAAAAAHBgAAAAADAgAAAAAMAgAAAAAGAgAAAAAGAgAAAAAMAgAAAAACAgAAAAAJAgAAAAACAgAAAAACBAAAAAADBAAAAAAABAAAAAALNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAAgAAAAAEAgAAAAANBAAAAAAAFAAAAAABAgAAAAADAgAAAAAKFAAAAAACAgAAAAAJFAAAAAACFAAAAAAEBAAAAAAGBAAAAAAGBAAAAAANNQAAAAAANQAAAAAANQAAAAAABAAAAAABBAAAAAAKFAAAAAABFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAAAgAAAAAJFAAAAAAADQAAAAAAFAAAAAADFAAAAAADBAAAAAALAgAAAAAIAgAAAAADBgAAAAABFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAAFAAAAAACAgAAAAABAgAAAAAHFAAAAAAEDQAAAAABDQAAAAACFAAAAAAFBAAAAAANAgAAAAAIBgAAAAADBgAAAAAABAAAAAAOFAAAAAACFAAAAAAFFAAAAAADFAAAAAAAFAAAAAACAgAAAAAHAgAAAAADFAAAAAACFAAAAAAFDQAAAAADDQAAAAAAFAAAAAACAgAAAAAIBgAAAAAABgAAAAABFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAAAFAAAAAAFBAAAAAAHAgAAAAAGBAAAAAAIFAAAAAABFAAAAAADDQAAAAACFAAAAAABAgAAAAADBgAAAAACAgAAAAANFAAAAAACFAAAAAAEFAAAAAAAFAAAAAACFAAAAAACBAAAAAAKBAAAAAABAgAAAAAIBAAAAAAJFAAAAAACFAAAAAABFAAAAAABDQAAAAAEAgAAAAAMAgAAAAAEAgAAAAAKFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAACFAAAAAADAgAAAAAGAgAAAAAFBAAAAAAFBAAAAAAJBAAAAAALFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAFFAAAAAACFAAAAAACAgAAAAAMAgAAAAACAgAAAAAJAgAAAAAMAgAAAAABAgAAAAAGAgAAAAADAgAAAAAJAgAAAAACFAAAAAAEBAAAAAAIFAAAAAAEFAAAAAAFBAAAAAAMFAAAAAAAFAAAAAACFAAAAAABAgAAAAAJBAAAAAAFBAAAAAAEAgAAAAAEAgAAAAAKBAAAAAAFBAAAAAAFAgAAAAAI
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: FAAAAAAEFAAAAAAEFAAAAAACFAAAAAACBAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAFAAAAAABDQAAAAABDQAAAAAFFAAAAAABBAAAAAANFAAAAAAEFAAAAAAFNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAFAAAAAAAFAAAAAABFAAAAAABFAAAAAAABAAAAAAHBAAAAAAGBAAAAAABNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAFFAAAAAAAFAAAAAAEBAAAAAAOBAAAAAANBAAAAAAJBAAAAAAFNQAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAMBAAAAAALBAAAAAAIBAAAAAANBAAAAAAJFAAAAAAABAAAAAANFAAAAAACFAAAAAAFFAAAAAABFAAAAAABDQAAAAABBAAAAAALBAAAAAAKBAAAAAAIBAAAAAAHBAAAAAAMBAAAAAABBAAAAAAOBAAAAAANFAAAAAADBAAAAAAMBAAAAAAOFAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAAEFAAAAAACAgAAAAAAFAAAAAAFFAAAAAABFAAAAAAFFAAAAAACDQAAAAAEFAAAAAABDQAAAAACFAAAAAAFBAAAAAABBAAAAAAADQAAAAAADQAAAAAEFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAFDQAAAAADDQAAAAADDQAAAAABDQAAAAADDQAAAAAAFAAAAAACFAAAAAABFAAAAAAFDQAAAAABBAAAAAAFBAAAAAAABAAAAAAIFAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABDQAAAAAFDQAAAAACDQAAAAACDQAAAAAEFAAAAAABFAAAAAAEFAAAAAACEAAAAAAMEAAAAAALBAAAAAALFAAAAAAAFAAAAAAAFAAAAAAEAgAAAAALFAAAAAACFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAADAgAAAAAAEAAAAAANEAAAAAAKBAAAAAAGFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAENQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAFAAAAAACEAAAAAAGEAAAAAANBAAAAAAGFAAAAAACFAAAAAADFAAAAAAAFAAAAAAFNQAAAAAANgAAAAAANQAAAAAABAAAAAAINQAAAAAANgAAAAAANQAAAAAABAAAAAAEBAAAAAAPEAAAAAAMEAAAAAAJFAAAAAACFAAAAAABFAAAAAAEFAAAAAACFAAAAAAFNQAAAAAANgAAAAAANQAAAAAABAAAAAAANQAAAAAANgAAAAAANQAAAAAABAAAAAAIBAAAAAANEAAAAAAJEAAAAAANFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAKEAAAAAANEAAAAAACFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAACFAAAAAABNQAAAAAABAAAAAAMFAAAAAAFDQAAAAABFAAAAAADBAAAAAAGNQAAAAAABAAAAAAKBAAAAAAAFAAAAAACFAAAAAAFFAAAAAACAgAAAAAGAgAAAAANAgAAAAADAgAAAAALNQAAAAAABAAAAAAJFAAAAAAFDQAAAAAEFAAAAAAABAAAAAAHNQAAAAAABAAAAAACBAAAAAAMFAAAAAADFAAAAAADFAAAAAAEAgAAAAAMCAAAAAAACAAAAAADAgAAAAAMNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAF
+ version: 6
+ -3,0:
+ ind: -3,0
+ tiles: AgAAAAALAgAAAAAMAgAAAAANAgAAAAAIBAAAAAADFAAAAAAEBAAAAAAFFAAAAAACNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAHNAAAAAAENAAAAAAAEAAAAAABBAAAAAAIFAAAAAAADQAAAAABDwAAAAAADwAAAAAENAAAAAACNAAAAAAINAAAAAAHBAAAAAAFBAAAAAADBAAAAAAHBAAAAAABBAAAAAAGHAAAAAABNAAAAAAINAAAAAACEAAAAAAABAAAAAAKFAAAAAABDQAAAAABFAAAAAAENAAAAAADNAAAAAAINAAAAAAFNAAAAAAENAAAAAAHNAAAAAABNAAAAAAHNAAAAAAGHAAAAAAAHAAAAAABNAAAAAAINQAAAAAANQAAAAAABAAAAAAHDQAAAAAEBAAAAAAHNAAAAAADNAAAAAABNAAAAAAANAAAAAAGNAAAAAAINAAAAAAANAAAAAAHNAAAAAABHAAAAAAANAAAAAACNAAAAAABBAAAAAANNQAAAAAABAAAAAAMFAAAAAABBAAAAAANNAAAAAAHNAAAAAABNAAAAAAFNAAAAAAINAAAAAAHNAAAAAAANAAAAAADNAAAAAAGNAAAAAAANAAAAAAFFAAAAAACFAAAAAACNQAAAAAANQAAAAAANQAAAAAANQAAAAAANAAAAAAFNAAAAAAHNAAAAAADNAAAAAAENQAAAAAANQAAAAAANQAAAAAANQAAAAAAAgAAAAANAgAAAAADAgAAAAAAAgAAAAABAgAAAAAINAAAAAAIAgAAAAAIAgAAAAADNQAAAAAANQAAAAAANQAAAAAANQAAAAAAAgAAAAAHAgAAAAALNAAAAAAEAgAAAAAMBAAAAAAOBAAAAAAKBAAAAAAMAgAAAAAFGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAACBAAAAAAGNQAAAAAANQAAAAAABAAAAAALAgAAAAABGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAFFAAAAAACBAAAAAAEAgAAAAAIGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAABBAAAAAACNQAAAAAANQAAAAAABAAAAAAFAgAAAAAHGgAAAAAAGgAAAAAAGgAAAAAAFAAAAAADFAAAAAAEBAAAAAACAgAAAAAHGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAADBAAAAAAENQAAAAAANQAAAAAABAAAAAADAgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAFAAAAAAAFAAAAAAFBAAAAAAIAgAAAAAEAgAAAAADAgAAAAAGAgAAAAAAAgAAAAADAgAAAAAGNQAAAAAANQAAAAAAAgAAAAAFAgAAAAALAgAAAAAEAgAAAAAFAgAAAAAAFAAAAAADFAAAAAAAFAAAAAAEBAAAAAAOBAAAAAAEBAAAAAANBAAAAAABBAAAAAACNQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAEBAAAAAANBAAAAAALFAAAAAABDQAAAAABFAAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAAFBAAAAAAKBAAAAAAHNQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAHFAAAAAAFFAAAAAAEFAAAAAADDwAAAAADBAAAAAAIFAAAAAAADQAAAAAFDQAAAAABFAAAAAAEFAAAAAABBAAAAAAJNQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAABFAAAAAABFAAAAAABAgAAAAAHDwAAAAADDwAAAAAADQAAAAABDwAAAAAEDQAAAAADFAAAAAAEFAAAAAAEBAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAAFAAAAAAEFAAAAAABAgAAAAAMDQAAAAACDQAAAAAFDQAAAAABDQAAAAADDQAAAAABFAAAAAAEFAAAAAAFBAAAAAACNQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAEFAAAAAAAFAAAAAACFAAAAAAF
+ version: 6
+ -3,-1:
+ ind: -3,-1
+ tiles: AgAAAAALAgAAAAAFAgAAAAAGAgAAAAAIAgAAAAALAgAAAAAKAgAAAAAGAgAAAAAIAgAAAAAKAgAAAAAIAgAAAAAKAgAAAAAJAgAAAAAAAgAAAAAMAgAAAAALAgAAAAAHBQAAAAAABQAAAAAABQAAAAACBQAAAAADBQAAAAACAgAAAAADCQAAAAADCQAAAAAECQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAFAgAAAAAEFAAAAAACDQAAAAAFBQAAAAABBQAAAAACBQAAAAACBQAAAAAABQAAAAAAAgAAAAAKCQAAAAABCQAAAAAECQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAAFAgAAAAALFAAAAAAEFAAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAABBQAAAAABAgAAAAAACQAAAAACCQAAAAAFCQAAAAABCQAAAAAACQAAAAAFCQAAAAADCQAAAAAAAgAAAAAMDQAAAAADDQAAAAABBQAAAAABBQAAAAADBQAAAAABBQAAAAAABQAAAAAAAgAAAAAJCQAAAAAFCQAAAAAACQAAAAADAgAAAAAGAgAAAAALAgAAAAABFQAAAAADAgAAAAABAgAAAAAGDQAAAAADAgAAAAAGBgAAAAAABgAAAAADAgAAAAAFAgAAAAAJAgAAAAAAAgAAAAAHCQAAAAABAgAAAAAMAgAAAAAICwAAAAADCwAAAAACCwAAAAABCwAAAAACAgAAAAAFDQAAAAAFNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAAgAAAAABCwAAAAAACwAAAAABCwAAAAAACwAAAAADAgAAAAAMDwAAAAAENQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAAgAAAAAMAgAAAAAKCwAAAAAACwAAAAACCwAAAAAAAgAAAAAJDwAAAAADNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAAgAAAAAJCwAAAAABCwAAAAABCwAAAAABCwAAAAAAAgAAAAALFAAAAAABDQAAAAACFAAAAAAFDwAAAAAADQAAAAAANQAAAAAANQAAAAAAAgAAAAAIAgAAAAABFQAAAAADAgAAAAAEAgAAAAALAgAAAAAGFQAAAAAAAgAAAAADAgAAAAAIDQAAAAAAFAAAAAACDQAAAAACDQAAAAADBAAAAAAPNQAAAAAANQAAAAAAAgAAAAAICwAAAAABCwAAAAABCwAAAAADCwAAAAACCwAAAAADCwAAAAABCwAAAAABAgAAAAALFAAAAAADFAAAAAAADQAAAAABFAAAAAAEBAAAAAAONQAAAAAANQAAAAAAAgAAAAAJCwAAAAACCwAAAAAACwAAAAADCwAAAAADCwAAAAABCwAAAAAACwAAAAABAgAAAAABFAAAAAAAFAAAAAADFAAAAAABDQAAAAACDwAAAAAFNQAAAAAANQAAAAAAAgAAAAAICwAAAAABCwAAAAABCwAAAAADCwAAAAADCwAAAAACCwAAAAACCwAAAAAAAgAAAAAAFAAAAAABDQAAAAACDQAAAAACBAAAAAAGDwAAAAAANQAAAAAANQAAAAAAAgAAAAAKAgAAAAAHAgAAAAAAAgAAAAAHAgAAAAAECwAAAAAACwAAAAADAgAAAAAKAgAAAAADFAAAAAABFAAAAAAFDQAAAAAADQAAAAAFFAAAAAACNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAFAAAAAADDQAAAAADFAAAAAADBAAAAAAGFAAAAAAFNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAD
+ version: 6
+ -3,1:
+ ind: -3,1
+ tiles: FAAAAAAAFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAFBAAAAAAENQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAALFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAFFAAAAAACFAAAAAACBAAAAAAFNQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAMFAAAAAABFAAAAAACAgAAAAAJBAAAAAAFBAAAAAAJFAAAAAAAFAAAAAAEBAAAAAAGBAAAAAABBAAAAAABNQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAKFAAAAAADFAAAAAACBAAAAAAFAgAAAAACBAAAAAABBAAAAAAABAAAAAANBAAAAAAIBAAAAAAPNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAKFAAAAAACFAAAAAAAFAAAAAADBAAAAAAENAAAAAAANAAAAAAANAAAAAACNAAAAAADNAAAAAAINAAAAAAENQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAHFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAABBAAAAAACNAAAAAAGNAAAAAADNAAAAAAANAAAAAABNAAAAAABNAAAAAAINAAAAAAENAAAAAAANQAAAAAABAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAACFAAAAAADAgAAAAAFNAAAAAACNAAAAAAHNAAAAAABNAAAAAAANAAAAAAINAAAAAAENAAAAAAIBAAAAAADBAAAAAAHBAAAAAACFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABAgAAAAADBAAAAAANNAAAAAAANAAAAAAFNAAAAAAGNAAAAAAGNAAAAAADBAAAAAADBAAAAAALBAAAAAAEFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAABAAAAAACBAAAAAAIBAAAAAAPNAAAAAAHNAAAAAAFNAAAAAAEBAAAAAAOBAAAAAAMBAAAAAAKFAAAAAAAFAAAAAABFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAEBAAAAAAOBAAAAAAOBAAAAAACNAAAAAAGNAAAAAAGNAAAAAABBAAAAAAKBAAAAAAFFAAAAAABFAAAAAADFAAAAAACBAAAAAAKFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAEBAAAAAALBAAAAAAGNAAAAAADNAAAAAAFNAAAAAAGBAAAAAAKBAAAAAACFAAAAAABFAAAAAAEFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAAFFAAAAAACBAAAAAAABAAAAAAONAAAAAACNAAAAAAANAAAAAADBAAAAAALBAAAAAAEFAAAAAAEFAAAAAADFAAAAAADFAAAAAABFAAAAAAFFAAAAAADFAAAAAACFAAAAAADFAAAAAACBAAAAAABBAAAAAAINAAAAAAENAAAAAADNAAAAAACBAAAAAACFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAACFAAAAAABFAAAAAABBAAAAAAGBAAAAAAJNAAAAAAINAAAAAADNAAAAAAIBAAAAAAGFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAABAAAAAADBAAAAAAHNAAAAAADNAAAAAACNAAAAAAEBAAAAAABFAAAAAADFAAAAAACFAAAAAADFAAAAAABFAAAAAAEFAAAAAACFAAAAAAAFAAAAAACBAAAAAAEFAAAAAABBAAAAAABBAAAAAAHNAAAAAADNAAAAAACNAAAAAAIBAAAAAAHFAAAAAACFAAAAAABFAAAAAACFAAAAAAEFAAAAAACFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAAB
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: NAAAAAACNAAAAAABNAAAAAABNAAAAAADNAAAAAAGNAAAAAAFNAAAAAAANAAAAAAFNAAAAAAAAgAAAAAJAgAAAAAJAgAAAAAIAwAAAAAAAgAAAAAIAgAAAAABAwAAAAABAgAAAAABAgAAAAAFAgAAAAAHAgAAAAADAgAAAAAAAgAAAAAMNQAAAAAANQAAAAAABAAAAAAPAgAAAAAGAwAAAAABAwAAAAADAwAAAAABAgAAAAABAwAAAAABAwAAAAABBgAAAAABAgAAAAAJBgAAAAAABgAAAAACBgAAAAAAAgAAAAAMNQAAAAAANQAAAAAAFAAAAAAAAgAAAAAFAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAAABgAAAAADAgAAAAACBgAAAAABBgAAAAACBgAAAAACAgAAAAAJNQAAAAAANQAAAAAAFAAAAAABAgAAAAAIAwAAAAABAwAAAAADAwAAAAACAgAAAAAIAwAAAAADAwAAAAABBgAAAAADAgAAAAAEBgAAAAAABgAAAAAABgAAAAABAgAAAAAGNQAAAAAANQAAAAAAFAAAAAABAgAAAAAHAgAAAAAHAgAAAAAKAgAAAAAAAgAAAAAFAgAAAAAKAgAAAAACAgAAAAAEAgAAAAAEBgAAAAABAgAAAAAIAgAAAAANAgAAAAAENQAAAAAANQAAAAAABAAAAAAAAgAAAAAJAwAAAAAAAwAAAAABAwAAAAABAgAAAAAFAwAAAAABAwAAAAABNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAAgAAAAANAwAAAAADAwAAAAACAwAAAAAAAgAAAAAKAwAAAAADAwAAAAACNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAAgAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAFAwAAAAADAwAAAAADAgAAAAAFAgAAAAALAgAAAAAMAgAAAAANBgAAAAACAgAAAAAFAgAAAAABNQAAAAAANQAAAAAAAgAAAAALAgAAAAAAAgAAAAAFAwAAAAABAgAAAAAGAgAAAAADAwAAAAABBgAAAAAABgAAAAACAgAAAAAIBgAAAAABBgAAAAAABgAAAAADAgAAAAAHNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABgAAAAABBgAAAAADAgAAAAAMBgAAAAAABgAAAAABBgAAAAACAgAAAAAFBAAAAAAABAAAAAAFBAAAAAAPBAAAAAADBAAAAAAKFAAAAAADFAAAAAAEFAAAAAACDQAAAAADBgAAAAACBgAAAAACAgAAAAAMBgAAAAACBgAAAAADBgAAAAAAAgAAAAAMFAAAAAAEAgAAAAAAAgAAAAABAgAAAAAJAgAAAAAAAgAAAAAGAgAAAAALAgAAAAAKAgAAAAABAgAAAAAFAgAAAAAMAgAAAAACAgAAAAALAgAAAAAEAgAAAAAEAgAAAAACDQAAAAABAgAAAAALBAAAAAAFFAAAAAACAgAAAAAIAgAAAAAAAgAAAAAABAAAAAAKFAAAAAAABAAAAAAPBAAAAAAGBAAAAAANFAAAAAACFAAAAAADFAAAAAAADQAAAAAEDQAAAAABAgAAAAACAgAAAAAJFAAAAAAEFAAAAAAFBAAAAAAPBAAAAAAAFAAAAAABFAAAAAACAgAAAAAAAgAAAAAMAgAAAAAKAgAAAAACAgAAAAAEAgAAAAAKAgAAAAANAgAAAAAKAgAAAAALAgAAAAADFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAADFAAAAAADAgAAAAAFBAAAAAANBAAAAAAMAgAAAAANAgAAAAAIBAAAAAALBAAAAAAOAgAAAAAEAgAAAAAGAgAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAACFAAAAAADFAAAAAAF
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: AgAAAAANAgAAAAAEAwAAAAAAAgAAAAAGAgAAAAAFAgAAAAAFNQAAAAAANQAAAAAABAAAAAAOFAAAAAAEFAAAAAAFNAAAAAAFNAAAAAAINAAAAAAHNAAAAAACNAAAAAAIAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAANQAAAAAANQAAAAAABAAAAAAIDQAAAAAAFAAAAAADNAAAAAAENAAAAAAFNAAAAAADNAAAAAAGNAAAAAAFAwAAAAADAgAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAADNQAAAAAANQAAAAAAFAAAAAAFDQAAAAABBAAAAAAENAAAAAAFNAAAAAACNAAAAAABNAAAAAACNAAAAAAHAwAAAAADAgAAAAAMAwAAAAACAwAAAAACAwAAAAABAgAAAAALNQAAAAAANQAAAAAAFAAAAAAEDQAAAAACBAAAAAAINAAAAAAENAAAAAACNAAAAAADNAAAAAACNAAAAAAIAgAAAAALAgAAAAADAgAAAAAAAgAAAAALAgAAAAAMAgAAAAAMNQAAAAAANQAAAAAAFAAAAAAEDQAAAAACBAAAAAAKNAAAAAAHNAAAAAAANAAAAAAINAAAAAAENAAAAAACAwAAAAAAAgAAAAAFAwAAAAACAwAAAAADAwAAAAABAgAAAAAHNQAAAAAANQAAAAAABAAAAAAODQAAAAADAgAAAAAJAgAAAAALAgAAAAAJAgAAAAAKCAAAAAABCAAAAAAAAwAAAAADAgAAAAAGAwAAAAABAwAAAAADAwAAAAADAgAAAAACNQAAAAAANQAAAAAABAAAAAAOFAAAAAADAgAAAAAECAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAACAwAAAAADAgAAAAAMAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAINQAAAAAANQAAAAAABAAAAAAPFAAAAAAEAgAAAAAECAAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAACAgAAAAAHAgAAAAAAAwAAAAABAgAAAAALAgAAAAANAgAAAAAJNQAAAAAANQAAAAAABAAAAAADFAAAAAABAgAAAAAICAAAAAABCAAAAAADCAAAAAADCAAAAAACCAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAFDQAAAAACAgAAAAAKCAAAAAACCAAAAAAACAAAAAABCAAAAAABCAAAAAADDQAAAAABDQAAAAAEDQAAAAACFAAAAAAFFAAAAAAEDQAAAAADFAAAAAAEFAAAAAAFFAAAAAABDQAAAAAEAgAAAAANCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAACAgAAAAAFAgAAAAALAgAAAAAHAgAAAAABAgAAAAAJAgAAAAAFBAAAAAACDQAAAAAEDQAAAAADFAAAAAAAAgAAAAABCAAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAADAgAAAAAJAgAAAAADAgAAAAACBAAAAAAABAAAAAALAgAAAAAHFAAAAAADFAAAAAACFAAAAAAADQAAAAABAgAAAAANCAAAAAAAAgAAAAAECAAAAAACCAAAAAADCAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAAFBAAAAAANAgAAAAAEBAAAAAADFAAAAAAADQAAAAADFAAAAAADAgAAAAAJBgAAAAAABgAAAAAABgAAAAABBgAAAAAABgAAAAACFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAFAgAAAAAEAgAAAAAGBAAAAAACBAAAAAACFAAAAAACFAAAAAABAgAAAAALBgAAAAABBgAAAAADBgAAAAAABgAAAAADBgAAAAADFAAAAAADFAAAAAAFFAAAAAAEFAAAAAADAgAAAAALAgAAAAAIBAAAAAANBAAAAAAEFAAAAAAAFAAAAAAFAgAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAACBgAAAAAD
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: DQAAAAADDQAAAAACDQAAAAAEAgAAAAAFCAAAAAACCgAAAAABAgAAAAABNQAAAAAABAAAAAAJNQAAAAAANgAAAAAANQAAAAAABAAAAAAPNQAAAAAABAAAAAABBAAAAAACDQAAAAAEFAAAAAAFDQAAAAACAgAAAAACCAAAAAACCAAAAAABBgAAAAABNQAAAAAABAAAAAAKNQAAAAAANgAAAAAANQAAAAAABAAAAAADNQAAAAAABAAAAAACBAAAAAANFAAAAAADDQAAAAAADQAAAAAEAgAAAAACAgAAAAACAgAAAAAFAgAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAFAAAAAABBAAAAAAABAAAAAAJFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAFAgAAAAALNQAAAAAAAgAAAAAMAgAAAAABAgAAAAACAgAAAAAGAgAAAAAKAgAAAAABAgAAAAABAgAAAAAGNAAAAAAENAAAAAAANAAAAAAANAAAAAAENAAAAAADNQAAAAAANQAAAAAANQAAAAAANAAAAAABNAAAAAACNAAAAAACNAAAAAABNAAAAAAFNAAAAAAHNAAAAAAEFAAAAAAENAAAAAAINAAAAAAANAAAAAAGNAAAAAAGNAAAAAAINQAAAAAANQAAAAAANQAAAAAANAAAAAAFNAAAAAAGNAAAAAAINAAAAAACNAAAAAABNAAAAAABNAAAAAAAFAAAAAADNAAAAAAENAAAAAAANAAAAAADNAAAAAACNAAAAAAIBAAAAAAFBAAAAAAABAAAAAALNAAAAAAENAAAAAAIAgAAAAAHNAAAAAACNAAAAAADNAAAAAADNAAAAAADBAAAAAAONAAAAAAGNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANAAAAAAANAAAAAAANAAAAAAHNAAAAAACNAAAAAADNAAAAAAABAAAAAAFNAAAAAAFNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAAKBAAAAAAKNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANAAAAAAINQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAABBAAAAAAKBAAAAAAEBAAAAAAKBAAAAAAONQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAALBAAAAAADDgAAAAABBAAAAAAMBAAAAAADNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANAAAAAADNAAAAAAINAAAAAAHNAAAAAADNQAAAAAABAAAAAABDgAAAAAADgAAAAAABAAAAAAJBAAAAAAONQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANAAAAAAENAAAAAAHNAAAAAABNAAAAAAANQAAAAAABAAAAAAFBAAAAAAEDgAAAAACBAAAAAANBAAAAAAKNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANAAAAAACNAAAAAAHNAAAAAAHNAAAAAADNQAAAAAANQAAAAAABAAAAAAMBAAAAAAMBAAAAAAENQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANAAAAAAFNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABAAAAAANNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANAAAAAADNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAA
+ version: 6
+ 1,1:
+ ind: 1,1
+ tiles: NAAAAAADNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANAAAAAAHNQAAAAAANQAAAAAANQAAAAAANQAAAAAAFAAAAAACDQAAAAABFAAAAAABDwAAAAAFDQAAAAAFDwAAAAABDQAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAAANAAAAAAANAAAAAAGNAAAAAAFNAAAAAACNAAAAAAANQAAAAAANQAAAAAADQAAAAACDQAAAAAEDwAAAAABDQAAAAADFAAAAAAEBAAAAAAIBAAAAAAKBAAAAAAABAAAAAAGNAAAAAAFNAAAAAAANAAAAAADNAAAAAAFNAAAAAABNQAAAAAANQAAAAAAAgAAAAALAgAAAAAGAgAAAAANAgAAAAAIAgAAAAAGBAAAAAAGAgAAAAACBwAAAAADAgAAAAANNAAAAAABNAAAAAADNAAAAAAINAAAAAADNAAAAAAANQAAAAAANQAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAAAAgAAAAAIBAAAAAANAgAAAAALDAAAAAABDAAAAAAAAgAAAAAMAgAAAAAKAgAAAAAGAgAAAAANBAAAAAACNQAAAAAANQAAAAAAAgAAAAAKAQAAAAABAQAAAAABAQAAAAADAgAAAAABBAAAAAAAAgAAAAAHDAAAAAACDAAAAAAACAAAAAADCAAAAAACCAAAAAAAAgAAAAALBAAAAAALNQAAAAAANQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAABAgAAAAALBAAAAAABAgAAAAABDAAAAAAADAAAAAADCAAAAAADCAAAAAABCAAAAAABAgAAAAAHBAAAAAANNQAAAAAANQAAAAAAAgAAAAAIAgAAAAALAgAAAAABAgAAAAAJAgAAAAABBAAAAAADAgAAAAAKDAAAAAADDAAAAAACCAAAAAABCAAAAAACCAAAAAACAgAAAAAEBAAAAAABNQAAAAAANQAAAAAABAAAAAAGBAAAAAAJBAAAAAANBAAAAAAOBAAAAAAHBAAAAAAGAgAAAAAMAgAAAAACAgAAAAAMCAAAAAACCAAAAAABCAAAAAACAgAAAAABBAAAAAAANQAAAAAANQAAAAAABAAAAAAABAAAAAAIBAAAAAAMBAAAAAANAgAAAAALDQAAAAAFFAAAAAABFAAAAAAFFAAAAAABCAAAAAABCAAAAAAACAAAAAAAAgAAAAAHDQAAAAABNQAAAAAANQAAAAAABAAAAAAFAQAAAAABAQAAAAABAQAAAAAAAgAAAAAIDQAAAAAFFAAAAAAFFAAAAAACFAAAAAADCAAAAAAACAAAAAACCAAAAAAAAgAAAAANDQAAAAACNQAAAAAANQAAAAAABAAAAAACAQAAAAAAAQAAAAACAQAAAAABAgAAAAAGBAAAAAABFAAAAAADBAAAAAAKBAAAAAANCAAAAAAAAgAAAAADAgAAAAAIAgAAAAADDQAAAAAFBAAAAAADNQAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAADAgAAAAAMDwAAAAAFDQAAAAABFAAAAAAFFAAAAAACBgAAAAAABgAAAAACBgAAAAAAAgAAAAACDQAAAAAAFAAAAAAFFAAAAAAABAAAAAAMBAAAAAADBAAAAAANBAAAAAALAgAAAAAMDQAAAAAFFAAAAAACFAAAAAAEDQAAAAACBgAAAAAABgAAAAABBgAAAAABAgAAAAAAFAAAAAAFDQAAAAAFDwAAAAACDQAAAAAADQAAAAADDQAAAAAFDQAAAAAEDQAAAAABDwAAAAADDQAAAAAEBAAAAAABBAAAAAAPBgAAAAABBgAAAAACBgAAAAAAAgAAAAACDQAAAAAEDwAAAAAEDQAAAAAADQAAAAAADQAAAAACDQAAAAAADQAAAAADDQAAAAABAgAAAAAHAgAAAAABAgAAAAAEAgAAAAAA
+ version: 6
+ 1,-2:
+ ind: 1,-2
+ tiles: BAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAEBAAAAAAMBAAAAAACFAAAAAAAFAAAAAAEFAAAAAACFAAAAAABFAAAAAADFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAADFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAEFAAAAAADFAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAAFAAAAAADFAAAAAABFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAACFAAAAAAAFAAAAAAFFAAAAAACFAAAAAABFAAAAAACFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAABFAAAAAACDQAAAAAAFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAABFAAAAAACAgAAAAALFAAAAAAAFAAAAAAFFAAAAAABFAAAAAABDQAAAAAFDQAAAAAADQAAAAABFAAAAAAEFAAAAAABBAAAAAAAFAAAAAABFAAAAAAFBAAAAAACFAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAABAAAAAACBAAAAAAOBAAAAAACBAAAAAALBAAAAAAEBAAAAAAMBAAAAAAHBAAAAAANBAAAAAABBAAAAAAIBAAAAAAEFAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAAFBAAAAAAJBAAAAAAJFAAAAAAABAAAAAACBAAAAAAJFAAAAAADFAAAAAAFDQAAAAABFAAAAAADBAAAAAADBAAAAAAIBAAAAAAEFAAAAAAFFAAAAAACFAAAAAACFAAAAAAFBAAAAAAMFAAAAAABFAAAAAADBAAAAAAKFAAAAAABFAAAAAADDQAAAAABDQAAAAABDQAAAAAAFAAAAAAAFAAAAAAABAAAAAAAFAAAAAADFAAAAAAFFAAAAAACFAAAAAAFBAAAAAAOFAAAAAABFAAAAAABFAAAAAAEFAAAAAAEDQAAAAAFDQAAAAABDQAAAAAFDQAAAAAFFAAAAAABFAAAAAAEBAAAAAAPFAAAAAAAFAAAAAABFAAAAAADBAAAAAAMFAAAAAACFAAAAAAADQAAAAAEFAAAAAABDQAAAAAEDQAAAAACDQAAAAADDQAAAAACFAAAAAAEBAAAAAACBAAAAAAMBAAAAAAMFAAAAAAFBAAAAAACBAAAAAABBAAAAAANFAAAAAADDQAAAAAADQAAAAAADQAAAAADDQAAAAAADQAAAAAADQAAAAAFFAAAAAACBAAAAAAKBAAAAAABBAAAAAAKBAAAAAAJBAAAAAAPBAAAAAAPBAAAAAAMFAAAAAAFDQAAAAADDQAAAAADDQAAAAAEDQAAAAACFAAAAAADDQAAAAAEBAAAAAAKBAAAAAAMBAAAAAAABAAAAAAHFAAAAAAFFAAAAAACBAAAAAAIBAAAAAAGFAAAAAADFAAAAAAADQAAAAACDQAAAAABDQAAAAABFAAAAAADBAAAAAAJBAAAAAAHBAAAAAAPBAAAAAANBAAAAAAIFAAAAAABFAAAAAAFFAAAAAABFAAAAAAEBAAAAAAPFAAAAAABDQAAAAABDQAAAAAFDQAAAAABFAAAAAADFAAAAAAEBAAAAAAFBAAAAAAABAAAAAAOBAAAAAANBAAAAAAAFAAAAAAADQAAAAADDQAAAAAAFAAAAAAEBAAAAAANFAAAAAAFDQAAAAAD
+ version: 6
+ -4,1:
+ ind: -4,1
+ tiles: NAAAAAAANAAAAAAENAAAAAADBAAAAAACBAAAAAAEFAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAABFAAAAAACDQAAAAAEFAAAAAABDQAAAAABDQAAAAADNAAAAAACNAAAAAAHNAAAAAAHNAAAAAAEBAAAAAAABAAAAAAIBAAAAAAIFAAAAAABFAAAAAACFAAAAAAEBAAAAAAOFAAAAAACFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAANAAAAAAINAAAAAAENAAAAAAANAAAAAAGNAAAAAAGNAAAAAACBAAAAAAABAAAAAACBAAAAAAKFAAAAAABBAAAAAACBAAAAAAKFAAAAAACFAAAAAACBAAAAAAFBAAAAAAABAAAAAAINAAAAAAHNAAAAAAFNAAAAAABNAAAAAADNAAAAAAGNAAAAAAANAAAAAAGBAAAAAACBAAAAAAEBAAAAAALBAAAAAAGBAAAAAAJBAAAAAALBAAAAAAOBAAAAAAABAAAAAAOBAAAAAAPBAAAAAAJNAAAAAAFNAAAAAAENAAAAAAINAAAAAACNAAAAAAANAAAAAAGNAAAAAABNAAAAAAHNAAAAAACNAAAAAAFNAAAAAABNAAAAAAINAAAAAABFAAAAAAFBAAAAAAEBAAAAAAABAAAAAANBAAAAAAMNAAAAAABNAAAAAAGNAAAAAAINAAAAAACNAAAAAAANAAAAAAFNAAAAAAFNAAAAAAHNAAAAAAFNAAAAAACNAAAAAABFAAAAAAEFAAAAAAFFAAAAAACBAAAAAAGBAAAAAAPBAAAAAAABAAAAAAGNAAAAAAHNAAAAAAFNAAAAAABNAAAAAAGNAAAAAAANAAAAAAENAAAAAAFNAAAAAADNAAAAAACFAAAAAAFBAAAAAAIFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAADBAAAAAAIBAAAAAAABAAAAAAFBAAAAAACBAAAAAAGBAAAAAAGBAAAAAAGBAAAAAACBAAAAAAFDQAAAAACFAAAAAAEDQAAAAAAFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAAFBAAAAAABBAAAAAAMDQAAAAAAFAAAAAADDQAAAAACDQAAAAAADQAAAAACFAAAAAAEFAAAAAAFFAAAAAACDQAAAAACDQAAAAAADQAAAAAFDQAAAAAEFAAAAAABFAAAAAAFFAAAAAAABAAAAAANDQAAAAAFDQAAAAAEDwAAAAADDQAAAAAEDQAAAAAEDQAAAAABBAAAAAAKDQAAAAADDQAAAAABBAAAAAACDQAAAAADDQAAAAAFDQAAAAABDQAAAAAEFAAAAAACBAAAAAAODQAAAAADDQAAAAAEDwAAAAAFDwAAAAAFFAAAAAAEDQAAAAAADQAAAAAFDQAAAAADDQAAAAADDQAAAAADDQAAAAAFDQAAAAAEDQAAAAACDQAAAAAEFAAAAAADBAAAAAAMDwAAAAACDwAAAAADDwAAAAAADwAAAAAFDQAAAAABDwAAAAAEDQAAAAAFFAAAAAADDQAAAAABDQAAAAACDQAAAAADDQAAAAABFAAAAAADFAAAAAAFFAAAAAAEBAAAAAAIDQAAAAABDwAAAAACDwAAAAADDQAAAAACDQAAAAACDwAAAAAEDwAAAAADDwAAAAAEDwAAAAACDwAAAAAEDwAAAAADDQAAAAAEFAAAAAAFBAAAAAAOFAAAAAAFFAAAAAAEDwAAAAAADwAAAAADDQAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAAEDwAAAAAFDwAAAAACDQAAAAACDQAAAAADDQAAAAAFDQAAAAABFAAAAAAFFAAAAAABFAAAAAABDwAAAAAFDwAAAAACDwAAAAAFDwAAAAAEDQAAAAABFAAAAAACDwAAAAADDQAAAAAADwAAAAAADQAAAAABDQAAAAAADQAAAAABDQAAAAAADQAAAAABFAAAAAADFAAAAAAF
+ version: 6
+ -3,2:
+ ind: -3,2
+ tiles: BAAAAAAIBAAAAAAGNAAAAAAINAAAAAAHNAAAAAAABAAAAAANFAAAAAADFAAAAAACFAAAAAABFAAAAAACFAAAAAACFAAAAAACFAAAAAACFAAAAAAEFAAAAAADFAAAAAACBAAAAAAOBAAAAAALNAAAAAAGNAAAAAAENAAAAAAGBAAAAAAKFAAAAAACFAAAAAAFFAAAAAADFAAAAAADFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEBAAAAAAABAAAAAAHNAAAAAAGNAAAAAADNAAAAAADBAAAAAAPBAAAAAABFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAABAAAAAABBAAAAAACNAAAAAAGNAAAAAAFNAAAAAAFNAAAAAABBAAAAAAOBAAAAAAOBAAAAAAKBAAAAAAABAAAAAAGBAAAAAAMBAAAAAAIBAAAAAAKBAAAAAAEBAAAAAALFAAAAAAFBAAAAAAMBAAAAAABNAAAAAAENAAAAAAGNAAAAAABNAAAAAAFNAAAAAAFBAAAAAAEBAAAAAALBAAAAAAMNAAAAAADBAAAAAAINAAAAAAGBAAAAAAOBAAAAAAHDQAAAAADBAAAAAAKBAAAAAAJNAAAAAAHNAAAAAAFNAAAAAAINAAAAAAFNAAAAAABNAAAAAAGBAAAAAAFNAAAAAAENAAAAAACNAAAAAAFNAAAAAAFNAAAAAAGBAAAAAAJDQAAAAACFAAAAAAABAAAAAAGBAAAAAAIBAAAAAAHNAAAAAABNAAAAAABNAAAAAAFNAAAAAAINAAAAAAFBAAAAAACNAAAAAABNAAAAAABBAAAAAANBAAAAAAABAAAAAACDwAAAAABDQAAAAAAFAAAAAADBAAAAAABBAAAAAAHBAAAAAAKBAAAAAAKBAAAAAACBAAAAAAMBAAAAAADBAAAAAALBAAAAAAOBAAAAAADBAAAAAAFBAAAAAAEBAAAAAAIDQAAAAABDQAAAAAEFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAACBAAAAAAHBAAAAAAKBAAAAAANFAAAAAAFFAAAAAAFBAAAAAAFBAAAAAADBAAAAAAIFAAAAAACFAAAAAADDQAAAAACDQAAAAAEDQAAAAADDQAAAAADDQAAAAAEFAAAAAACFAAAAAADFAAAAAAAFAAAAAACDQAAAAAEFAAAAAACFAAAAAAEBAAAAAALNAAAAAAHDwAAAAADDwAAAAADDwAAAAAADQAAAAABDQAAAAAEDQAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAAEDQAAAAAADQAAAAAADQAAAAAFFAAAAAAEBAAAAAAANAAAAAAEDQAAAAADDwAAAAABDwAAAAABDQAAAAAFDwAAAAACDwAAAAACDQAAAAAFDQAAAAACDQAAAAAEDQAAAAABDwAAAAADDwAAAAACDQAAAAACDQAAAAAEBAAAAAAFBAAAAAAMFAAAAAAFDQAAAAACDwAAAAAADwAAAAAEDwAAAAAEDwAAAAADDwAAAAADDwAAAAABDwAAAAAEDwAAAAACDwAAAAAEDwAAAAACDQAAAAAEFAAAAAACBAAAAAADNAAAAAADDQAAAAADDwAAAAABDwAAAAABDwAAAAABDwAAAAACDwAAAAAADwAAAAAFDwAAAAADDQAAAAAADwAAAAAADwAAAAAFDwAAAAABDQAAAAAAFAAAAAACBAAAAAADBAAAAAADDwAAAAAADwAAAAAFDQAAAAAEDwAAAAACDwAAAAADDQAAAAADFAAAAAACDwAAAAAFDQAAAAAADwAAAAADDwAAAAACDwAAAAADDQAAAAADDQAAAAAADQAAAAAFBAAAAAADDQAAAAABDwAAAAACDQAAAAADDwAAAAAEDwAAAAABDwAAAAABDQAAAAADDQAAAAACDwAAAAAFDwAAAAACDwAAAAAEDQAAAAAADQAAAAAEFAAAAAAFFAAAAAACFAAAAAAD
+ version: 6
+ -2,2:
+ ind: -2,2
+ tiles: FAAAAAAFFAAAAAAABAAAAAAMFAAAAAABFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAADFAAAAAAABAAAAAAFFAAAAAAAFAAAAAADBAAAAAADFAAAAAADFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAABFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAADFAAAAAABFAAAAAAEBAAAAAAHFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAACFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAEBAAAAAAOFAAAAAABFAAAAAADFAAAAAADFAAAAAAEFAAAAAABFAAAAAACFAAAAAABFAAAAAAAFAAAAAADBAAAAAACFAAAAAABFAAAAAAFFAAAAAAEFAAAAAABFAAAAAADFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAACFAAAAAAFFAAAAAABFAAAAAAAFAAAAAABFAAAAAABBAAAAAAPBAAAAAAKFAAAAAAFFAAAAAACFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAAFFAAAAAABFAAAAAACBAAAAAAEBAAAAAAJBAAAAAAJFAAAAAAEFAAAAAAFFAAAAAADFAAAAAACFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAFFAAAAAADFAAAAAABFAAAAAADFAAAAAAFNAAAAAAINAAAAAAGBAAAAAANBAAAAAAPFAAAAAACBAAAAAAMFAAAAAAEFAAAAAABFAAAAAADFAAAAAADFAAAAAADFAAAAAAFFAAAAAACFAAAAAADFAAAAAAAFAAAAAAFNAAAAAADBAAAAAALFAAAAAAAFAAAAAAFFAAAAAADFAAAAAACFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAAFAAAAAABFAAAAAACFAAAAAACNAAAAAACNAAAAAAIFAAAAAADFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABFAAAAAABFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAACBAAAAAAPBAAAAAAMFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAABFAAAAAABBAAAAAAKBAAAAAALFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAEFAAAAAABFAAAAAABFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFBAAAAAALBAAAAAACBAAAAAAPFAAAAAADFAAAAAACFAAAAAABFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAADBAAAAAADBAAAAAACBAAAAAAGFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAEBAAAAAACBAAAAAANBAAAAAABBAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAAFFAAAAAAFFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAAFFAAAAAACFAAAAAACBAAAAAAOBAAAAAALBAAAAAAIBAAAAAANBAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAD
+ version: 6
+ 2,-2:
+ ind: 2,-2
+ tiles: FAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAEBAAAAAAKEAAAAAABBAAAAAAMBAAAAAAJEAAAAAAKEAAAAAAMEAAAAAAHEAAAAAAGEAAAAAALEAAAAAAAEAAAAAACFAAAAAAFFAAAAAADFAAAAAABFAAAAAABFAAAAAAFBAAAAAAMBAAAAAAIBAAAAAAOEAAAAAABEAAAAAAMEAAAAAACEAAAAAAFEAAAAAALEAAAAAAHEAAAAAAIEAAAAAAGFAAAAAADFAAAAAABFAAAAAADFAAAAAAFFAAAAAADBAAAAAADBAAAAAAFBAAAAAAKEAAAAAAJEAAAAAAGEAAAAAANEAAAAAAIEAAAAAACEAAAAAAMEAAAAAAFEAAAAAAAFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAABBAAAAAAIEAAAAAAIEAAAAAAHEAAAAAANEAAAAAAJEAAAAAAEEAAAAAAIEAAAAAAIEAAAAAANEAAAAAADFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAFFAAAAAADBAAAAAAIEAAAAAAIBAAAAAAGEAAAAAAKEAAAAAALEAAAAAAAEAAAAAALEAAAAAABEAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAACFAAAAAACBAAAAAADBAAAAAAFEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAJEAAAAAALEAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAAEFAAAAAADBAAAAAAMBAAAAAAHEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAAGFAAAAAABFAAAAAAFFAAAAAACFAAAAAABFAAAAAABFAAAAAACFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAEBAAAAAALEAAAAAAMEAAAAAAAEAAAAAACEAAAAAAAFAAAAAADFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEFAAAAAADBAAAAAACBAAAAAAMEAAAAAAHEAAAAAALEAAAAAAFFAAAAAAABAAAAAAOBAAAAAAABAAAAAAHFAAAAAADFAAAAAACFAAAAAACFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAEFAAAAAACBAAAAAACEAAAAAAKEAAAAAANBAAAAAAIBAAAAAANBAAAAAAMBAAAAAADBAAAAAAGFAAAAAABFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAACFAAAAAADBAAAAAAAEAAAAAANEAAAAAAHBAAAAAALBAAAAAALBAAAAAAIFAAAAAADFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAFFAAAAAACFAAAAAAAFAAAAAADFAAAAAACBAAAAAAPEAAAAAAAFAAAAAABFAAAAAAEFAAAAAADFAAAAAAEFAAAAAACFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAACBAAAAAAPDQAAAAACFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAABAAAAAAPBAAAAAAKBAAAAAAHFAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAADBAAAAAAHDQAAAAAFFAAAAAADFAAAAAAFFAAAAAAFBAAAAAAPBAAAAAAFBAAAAAABBAAAAAAFDQAAAAABFAAAAAADFAAAAAAFFAAAAAACFAAAAAABFAAAAAACFAAAAAAEFAAAAAAEDQAAAAAADQAAAAAAFAAAAAAFBAAAAAAJBAAAAAACBAAAAAABBAAAAAADDQAAAAAEDQAAAAABDQAAAAABFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAE
+ version: 6
+ -3,-2:
+ ind: -3,-2
+ tiles: BAAAAAAPBAAAAAAOBAAAAAAFFAAAAAABFAAAAAAEFAAAAAABFAAAAAACBAAAAAAGBAAAAAALBAAAAAALDgAAAAADDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAAFAgAAAAAMAgAAAAADAgAAAAADAgAAAAADAgAAAAAGBAAAAAABBAAAAAADBAAAAAAMBAAAAAANDgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADFAAAAAAEAgAAAAAFEQAAAAACBQAAAAADBQAAAAADAgAAAAAFBAAAAAAIFAAAAAAFBAAAAAAJBAAAAAAGDgAAAAADDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMFAAAAAABAgAAAAABBQAAAAACAgAAAAAMBQAAAAACAgAAAAAABAAAAAAPFAAAAAADBAAAAAACBAAAAAAODgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALFAAAAAABAgAAAAAIBQAAAAABBQAAAAAABQAAAAAAAgAAAAAIBAAAAAACFAAAAAAFBAAAAAAGBAAAAAAGDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEDQAAAAAFAgAAAAANBQAAAAADEQAAAAADEQAAAAADAgAAAAAEBAAAAAAFFAAAAAABBAAAAAAKBAAAAAAPDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABFAAAAAAFDQAAAAAFAgAAAAAJBgAAAAADAgAAAAABBQAAAAACAgAAAAABBAAAAAANFAAAAAABBAAAAAAPBAAAAAACDgAAAAACAAAAAAAAAAAAAAAADgAAAAAADgAAAAAEFAAAAAAAFAAAAAACAgAAAAAEAgAAAAANAgAAAAABGwAAAAADAgAAAAAJBAAAAAAFDQAAAAACFAAAAAADBAAAAAAGDgAAAAAEDgAAAAABDgAAAAADDgAAAAABDgAAAAADFAAAAAACDQAAAAAABAAAAAAEBAAAAAACBAAAAAAHBAAAAAAMBAAAAAAGBAAAAAAGDQAAAAADFAAAAAAEBAAAAAAMDgAAAAACDgAAAAAEDgAAAAADDgAAAAADBAAAAAAEDQAAAAAFDQAAAAADFAAAAAACDQAAAAADDQAAAAADBAAAAAAGBAAAAAAEDQAAAAAEDQAAAAAADQAAAAABFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAADAgAAAAAHDQAAAAAEDQAAAAACDQAAAAAFDQAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAANFAAAAAABDQAAAAADDQAAAAAFDQAAAAAADQAAAAACFAAAAAADFAAAAAAFAgAAAAAFDQAAAAADDQAAAAAFDQAAAAAADQAAAAACBAAAAAAKDQAAAAAAFAAAAAABBAAAAAAABAAAAAAOBAAAAAAEDQAAAAACDQAAAAACDQAAAAACDQAAAAAFFAAAAAAABAAAAAABDQAAAAAEDQAAAAACDQAAAAACDQAAAAADDQAAAAABDQAAAAADDQAAAAACDQAAAAAADQAAAAADBAAAAAALBAAAAAABBAAAAAALFAAAAAAFDQAAAAAEFAAAAAAEBAAAAAAEDQAAAAACDQAAAAADDQAAAAABDQAAAAABDQAAAAABFAAAAAACDQAAAAAEDQAAAAADDQAAAAADDQAAAAACDQAAAAABDQAAAAAADQAAAAAEFAAAAAAAFAAAAAAEAgAAAAAGFAAAAAAAFAAAAAAEFAAAAAADFAAAAAABFAAAAAAFFAAAAAACFAAAAAACFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAAFAgAAAAABAgAAAAAHAgAAAAALBAAAAAADBAAAAAAKAgAAAAAMAgAAAAAHBAAAAAAFBAAAAAAPAgAAAAADAgAAAAAKBAAAAAAJBAAAAAADAgAAAAANAgAAAAAHBAAAAAAPBAAAAAAO
+ version: 6
+ -4,-1:
+ ind: -4,-1
+ tiles: DwAAAAABDwAAAAAFDQAAAAAADQAAAAABDQAAAAACDQAAAAAADQAAAAAFDQAAAAAFDQAAAAAADQAAAAABFAAAAAABDQAAAAACAgAAAAAAAgAAAAACAgAAAAAKAgAAAAALDwAAAAACDQAAAAAEDwAAAAAEDQAAAAACDQAAAAAFDQAAAAACDQAAAAAEDQAAAAABDQAAAAACDQAAAAADDQAAAAACFAAAAAADBAAAAAAPAgAAAAALAgAAAAABBQAAAAADDwAAAAACDwAAAAAADwAAAAAFDQAAAAAADQAAAAADDQAAAAAADQAAAAAFDQAAAAAFFAAAAAAADQAAAAABDQAAAAAAFAAAAAAABAAAAAAIAgAAAAABAgAAAAAKBQAAAAACDwAAAAABDwAAAAABDwAAAAAADwAAAAACDQAAAAACDQAAAAACDQAAAAABDQAAAAACFAAAAAAEDQAAAAAFBAAAAAAEFAAAAAADBAAAAAAMAgAAAAAJAgAAAAAABQAAAAACDwAAAAABDwAAAAAFDwAAAAADDwAAAAACDwAAAAACDQAAAAAEDQAAAAAFDQAAAAAFFAAAAAACBAAAAAANBAAAAAAKBAAAAAAIAgAAAAALAgAAAAADAgAAAAACBQAAAAADDwAAAAAADwAAAAAEDwAAAAAFDwAAAAAADwAAAAACFAAAAAABFAAAAAAEDQAAAAADFAAAAAAFFAAAAAAFBAAAAAAGBAAAAAAEAgAAAAAJAgAAAAAEAgAAAAAGAgAAAAAMFAAAAAAEDwAAAAAADwAAAAADDwAAAAADDwAAAAABFAAAAAABFAAAAAAFDQAAAAACBAAAAAALBAAAAAAKBAAAAAADBAAAAAADBAAAAAADAgAAAAAJAgAAAAADNQAAAAAADwAAAAADDwAAAAADDwAAAAADDwAAAAABDQAAAAAFFAAAAAADDQAAAAACDQAAAAACBAAAAAABBAAAAAAJBAAAAAAGBAAAAAABBAAAAAAIBAAAAAABAgAAAAACNQAAAAAADwAAAAADDwAAAAACDwAAAAAADwAAAAACDQAAAAAAFAAAAAAEDQAAAAABDQAAAAADDQAAAAACBAAAAAABBAAAAAALBAAAAAAIBAAAAAAKBAAAAAAKAgAAAAAKNQAAAAAADwAAAAAFFAAAAAACDwAAAAABDwAAAAAFFAAAAAACFAAAAAABFAAAAAABDQAAAAADDQAAAAAFBAAAAAAFBAAAAAAJBAAAAAAFBAAAAAAMBAAAAAAHAgAAAAALDQAAAAABDwAAAAAFDwAAAAACDwAAAAACDwAAAAAADQAAAAABFAAAAAACDQAAAAAFDQAAAAADDQAAAAADBAAAAAAPBAAAAAAPBAAAAAABBAAAAAAKAgAAAAAEAgAAAAAAFAAAAAACDwAAAAAEDwAAAAAFDwAAAAAADwAAAAADDQAAAAAAFAAAAAACDQAAAAAADQAAAAABDQAAAAAFDQAAAAAABAAAAAALBAAAAAAMBAAAAAADAgAAAAAGAgAAAAAGDwAAAAAADwAAAAAEDwAAAAABDwAAAAABDwAAAAADDwAAAAACDQAAAAAAFAAAAAACDQAAAAAFDQAAAAADDQAAAAABDQAAAAACFAAAAAAAFAAAAAACAgAAAAAFAgAAAAAHDQAAAAAEDwAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAAFDQAAAAADDQAAAAAEDQAAAAAFDQAAAAABFAAAAAACDQAAAAABDQAAAAAEFAAAAAAFBAAAAAAOAgAAAAANFAAAAAACDwAAAAACFAAAAAADDwAAAAAAFAAAAAACDwAAAAACDQAAAAABDQAAAAABDQAAAAACDQAAAAAFFAAAAAACFAAAAAADBAAAAAAPFAAAAAAAFAAAAAADAgAAAAAJBAAAAAAKFAAAAAAFDwAAAAAFDwAAAAAADwAAAAADFAAAAAABDQAAAAABDQAAAAADDQAAAAADDQAAAAAADQAAAAACFAAAAAABFAAAAAAEFAAAAAAABAAAAAAEAgAAAAAFDQAAAAAE
+ version: 6
+ -4,0:
+ ind: -4,0
+ tiles: DQAAAAADDQAAAAACDQAAAAABDwAAAAAFDwAAAAACFAAAAAAADQAAAAADDQAAAAAADQAAAAAADQAAAAADFAAAAAABFAAAAAAEBAAAAAAEAgAAAAAIAgAAAAAJAgAAAAAFDwAAAAADDwAAAAAEDwAAAAADDQAAAAAFDwAAAAADFAAAAAAEDQAAAAAFDQAAAAADDQAAAAAADQAAAAACFAAAAAABFAAAAAADBAAAAAAGAgAAAAAAAgAAAAAFNAAAAAADDwAAAAABDwAAAAACFAAAAAADDwAAAAAFDwAAAAACDwAAAAAFDwAAAAACDQAAAAACDQAAAAACDQAAAAAAFAAAAAAFFAAAAAADBAAAAAAIAgAAAAAJAgAAAAANNAAAAAAADwAAAAADDwAAAAACDwAAAAABDwAAAAAFDwAAAAAFDQAAAAABDQAAAAADDQAAAAADDQAAAAAFFAAAAAAADQAAAAAFFAAAAAACFAAAAAAEFAAAAAACAgAAAAANHAAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAAFDwAAAAAFDwAAAAAEDQAAAAACDwAAAAABFAAAAAABDQAAAAABDQAAAAAAFAAAAAADBAAAAAAIBAAAAAAIAgAAAAACNAAAAAAIDQAAAAAFDwAAAAABDwAAAAACDwAAAAACDwAAAAAFDwAAAAAEDwAAAAAFDQAAAAAAFAAAAAABDQAAAAAEDQAAAAAFFAAAAAADBAAAAAAGAgAAAAADAgAAAAAMNAAAAAAGDQAAAAADFAAAAAACDwAAAAAEDwAAAAADDwAAAAAFDwAAAAABDwAAAAABFAAAAAAADwAAAAAADQAAAAACDQAAAAACDQAAAAAEBAAAAAAPAgAAAAAHAgAAAAACAgAAAAADFAAAAAACDQAAAAABDQAAAAAADQAAAAAADQAAAAAEDwAAAAABDwAAAAAEDwAAAAABDwAAAAACDQAAAAADDQAAAAAFDQAAAAADFAAAAAAEAgAAAAAIAgAAAAAMAgAAAAABDQAAAAACFAAAAAABFAAAAAAFDQAAAAACDQAAAAAFDQAAAAABDwAAAAAEDwAAAAAFDwAAAAABDwAAAAAFDQAAAAAADQAAAAACFAAAAAAEBAAAAAAKBAAAAAAPBAAAAAACDQAAAAAADQAAAAADDQAAAAACFAAAAAACFAAAAAABFAAAAAAADQAAAAAADwAAAAADDwAAAAAADwAAAAABDQAAAAAADQAAAAAEFAAAAAAAFAAAAAACFAAAAAAAFAAAAAACDQAAAAAFDQAAAAACFAAAAAABDQAAAAACDQAAAAADFAAAAAAAFAAAAAABDQAAAAAEDwAAAAACDwAAAAABDwAAAAAADwAAAAABFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAAFDQAAAAACDQAAAAAFFAAAAAAADQAAAAACDQAAAAAFDQAAAAAEDQAAAAAFDQAAAAADDwAAAAAEDwAAAAAADwAAAAAFDwAAAAACDQAAAAAFDQAAAAAEFAAAAAAFFAAAAAACFAAAAAADFAAAAAADDQAAAAAEFAAAAAAADQAAAAADDQAAAAACDQAAAAADDQAAAAABDQAAAAADDQAAAAAFDwAAAAADDwAAAAABDwAAAAAADwAAAAABDwAAAAAFBAAAAAAOBAAAAAAJFAAAAAACBAAAAAAKDQAAAAAADQAAAAAAFAAAAAABDQAAAAAADQAAAAAAFAAAAAACDQAAAAABDQAAAAAEDwAAAAADDwAAAAAADwAAAAACDwAAAAABNAAAAAAHBAAAAAANBAAAAAAJFAAAAAAEFAAAAAAFFAAAAAAADQAAAAADDQAAAAAFDQAAAAAADQAAAAACDQAAAAAFDQAAAAAADQAAAAAADQAAAAAADwAAAAADDwAAAAAFNAAAAAAINAAAAAAABAAAAAAPBAAAAAAIBAAAAAAAFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAADQAAAAAAFAAAAAAEDQAAAAAFFAAAAAAFDQAAAAADDQAAAAAE
+ version: 6
+ -2,-3:
+ ind: -2,-3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAAACAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAABCAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAABCAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAABCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAABCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAADCAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAABCAAAAAACCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAADCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAACCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAABCgAAAAADCgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-3:
+ ind: -1,-3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAADCAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAADCAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAADCgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAACCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAACAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAAACAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAADDgAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAACCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACDgAAAAAEFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAADgAAAAABFAAAAAADFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAABCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAAAFAAAAAABFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAACCAAAAAABCAAAAAADAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAABFAAAAAABFAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAABCAAAAAABAAAAAAAADgAAAAAADgAAAAABDgAAAAAEFAAAAAAEFAAAAAACDQAAAAADDQAAAAABBAAAAAAA
+ version: 6
+ 0,-3:
+ ind: 0,-3
+ tiles: AAAAAAAADgAAAAADDgAAAAABBAAAAAALBAAAAAADBAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAACFAAAAAABFAAAAAACBAAAAAABAAAAAAAADgAAAAABBAAAAAAGBAAAAAALBAAAAAAAFAAAAAAAFAAAAAAEDQAAAAADDQAAAAAFDQAAAAADDQAAAAAADQAAAAACDQAAAAAEDQAAAAADFAAAAAAEFAAAAAACDgAAAAAADgAAAAAABAAAAAALBAAAAAAEFAAAAAABFAAAAAAFDQAAAAAEDwAAAAAADwAAAAACDQAAAAABDwAAAAADFAAAAAACDQAAAAADDQAAAAAEFAAAAAAAFAAAAAABDgAAAAAEBAAAAAACBAAAAAABFAAAAAAFFAAAAAAADQAAAAABDwAAAAADDwAAAAAFDQAAAAAADQAAAAAADQAAAAAFDQAAAAABFAAAAAAFFAAAAAAEFAAAAAACBAAAAAAADgAAAAAABAAAAAAHBAAAAAAHFAAAAAABDQAAAAACDQAAAAAEDwAAAAAADQAAAAACDQAAAAACDQAAAAADFAAAAAAFFAAAAAADFAAAAAAABAAAAAAIBAAAAAAABAAAAAAODgAAAAAADgAAAAABFAAAAAAEDQAAAAAEDQAAAAADDQAAAAACDQAAAAABFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAEBAAAAAAEBAAAAAAPBAAAAAALEAAAAAAFEAAAAAAADgAAAAADDgAAAAADFAAAAAAADQAAAAAFDQAAAAAADQAAAAAEFAAAAAAEFAAAAAACBAAAAAAKBAAAAAAPBAAAAAAHBAAAAAAIEAAAAAANEAAAAAACEAAAAAAGEAAAAAAEDgAAAAACFAAAAAAAFAAAAAAADQAAAAABDQAAAAAEBAAAAAAHFAAAAAADBAAAAAADBAAAAAAGBAAAAAAAEAAAAAACEAAAAAALEAAAAAABEAAAAAAIEAAAAAAJEAAAAAALFAAAAAADFAAAAAADFAAAAAACDQAAAAABBAAAAAAOBAAAAAACBAAAAAAHBAAAAAALEAAAAAAHEAAAAAANEAAAAAAKEAAAAAAEEAAAAAAAEAAAAAAIEAAAAAAFEAAAAAADDgAAAAAAFAAAAAABDQAAAAAEDQAAAAAABAAAAAAIBAAAAAAFBAAAAAACEAAAAAADEAAAAAAHEAAAAAANEAAAAAADEAAAAAAHEAAAAAAFEAAAAAAGEAAAAAAEEAAAAAAHFAAAAAABDQAAAAAEDQAAAAADBAAAAAAFBAAAAAAOBAAAAAADEAAAAAAGEAAAAAABEAAAAAAFEAAAAAAFEAAAAAAFEAAAAAADEAAAAAAAEAAAAAACEAAAAAANEAAAAAANFAAAAAABDQAAAAACBAAAAAAEBAAAAAAEEAAAAAAJEAAAAAAGEAAAAAALEAAAAAADEAAAAAANEAAAAAALEAAAAAAMEAAAAAAAEAAAAAALEAAAAAANEAAAAAAIEAAAAAAJFAAAAAADBAAAAAALBAAAAAAEEAAAAAAEEAAAAAAAEAAAAAAFEAAAAAAEEAAAAAACEAAAAAACEAAAAAAAEAAAAAALEAAAAAAEEAAAAAAHEAAAAAABEAAAAAAHEAAAAAABFAAAAAAFBAAAAAAMEAAAAAAFEAAAAAAGEAAAAAAAEAAAAAACEAAAAAALEAAAAAAMEAAAAAAJEAAAAAAIEAAAAAAFEAAAAAAHEAAAAAAIEAAAAAABEAAAAAANEAAAAAACBAAAAAAJEAAAAAAGEAAAAAADEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAAKEAAAAAANEAAAAAACEAAAAAABEAAAAAAIEAAAAAACEAAAAAANEAAAAAAMEAAAAAAJEAAAAAACEAAAAAAFEAAAAAANEAAAAAABEAAAAAADEAAAAAABEAAAAAAGEAAAAAAMEAAAAAAGEAAAAAAKEAAAAAAGEAAAAAABEAAAAAAFEAAAAAABEAAAAAADEAAAAAAEBAAAAAAP
+ version: 6
+ 1,-3:
+ ind: 1,-3
+ tiles: BAAAAAAEBAAAAAAPBAAAAAAFBAAAAAACBAAAAAAABAAAAAAEBAAAAAADEAAAAAABEAAAAAAKEAAAAAAMBAAAAAABBAAAAAAFBAAAAAAOBAAAAAANEAAAAAAMEAAAAAAGBAAAAAAHBAAAAAAGBAAAAAAOBAAAAAAMEAAAAAAJEAAAAAAJBAAAAAAFBAAAAAAOEAAAAAAGBAAAAAAPBAAAAAAJBAAAAAABBAAAAAAMEAAAAAALEAAAAAADEAAAAAABBAAAAAANBAAAAAALBAAAAAAIEAAAAAADEAAAAAAMEAAAAAAIBAAAAAAPEAAAAAAFEAAAAAACEAAAAAAKEAAAAAABEAAAAAAJEAAAAAAJEAAAAAAIEAAAAAACEAAAAAAGBAAAAAAEBAAAAAADBAAAAAAGBAAAAAAFBAAAAAAEBAAAAAADEAAAAAAMBAAAAAALBAAAAAAHEAAAAAAMBAAAAAAJEAAAAAAGEAAAAAAJEAAAAAAAEAAAAAAJEAAAAAAKBAAAAAACBAAAAAAMBAAAAAAOEAAAAAALEAAAAAAKEAAAAAANBAAAAAACEAAAAAAKEAAAAAAGBAAAAAAEEAAAAAAHEAAAAAAHEAAAAAAMEAAAAAAAEAAAAAAMEAAAAAACEAAAAAAEEAAAAAAKEAAAAAAJEAAAAAACEAAAAAAKEAAAAAABEAAAAAABEAAAAAAAEAAAAAAEEAAAAAAGEAAAAAAFEAAAAAALEAAAAAAEEAAAAAAHEAAAAAAJEAAAAAANEAAAAAADEAAAAAAGEAAAAAAJEAAAAAACEAAAAAAHEAAAAAAAEAAAAAANEAAAAAALBAAAAAAPEAAAAAAIEAAAAAAEEAAAAAALEAAAAAADEAAAAAAHEAAAAAAHEAAAAAAGEAAAAAAIEAAAAAAJEAAAAAAFEAAAAAAMEAAAAAACEAAAAAALEAAAAAAKEAAAAAAKEAAAAAACBAAAAAABEAAAAAAJBAAAAAALEAAAAAAHEAAAAAAIEAAAAAADEAAAAAAKEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAAGEAAAAAAJEAAAAAACEAAAAAACEAAAAAAHEAAAAAAFEAAAAAAJEAAAAAANEAAAAAAFEAAAAAAFEAAAAAANEAAAAAACEAAAAAAEEAAAAAAIEAAAAAAEEAAAAAAIEAAAAAAKEAAAAAAAEAAAAAAKEAAAAAAHEAAAAAACEAAAAAAGEAAAAAAJEAAAAAAJEAAAAAAIEAAAAAAFEAAAAAAMEAAAAAANEAAAAAAJEAAAAAAGEAAAAAAJEAAAAAAJEAAAAAACEAAAAAAJEAAAAAAABAAAAAAJBAAAAAAJEAAAAAADEAAAAAAEEAAAAAALEAAAAAAHEAAAAAAIEAAAAAAAEAAAAAAHEAAAAAAGEAAAAAALEAAAAAACEAAAAAAGEAAAAAAFEAAAAAACEAAAAAADBAAAAAACBAAAAAABBAAAAAAKBAAAAAAFBAAAAAAMEAAAAAAIEAAAAAAHEAAAAAACEAAAAAAKEAAAAAACEAAAAAAEEAAAAAAEEAAAAAAFEAAAAAAMBAAAAAADBAAAAAADBAAAAAAAFAAAAAACFAAAAAACFAAAAAABBAAAAAAOBAAAAAANEAAAAAACEAAAAAACEAAAAAABEAAAAAADEAAAAAAFBAAAAAALBAAAAAAKBAAAAAANFAAAAAAEFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAADBAAAAAANBAAAAAAPEAAAAAAIEAAAAAAABAAAAAAABAAAAAAEBAAAAAALBAAAAAANFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAEFAAAAAADBAAAAAAMEAAAAAAMBAAAAAAGEAAAAAAIBAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAABBAAAAAADBAAAAAAJ
+ version: 6
+ 0,-4:
+ ind: 0,-4
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAEDgAAAAACDgAAAAABDgAAAAABDgAAAAADDgAAAAABDgAAAAADDgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAADgAAAAADDgAAAAACDgAAAAAEDgAAAAAADgAAAAACDgAAAAADDgAAAAADDgAAAAABDgAAAAAADgAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAADgAAAAADDgAAAAAEDgAAAAADBAAAAAAJBAAAAAALBAAAAAAMBAAAAAABBAAAAAAFBAAAAAAHBAAAAAAABAAAAAAKAAAAAAAAAAAAAAAADgAAAAACDgAAAAAADgAAAAADBAAAAAAMBAAAAAAKBAAAAAAOBAAAAAABBAAAAAAKBAAAAAAABAAAAAAHBAAAAAAJBAAAAAAHBAAAAAAFBAAAAAAAAAAAAAAAAAAAAAAADgAAAAADBAAAAAAGBAAAAAABBAAAAAADBAAAAAAEBAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEBAAAAAABBAAAAAAABAAAAAAOBAAAAAAN
+ version: 6
+ 1,-4:
+ ind: 1,-4
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAEBAAAAAAGDgAAAAAEDgAAAAAEDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAEDgAAAAADDgAAAAAABAAAAAAMBAAAAAANAAAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAAADgAAAAAADgAAAAADDgAAAAAEDgAAAAADDgAAAAACBAAAAAALBAAAAAAPBAAAAAAMBAAAAAAPBAAAAAANBAAAAAAKBAAAAAANBAAAAAANBAAAAAANDgAAAAABBAAAAAAFBAAAAAAEBAAAAAAFBAAAAAAPBAAAAAAIDgAAAAADBAAAAAAMBAAAAAAABAAAAAALBAAAAAAG
+ version: 6
+ 2,-3:
+ ind: 2,-3
+ tiles: EAAAAAAJEAAAAAAFEAAAAAAIEAAAAAAMEAAAAAAFEAAAAAAIEAAAAAAMEAAAAAAAEAAAAAABEAAAAAACEAAAAAAKEAAAAAAMEAAAAAABEAAAAAAHEAAAAAAIEAAAAAAAEAAAAAAMEAAAAAAKEAAAAAANEAAAAAACEAAAAAAFEAAAAAAGEAAAAAADEAAAAAAEEAAAAAAFEAAAAAACEAAAAAACEAAAAAALEAAAAAAGEAAAAAANEAAAAAABEAAAAAAJEAAAAAAJEAAAAAAMEAAAAAAAEAAAAAALEAAAAAAKEAAAAAACEAAAAAAJEAAAAAAAEAAAAAACEAAAAAAIEAAAAAAMEAAAAAAMEAAAAAAIEAAAAAAAEAAAAAAJEAAAAAAAEAAAAAAJEAAAAAAMEAAAAAAMEAAAAAABEAAAAAABEAAAAAALEAAAAAAHEAAAAAAFEAAAAAAHEAAAAAAIEAAAAAAHEAAAAAAFEAAAAAAFEAAAAAADEAAAAAAKEAAAAAALEAAAAAANEAAAAAADEAAAAAAHEAAAAAABEAAAAAACEAAAAAAAEAAAAAANEAAAAAAAEAAAAAAIEAAAAAADEAAAAAACEAAAAAAAEAAAAAAMEAAAAAADEAAAAAAMEAAAAAAHEAAAAAAHEAAAAAALEAAAAAACEAAAAAAJEAAAAAAGEAAAAAAGEAAAAAAAEAAAAAAFEAAAAAACEAAAAAAGEAAAAAACEAAAAAAMEAAAAAACEAAAAAAHEAAAAAABEAAAAAAFEAAAAAACEAAAAAAHEAAAAAAMEAAAAAALEAAAAAACEAAAAAALEAAAAAAIEAAAAAAAEAAAAAAJEAAAAAAEEAAAAAAMEAAAAAAFEAAAAAAJEAAAAAADEAAAAAAFEAAAAAAJEAAAAAABEAAAAAAMEAAAAAAJEAAAAAAAEAAAAAAKEAAAAAACEAAAAAAJEAAAAAALEAAAAAAGEAAAAAAMEAAAAAAJEAAAAAACEAAAAAANEAAAAAABEAAAAAAGEAAAAAAEEAAAAAAAEAAAAAANEAAAAAACEAAAAAAHEAAAAAANEAAAAAAIEAAAAAABEAAAAAAIEAAAAAAEEAAAAAADEAAAAAAKEAAAAAABEAAAAAALEAAAAAAFEAAAAAAJEAAAAAAIEAAAAAADEAAAAAAFEAAAAAAHEAAAAAAHEAAAAAAMEAAAAAAMEAAAAAALEAAAAAAKEAAAAAAAEAAAAAAGEAAAAAALEAAAAAANEAAAAAAJEAAAAAAJEAAAAAAHEAAAAAAAEAAAAAAKEAAAAAAFEAAAAAAEEAAAAAAFEAAAAAABBAAAAAAFBAAAAAACEAAAAAAMEAAAAAAKEAAAAAAMEAAAAAAEEAAAAAAGEAAAAAAMEAAAAAAGEAAAAAACEAAAAAAHEAAAAAADEAAAAAAMBAAAAAAMBAAAAAAAEAAAAAABEAAAAAABBAAAAAAKBAAAAAAGEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAEEAAAAAAJEAAAAAAFEAAAAAALEAAAAAAGEAAAAAAJBAAAAAACFAAAAAACBAAAAAAOBAAAAAAKEAAAAAAJEAAAAAACBAAAAAAABAAAAAAPEAAAAAAKEAAAAAAMEAAAAAAHEAAAAAALEAAAAAAJEAAAAAADEAAAAAAIBAAAAAABFAAAAAACFAAAAAAFFAAAAAACBAAAAAAJBAAAAAAIEAAAAAACBAAAAAAPBAAAAAAFEAAAAAAKEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAEEAAAAAAHEAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAABAAAAAAGEAAAAAANBAAAAAANEAAAAAADEAAAAAABEAAAAAALEAAAAAACEAAAAAAAEAAAAAAMEAAAAAADEAAAAAAHFAAAAAADFAAAAAADFAAAAAABFAAAAAAEFAAAAAAFBAAAAAAEEAAAAAAHEAAAAAAMEAAAAAAIEAAAAAACEAAAAAAMEAAAAAADEAAAAAAAEAAAAAAFEAAAAAAFEAAAAAAN
+ version: 6
+ 2,-4:
+ ind: 2,-4
+ tiles: BAAAAAAEBAAAAAANBAAAAAALDwAAAAABDwAAAAABDwAAAAACDQAAAAABDQAAAAACDwAAAAAADQAAAAAFFAAAAAAAFAAAAAABBAAAAAAGBAAAAAALBAAAAAAHBAAAAAAIDgAAAAABBAAAAAAEBAAAAAAHDQAAAAABDQAAAAADDwAAAAADDwAAAAADDQAAAAAFDQAAAAADFAAAAAADBAAAAAACFAAAAAAABAAAAAAKBAAAAAAGFAAAAAAEBAAAAAADDgAAAAACBAAAAAAGBAAAAAAKBAAAAAAPFAAAAAABDQAAAAACDwAAAAAFBAAAAAAAFAAAAAACBAAAAAANBAAAAAALBAAAAAAKFAAAAAAAFAAAAAADEAAAAAAJEAAAAAAJDgAAAAADDgAAAAADBAAAAAAHBAAAAAABBAAAAAANFAAAAAADFAAAAAAFFAAAAAAABAAAAAAAEAAAAAAKEAAAAAAKBAAAAAAFBAAAAAAHEAAAAAADEAAAAAAKEAAAAAAMAAAAAAAADgAAAAAEBAAAAAAFBAAAAAAPBAAAAAAKFAAAAAADBAAAAAAFBAAAAAAGBAAAAAAPEAAAAAABEAAAAAADBAAAAAABBAAAAAAEEAAAAAAHEAAAAAADEAAAAAAJAAAAAAAADgAAAAACDgAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAPFAAAAAAAEAAAAAABEAAAAAABEAAAAAAHEAAAAAAJEAAAAAAIBAAAAAAHBAAAAAAJBAAAAAAGAAAAAAAADgAAAAAEBAAAAAAPBAAAAAAHBAAAAAAABAAAAAAKBAAAAAAPBAAAAAALEAAAAAAJEAAAAAACEAAAAAAJEAAAAAAAEAAAAAAGBAAAAAAKBAAAAAAJBAAAAAAMDgAAAAACDgAAAAADBAAAAAAMBAAAAAADFAAAAAAFBAAAAAAKEAAAAAAFEAAAAAALEAAAAAAGEAAAAAADEAAAAAALEAAAAAANEAAAAAADEAAAAAALBAAAAAAEEAAAAAAHDgAAAAADDgAAAAADDgAAAAAEBAAAAAAIBAAAAAAJEAAAAAAFEAAAAAADEAAAAAANEAAAAAADEAAAAAAFEAAAAAAEEAAAAAALEAAAAAAKEAAAAAAABAAAAAAEEAAAAAAEDgAAAAAEBAAAAAACBAAAAAAABAAAAAADBAAAAAACEAAAAAAHEAAAAAAMEAAAAAALEAAAAAAIEAAAAAACEAAAAAADEAAAAAAMEAAAAAAKEAAAAAAGEAAAAAALBAAAAAALBAAAAAACBAAAAAACBAAAAAANBAAAAAAKEAAAAAAEEAAAAAAEEAAAAAAMEAAAAAACEAAAAAAIEAAAAAAMEAAAAAAHEAAAAAADEAAAAAABEAAAAAAMEAAAAAAKBAAAAAANBAAAAAAJEAAAAAACEAAAAAACEAAAAAADEAAAAAABEAAAAAAIEAAAAAAKEAAAAAAHEAAAAAAKEAAAAAACEAAAAAACEAAAAAAHEAAAAAAJEAAAAAAJEAAAAAACEAAAAAALBAAAAAAFEAAAAAABEAAAAAAJEAAAAAAKEAAAAAAAEAAAAAANEAAAAAACEAAAAAAKEAAAAAAAEAAAAAALEAAAAAAJEAAAAAACEAAAAAAHEAAAAAAIEAAAAAAKEAAAAAAEBAAAAAACEAAAAAAIEAAAAAABEAAAAAAHEAAAAAAAEAAAAAAMEAAAAAAGEAAAAAABEAAAAAAFEAAAAAAGEAAAAAACEAAAAAAAEAAAAAALEAAAAAABEAAAAAAFEAAAAAAEBAAAAAAAEAAAAAAHEAAAAAAMEAAAAAAGEAAAAAAIEAAAAAAAEAAAAAAKEAAAAAAHEAAAAAAHEAAAAAADEAAAAAALEAAAAAAFEAAAAAAGEAAAAAAIEAAAAAAMEAAAAAADEAAAAAAMEAAAAAANEAAAAAALEAAAAAAFEAAAAAALEAAAAAAJEAAAAAAKEAAAAAACEAAAAAAEEAAAAAAKEAAAAAAEEAAAAAAGEAAAAAAKEAAAAAALEAAAAAACEAAAAAAD
+ version: 6
+ 3,-4:
+ ind: 3,-4
+ tiles: DQAAAAADDQAAAAAFDQAAAAAEDQAAAAAFDQAAAAAFDQAAAAACDQAAAAAADQAAAAABDwAAAAACDwAAAAAFDQAAAAADDwAAAAACDwAAAAAEDQAAAAAFDQAAAAAFBAAAAAAIDQAAAAACBAAAAAAKFAAAAAADDQAAAAACDQAAAAACDQAAAAAFDQAAAAACDQAAAAAADQAAAAAADwAAAAACDwAAAAADDwAAAAAEDQAAAAABFAAAAAABFAAAAAADBAAAAAAJBAAAAAAJFAAAAAACBAAAAAAODQAAAAABDQAAAAADDQAAAAADDQAAAAADDQAAAAAADwAAAAAEDwAAAAAFDwAAAAACDwAAAAACDQAAAAAFFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAEBAAAAAABFAAAAAAEDwAAAAAEDwAAAAACFAAAAAADDQAAAAACDwAAAAAAFAAAAAABDQAAAAAEDwAAAAACDwAAAAACDQAAAAADFAAAAAADFAAAAAABBAAAAAAPBAAAAAAHBAAAAAAGBAAAAAAEDQAAAAACDwAAAAABDwAAAAACDwAAAAACDwAAAAAEDwAAAAABDQAAAAAAFAAAAAAFDwAAAAABDQAAAAAEDQAAAAABFAAAAAACBAAAAAACBAAAAAAEBAAAAAAEBAAAAAAADQAAAAAAFAAAAAACDQAAAAAEDwAAAAACDwAAAAAFDwAAAAABDwAAAAACDQAAAAAFDwAAAAADDwAAAAAEFAAAAAADDQAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAAEDQAAAAACFAAAAAAEFAAAAAACFAAAAAAFDQAAAAABDQAAAAAFDwAAAAABDwAAAAAEDwAAAAAFDwAAAAACDwAAAAADDQAAAAAEEAAAAAAFBAAAAAAMBAAAAAAABAAAAAABFAAAAAAADQAAAAAEFAAAAAACFAAAAAABFAAAAAACDQAAAAAADQAAAAAADwAAAAAEDwAAAAAFDwAAAAABDwAAAAAEDwAAAAAAEAAAAAAJBAAAAAAIBAAAAAAJFAAAAAADFAAAAAABDQAAAAACFAAAAAAAFAAAAAABFAAAAAACDwAAAAABDwAAAAABDwAAAAACDwAAAAAFDwAAAAAFDwAAAAADDwAAAAAFBAAAAAAFBAAAAAAEBAAAAAAJFAAAAAADFAAAAAAEBAAAAAAFDQAAAAACFAAAAAAADQAAAAACDwAAAAAFFAAAAAAADwAAAAACDwAAAAAEDQAAAAADDwAAAAAEDwAAAAAABAAAAAAJBAAAAAAKBAAAAAAEBAAAAAAFBAAAAAAFBAAAAAAFBAAAAAAKDQAAAAADDQAAAAAFFAAAAAABDwAAAAABDwAAAAADDwAAAAAFDQAAAAAFDQAAAAADDQAAAAAAEAAAAAAHBAAAAAAIBAAAAAADBAAAAAANBAAAAAAPBAAAAAAJBAAAAAADBAAAAAAIFAAAAAACDQAAAAABDwAAAAACDwAAAAACDwAAAAACDQAAAAADDQAAAAABDQAAAAAAEAAAAAABEAAAAAAMBAAAAAALBAAAAAAPBAAAAAAKBAAAAAAKBAAAAAABFAAAAAAEFAAAAAAEDQAAAAABDwAAAAAEDwAAAAACDwAAAAAEDQAAAAABDQAAAAAFDQAAAAAFEAAAAAALEAAAAAANEAAAAAALEAAAAAABBAAAAAALBAAAAAAIBAAAAAAPFAAAAAADDQAAAAAFDQAAAAACDwAAAAACDwAAAAACDwAAAAACDQAAAAACDQAAAAACFAAAAAAAEAAAAAABEAAAAAAJEAAAAAALEAAAAAACEAAAAAAJBAAAAAAABAAAAAAPFAAAAAAADQAAAAAADQAAAAAEDwAAAAACDwAAAAADDwAAAAADDQAAAAAADQAAAAAEFAAAAAAFEAAAAAABEAAAAAAFEAAAAAAEBAAAAAANEAAAAAAFBAAAAAAOBAAAAAAOFAAAAAAADQAAAAACDQAAAAAEDwAAAAAEDwAAAAACDwAAAAAEDQAAAAAADQAAAAAFFAAAAAAC
+ version: 6
+ 3,-3:
+ ind: 3,-3
+ tiles: EAAAAAAHEAAAAAAEEAAAAAAFEAAAAAAAEAAAAAACBAAAAAAHBAAAAAANFAAAAAABDQAAAAABDQAAAAAFDQAAAAAFDwAAAAACDwAAAAAADQAAAAAFFAAAAAABFAAAAAABEAAAAAAIEAAAAAABEAAAAAAIBAAAAAAPEAAAAAABBAAAAAANFAAAAAAAFAAAAAACDQAAAAABDQAAAAAFFAAAAAABDwAAAAAFDwAAAAACDwAAAAAADQAAAAABFAAAAAAEEAAAAAAIEAAAAAAGEAAAAAABEAAAAAALEAAAAAAEBAAAAAAFBAAAAAAKFAAAAAAAFAAAAAAADQAAAAAFDQAAAAAFDQAAAAADDwAAAAABDwAAAAACDwAAAAABFAAAAAADEAAAAAAGEAAAAAAFEAAAAAACEAAAAAAEEAAAAAAIBAAAAAAGBAAAAAAJFAAAAAADFAAAAAACDQAAAAABDQAAAAAFDQAAAAAADQAAAAAFDwAAAAAADwAAAAABDQAAAAAEEAAAAAAAEAAAAAANEAAAAAAFEAAAAAANEAAAAAAEBAAAAAAKBAAAAAAMFAAAAAABBAAAAAAGFAAAAAADFAAAAAAFFAAAAAADDQAAAAAEDQAAAAABDQAAAAACDwAAAAABEAAAAAABEAAAAAAEEAAAAAAABAAAAAAFEAAAAAAFEAAAAAANBAAAAAAIBAAAAAAPFAAAAAADFAAAAAABFAAAAAAFFAAAAAACDQAAAAACDQAAAAADDwAAAAABDwAAAAAAEAAAAAAFEAAAAAADEAAAAAADBAAAAAAPBAAAAAAOBAAAAAALBAAAAAABBAAAAAAIBAAAAAADBAAAAAAIBAAAAAAHFAAAAAABDQAAAAADDQAAAAACDwAAAAACDwAAAAADEAAAAAABEAAAAAAEEAAAAAAGEAAAAAAMEAAAAAAABAAAAAAEBAAAAAAEBAAAAAAHBAAAAAABBAAAAAAPFAAAAAAFFAAAAAAFDQAAAAACDQAAAAAADwAAAAACDwAAAAABEAAAAAABEAAAAAADEAAAAAALEAAAAAAMEAAAAAABBAAAAAAGBAAAAAAFBAAAAAADBAAAAAAMBAAAAAAOBAAAAAADBAAAAAAHDQAAAAAADQAAAAAEDwAAAAAEDQAAAAABEAAAAAAJEAAAAAANEAAAAAABEAAAAAAEEAAAAAANBAAAAAALEAAAAAACEAAAAAAGBAAAAAAGBAAAAAABBAAAAAAPFAAAAAADDQAAAAABDwAAAAADDwAAAAACDQAAAAAFEAAAAAAJEAAAAAADEAAAAAAIEAAAAAADEAAAAAADEAAAAAAAEAAAAAANEAAAAAABEAAAAAAEBAAAAAANBAAAAAAJBAAAAAAFDQAAAAADDwAAAAACDQAAAAAAFAAAAAADEAAAAAAKEAAAAAANEAAAAAACEAAAAAAGEAAAAAAHEAAAAAAFEAAAAAAIEAAAAAAJEAAAAAAABAAAAAANBAAAAAAFBAAAAAAIDwAAAAACDwAAAAAFFAAAAAAEFAAAAAABEAAAAAAGEAAAAAADEAAAAAADEAAAAAAJEAAAAAAFEAAAAAACEAAAAAAFEAAAAAACEAAAAAANBAAAAAAEBAAAAAAKBAAAAAAAFAAAAAAFFAAAAAABBAAAAAAABAAAAAAGEAAAAAAEEAAAAAACEAAAAAALEAAAAAABEAAAAAALEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAIEAAAAAAJBAAAAAAHBAAAAAAABAAAAAAHFAAAAAABBAAAAAALBAAAAAAJEAAAAAAJEAAAAAAJEAAAAAAKEAAAAAAMEAAAAAAIEAAAAAALEAAAAAANEAAAAAAFEAAAAAALEAAAAAABBAAAAAANBAAAAAAOBAAAAAAOBAAAAAAMBAAAAAANBAAAAAAOEAAAAAAFEAAAAAAGEAAAAAAFEAAAAAABEAAAAAAMEAAAAAALEAAAAAADEAAAAAAIEAAAAAAIEAAAAAALEAAAAAAABAAAAAAEBAAAAAAIBAAAAAAOBAAAAAANBAAAAAAF
+ version: 6
+ 2,-5:
+ ind: 2,-5
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEAAAAAAAADgAAAAACDgAAAAACDgAAAAAEDgAAAAADDgAAAAADDgAAAAACDgAAAAACDgAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEDgAAAAAEBAAAAAANBAAAAAAABAAAAAAEBAAAAAALBAAAAAABBAAAAAAHBAAAAAAFDgAAAAACDgAAAAACDgAAAAABDgAAAAAEDgAAAAABDgAAAAAADgAAAAAEBAAAAAAFBAAAAAAEBAAAAAAIDQAAAAABDQAAAAAEDQAAAAABDQAAAAABDQAAAAAFBAAAAAAGBAAAAAAFBAAAAAAEBAAAAAACDgAAAAACDgAAAAADDgAAAAAABAAAAAAIBAAAAAAGDQAAAAAADQAAAAADDwAAAAAFDwAAAAAADwAAAAAADQAAAAAADQAAAAADDQAAAAAEDQAAAAABBAAAAAAHBAAAAAAIBAAAAAAGBAAAAAAEBAAAAAAEBAAAAAAOBAAAAAAFBAAAAAAEDQAAAAACDQAAAAACDwAAAAAADQAAAAACDQAAAAAADQAAAAACFAAAAAABFAAAAAADBAAAAAAIBAAAAAAEBAAAAAAIBAAAAAAMBAAAAAALBAAAAAAC
+ version: 6
+ 3,-5:
+ ind: 3,-5
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAADDgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAEDgAAAAABDgAAAAACDgAAAAACDgAAAAABDgAAAAACDgAAAAADDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAEBAAAAAAFBAAAAAAMBAAAAAAGBAAAAAAFBAAAAAAIBAAAAAAGDgAAAAAEDgAAAAAEDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAABAAAAAAGBAAAAAANDQAAAAABDQAAAAABDQAAAAABDQAAAAABBAAAAAAADgAAAAADDgAAAAADDgAAAAACDgAAAAACDgAAAAADDgAAAAAEDgAAAAAADgAAAAADBAAAAAAOBAAAAAAEDQAAAAACDQAAAAAADQAAAAACDQAAAAADDQAAAAABBAAAAAAGBAAAAAALBAAAAAAMDgAAAAACDgAAAAAEDgAAAAABDgAAAAADBAAAAAAPBAAAAAAHBAAAAAALDQAAAAAFDQAAAAAADQAAAAACDQAAAAADDQAAAAABDQAAAAAFDQAAAAAEFAAAAAADBAAAAAAGDgAAAAABDgAAAAADDgAAAAAADgAAAAAABAAAAAAKBAAAAAAJDQAAAAABDQAAAAAEDQAAAAABDwAAAAADDwAAAAABDwAAAAAADQAAAAABDQAAAAABFAAAAAAFFAAAAAAEDgAAAAABDgAAAAADDgAAAAABBAAAAAAABAAAAAAHDQAAAAABDQAAAAAEDQAAAAAFDQAAAAADDwAAAAAEDwAAAAAFDQAAAAAADQAAAAAEFAAAAAADDwAAAAAFFAAAAAACBAAAAAALBAAAAAAADgAAAAAABAAAAAAFBAAAAAAADQAAAAAADQAAAAAADwAAAAACDwAAAAABDwAAAAADDwAAAAAEDwAAAAACDQAAAAACFAAAAAADFAAAAAABDwAAAAAEBAAAAAADBAAAAAAHDgAAAAADBAAAAAAEDQAAAAAFDQAAAAAFDwAAAAAEDwAAAAADDwAAAAAEDwAAAAACDwAAAAACDwAAAAABDQAAAAADFAAAAAABDwAAAAACDwAAAAABDQAAAAADBAAAAAAHDgAAAAADBAAAAAACDQAAAAAFDQAAAAAFDwAAAAAFDwAAAAAFDwAAAAADDQAAAAABDwAAAAABDwAAAAAADQAAAAACFAAAAAAADwAAAAADDwAAAAACDQAAAAACBAAAAAALDgAAAAAABAAAAAAJDQAAAAADDQAAAAAADQAAAAACDwAAAAACDQAAAAAEDwAAAAABDwAAAAABDwAAAAAADQAAAAAAFAAAAAAEDQAAAAAFDwAAAAAEDQAAAAAABAAAAAAEDgAAAAABDQAAAAAADQAAAAADDQAAAAAEDQAAAAABDwAAAAAEDwAAAAACDwAAAAAEDQAAAAAEDwAAAAAADwAAAAAFDQAAAAAADQAAAAADDwAAAAAFDQAAAAAEDQAAAAABDgAAAAAC
+ version: 6
+ 1,-5:
+ ind: 1,-5
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAB
+ version: 6
+ 4,-5:
+ ind: 4,-5
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAADgAAAAAEDgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACDgAAAAAEDgAAAAACDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACDgAAAAAEDgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 4,-4:
+ ind: 4,-4
+ tiles: BAAAAAAOBAAAAAADDgAAAAAEDgAAAAAEDgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAAJDgAAAAACDgAAAAACDgAAAAAADgAAAAAEDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEBAAAAAAPBAAAAAALDgAAAAAADgAAAAAEDgAAAAAEDgAAAAABDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAACFAAAAAACBAAAAAAMDgAAAAABDgAAAAAADgAAAAABDgAAAAAADgAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAADFAAAAAAEBAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAACDgAAAAABDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAABFAAAAAACBAAAAAAJDgAAAAAEDgAAAAAEDgAAAAADDgAAAAACDgAAAAAEDgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAEFAAAAAAEBAAAAAAFBAAAAAAABAAAAAANDgAAAAAEDgAAAAAEDgAAAAABDgAAAAAADgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAABFAAAAAABFAAAAAAFBAAAAAAGBAAAAAAEDgAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAFDQAAAAAADQAAAAAAFAAAAAABBAAAAAAABAAAAAAIDgAAAAAEDgAAAAACDgAAAAACDgAAAAAEDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAACDQAAAAABDQAAAAABDQAAAAACFAAAAAACBAAAAAADDgAAAAABDgAAAAADDgAAAAAADgAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAEDwAAAAABFAAAAAAFDQAAAAAFDQAAAAABBAAAAAANDgAAAAADDgAAAAACDgAAAAADDgAAAAAADgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAFDwAAAAABDQAAAAADFAAAAAACDQAAAAADBAAAAAADDgAAAAABDgAAAAABDgAAAAAADgAAAAADDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAABDwAAAAAEDQAAAAACDQAAAAAADQAAAAADBAAAAAAFDgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAABDwAAAAABDQAAAAAEFAAAAAAFFAAAAAAFFAAAAAADDgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAADDwAAAAACDQAAAAAADQAAAAADFAAAAAACFAAAAAACDgAAAAACDgAAAAABDgAAAAABDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAADDwAAAAAEDwAAAAABDQAAAAACFAAAAAABFAAAAAAEBAAAAAABDgAAAAADDgAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 4,-3:
+ ind: 4,-3
+ tiles: FAAAAAADFAAAAAABDwAAAAAADwAAAAADDQAAAAADFAAAAAAEBAAAAAALDgAAAAAADgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEFAAAAAADDwAAAAAADwAAAAAEDQAAAAAEFAAAAAADBAAAAAACDgAAAAAEDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAADFAAAAAABDwAAAAABDwAAAAACDQAAAAAFFAAAAAAEFAAAAAADDgAAAAABDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAACFAAAAAABDwAAAAACDwAAAAAFDwAAAAAAFAAAAAACFAAAAAABDgAAAAAEDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAFDQAAAAAEDQAAAAAADwAAAAAADwAAAAABFAAAAAAAFAAAAAACDgAAAAADDgAAAAABDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAADDQAAAAABDQAAAAADDQAAAAAEDQAAAAABFAAAAAAEFAAAAAAEDgAAAAAEDgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEDwAAAAACDQAAAAACDwAAAAAEDwAAAAADFAAAAAAAFAAAAAABDgAAAAADDgAAAAABDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAABDQAAAAACBAAAAAAPDwAAAAAFDwAAAAADDQAAAAAAFAAAAAAFDgAAAAABDgAAAAAADgAAAAAEDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAFAAAAAABDwAAAAAFDwAAAAADDwAAAAACFAAAAAACDQAAAAAEFAAAAAACDgAAAAAADgAAAAABDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAACDwAAAAABFAAAAAAFDwAAAAABDwAAAAACFAAAAAAADQAAAAAEFAAAAAAADgAAAAABDgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEDQAAAAAADwAAAAADDQAAAAACDwAAAAAFDQAAAAAFDQAAAAAADQAAAAABDgAAAAADDgAAAAACDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAADFAAAAAADDwAAAAAEDQAAAAAFDwAAAAAADwAAAAACFAAAAAADDQAAAAAADgAAAAACDgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAACFAAAAAADDQAAAAAADQAAAAACDQAAAAADDwAAAAAEDQAAAAAADQAAAAAEDgAAAAAEDgAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMFAAAAAAEFAAAAAABDQAAAAADDQAAAAABDQAAAAACFAAAAAAEFAAAAAAADgAAAAACDgAAAAACDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJFAAAAAAABAAAAAAMFAAAAAAEDQAAAAADDQAAAAAAFAAAAAAFFAAAAAAAFAAAAAABDgAAAAADDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAABBAAAAAABFAAAAAAFFAAAAAAFDQAAAAACFAAAAAADFAAAAAABFAAAAAAFDgAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,-2:
+ ind: 3,-2
+ tiles: EAAAAAAJEAAAAAAGEAAAAAANEAAAAAABEAAAAAADEAAAAAALEAAAAAALEAAAAAAKEAAAAAALBAAAAAAAEAAAAAACEAAAAAAABAAAAAAOBAAAAAAMBAAAAAACBAAAAAALEAAAAAADEAAAAAACEAAAAAAGEAAAAAAGEAAAAAAIEAAAAAAMEAAAAAAAEAAAAAADEAAAAAAKBAAAAAAHBAAAAAAMEAAAAAACBAAAAAABBAAAAAABBAAAAAAPBAAAAAABEAAAAAALEAAAAAABEAAAAAAKEAAAAAABEAAAAAAHEAAAAAAFEAAAAAADEAAAAAANEAAAAAAKEAAAAAABFAAAAAACEAAAAAAIBAAAAAAKBAAAAAAMBAAAAAADBAAAAAAKEAAAAAALEAAAAAAAEAAAAAAEEAAAAAAGEAAAAAAGEAAAAAAKEAAAAAAFEAAAAAAKEAAAAAADEAAAAAALFAAAAAAFEAAAAAAIEAAAAAAABAAAAAAGBAAAAAAPBAAAAAANEAAAAAAEEAAAAAABEAAAAAACEAAAAAAAEAAAAAAKEAAAAAAFEAAAAAAAEAAAAAAAEAAAAAANEAAAAAAMFAAAAAACFAAAAAABEAAAAAAFEAAAAAAMEAAAAAAHBAAAAAAKEAAAAAAFEAAAAAAMEAAAAAAKEAAAAAAEEAAAAAAFEAAAAAANEAAAAAAJEAAAAAAEEAAAAAAIEAAAAAAJFAAAAAACFAAAAAAAEAAAAAAKEAAAAAAHEAAAAAAMEAAAAAANEAAAAAADEAAAAAAAEAAAAAANEAAAAAAAEAAAAAAIEAAAAAAMEAAAAAABEAAAAAAGEAAAAAACEAAAAAABFAAAAAACFAAAAAABFAAAAAACFAAAAAACFAAAAAACFAAAAAABEAAAAAAAEAAAAAADEAAAAAAMEAAAAAAIEAAAAAAIEAAAAAAFEAAAAAADEAAAAAAKEAAAAAACEAAAAAABFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAEEAAAAAAKEAAAAAAAEAAAAAALEAAAAAAJEAAAAAANEAAAAAABEAAAAAAGEAAAAAAHEAAAAAAAEAAAAAAJEAAAAAAEFAAAAAAEFAAAAAACFAAAAAABFAAAAAACEAAAAAALBAAAAAAOEAAAAAAFEAAAAAAJEAAAAAAHEAAAAAAIEAAAAAABEAAAAAANEAAAAAAFEAAAAAAAEAAAAAAAEAAAAAACFAAAAAACFAAAAAADFAAAAAAAFAAAAAAEEAAAAAACBAAAAAAKEAAAAAALEAAAAAAEEAAAAAAEEAAAAAAKEAAAAAAKEAAAAAAMEAAAAAANEAAAAAAEEAAAAAACEAAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAEEAAAAAAMEAAAAAAAEAAAAAAIEAAAAAABEAAAAAAIEAAAAAAHEAAAAAAKEAAAAAAGEAAAAAAMEAAAAAAJEAAAAAADEAAAAAAFFAAAAAADFAAAAAADFAAAAAACFAAAAAABEAAAAAAAEAAAAAANBAAAAAAMEAAAAAAHEAAAAAAFEAAAAAAKEAAAAAALEAAAAAAIEAAAAAAMEAAAAAAFEAAAAAAAEAAAAAAJEAAAAAAIEAAAAAAEEAAAAAAEEAAAAAAKEAAAAAAJEAAAAAAGBAAAAAAPBAAAAAAPEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAAFEAAAAAABEAAAAAAGEAAAAAABEAAAAAAHEAAAAAADEAAAAAAJEAAAAAAJEAAAAAANEAAAAAABBAAAAAABBAAAAAAPBAAAAAANBAAAAAAOEAAAAAAMEAAAAAALEAAAAAAFEAAAAAABEAAAAAAEEAAAAAAKEAAAAAANEAAAAAAAEAAAAAALEAAAAAAHEAAAAAAIEAAAAAALFAAAAAAAFAAAAAABBAAAAAAGBAAAAAANBAAAAAAEEAAAAAAFEAAAAAALEAAAAAADEAAAAAAMEAAAAAANEAAAAAADEAAAAAABEAAAAAAFEAAAAAAKEAAAAAANEAAAAAAD
+ version: 6
+ 4,-2:
+ ind: 4,-2
+ tiles: BAAAAAADBAAAAAAABAAAAAAPFAAAAAADFAAAAAABDQAAAAAFDQAAAAADDQAAAAAFFAAAAAAEDgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAAHBAAAAAAOFAAAAAAFFAAAAAAFDQAAAAADDQAAAAACFAAAAAAFDQAAAAABDgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGBAAAAAAJBAAAAAAABAAAAAABBAAAAAAFFAAAAAACDQAAAAAFFAAAAAABDQAAAAAEDgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAAPBAAAAAAJBAAAAAAPBAAAAAAABAAAAAAFDQAAAAAEFAAAAAADDQAAAAAADgAAAAAEDgAAAAACDgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAEBAAAAAAMBAAAAAACBAAAAAAFBAAAAAADFAAAAAABDQAAAAAADQAAAAACDQAAAAADFAAAAAAEDgAAAAAEDgAAAAAEDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAANBAAAAAAJBAAAAAACBAAAAAAOBAAAAAAEDQAAAAADDQAAAAAEDQAAAAAADQAAAAACFAAAAAAFFAAAAAAEDgAAAAADDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAABAAAAAAABAAAAAAGBAAAAAACFAAAAAABFAAAAAAFFAAAAAAFDQAAAAADDQAAAAADFAAAAAACFAAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAAADgAAAAAABAAAAAAMBAAAAAAPBAAAAAAPBAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAFDQAAAAABDQAAAAAEDQAAAAADFAAAAAACFAAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAADBAAAAAALBAAAAAAOBAAAAAAHBAAAAAAPFAAAAAAEFAAAAAADFAAAAAAEDQAAAAADDQAAAAAFDQAAAAABDQAAAAAAFAAAAAACDgAAAAABDgAAAAAEDgAAAAACDgAAAAABBAAAAAAPBAAAAAAPBAAAAAANBAAAAAANFAAAAAAFFAAAAAABFAAAAAABDQAAAAADDQAAAAABFAAAAAABFAAAAAAFDQAAAAAAFAAAAAAAFAAAAAACDgAAAAAADgAAAAAEBAAAAAACBAAAAAADBAAAAAAMFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFDQAAAAAFFAAAAAAAFAAAAAABFAAAAAAFDQAAAAADDQAAAAADFAAAAAADFAAAAAABEAAAAAAHBAAAAAAMBAAAAAAGBAAAAAANFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFDQAAAAAFFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABDQAAAAADDQAAAAABFAAAAAADEAAAAAAIEAAAAAAMBAAAAAANBAAAAAADFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAACDQAAAAADFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEDQAAAAADDQAAAAAAFAAAAAADEAAAAAAJEAAAAAAFBAAAAAAGBAAAAAAFBAAAAAAHFAAAAAAFFAAAAAAEFAAAAAAEDQAAAAACDQAAAAADFAAAAAABFAAAAAADFAAAAAAFDQAAAAAFDQAAAAAFDQAAAAABEAAAAAAMEAAAAAADEAAAAAANBAAAAAAJBAAAAAAFFAAAAAACFAAAAAAAFAAAAAAEDQAAAAACDQAAAAADDQAAAAAEFAAAAAADFAAAAAACFAAAAAADFAAAAAACDQAAAAAAEAAAAAAEEAAAAAAGEAAAAAAABAAAAAAHBAAAAAAKBAAAAAADFAAAAAAFFAAAAAAEDQAAAAAADQAAAAADDQAAAAACFAAAAAADFAAAAAACFAAAAAAEFAAAAAACDQAAAAAA
+ version: 6
+ 2,-1:
+ ind: 2,-1
+ tiles: FAAAAAAADQAAAAAFFAAAAAAFBAAAAAAHBAAAAAAIBAAAAAACBAAAAAANDQAAAAADDQAAAAADDQAAAAADFAAAAAADFAAAAAAFDQAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAFBAAAAAAPBAAAAAAIBAAAAAAMBAAAAAAEFAAAAAAEDQAAAAAEDQAAAAAADQAAAAAFFAAAAAACDQAAAAAFDQAAAAAEFAAAAAAAFAAAAAABFAAAAAAABAAAAAAFFAAAAAAFBAAAAAABBAAAAAANBAAAAAAMBAAAAAAGFAAAAAADDQAAAAAEDQAAAAAFDQAAAAADDQAAAAAADQAAAAAFFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAABAAAAAAIBAAAAAAPBAAAAAAEBAAAAAAOBAAAAAACBAAAAAADBAAAAAABBAAAAAAMDQAAAAAADQAAAAADDQAAAAAEDQAAAAACFAAAAAACFAAAAAACFAAAAAACFAAAAAACBAAAAAAIBAAAAAAPBAAAAAACBAAAAAADBAAAAAAJBAAAAAAEFAAAAAABFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAFFAAAAAADFAAAAAADFAAAAAAEFAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAABAAAAAAGBAAAAAAJBAAAAAAJFAAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAABDQAAAAABFAAAAAAFBAAAAAAEFAAAAAAABAAAAAACBAAAAAAPFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAFDQAAAAAFFAAAAAAEFAAAAAAEFAAAAAABAgAAAAAFEQAAAAACAgAAAAAAAgAAAAAGAgAAAAAMFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAAFFAAAAAADFAAAAAACAgAAAAADBQAAAAAABQAAAAACEQAAAAADAgAAAAAJFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEFAAAAAADAgAAAAABEQAAAAABBQAAAAADBQAAAAAAAgAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAABFAAAAAACFAAAAAAEFAAAAAABAgAAAAADAgAAAAANAgAAAAAAAgAAAAAKAgAAAAAKFAAAAAACFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAAEFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAAFFAAAAAADFAAAAAABFAAAAAADFAAAAAADFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAABFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAEFAAAAAABFAAAAAACFAAAAAADFAAAAAAEFAAAAAAEFAAAAAADFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAAA
+ version: 6
+ 3,-1:
+ ind: 3,-1
+ tiles: FAAAAAADFAAAAAABFAAAAAACBAAAAAAEBAAAAAAABAAAAAAGEAAAAAAHEAAAAAAEEAAAAAANEAAAAAADEAAAAAAKEAAAAAAAEAAAAAABEAAAAAAKEAAAAAALEAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAACBAAAAAAMEAAAAAAEEAAAAAAMEAAAAAAEEAAAAAAMEAAAAAACEAAAAAAKEAAAAAAJEAAAAAANEAAAAAAKEAAAAAAFEAAAAAANFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAEBAAAAAAJEAAAAAAHEAAAAAAGEAAAAAAJEAAAAAACEAAAAAAMEAAAAAAHEAAAAAAGEAAAAAALEAAAAAAMEAAAAAAIEAAAAAAAFAAAAAAFFAAAAAACFAAAAAAEFAAAAAADBAAAAAAOBAAAAAAMEAAAAAACEAAAAAAGEAAAAAADEAAAAAAJEAAAAAAHEAAAAAAAEAAAAAANEAAAAAAFEAAAAAAEEAAAAAAFFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFBAAAAAAKBAAAAAACEAAAAAACEAAAAAAJEAAAAAAFEAAAAAAGEAAAAAAHEAAAAAACEAAAAAAAEAAAAAANEAAAAAAIEAAAAAAHFAAAAAADFAAAAAAAFAAAAAAEBAAAAAAOBAAAAAAEEAAAAAAFEAAAAAAFEAAAAAAEEAAAAAABEAAAAAAEEAAAAAAIEAAAAAANEAAAAAAKEAAAAAAFEAAAAAAEEAAAAAAIFAAAAAABFAAAAAAABAAAAAALEAAAAAAHEAAAAAAGEAAAAAACEAAAAAAAEAAAAAAHEAAAAAAGEAAAAAAGEAAAAAAFEAAAAAABEAAAAAACEAAAAAADEAAAAAABEAAAAAAFFAAAAAAABAAAAAAEBAAAAAANBAAAAAAJEAAAAAANEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAEEAAAAAAJEAAAAAACEAAAAAABEAAAAAAGEAAAAAAKEAAAAAAMFAAAAAAFFAAAAAAEBAAAAAABBAAAAAANBAAAAAACBAAAAAAGEAAAAAAKEAAAAAADEAAAAAALEAAAAAAEEAAAAAANEAAAAAADEAAAAAAEEAAAAAAFEAAAAAAIEAAAAAANFAAAAAAEFAAAAAABFAAAAAABBAAAAAAOBAAAAAAMBAAAAAAPBAAAAAAOBAAAAAAFEAAAAAAHEAAAAAAKEAAAAAANEAAAAAAHEAAAAAANEAAAAAAMEAAAAAAAEAAAAAADFAAAAAAEFAAAAAAAFAAAAAABFAAAAAADFAAAAAADBAAAAAANBAAAAAAKBAAAAAAHBAAAAAAGEAAAAAALEAAAAAANEAAAAAALEAAAAAAAEAAAAAANEAAAAAAAEAAAAAAAFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAFBAAAAAALBAAAAAAJBAAAAAAFEAAAAAACEAAAAAAFEAAAAAACEAAAAAAAEAAAAAAJEAAAAAAGFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAAFFAAAAAAABAAAAAANBAAAAAAMBAAAAAAMEAAAAAAEEAAAAAAIEAAAAAAFEAAAAAAJEAAAAAAJEAAAAAAEFAAAAAAEFAAAAAACFAAAAAADFAAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAABBAAAAAADBAAAAAAHBAAAAAAHEAAAAAAHEAAAAAABEAAAAAADEAAAAAANEAAAAAAMFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEBAAAAAAOBAAAAAADEAAAAAAAEAAAAAAAEAAAAAAHEAAAAAAAEAAAAAAGFAAAAAABFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAABFAAAAAACFAAAAAABFAAAAAAABAAAAAAKBAAAAAANEAAAAAAJEAAAAAAHEAAAAAAJEAAAAAAMEAAAAAAA
+ version: 6
+ 2,0:
+ ind: 2,0
+ tiles: FAAAAAADFAAAAAACFAAAAAAFFAAAAAABFAAAAAAFFAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAABFAAAAAADFAAAAAAFFAAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAABFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAAFBAAAAAAIFAAAAAAAFAAAAAADFAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFBAAAAAAJFAAAAAACFAAAAAABBAAAAAABFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAADFAAAAAACBAAAAAANBAAAAAAPFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAABFAAAAAABFAAAAAACBAAAAAAKBAAAAAAPBAAAAAAABAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAEFAAAAAACFAAAAAABFAAAAAABBAAAAAACBAAAAAAEBAAAAAANBAAAAAABAgAAAAAKFAAAAAABFAAAAAAEFAAAAAAEFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAEBAAAAAANBAAAAAABBAAAAAACAgAAAAAFBAAAAAAGFAAAAAABFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAABFAAAAAACFAAAAAADFAAAAAAAFAAAAAAFFAAAAAABBAAAAAAJBAAAAAAJBAAAAAAABAAAAAANFAAAAAACBAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAACBAAAAAADBAAAAAADBAAAAAAFFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAACDQAAAAABFAAAAAAFBAAAAAABBAAAAAADBAAAAAAFFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAABFAAAAAACFAAAAAAEFAAAAAACFAAAAAADFAAAAAADDQAAAAABFAAAAAAABAAAAAAIBAAAAAAIBAAAAAANBAAAAAAOFAAAAAADFAAAAAACFAAAAAADFAAAAAAFFAAAAAABFAAAAAAEFAAAAAADFAAAAAACFAAAAAACFAAAAAABDQAAAAAEFAAAAAADBAAAAAAJAgAAAAAKBAAAAAAABAAAAAADFAAAAAACFAAAAAAAFAAAAAABFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAEDwAAAAADFAAAAAABFAAAAAAFAgAAAAAFAgAAAAAGBAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAABFAAAAAADFAAAAAAEFAAAAAAFFAAAAAABFAAAAAADFAAAAAAADQAAAAABFAAAAAAFFAAAAAAEFAAAAAAFBAAAAAAGBAAAAAAGFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAAAFAAAAAABFAAAAAABFAAAAAAEFAAAAAAD
+ version: 6
+ 3,0:
+ ind: 3,0
+ tiles: FAAAAAAFFAAAAAADFAAAAAAEFAAAAAACFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEBAAAAAAGBAAAAAANEAAAAAACEAAAAAAEEAAAAAAHEAAAAAAGEAAAAAAKEAAAAAAFFAAAAAABFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADBAAAAAAKBAAAAAAHEAAAAAAJEAAAAAACEAAAAAAHEAAAAAANEAAAAAABEAAAAAALFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAAABAAAAAAKBAAAAAAOBAAAAAAJEAAAAAAEEAAAAAAJEAAAAAALEAAAAAALEAAAAAAEEAAAAAALFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAABAAAAAANBAAAAAAEEAAAAAAHEAAAAAAEEAAAAAAAEAAAAAAHEAAAAAAIEAAAAAAAEAAAAAAKFAAAAAACFAAAAAAAFAAAAAACFAAAAAAEFAAAAAACFAAAAAABBAAAAAAOBAAAAAAPBAAAAAAKEAAAAAANEAAAAAAJEAAAAAALEAAAAAAHEAAAAAAHEAAAAAALEAAAAAABFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAFBAAAAAADBAAAAAAKBAAAAAAKBAAAAAAJEAAAAAAEEAAAAAABEAAAAAAFEAAAAAANEAAAAAALEAAAAAANEAAAAAAGEAAAAAADFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAABAAAAAAIBAAAAAAMBAAAAAAOEAAAAAAIEAAAAAAEEAAAAAAEEAAAAAAGEAAAAAAHEAAAAAAFEAAAAAAGEAAAAAACEAAAAAAMFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAAFBAAAAAAOBAAAAAAKBAAAAAAHEAAAAAAHEAAAAAALEAAAAAAFEAAAAAADEAAAAAABEAAAAAALEAAAAAAFEAAAAAANFAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAAEFAAAAAADBAAAAAANBAAAAAAFBAAAAAAKEAAAAAAEEAAAAAAAEAAAAAABEAAAAAAGEAAAAAAFEAAAAAADEAAAAAAMFAAAAAACFAAAAAAAFAAAAAACFAAAAAAFFAAAAAACFAAAAAABFAAAAAABBAAAAAAOBAAAAAAGEAAAAAAFEAAAAAABEAAAAAANEAAAAAABEAAAAAAFEAAAAAAGEAAAAAAEFAAAAAACFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAADEAAAAAABEAAAAAAHFAAAAAADFAAAAAAEFAAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAADBAAAAAAPBAAAAAAJBAAAAAACBAAAAAAKBAAAAAANEAAAAAAMFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAADFAAAAAABFAAAAAABFAAAAAADBAAAAAAOBAAAAAANBAAAAAALBAAAAAAOEAAAAAALFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAACFAAAAAABBAAAAAACBAAAAAAEBAAAAAAFEAAAAAAIFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAEBAAAAAAFBAAAAAAOEAAAAAAMFAAAAAAAFAAAAAABFAAAAAAEFAAAAAACFAAAAAAEFAAAAAABFAAAAAAFFAAAAAACFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAABAAAAAAKBAAAAAANBAAAAAAA
+ version: 6
+ 2,1:
+ ind: 2,1
+ tiles: DQAAAAAEDQAAAAAFDQAAAAACFAAAAAAFAgAAAAAHBAAAAAAKBAAAAAABBAAAAAAIFAAAAAAEFAAAAAACFAAAAAAAFAAAAAACFAAAAAABFAAAAAAFFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAAAAgAAAAACBAAAAAAIBAAAAAANBAAAAAABFAAAAAAFFAAAAAADFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAABBAAAAAAPBAAAAAAIFAAAAAADBAAAAAAKAgAAAAAHAgAAAAAEBAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAEAgAAAAAAAgAAAAACBAAAAAAGBAAAAAADAgAAAAAEAgAAAAAHFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEDAAAAAADAgAAAAAFBAAAAAADBAAAAAABBAAAAAALFAAAAAAAFAAAAAAEBAAAAAABFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAEDAAAAAACAgAAAAANBAAAAAAABAAAAAANAgAAAAAFFAAAAAAFFAAAAAADFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAACFAAAAAACFAAAAAADFAAAAAAFFAAAAAACDAAAAAABAgAAAAAMBAAAAAAIBAAAAAAIAgAAAAAMAgAAAAACBAAAAAAIFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAAEFAAAAAAFFAAAAAABFAAAAAADFAAAAAAEDAAAAAADAgAAAAANBAAAAAACBAAAAAAHAgAAAAACAgAAAAAFBAAAAAAJFAAAAAADFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAADFAAAAAAEAgAAAAABAgAAAAANBAAAAAAJBAAAAAAPAgAAAAAJBAAAAAAABAAAAAALFAAAAAACFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAABAAAAAAFBAAAAAACBAAAAAAIAgAAAAALBAAAAAALBAAAAAAIBAAAAAAJFAAAAAADFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAEDQAAAAAFFAAAAAAEFAAAAAAABAAAAAADAgAAAAAJAgAAAAAJBAAAAAAJBAAAAAAIFAAAAAAFFAAAAAADFAAAAAACFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAEDQAAAAABDQAAAAAAFAAAAAACFAAAAAAEAgAAAAADAgAAAAAKBAAAAAAHBAAAAAAMFAAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAFDQAAAAAEDQAAAAABDQAAAAABDQAAAAAEAgAAAAAKBAAAAAAMBAAAAAAEBAAAAAACFAAAAAADFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAABFAAAAAABFAAAAAAEDQAAAAAADQAAAAAEDQAAAAAEFAAAAAABAgAAAAAABAAAAAAFBAAAAAAOFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAABFAAAAAAEDQAAAAAAFAAAAAAABAAAAAAPAgAAAAANAgAAAAAJBAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAACFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAAAgAAAAAIAgAAAAAIAgAAAAAIAgAAAAANAgAAAAACAgAAAAAIBAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAACFAAAAAAFFAAAAAAF
+ version: 6
+ 1,2:
+ ind: 1,2
+ tiles: AgAAAAAJAgAAAAAEAgAAAAADAgAAAAALAgAAAAAADQAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAAADQAAAAAADQAAAAAFAgAAAAALFAAAAAADFAAAAAABFAAAAAAABQAAAAAAAgAAAAALBQAAAAABBQAAAAADAgAAAAAJDQAAAAABDQAAAAAFEAAAAAAKEAAAAAAHEAAAAAAFDQAAAAADDQAAAAAEAgAAAAAFFAAAAAAAFAAAAAACFAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAACAgAAAAABDQAAAAAAEAAAAAANEAAAAAABEAAAAAAKEAAAAAANEAAAAAALDQAAAAAEAgAAAAAGFAAAAAAAFAAAAAAFFAAAAAABBQAAAAACAgAAAAAABQAAAAABBQAAAAAAAgAAAAADBAAAAAAOEAAAAAALEAAAAAACEAAAAAADEAAAAAACEAAAAAADDQAAAAADAgAAAAAGFAAAAAAEFAAAAAAFFAAAAAAEBQAAAAADAgAAAAAEBQAAAAACCAAAAAAAAgAAAAAIBAAAAAAOEAAAAAAJEAAAAAAEEAAAAAAMEAAAAAAHEAAAAAAKBAAAAAADAgAAAAADFAAAAAAAFAAAAAABFAAAAAAAAgAAAAAFAgAAAAACAgAAAAANAgAAAAACAgAAAAACBAAAAAAABAAAAAALEAAAAAAFEAAAAAACEAAAAAACBAAAAAAPBAAAAAAGAgAAAAABBAAAAAAJFAAAAAAAFAAAAAABBAAAAAAKBAAAAAABBAAAAAAHBAAAAAAOBAAAAAAKBAAAAAAKBAAAAAAGBAAAAAAGBAAAAAAABAAAAAADBAAAAAAJBAAAAAAEAgAAAAAIAgAAAAAMFAAAAAABFAAAAAAEAgAAAAAMAgAAAAAMAgAAAAADAgAAAAAGAgAAAAALAgAAAAADAgAAAAAIAgAAAAALAgAAAAAEAgAAAAAKAgAAAAAMAgAAAAACAgAAAAAJAgAAAAAKFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAADAgAAAAAAAgAAAAAEAgAAAAACFAAAAAAAFAAAAAAFFAAAAAAEAgAAAAALFAAAAAABFAAAAAAAAgAAAAAGAgAAAAALFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAADFAAAAAADFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAABAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAACFAAAAAABFAAAAAAFFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAABFAAAAAACFAAAAAAFFAAAAAADBAAAAAAIFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAADFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAAFFAAAAAABFAAAAAADFAAAAAABFAAAAAABFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAAFFAAAAAADFAAAAAADFAAAAAAFFAAAAAAEFAAAAAACFAAAAAADFAAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAA
+ version: 6
+ 2,2:
+ ind: 2,2
+ tiles: AgAAAAANFAAAAAAFFAAAAAAFAgAAAAAHAgAAAAAIAgAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAAFAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAADFAAAAAAFFAAAAAADFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAEFAAAAAADFAAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAACFAAAAAAEFAAAAAACBAAAAAAHFAAAAAADFAAAAAAAFAAAAAADFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAEBAAAAAAJFAAAAAAEFAAAAAACBAAAAAALFAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAAEFAAAAAACFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAADFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAADFAAAAAADFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEFAAAAAABFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAAEFAAAAAACFAAAAAAFFAAAAAADFAAAAAAAFAAAAAABFAAAAAAFFAAAAAABFAAAAAACFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAACFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAFFAAAAAABFAAAAAABFAAAAAAFFAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAABFAAAAAABFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACFAAAAAACFAAAAAAEFAAAAAAFFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAEFAAAAAACFAAAAAACFAAAAAACFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAABFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAFFAAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAFFAAAAAACFAAAAAACFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAD
+ version: 6
+ 0,2:
+ ind: 0,2
+ tiles: FAAAAAABFAAAAAABFAAAAAACFAAAAAABBAAAAAAMAgAAAAAJEAAAAAADEAAAAAAFFAAAAAABFAAAAAACAgAAAAABAgAAAAAEAgAAAAAAAgAAAAANCAAAAAADAgAAAAANFAAAAAAEFAAAAAADFAAAAAABBAAAAAAIBAAAAAAAAgAAAAAJEAAAAAADEAAAAAAGFAAAAAABBAAAAAANBAAAAAAHAgAAAAALBQAAAAADBQAAAAAABQAAAAAABQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFBAAAAAACAgAAAAAEAgAAAAAAEAAAAAABFAAAAAABFAAAAAADDwAAAAADBQAAAAADBQAAAAACBQAAAAABBQAAAAADBQAAAAACBQAAAAACFAAAAAADFAAAAAAFFAAAAAADBAAAAAAJAgAAAAALAgAAAAACDwAAAAADDQAAAAABFAAAAAAEDQAAAAABBAAAAAAOAgAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAABFAAAAAACFAAAAAAAFAAAAAADFAAAAAACBAAAAAABAgAAAAACBAAAAAAMFAAAAAADFAAAAAABBAAAAAAHBAAAAAABAgAAAAAFBQAAAAABBQAAAAABBQAAAAACBQAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAAEBAAAAAANAgAAAAADBAAAAAAJBAAAAAAOFAAAAAAAFAAAAAACFAAAAAAFAgAAAAAEAgAAAAAJAgAAAAABAgAAAAACAgAAAAACFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAEFAAAAAADAgAAAAADBAAAAAAMBAAAAAAEFAAAAAADFAAAAAAAFAAAAAAFDQAAAAAEFAAAAAADBAAAAAAIBAAAAAAPBAAAAAALFAAAAAAEFAAAAAAEFAAAAAADBAAAAAAHAgAAAAAIAgAAAAACAgAAAAALAgAAAAANAgAAAAACAgAAAAABAgAAAAANAgAAAAAGAgAAAAAJAgAAAAAJAgAAAAAEAgAAAAAKFAAAAAADFAAAAAAEBAAAAAAHBAAAAAANAgAAAAALAgAAAAAKAgAAAAAHBAAAAAALBAAAAAAKAgAAAAADAgAAAAAABAAAAAAJBAAAAAAEAgAAAAABAgAAAAACFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAAFFAAAAAAFFAAAAAACBAAAAAAFBAAAAAAKBAAAAAANFAAAAAACFAAAAAABFAAAAAADFAAAAAAAFAAAAAAFFAAAAAADFAAAAAACBAAAAAAIFAAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAEFAAAAAADFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAACFAAAAAACFAAAAAACFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAEFAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAAFFAAAAAAFFAAAAAABFAAAAAABFAAAAAAEFAAAAAABFAAAAAACFAAAAAAAFAAAAAABFAAAAAAFFAAAAAABFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAEFAAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAAFFAAAAAADFAAAAAABFAAAAAABFAAAAAAEFAAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAACFAAAAAAE
+ version: 6
+ -1,2:
+ ind: -1,2
+ tiles: FAAAAAAEFAAAAAACFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAADFAAAAAAFFAAAAAABFAAAAAAFBAAAAAAFFAAAAAADFAAAAAAEFAAAAAACFAAAAAADBAAAAAAPFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAABAAAAAABFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAEFAAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAAFAAAAAADFAAAAAADFAAAAAAEFAAAAAABFAAAAAADFAAAAAAFFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAEFAAAAAABFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAABFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAACFAAAAAADFAAAAAAABAAAAAAGFAAAAAAEFAAAAAADFAAAAAACFAAAAAADFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAAFFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAABFAAAAAABFAAAAAAFFAAAAAADFAAAAAABFAAAAAADFAAAAAACFAAAAAAFFAAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAAEFAAAAAAB
+ version: 6
+ -4,-2:
+ ind: -4,-2
+ tiles: DQAAAAAADQAAAAAEFAAAAAAAFAAAAAADFAAAAAAFDgAAAAADDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAABDQAAAAACDQAAAAAADQAAAAADFAAAAAAEFAAAAAAADgAAAAAADgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACBAAAAAALDwAAAAABDQAAAAAADQAAAAACDQAAAAAAFAAAAAABFAAAAAAFBAAAAAALDgAAAAADDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAADBAAAAAAGDwAAAAAEDQAAAAABDQAAAAABDQAAAAAFFAAAAAAFFAAAAAAABAAAAAAJDgAAAAABDgAAAAADDgAAAAACAAAAAAAAAAAAAAAADgAAAAADDgAAAAADBAAAAAACBAAAAAAMDwAAAAAEDwAAAAAFDQAAAAABDQAAAAAAFAAAAAADFAAAAAAFBAAAAAAPDgAAAAAADgAAAAAADgAAAAAEDgAAAAACDgAAAAABDgAAAAADDgAAAAAABAAAAAALBAAAAAABDwAAAAACDwAAAAACDQAAAAADDQAAAAACFAAAAAACFAAAAAADBAAAAAALBAAAAAAFDgAAAAAEDgAAAAAADgAAAAACDgAAAAABDgAAAAADDgAAAAAABAAAAAAKBAAAAAANDwAAAAAADwAAAAACDQAAAAAEDQAAAAAFDQAAAAACFAAAAAAFBAAAAAAMBAAAAAAMDgAAAAACDgAAAAADDgAAAAACDgAAAAACDgAAAAACDgAAAAABBAAAAAANBAAAAAAIDwAAAAADDQAAAAAADQAAAAACDQAAAAAADQAAAAAEFAAAAAADFAAAAAABBAAAAAANDgAAAAACDgAAAAACDgAAAAADDgAAAAABDgAAAAAADgAAAAABBAAAAAAFBAAAAAAKDQAAAAABDwAAAAABDQAAAAAADQAAAAAADQAAAAAAFAAAAAACFAAAAAACBAAAAAAIBAAAAAANDgAAAAAEDgAAAAAEDgAAAAADDgAAAAABBAAAAAAIBAAAAAAHFAAAAAAADwAAAAADDwAAAAAEDQAAAAACDQAAAAAEDQAAAAACDQAAAAACFAAAAAABBAAAAAACBAAAAAAABAAAAAAADgAAAAAABAAAAAAABAAAAAABBAAAAAAIFAAAAAAFFAAAAAACDwAAAAADDwAAAAADDQAAAAABDQAAAAAADQAAAAADDQAAAAAFFAAAAAACFAAAAAAFBAAAAAAIBAAAAAALBAAAAAAIBAAAAAAFFAAAAAABFAAAAAABFAAAAAAAFAAAAAADDwAAAAAADwAAAAABDQAAAAAADQAAAAADDQAAAAAFDQAAAAADDQAAAAAAFAAAAAAEFAAAAAADFAAAAAABFAAAAAAAFAAAAAAEDQAAAAADDQAAAAACDQAAAAABDQAAAAADDwAAAAABDwAAAAADDQAAAAAFDQAAAAADDQAAAAAEDQAAAAAEFAAAAAAEDQAAAAAFFAAAAAAFFAAAAAABFAAAAAADDQAAAAABDQAAAAAEDQAAAAACDQAAAAABDQAAAAAADQAAAAAFDwAAAAADDQAAAAAEDQAAAAAFDQAAAAAFDQAAAAAAFAAAAAABFAAAAAABDQAAAAACDQAAAAADDQAAAAAEDQAAAAAEDQAAAAADDQAAAAACFAAAAAAADQAAAAAFDwAAAAAADQAAAAAEDQAAAAABDQAAAAAADQAAAAAADQAAAAAFDQAAAAABFAAAAAAADQAAAAAFDQAAAAAAFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAADDwAAAAACDwAAAAAFDQAAAAADDQAAAAADDQAAAAAFDQAAAAAEDQAAAAADDQAAAAADFAAAAAAAFAAAAAACDQAAAAACFAAAAAABAgAAAAAEAgAAAAALBAAAAAALBAAAAAAC
+ version: 6
+ -5,-2:
+ ind: -5,-2
+ tiles: EAAAAAAAEAAAAAAIEAAAAAAJEAAAAAAMEAAAAAACEAAAAAAFBAAAAAABBAAAAAAPFAAAAAAFDQAAAAACDQAAAAAEDQAAAAACFAAAAAAEDwAAAAAEDwAAAAAFDwAAAAACEAAAAAAAEAAAAAAIEAAAAAAHEAAAAAAMEAAAAAAIBAAAAAALBAAAAAAHFAAAAAABFAAAAAAEFAAAAAAADQAAAAACDQAAAAABDwAAAAACDwAAAAABDwAAAAACDwAAAAAAEAAAAAAEEAAAAAAMEAAAAAAFEAAAAAABEAAAAAABEAAAAAAABAAAAAAPBAAAAAALFAAAAAAFFAAAAAAEDQAAAAACFAAAAAAEDwAAAAAFDwAAAAAEDwAAAAABDwAAAAAFBAAAAAACEAAAAAALEAAAAAADEAAAAAADEAAAAAAJEAAAAAAIBAAAAAAFBAAAAAAOBAAAAAAEFAAAAAAADQAAAAAADQAAAAAAFAAAAAACDwAAAAABDwAAAAAEDwAAAAABBAAAAAALBAAAAAAABAAAAAAIBAAAAAAPBAAAAAANEAAAAAAJBAAAAAAGBAAAAAAOBAAAAAAEBAAAAAAFFAAAAAAEDQAAAAADFAAAAAAEDwAAAAAEDwAAAAAFDwAAAAADFAAAAAAEBAAAAAALBAAAAAAMBAAAAAAHBAAAAAAOBAAAAAAGBAAAAAAHFAAAAAAABAAAAAAOBAAAAAAFFAAAAAACDQAAAAADDQAAAAAEDwAAAAABDwAAAAAFDwAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAACDQAAAAADFAAAAAADFAAAAAADDQAAAAACDQAAAAAAFAAAAAABFAAAAAABFAAAAAACDQAAAAAEDQAAAAAADwAAAAAADwAAAAABDQAAAAADDQAAAAAEDQAAAAAEDQAAAAADDQAAAAACDQAAAAADDQAAAAADDQAAAAABFAAAAAAFDQAAAAAFDQAAAAACDQAAAAABDwAAAAAADwAAAAAADwAAAAAFDwAAAAADDQAAAAAEDQAAAAAEDwAAAAADDwAAAAAADQAAAAAADQAAAAACDQAAAAAFDwAAAAAFDQAAAAADDQAAAAACFAAAAAAFDQAAAAACDwAAAAAAFAAAAAAEDQAAAAACDwAAAAADDQAAAAADDQAAAAACFAAAAAACDwAAAAACDwAAAAADDQAAAAAFDQAAAAACDwAAAAABDwAAAAAEDwAAAAAADwAAAAAEDQAAAAAAFAAAAAAEDwAAAAACDQAAAAACDwAAAAABFAAAAAABDQAAAAAFDQAAAAADFAAAAAACDQAAAAADDwAAAAACDQAAAAADDQAAAAABDQAAAAADDwAAAAACDwAAAAADDwAAAAAADwAAAAACFAAAAAAEDwAAAAAFDwAAAAAFFAAAAAABFAAAAAACDQAAAAADDQAAAAAEDQAAAAAEFAAAAAAADwAAAAAFDwAAAAAEDQAAAAACDwAAAAAADwAAAAAFDwAAAAADDQAAAAAADwAAAAABDwAAAAADDwAAAAAEBAAAAAAJFAAAAAAAFAAAAAAADQAAAAACDQAAAAAFDQAAAAADDQAAAAADDwAAAAACDwAAAAABDwAAAAACDwAAAAADDwAAAAAFDwAAAAAFFAAAAAAEDwAAAAADDwAAAAAFBAAAAAALFAAAAAABFAAAAAADFAAAAAAEDQAAAAADDQAAAAAEFAAAAAAADQAAAAADDwAAAAAEDwAAAAACDwAAAAAFDwAAAAABDwAAAAABDwAAAAACDwAAAAAEDwAAAAAFBAAAAAAMFAAAAAAAFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEDQAAAAAFDQAAAAACDwAAAAACDwAAAAABDwAAAAACDwAAAAAEDQAAAAABDQAAAAACDwAAAAABDwAAAAAEBAAAAAAJFAAAAAADFAAAAAAFFAAAAAADFAAAAAABFAAAAAADDQAAAAAFDQAAAAAEDwAAAAABDwAAAAAADwAAAAAADwAAAAAFDwAAAAACDwAAAAAEDwAAAAAEDwAAAAAF
+ version: 6
+ -5,-1:
+ ind: -5,-1
+ tiles: FAAAAAABFAAAAAACFAAAAAADFAAAAAABFAAAAAAAFAAAAAACDQAAAAAADQAAAAABDQAAAAACDQAAAAABDwAAAAABDwAAAAAFDwAAAAAFDwAAAAACDwAAAAADDwAAAAACFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAEDQAAAAAFDQAAAAAADQAAAAAFDQAAAAAEDQAAAAAFDwAAAAADDwAAAAABDwAAAAAFDwAAAAACDwAAAAAEDwAAAAACFAAAAAADFAAAAAADFAAAAAABFAAAAAAFFAAAAAABDQAAAAAADQAAAAADDQAAAAAAFAAAAAAEFAAAAAAFFAAAAAABDwAAAAAEDwAAAAABDwAAAAACDwAAAAAEDwAAAAAFFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAABDQAAAAAADQAAAAACFAAAAAADDQAAAAACFAAAAAABDQAAAAAEDwAAAAABDwAAAAADDwAAAAAEDwAAAAAADwAAAAADFAAAAAADFAAAAAADFAAAAAACFAAAAAAFFAAAAAAAFAAAAAABDQAAAAAFDQAAAAAADQAAAAABFAAAAAAFDQAAAAAAFAAAAAACDwAAAAAEDwAAAAABDwAAAAAEFAAAAAADFAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAACFAAAAAADDQAAAAAADQAAAAAEDQAAAAAAFAAAAAADDQAAAAACDwAAAAADDwAAAAAADwAAAAACDwAAAAADDQAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFDQAAAAACDQAAAAAFFAAAAAADDQAAAAADFAAAAAABDwAAAAAADwAAAAAFDQAAAAAEFAAAAAABDwAAAAABFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAADQAAAAABDQAAAAAFDQAAAAAAFAAAAAAEFAAAAAAADwAAAAAFDwAAAAACDwAAAAAADQAAAAABDwAAAAABFAAAAAADFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFDQAAAAACDQAAAAAEDQAAAAAFFAAAAAAEFAAAAAABDwAAAAACDwAAAAACDQAAAAAEDwAAAAACFAAAAAAFFAAAAAABFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAEFAAAAAACDQAAAAAEDQAAAAABDQAAAAAADQAAAAAEDQAAAAAADwAAAAAFDwAAAAAAFAAAAAADDwAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAABDQAAAAAEDQAAAAAFDQAAAAAADQAAAAAFDQAAAAAEDwAAAAAFDwAAAAAEDwAAAAACDwAAAAADFAAAAAAEFAAAAAADFAAAAAADFAAAAAADFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAFDQAAAAAADQAAAAAFDQAAAAAAFAAAAAACDwAAAAACDwAAAAACDwAAAAAFDwAAAAAAFAAAAAAAFAAAAAADFAAAAAAEFAAAAAADFAAAAAACFAAAAAAFFAAAAAAFDQAAAAAADQAAAAADDQAAAAABDQAAAAAEFAAAAAAFFAAAAAAEDwAAAAABDwAAAAAADwAAAAAFFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAAADQAAAAAADQAAAAABDQAAAAAFFAAAAAABFAAAAAACFAAAAAAEDwAAAAAEDwAAAAAEDwAAAAABFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAFDQAAAAACDQAAAAABDQAAAAAAFAAAAAAEDQAAAAAADwAAAAACDwAAAAACDwAAAAAFDwAAAAAEFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAFFAAAAAABDQAAAAAADQAAAAACDQAAAAAAFAAAAAABDQAAAAACFAAAAAAADwAAAAAFDwAAAAAFDwAAAAAD
+ version: 6
+ -5,0:
+ ind: -5,0
+ tiles: FAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAFFAAAAAABDQAAAAAFDQAAAAACDQAAAAAFDQAAAAABDQAAAAAEFAAAAAACFAAAAAAFDwAAAAAADwAAAAADDwAAAAACFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAAADQAAAAADDQAAAAAEDQAAAAAFFAAAAAABDQAAAAAFFAAAAAAEFAAAAAACDQAAAAACFAAAAAACDwAAAAACFAAAAAAFFAAAAAABFAAAAAACFAAAAAAEFAAAAAACFAAAAAABDQAAAAAEDQAAAAAEDQAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAACDQAAAAAADQAAAAABDwAAAAAEFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAADQAAAAAADQAAAAAFDQAAAAAFDQAAAAABDQAAAAABDQAAAAAEDQAAAAABFAAAAAAADQAAAAAADQAAAAADDQAAAAAEFAAAAAADFAAAAAAEFAAAAAACFAAAAAABDQAAAAAAFAAAAAACDQAAAAAEDQAAAAADDQAAAAACDQAAAAACDQAAAAAEDQAAAAAEDQAAAAADDQAAAAAEDQAAAAAEDQAAAAABFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAADQAAAAAEDQAAAAACDQAAAAAAFAAAAAAEFAAAAAAEDQAAAAADDQAAAAADDQAAAAAFDQAAAAAFFAAAAAAFFAAAAAABDQAAAAAFDQAAAAAFDQAAAAAFDQAAAAAFDQAAAAAFDQAAAAABDQAAAAAFDQAAAAADDQAAAAADDQAAAAAADQAAAAAADQAAAAAAFAAAAAAEDQAAAAABDQAAAAAEDQAAAAABFAAAAAAEDQAAAAACDQAAAAAEDQAAAAAEDQAAAAACFAAAAAACDQAAAAAADQAAAAADFAAAAAACFAAAAAAAFAAAAAAEFAAAAAACFAAAAAACFAAAAAAFDQAAAAABDQAAAAAEDQAAAAACFAAAAAABBAAAAAAPFAAAAAACDQAAAAAAFAAAAAABFAAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADDQAAAAAFDQAAAAADDQAAAAABBAAAAAAGBAAAAAANBAAAAAABBAAAAAAJBAAAAAAIBAAAAAACBAAAAAAIBAAAAAAKBAAAAAANFAAAAAADFAAAAAABFAAAAAABFAAAAAADFAAAAAADDQAAAAAFDQAAAAAFBAAAAAACBAAAAAADNAAAAAACNAAAAAACNAAAAAACNAAAAAAHBAAAAAANBAAAAAANBAAAAAAKBAAAAAAGBAAAAAAJBAAAAAACFAAAAAAFFAAAAAAFFAAAAAACFAAAAAADNAAAAAAENAAAAAACNAAAAAAABAAAAAAPBAAAAAABBAAAAAAGNAAAAAAFNAAAAAAFNAAAAAACBAAAAAALBAAAAAAGBAAAAAADBAAAAAADBAAAAAAOBAAAAAAFFAAAAAADNAAAAAAHNAAAAAADNAAAAAADNAAAAAAINAAAAAAEBAAAAAADBAAAAAAKNAAAAAACNAAAAAAANAAAAAAHNAAAAAAINAAAAAACNAAAAAAHBAAAAAAMBAAAAAANBAAAAAADBAAAAAAIBAAAAAALBAAAAAAHBAAAAAACBAAAAAAIBAAAAAAFBAAAAAAOBAAAAAAHNAAAAAAFNAAAAAACNAAAAAAANAAAAAAINAAAAAACNAAAAAAEBAAAAAAGBAAAAAAFFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAFFAAAAAABFAAAAAABFAAAAAAFBAAAAAAHBAAAAAAOBAAAAAAPBAAAAAAKBAAAAAAENAAAAAAGNAAAAAADNAAAAAAEBAAAAAABFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAAEBAAAAAAGBAAAAAAHBAAAAAACNAAAAAAANAAAAAAFNAAAAAAG
+ version: 6
+ -5,1:
+ ind: -5,1
+ tiles: FAAAAAAFFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAFFAAAAAABBAAAAAAPBAAAAAACNAAAAAACNAAAAAAGFAAAAAACFAAAAAACFAAAAAAEFAAAAAACFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAABAAAAAALBAAAAAAHNAAAAAAHFAAAAAACFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAADFAAAAAACFAAAAAAEFAAAAAACBAAAAAAPBAAAAAAKFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAAFFAAAAAACFAAAAAAABAAAAAAMFAAAAAACFAAAAAAEFAAAAAACFAAAAAABFAAAAAADFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAFBAAAAAAMFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAEFAAAAAABFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAADBAAAAAAGFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAFBAAAAAAGFAAAAAAAFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAADFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAADFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACDQAAAAAEFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAEFAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAADFAAAAAADFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAADQAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAABFAAAAAAEFAAAAAACFAAAAAAFFAAAAAACDQAAAAABDQAAAAADFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAADQAAAAABDQAAAAADFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAFFAAAAAACFAAAAAAFFAAAAAACFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAEDQAAAAAADQAAAAADDQAAAAACFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAEFAAAAAACFAAAAAAEFAAAAAACFAAAAAABFAAAAAABFAAAAAADFAAAAAAEFAAAAAABFAAAAAADDQAAAAADDQAAAAAA
+ version: 6
+ -3,-3:
+ ind: -3,-3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAACDgAAAAABDgAAAAAADgAAAAABDgAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAADBAAAAAAOBAAAAAAMBAAAAAAABAAAAAADBAAAAAAJBAAAAAAODgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACBAAAAAAKBAAAAAAOBAAAAAAPBAAAAAAKBAAAAAACBAAAAAAMBAAAAAANBAAAAAABDgAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -4,-3:
+ ind: -4,-3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAEDgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAADFAAAAAAFDgAAAAACDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAABFAAAAAAAFAAAAAACDgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAEFAAAAAACFAAAAAABFAAAAAAEDgAAAAAEDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAABFAAAAAACFAAAAAADFAAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAC
+ version: 6
+ -5,-3:
+ ind: -5,-3
+ tiles: BAAAAAALBAAAAAAMBAAAAAANBAAAAAANBAAAAAALBAAAAAAODgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAAGBAAAAAAFBAAAAAAIBAAAAAAMBAAAAAACDgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAANEAAAAAANEAAAAAALEAAAAAAGBAAAAAAIBAAAAAAGBAAAAAAFDgAAAAABDgAAAAADDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAIEAAAAAADEAAAAAAFEAAAAAALEAAAAAAJBAAAAAAHBAAAAAAFBAAAAAABDgAAAAAADgAAAAADDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAGEAAAAAAEEAAAAAABEAAAAAAFEAAAAAAJEAAAAAABBAAAAAADBAAAAAAIDgAAAAAADgAAAAAEDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAKEAAAAAAHEAAAAAAMEAAAAAAIEAAAAAAFEAAAAAAJBAAAAAABBAAAAAAIDgAAAAADDgAAAAABDgAAAAADDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAEEAAAAAAKEAAAAAAGEAAAAAAMEAAAAAADEAAAAAAIBAAAAAAKBAAAAAACBAAAAAAFDgAAAAABDgAAAAAADgAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAACEAAAAAAHEAAAAAANEAAAAAACEAAAAAAFEAAAAAADEAAAAAAEBAAAAAAOBAAAAAAIDgAAAAABDgAAAAABDgAAAAADDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAACEAAAAAAMEAAAAAAGEAAAAAAJEAAAAAADEAAAAAAJEAAAAAAHBAAAAAAIBAAAAAAEDgAAAAACDgAAAAABDgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAEAAAAAALEAAAAAADEAAAAAAKEAAAAAABEAAAAAADEAAAAAAIBAAAAAAPBAAAAAANFAAAAAABFAAAAAADDgAAAAAADgAAAAAEDgAAAAACDgAAAAACDgAAAAABDgAAAAADEAAAAAAIEAAAAAABEAAAAAADEAAAAAAEEAAAAAAKEAAAAAAFBAAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAADDgAAAAABDgAAAAADDgAAAAAADgAAAAAEDgAAAAACEAAAAAAJEAAAAAAFEAAAAAAIEAAAAAADEAAAAAANEAAAAAALBAAAAAAHFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAAEEAAAAAAAEAAAAAAAEAAAAAAHEAAAAAABEAAAAAAFEAAAAAAABAAAAAABBAAAAAAGFAAAAAAEDQAAAAABFAAAAAABFAAAAAACDQAAAAAEDQAAAAADFAAAAAAAFAAAAAAFEAAAAAAKEAAAAAADEAAAAAAMEAAAAAADEAAAAAAMEAAAAAAEBAAAAAAJBAAAAAAMFAAAAAACDQAAAAACDQAAAAADFAAAAAAADQAAAAAEFAAAAAACDQAAAAAEFAAAAAACEAAAAAACEAAAAAAHEAAAAAABEAAAAAANEAAAAAAIEAAAAAANBAAAAAAABAAAAAAIFAAAAAABDQAAAAAADQAAAAAAFAAAAAAADQAAAAAEFAAAAAADFAAAAAABDQAAAAABEAAAAAALEAAAAAAEEAAAAAALEAAAAAALEAAAAAAMEAAAAAAEBAAAAAAIBAAAAAAOFAAAAAACDQAAAAABDQAAAAABFAAAAAABFAAAAAADDwAAAAADDwAAAAACDQAAAAAF
+ version: 6
+ -5,-4:
+ ind: -5,-4
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAEDgAAAAAEDgAAAAACDgAAAAAEDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAAHDgAAAAABDgAAAAAEDgAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAPBAAAAAACBAAAAAAODgAAAAABBAAAAAAJDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -6,-4:
+ ind: -6,-4
+ tiles: DgAAAAABDgAAAAAEDgAAAAADDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAAADgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAABDgAAAAABDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAADgAAAAAEDgAAAAAEDgAAAAACDgAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAADFAAAAAACDgAAAAAEDgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAACDgAAAAABDgAAAAAADgAAAAACDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAEDgAAAAADDgAAAAAEDgAAAAACDgAAAAACDgAAAAACDgAAAAACDgAAAAACDgAAAAAEDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAADFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAADDgAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAAEDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAACFAAAAAABFAAAAAADFAAAAAABDgAAAAADDgAAAAAEDgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFDgAAAAADDgAAAAADDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAACDgAAAAAEDgAAAAAEDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAAFFAAAAAABFAAAAAAFDgAAAAADDgAAAAAADgAAAAACDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAACFAAAAAACFAAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAADAAAAAAAAAAAAAAAAFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAACFAAAAAACFAAAAAAFFAAAAAABDgAAAAADDgAAAAADDgAAAAAEDgAAAAABDgAAAAAAFAAAAAADFAAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAAEDgAAAAACDgAAAAABDgAAAAAADgAAAAAEFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAAEFAAAAAABFAAAAAAFBAAAAAAPDgAAAAAEBAAAAAAEFAAAAAADFAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAEFAAAAAABFAAAAAACFAAAAAAABAAAAAABBAAAAAAEBAAAAAALBAAAAAAMBAAAAAAJ
+ version: 6
+ -6,-3:
+ ind: -6,-3
+ tiles: FAAAAAABFAAAAAACBAAAAAAIFAAAAAACFAAAAAAEFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAADBAAAAAANBAAAAAACBAAAAAAEBAAAAAAFEAAAAAACEAAAAAAFFAAAAAACBAAAAAANBAAAAAAFFAAAAAACFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAEBAAAAAAHBAAAAAAPBAAAAAAMBAAAAAAFEAAAAAAJEAAAAAAKEAAAAAAKBAAAAAAKBAAAAAAMBAAAAAADFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAABBAAAAAAMBAAAAAAFBAAAAAAEBAAAAAAEBAAAAAACEAAAAAAJEAAAAAADEAAAAAAHEAAAAAAHBAAAAAAKBAAAAAAOBAAAAAAAFAAAAAAFFAAAAAAFFAAAAAABFAAAAAACBAAAAAAPBAAAAAAKBAAAAAAOBAAAAAANEAAAAAAJEAAAAAANEAAAAAADEAAAAAAHEAAAAAAFBAAAAAAGBAAAAAAMBAAAAAAGFAAAAAAFFAAAAAADFAAAAAABFAAAAAACBAAAAAAEBAAAAAAABAAAAAAPEAAAAAAEEAAAAAADEAAAAAAEEAAAAAALEAAAAAALBAAAAAAMEAAAAAAGEAAAAAABBAAAAAAHFAAAAAADFAAAAAABFAAAAAACBAAAAAADBAAAAAABBAAAAAAHBAAAAAAOEAAAAAAJEAAAAAAEEAAAAAACEAAAAAACEAAAAAAJBAAAAAABEAAAAAAHEAAAAAAABAAAAAAEBAAAAAAKFAAAAAACFAAAAAAEBAAAAAAIBAAAAAAFBAAAAAAGEAAAAAAKEAAAAAAAEAAAAAAFEAAAAAALEAAAAAAIEAAAAAAGBAAAAAAEEAAAAAABEAAAAAAGEAAAAAAABAAAAAAIFAAAAAADBAAAAAAPBAAAAAAMBAAAAAAIEAAAAAAEEAAAAAAFEAAAAAAJEAAAAAABEAAAAAADEAAAAAADEAAAAAABBAAAAAABEAAAAAAHEAAAAAAJEAAAAAAJBAAAAAALBAAAAAAPBAAAAAACEAAAAAAFEAAAAAAAEAAAAAADEAAAAAAHEAAAAAAEEAAAAAACEAAAAAACEAAAAAACEAAAAAAKBAAAAAALBAAAAAAPEAAAAAALEAAAAAAJEAAAAAACBAAAAAANEAAAAAAFEAAAAAABEAAAAAAKEAAAAAAJEAAAAAAIEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAABAAAAAAEBAAAAAADEAAAAAAGEAAAAAAMEAAAAAAAEAAAAAAGEAAAAAAFEAAAAAAGEAAAAAAHEAAAAAAAEAAAAAANEAAAAAAJEAAAAAAFEAAAAAAEEAAAAAAGEAAAAAAABAAAAAAJBAAAAAADEAAAAAAFEAAAAAAEEAAAAAAGEAAAAAAIEAAAAAANEAAAAAALEAAAAAAJEAAAAAAMEAAAAAABEAAAAAAKEAAAAAAHEAAAAAAIEAAAAAALEAAAAAAKBAAAAAAFEAAAAAADEAAAAAABEAAAAAAJEAAAAAAAEAAAAAAHEAAAAAAEEAAAAAALEAAAAAANEAAAAAABBAAAAAAIBAAAAAADEAAAAAAHEAAAAAAAEAAAAAAKEAAAAAAFBAAAAAAMEAAAAAANEAAAAAAAEAAAAAAMEAAAAAAAEAAAAAACEAAAAAABEAAAAAAGEAAAAAAJEAAAAAAKBAAAAAAOEAAAAAAGEAAAAAALEAAAAAANEAAAAAADEAAAAAANBAAAAAAKEAAAAAAHEAAAAAAFEAAAAAADEAAAAAAMEAAAAAAAEAAAAAALEAAAAAAAEAAAAAAEEAAAAAADBAAAAAAOEAAAAAAHEAAAAAABEAAAAAACEAAAAAAIEAAAAAAHBAAAAAAJEAAAAAAJEAAAAAADEAAAAAANEAAAAAAIEAAAAAAMEAAAAAANEAAAAAAEEAAAAAAHEAAAAAAIEAAAAAANEAAAAAAJEAAAAAAGEAAAAAAEEAAAAAAMEAAAAAAG
+ version: 6
+ -6,-2:
+ ind: -6,-2
+ tiles: BAAAAAAIBAAAAAAEBAAAAAANEAAAAAAKEAAAAAAJEAAAAAAMEAAAAAALBAAAAAAEEAAAAAANBAAAAAAIEAAAAAAGEAAAAAAMEAAAAAAIEAAAAAAKEAAAAAACEAAAAAAHBAAAAAAHBAAAAAAOBAAAAAAIBAAAAAAHBAAAAAANEAAAAAAEBAAAAAAHEAAAAAACBAAAAAAHBAAAAAAPEAAAAAAIEAAAAAALEAAAAAALEAAAAAAEEAAAAAAAEAAAAAAEBAAAAAANBAAAAAACBAAAAAADBAAAAAAFEAAAAAABEAAAAAANEAAAAAALBAAAAAAMBAAAAAAGEAAAAAAIEAAAAAAFEAAAAAAEBAAAAAAKBAAAAAAABAAAAAANEAAAAAAJBAAAAAAABAAAAAAKBAAAAAAPEAAAAAACEAAAAAAGBAAAAAALEAAAAAABBAAAAAAMBAAAAAAKEAAAAAAHEAAAAAAEBAAAAAAFFAAAAAAEBAAAAAAIBAAAAAADBAAAAAAOBAAAAAAKBAAAAAAIBAAAAAALEAAAAAAABAAAAAACEAAAAAABBAAAAAAIBAAAAAAPBAAAAAAGBAAAAAACBAAAAAALBAAAAAALDQAAAAAADQAAAAABBAAAAAAHBAAAAAANBAAAAAAIBAAAAAACBAAAAAADBAAAAAADEAAAAAANEAAAAAAEBAAAAAAEBAAAAAAHBAAAAAAIBAAAAAAEBAAAAAALBAAAAAANDQAAAAAADQAAAAAEDQAAAAABFAAAAAAABAAAAAAGBAAAAAAIBAAAAAALBAAAAAACEAAAAAAFBAAAAAADBAAAAAABBAAAAAAMBAAAAAAOEAAAAAAHEAAAAAADBAAAAAAMFAAAAAAADQAAAAAFDQAAAAABDQAAAAAEBAAAAAAPBAAAAAAMBAAAAAAABAAAAAALEAAAAAANEAAAAAAEBAAAAAAIBAAAAAADBAAAAAAJEAAAAAAGEAAAAAADBAAAAAAFBAAAAAABBAAAAAAIDQAAAAAFDQAAAAAEBAAAAAAFBAAAAAANBAAAAAABEAAAAAABEAAAAAADEAAAAAACBAAAAAAKEAAAAAAAEAAAAAAIEAAAAAAMEAAAAAAGEAAAAAAEEAAAAAACBAAAAAALBAAAAAAODQAAAAAABAAAAAAPBAAAAAAPBAAAAAACEAAAAAACEAAAAAADEAAAAAACBAAAAAAHEAAAAAAEEAAAAAABEAAAAAANEAAAAAABEAAAAAANEAAAAAALBAAAAAANBAAAAAANFAAAAAACBAAAAAAGBAAAAAAEEAAAAAAHEAAAAAANEAAAAAAFEAAAAAADBAAAAAAFBAAAAAALEAAAAAADEAAAAAACEAAAAAAEEAAAAAABEAAAAAABEAAAAAAEBAAAAAADBAAAAAAMBAAAAAAFBAAAAAAKEAAAAAAKBAAAAAAKEAAAAAANBAAAAAAPBAAAAAAMEAAAAAALEAAAAAAEEAAAAAANEAAAAAABEAAAAAAGEAAAAAANEAAAAAABEAAAAAACBAAAAAAMFAAAAAACBAAAAAADEAAAAAAFBAAAAAAFEAAAAAACBAAAAAAHEAAAAAALEAAAAAALEAAAAAACEAAAAAABEAAAAAADEAAAAAANEAAAAAAIEAAAAAAMEAAAAAADBAAAAAADBAAAAAAMBAAAAAABEAAAAAACEAAAAAAAEAAAAAAGBAAAAAAOEAAAAAALEAAAAAAGEAAAAAAIEAAAAAALEAAAAAADEAAAAAAEEAAAAAACEAAAAAAJEAAAAAAIEAAAAAABBAAAAAAOBAAAAAACEAAAAAAMBAAAAAADEAAAAAAMBAAAAAAJBAAAAAAEEAAAAAACBAAAAAADBAAAAAAMBAAAAAACEAAAAAAIEAAAAAAMEAAAAAAAEAAAAAAMEAAAAAAGFAAAAAAEBAAAAAAMEAAAAAAHEAAAAAACEAAAAAAAEAAAAAANBAAAAAAGBAAAAAACBAAAAAAABAAAAAAEBAAAAAADBAAAAAAMEAAAAAAKEAAAAAAHBAAAAAAPBAAAAAAL
+ version: 6
+ -6,-1:
+ ind: -6,-1
+ tiles: FAAAAAAFBAAAAAANBAAAAAAHEAAAAAAFEAAAAAABEAAAAAAJBAAAAAAHBAAAAAAABAAAAAACBAAAAAAKBAAAAAAJBAAAAAABEAAAAAAAEAAAAAAGBAAAAAABBAAAAAADBAAAAAAIBAAAAAAHBAAAAAALEAAAAAAFBAAAAAANEAAAAAACEAAAAAAMBAAAAAAKEAAAAAAJEAAAAAABBAAAAAAHBAAAAAAEEAAAAAAMEAAAAAANBAAAAAALFAAAAAAFFAAAAAAFFAAAAAABBAAAAAAFEAAAAAAFEAAAAAACEAAAAAANEAAAAAAKBAAAAAALEAAAAAADEAAAAAAHEAAAAAAJBAAAAAAEEAAAAAAJBAAAAAAPBAAAAAACFAAAAAAFBAAAAAACFAAAAAAEBAAAAAAJEAAAAAAAEAAAAAAIEAAAAAAGEAAAAAAGBAAAAAAGEAAAAAABEAAAAAAIEAAAAAAHBAAAAAALBAAAAAAEBAAAAAAIBAAAAAAAFAAAAAAFBAAAAAAEFAAAAAAEBAAAAAAFEAAAAAAHEAAAAAAGEAAAAAAIEAAAAAALBAAAAAACEAAAAAAEEAAAAAABEAAAAAAIEAAAAAABBAAAAAAIBAAAAAAJFAAAAAAFFAAAAAAEFAAAAAAFBAAAAAADBAAAAAAAEAAAAAAEEAAAAAAJEAAAAAAJEAAAAAAMBAAAAAAMEAAAAAALEAAAAAAHEAAAAAAJEAAAAAABBAAAAAABBAAAAAANFAAAAAACFAAAAAABBAAAAAABBAAAAAADEAAAAAAMEAAAAAAEEAAAAAACEAAAAAAEEAAAAAAGBAAAAAABEAAAAAAKEAAAAAADEAAAAAAIEAAAAAANBAAAAAAOBAAAAAAOBAAAAAAHFAAAAAABEAAAAAAGBAAAAAAMEAAAAAAGEAAAAAACEAAAAAACEAAAAAAHBAAAAAAIBAAAAAAPEAAAAAALEAAAAAAMEAAAAAADEAAAAAALEAAAAAAIBAAAAAAOBAAAAAANFAAAAAADEAAAAAAGBAAAAAACBAAAAAALEAAAAAANEAAAAAAHEAAAAAANEAAAAAACBAAAAAANEAAAAAALEAAAAAAGEAAAAAAKEAAAAAAEEAAAAAAEBAAAAAABBAAAAAAIFAAAAAAFBAAAAAAABAAAAAANEAAAAAAHEAAAAAAHEAAAAAAFEAAAAAAMEAAAAAAKBAAAAAAJEAAAAAACEAAAAAADEAAAAAAEEAAAAAAKEAAAAAAKEAAAAAABBAAAAAAPFAAAAAACBAAAAAAOBAAAAAAAEAAAAAADEAAAAAAFEAAAAAAFEAAAAAAFEAAAAAABBAAAAAAPEAAAAAADEAAAAAANEAAAAAABEAAAAAANEAAAAAAIEAAAAAALBAAAAAAMBAAAAAAJBAAAAAANBAAAAAAGEAAAAAAAEAAAAAADEAAAAAALEAAAAAAGBAAAAAAKBAAAAAAFEAAAAAAHEAAAAAAJEAAAAAALEAAAAAAGEAAAAAAKEAAAAAAKBAAAAAAHBAAAAAAHBAAAAAADBAAAAAAEEAAAAAAFEAAAAAALEAAAAAAKEAAAAAAJBAAAAAAMBAAAAAAIBAAAAAADEAAAAAAJEAAAAAAFEAAAAAALEAAAAAAJEAAAAAANBAAAAAAKBAAAAAAOBAAAAAAHBAAAAAALEAAAAAAJEAAAAAAMEAAAAAAKEAAAAAADBAAAAAAJBAAAAAAHEAAAAAAIEAAAAAAAEAAAAAALEAAAAAAMEAAAAAADEAAAAAAFBAAAAAANBAAAAAAFBAAAAAAOEAAAAAALEAAAAAAGEAAAAAAIBAAAAAAEBAAAAAAHBAAAAAAPBAAAAAAKEAAAAAAHEAAAAAAKEAAAAAAHEAAAAAAJBAAAAAACBAAAAAAPBAAAAAAKFAAAAAACEAAAAAALEAAAAAAHEAAAAAADEAAAAAAKBAAAAAAKBAAAAAAJBAAAAAAMBAAAAAAMEAAAAAAIEAAAAAAFEAAAAAAIBAAAAAAEBAAAAAAMBAAAAAAGFAAAAAAAFAAAAAAD
+ version: 6
+ -6,0:
+ ind: -6,0
+ tiles: EAAAAAABEAAAAAAJEAAAAAADBAAAAAAFBAAAAAACBAAAAAAJBAAAAAAJBAAAAAAOEAAAAAAHEAAAAAAEEAAAAAAFBAAAAAABBAAAAAAKFAAAAAAEFAAAAAAAFAAAAAAEEAAAAAABEAAAAAAHBAAAAAAKBAAAAAAEBAAAAAAFBAAAAAAOBAAAAAAEBAAAAAALBAAAAAAJBAAAAAAHBAAAAAAIBAAAAAAKFAAAAAABFAAAAAADFAAAAAAAFAAAAAAEEAAAAAAKEAAAAAAABAAAAAAABAAAAAANBAAAAAAMBAAAAAAFFAAAAAAEBAAAAAAJBAAAAAAJBAAAAAABFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAFEAAAAAAJEAAAAAAMEAAAAAADBAAAAAANBAAAAAAKBAAAAAAFFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAACFAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAADEAAAAAAKEAAAAAAKEAAAAAAEBAAAAAABBAAAAAABBAAAAAAKFAAAAAAADQAAAAAEDQAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAAEFAAAAAADEAAAAAAMEAAAAAADEAAAAAALBAAAAAACBAAAAAAIBAAAAAAMFAAAAAAADQAAAAABDQAAAAAEDQAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAABEAAAAAAFEAAAAAAFEAAAAAAKEAAAAAAFBAAAAAAKBAAAAAADFAAAAAAADQAAAAADDQAAAAAFDQAAAAABDQAAAAAADQAAAAAEDQAAAAACDQAAAAABDQAAAAAFDQAAAAACEAAAAAAHEAAAAAACEAAAAAADEAAAAAAABAAAAAAEBAAAAAAEFAAAAAAAFAAAAAADFAAAAAAADQAAAAABDQAAAAAEFAAAAAAFDQAAAAAFDQAAAAAFDQAAAAACDQAAAAADNAAAAAACEAAAAAAGNAAAAAAAEAAAAAAJAgAAAAAFBAAAAAADBAAAAAAPBAAAAAAEBAAAAAAPBAAAAAADBAAAAAAHBAAAAAANBAAAAAAMBAAAAAAFBAAAAAAABAAAAAACNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANAAAAAAGNAAAAAAENAAAAAAFNAAAAAAGNAAAAAAGNAAAAAADNAAAAAAHNAAAAAAGNAAAAAAEBAAAAAAJNQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANAAAAAAGNAAAAAAFNAAAAAAANAAAAAAENAAAAAAFNAAAAAAINAAAAAACNAAAAAAENAAAAAAFNAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANAAAAAAENAAAAAAEBAAAAAABBAAAAAADBAAAAAAJBAAAAAAJNAAAAAAFNAAAAAAENAAAAAAANAAAAAAFNAAAAAADEAAAAAAANAAAAAAABAAAAAAHNAAAAAAFBAAAAAAGFAAAAAACFAAAAAABFAAAAAAEFAAAAAACFAAAAAADBAAAAAAPBAAAAAACBAAAAAAMBAAAAAAFNAAAAAAEBAAAAAAAEAAAAAALEAAAAAAMEAAAAAAJBAAAAAAIBAAAAAAKFAAAAAAADQAAAAADDQAAAAAFDQAAAAAADQAAAAAADQAAAAAFFAAAAAABBAAAAAAFBAAAAAAMBAAAAAABEAAAAAAAEAAAAAACEAAAAAAFEAAAAAAJBAAAAAAOBAAAAAAPFAAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAAFFAAAAAACFAAAAAABFAAAAAAEFAAAAAABEAAAAAAMBAAAAAAHEAAAAAAJEAAAAAABBAAAAAAHBAAAAAAMDQAAAAABDQAAAAAADQAAAAADDQAAAAAFDQAAAAADDQAAAAAADQAAAAACFAAAAAADFAAAAAAFFAAAAAAB
+ version: 6
+ -6,1:
+ ind: -6,1
+ tiles: EAAAAAABBAAAAAADEAAAAAAFEAAAAAACBAAAAAAIBAAAAAAJFAAAAAAFDQAAAAAEDQAAAAACDwAAAAACDwAAAAACDQAAAAABDQAAAAABFAAAAAADFAAAAAABFAAAAAACEAAAAAAMEAAAAAACEAAAAAAGEAAAAAAFBAAAAAAMBAAAAAADFAAAAAACDQAAAAACDQAAAAACDwAAAAABDwAAAAAADQAAAAACDQAAAAAEDQAAAAADFAAAAAADFAAAAAACEAAAAAALEAAAAAALEAAAAAAIBAAAAAAJBAAAAAAEBAAAAAANFAAAAAADDQAAAAAEDQAAAAACDwAAAAAADwAAAAACDwAAAAAFDQAAAAABDQAAAAAEFAAAAAACFAAAAAABEAAAAAANEAAAAAAFEAAAAAACEAAAAAAFBAAAAAAHBAAAAAAKFAAAAAADFAAAAAADDQAAAAADDQAAAAAADwAAAAAEDwAAAAABDwAAAAAADQAAAAABDQAAAAAADQAAAAAFEAAAAAAKEAAAAAADEAAAAAAEEAAAAAACBAAAAAAOBAAAAAAKFAAAAAABFAAAAAADDQAAAAAFDQAAAAAADwAAAAAEDQAAAAAFDwAAAAABDQAAAAABDQAAAAAFFAAAAAADEAAAAAAKEAAAAAABEAAAAAAGBAAAAAAABAAAAAAFEAAAAAAFFAAAAAAFFAAAAAAADQAAAAAFDQAAAAABDwAAAAABDwAAAAABFAAAAAABDQAAAAADFAAAAAAFFAAAAAADEAAAAAALEAAAAAADEAAAAAAHBAAAAAADBAAAAAADFAAAAAAAFAAAAAAFFAAAAAAADQAAAAAFDQAAAAADDQAAAAACDQAAAAACDQAAAAAEFAAAAAACFAAAAAAFFAAAAAADBAAAAAALEAAAAAAMEAAAAAABBAAAAAAFBAAAAAANFAAAAAABFAAAAAAEFAAAAAAADQAAAAAFDQAAAAABFAAAAAACDQAAAAAFDQAAAAAADQAAAAAEFAAAAAAFFAAAAAACEAAAAAAFEAAAAAACEAAAAAACBAAAAAANBAAAAAAFFAAAAAACFAAAAAABFAAAAAADDQAAAAADDQAAAAACFAAAAAAEFAAAAAACDQAAAAAFDQAAAAACDQAAAAAAFAAAAAAEEAAAAAAMEAAAAAAFEAAAAAAKBAAAAAACFAAAAAAAFAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAACFAAAAAABDQAAAAADFAAAAAAEEAAAAAABEAAAAAAMEAAAAAADBAAAAAAFFAAAAAADFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAEEAAAAAAHEAAAAAABBAAAAAADBAAAAAAOFAAAAAADFAAAAAAEFAAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAABFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAEEAAAAAAJEAAAAAAJBAAAAAAMBAAAAAABBAAAAAAPBAAAAAACFAAAAAACFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAAFFAAAAAADEAAAAAAFEAAAAAAMEAAAAAANEAAAAAAEBAAAAAAMBAAAAAADBAAAAAAMBAAAAAAABAAAAAAMBAAAAAANBAAAAAAPBAAAAAADBAAAAAAAFAAAAAAFFAAAAAAAFAAAAAACEAAAAAADEAAAAAAEEAAAAAAEEAAAAAACEAAAAAAAEAAAAAAMBAAAAAAHBAAAAAABBAAAAAALBAAAAAAIBAAAAAALBAAAAAAIBAAAAAAIBAAAAAAHBAAAAAAPFAAAAAACEAAAAAAMEAAAAAAFEAAAAAABEAAAAAAEEAAAAAABEAAAAAAMEAAAAAAHBAAAAAAFBAAAAAAOBAAAAAACBAAAAAAPBAAAAAAFBAAAAAADBAAAAAAOBAAAAAAJBAAAAAAN
+ version: 6
+ -7,-4:
+ ind: -7,-4
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAABDgAAAAACDgAAAAADDgAAAAABDgAAAAACDgAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAACDgAAAAACDgAAAAADDgAAAAADDgAAAAABDgAAAAAADgAAAAADDgAAAAADAAAAAAAADgAAAAACDgAAAAADDgAAAAACDgAAAAABDgAAAAADDgAAAAACDgAAAAACDgAAAAADDgAAAAADDgAAAAADDgAAAAABDgAAAAAEDgAAAAADDgAAAAACDgAAAAADDgAAAAABDgAAAAADDgAAAAABDgAAAAABDgAAAAABDgAAAAAADgAAAAAEDgAAAAABDgAAAAACDgAAAAABDgAAAAAADgAAAAAADgAAAAAEDgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAAEFAAAAAAAFAAAAAADFAAAAAABDgAAAAAEDgAAAAAEFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAAFAAAAAABFAAAAAAFFAAAAAABFAAAAAACFAAAAAACFAAAAAABFAAAAAACFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAFFAAAAAADFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAABFAAAAAABFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAADFAAAAAAEFAAAAAADFAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAACFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAAEFAAAAAACFAAAAAACFAAAAAABFAAAAAADFAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAABFAAAAAACFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAADFAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAACFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAAA
+ version: 6
+ -8,-4:
+ ind: -8,-4
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAABDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAEDgAAAAAEDgAAAAADDgAAAAAEDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAEDgAAAAAADgAAAAADDgAAAAABDgAAAAADDgAAAAABFAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAAAFAAAAAAEFAAAAAACFAAAAAACFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAACDgAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAEDgAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAACFAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAADFAAAAAADFAAAAAABFAAAAAADFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAEFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAABFAAAAAACFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAADFAAAAAAEFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAABFAAAAAADFAAAAAAC
+ version: 6
+ -7,-3:
+ ind: -7,-3
+ tiles: FAAAAAAAFAAAAAAEFAAAAAAAFAAAAAACFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAAFAAAAAACFAAAAAAFBAAAAAAABAAAAAAHFAAAAAAEFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAFBAAAAAADBAAAAAAPBAAAAAAEFAAAAAABFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADBAAAAAALBAAAAAABEAAAAAAHFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFFAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAAFBAAAAAAMEAAAAAADFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAFFAAAAAABFAAAAAADFAAAAAABBAAAAAAABAAAAAAOFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAACBAAAAAADFAAAAAADFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAADBAAAAAAIFAAAAAACFAAAAAADFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAACFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAABBAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAEFAAAAAADFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAADFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFBAAAAAAKBAAAAAAPFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAAEFAAAAAADBAAAAAAOBAAAAAAPBAAAAAAHFAAAAAAEFAAAAAABFAAAAAADFAAAAAACFAAAAAAEFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAAABAAAAAAHBAAAAAAGBAAAAAAJFAAAAAAAFAAAAAADFAAAAAADFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEBAAAAAAEBAAAAAALFAAAAAACFAAAAAADFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAFBAAAAAAFBAAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAEFAAAAAACFAAAAAABFAAAAAADFAAAAAAFBAAAAAAFFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAABAAAAAANBAAAAAAE
+ version: 6
+ -7,-2:
+ ind: -7,-2
+ tiles: FAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAAABAAAAAAGFAAAAAAEFAAAAAABFAAAAAAEBAAAAAAGBAAAAAALBAAAAAAMBAAAAAANBAAAAAAOFAAAAAAEFAAAAAADFAAAAAABFAAAAAADFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEBAAAAAAHBAAAAAAHBAAAAAAPBAAAAAAEBAAAAAAOBAAAAAADFAAAAAAEFAAAAAABFAAAAAABFAAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFFAAAAAAAFAAAAAACBAAAAAAMBAAAAAABBAAAAAAOBAAAAAAGBAAAAAABBAAAAAAIBAAAAAABFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFBAAAAAAFBAAAAAAPBAAAAAALBAAAAAAPBAAAAAABBAAAAAAKBAAAAAAFBAAAAAANBAAAAAAHFAAAAAAEFAAAAAADFAAAAAAEBAAAAAAAFAAAAAADFAAAAAADBAAAAAANBAAAAAAABAAAAAAGBAAAAAACBAAAAAAGBAAAAAAIBAAAAAAIBAAAAAABBAAAAAAOBAAAAAADFAAAAAABFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAACBAAAAAAOBAAAAAAPBAAAAAABBAAAAAANBAAAAAAFBAAAAAAIBAAAAAAMBAAAAAAIBAAAAAAAEAAAAAAFBAAAAAAMBAAAAAALFAAAAAABFAAAAAADFAAAAAAFFAAAAAACBAAAAAAJBAAAAAAGBAAAAAAEBAAAAAAKBAAAAAALBAAAAAANBAAAAAAIBAAAAAACBAAAAAAJEAAAAAAJBAAAAAAMBAAAAAAEFAAAAAADBAAAAAAFFAAAAAADBAAAAAANBAAAAAANBAAAAAADBAAAAAAPBAAAAAABBAAAAAAKBAAAAAAEBAAAAAAPBAAAAAAEBAAAAAAIEAAAAAAEEAAAAAALBAAAAAAKBAAAAAAABAAAAAANBAAAAAAIBAAAAAANBAAAAAAMBAAAAAAGBAAAAAAJBAAAAAAJBAAAAAADBAAAAAABBAAAAAANBAAAAAALBAAAAAAPEAAAAAAFEAAAAAAGEAAAAAANBAAAAAAIBAAAAAALBAAAAAALBAAAAAABBAAAAAAJBAAAAAABBAAAAAAGEAAAAAAJBAAAAAAGBAAAAAAOBAAAAAAPBAAAAAAHBAAAAAAKEAAAAAAHEAAAAAAHEAAAAAAKEAAAAAAAEAAAAAANEAAAAAAFBAAAAAAAEAAAAAAEBAAAAAAABAAAAAAHBAAAAAAGBAAAAAAEBAAAAAAOBAAAAAABBAAAAAAIBAAAAAAPEAAAAAAIEAAAAAADEAAAAAAIEAAAAAAMEAAAAAADEAAAAAAIEAAAAAAJEAAAAAAKBAAAAAAJBAAAAAAMBAAAAAAPBAAAAAANBAAAAAAFBAAAAAAGBAAAAAAABAAAAAAHEAAAAAABEAAAAAAHEAAAAAAGEAAAAAADEAAAAAAKEAAAAAAJEAAAAAABEAAAAAAAEAAAAAAIBAAAAAAMBAAAAAAEBAAAAAAKBAAAAAACBAAAAAAGBAAAAAAFBAAAAAAAEAAAAAAAEAAAAAAHEAAAAAAIEAAAAAALEAAAAAAJEAAAAAALEAAAAAAIEAAAAAAAEAAAAAALEAAAAAADEAAAAAADBAAAAAAJBAAAAAACBAAAAAAJBAAAAAAABAAAAAANEAAAAAAMEAAAAAAKEAAAAAAJEAAAAAAEEAAAAAACEAAAAAAAEAAAAAAGEAAAAAAAEAAAAAABEAAAAAAEBAAAAAABBAAAAAAIEAAAAAAHBAAAAAAGBAAAAAALFAAAAAAEEAAAAAAMEAAAAAAIEAAAAAAEEAAAAAACEAAAAAAIEAAAAAAFEAAAAAALEAAAAAANEAAAAAACEAAAAAACEAAAAAACEAAAAAANEAAAAAACBAAAAAANBAAAAAAGBAAAAAAA
+ version: 6
+ -7,-1:
+ ind: -7,-1
+ tiles: EAAAAAACEAAAAAAEEAAAAAAEEAAAAAAGEAAAAAAHEAAAAAAKEAAAAAANEAAAAAABEAAAAAANEAAAAAAGEAAAAAAAEAAAAAAGBAAAAAAMBAAAAAAGBAAAAAAKBAAAAAAMEAAAAAABEAAAAAAMEAAAAAAIEAAAAAAAEAAAAAAEEAAAAAAIEAAAAAAHEAAAAAAIEAAAAAABEAAAAAAMEAAAAAADBAAAAAAEBAAAAAAOBAAAAAAKFAAAAAAEBAAAAAACEAAAAAABEAAAAAANEAAAAAAJEAAAAAABEAAAAAACEAAAAAADEAAAAAADEAAAAAAMEAAAAAADEAAAAAAKEAAAAAAEBAAAAAAIBAAAAAAOBAAAAAAGBAAAAAAFBAAAAAAPEAAAAAAGEAAAAAAJEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAALEAAAAAAMBAAAAAAOBAAAAAAMBAAAAAAJBAAAAAAIBAAAAAACBAAAAAADFAAAAAADEAAAAAAKEAAAAAAJEAAAAAAJEAAAAAAFEAAAAAAGEAAAAAAGEAAAAAAIEAAAAAAHEAAAAAABEAAAAAACBAAAAAAIFAAAAAABFAAAAAAEBAAAAAAKFAAAAAAEFAAAAAAAEAAAAAAEEAAAAAAMEAAAAAAKEAAAAAAGEAAAAAANEAAAAAAIEAAAAAALEAAAAAADEAAAAAAMEAAAAAALBAAAAAAKBAAAAAADFAAAAAACBAAAAAACFAAAAAABFAAAAAADEAAAAAACEAAAAAADEAAAAAADEAAAAAAKEAAAAAACEAAAAAALEAAAAAANEAAAAAAJEAAAAAANEAAAAAALEAAAAAAJBAAAAAAKBAAAAAAABAAAAAAJBAAAAAAEBAAAAAABEAAAAAABEAAAAAAKEAAAAAADEAAAAAAFEAAAAAANEAAAAAAIEAAAAAALEAAAAAAAEAAAAAAIEAAAAAAMEAAAAAAHEAAAAAAGEAAAAAAJEAAAAAABEAAAAAADEAAAAAAJEAAAAAANEAAAAAAEEAAAAAAGEAAAAAADEAAAAAALEAAAAAAKEAAAAAAFEAAAAAANEAAAAAAHEAAAAAALEAAAAAAHEAAAAAAEEAAAAAAIEAAAAAAFEAAAAAACEAAAAAANEAAAAAAMEAAAAAAJEAAAAAAJEAAAAAABEAAAAAALEAAAAAACEAAAAAAIEAAAAAAEEAAAAAADEAAAAAAAEAAAAAACEAAAAAAMEAAAAAAIEAAAAAABEAAAAAAJBAAAAAAJEAAAAAABEAAAAAAGEAAAAAAGEAAAAAANEAAAAAALEAAAAAAMEAAAAAAHEAAAAAAKEAAAAAAFEAAAAAAEEAAAAAAIBAAAAAABBAAAAAAEEAAAAAAIEAAAAAAKBAAAAAAAEAAAAAACEAAAAAABEAAAAAALEAAAAAABEAAAAAAFEAAAAAADEAAAAAALEAAAAAABFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAFBAAAAAAJBAAAAAAEEAAAAAAHBAAAAAAMEAAAAAAKEAAAAAAAEAAAAAAMEAAAAAAFEAAAAAABEAAAAAAEEAAAAAABEAAAAAAHFAAAAAADBAAAAAABBAAAAAAPFAAAAAAFFAAAAAABFAAAAAAFBAAAAAAGBAAAAAAOEAAAAAAIEAAAAAAGEAAAAAAIEAAAAAADEAAAAAABEAAAAAAAEAAAAAALEAAAAAABFAAAAAACFAAAAAABFAAAAAAADQAAAAAEDQAAAAAADQAAAAAAFAAAAAAABAAAAAADEAAAAAAGEAAAAAAMEAAAAAAGEAAAAAAIEAAAAAANEAAAAAALEAAAAAAAEAAAAAAGFAAAAAAAFAAAAAAEBAAAAAADDQAAAAAADQAAAAAEFAAAAAAABAAAAAAGBAAAAAALEAAAAAABEAAAAAADEAAAAAAEEAAAAAABEAAAAAAEEAAAAAALFAAAAAABEAAAAAAJFAAAAAAFFAAAAAAAFAAAAAABDQAAAAAADQAAAAABBAAAAAAPBAAAAAABBAAAAAAP
+ version: 6
+ -7,0:
+ ind: -7,0
+ tiles: EAAAAAAAEAAAAAABEAAAAAABEAAAAAAEFAAAAAACFAAAAAAAFAAAAAAFDQAAAAAEDQAAAAAFFAAAAAACDQAAAAAADQAAAAACDQAAAAAEBAAAAAAEBAAAAAAKBAAAAAACEAAAAAALEAAAAAALEAAAAAABEAAAAAAJFAAAAAACFAAAAAACDQAAAAADDQAAAAAADQAAAAACDQAAAAAEDQAAAAADDQAAAAACFAAAAAACBAAAAAALBAAAAAANBAAAAAAGEAAAAAAGEAAAAAABEAAAAAAIBAAAAAAOFAAAAAABDQAAAAAFDQAAAAAEDQAAAAAEDQAAAAAADQAAAAAFDQAAAAABDQAAAAAEFAAAAAADBAAAAAAPBAAAAAAJBAAAAAADBAAAAAAPBAAAAAAOEAAAAAADFAAAAAAFDQAAAAACDQAAAAABDQAAAAAFFAAAAAACDQAAAAAFDQAAAAAFFAAAAAAEFAAAAAACFAAAAAADBAAAAAAEBAAAAAAOBAAAAAAPDQAAAAADDQAAAAADDQAAAAAEDQAAAAAADQAAAAAFFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAADBAAAAAAHBAAAAAAPBAAAAAAKDQAAAAAADQAAAAACDQAAAAACFAAAAAAEFAAAAAABEAAAAAAKFAAAAAADFAAAAAADFAAAAAADFAAAAAAFFAAAAAAABAAAAAAIFAAAAAADBAAAAAANBAAAAAANBAAAAAAKDQAAAAADDQAAAAAEFAAAAAAAFAAAAAACEAAAAAABEAAAAAAFEAAAAAADEAAAAAAGEAAAAAALFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAFBAAAAAAFBAAAAAALEAAAAAALFAAAAAAFFAAAAAAEEAAAAAAIEAAAAAAJEAAAAAAGEAAAAAAHEAAAAAACEAAAAAAGEAAAAAABEAAAAAAFEAAAAAABEAAAAAAJFAAAAAABEAAAAAAABAAAAAALEAAAAAANFAAAAAADFAAAAAACEAAAAAAJEAAAAAADEAAAAAAIEAAAAAAHEAAAAAADEAAAAAAMEAAAAAANEAAAAAAEEAAAAAABEAAAAAAAEAAAAAALEAAAAAAANAAAAAAFEAAAAAALFAAAAAACFAAAAAAFEAAAAAAIEAAAAAACEAAAAAAKEAAAAAACEAAAAAALEAAAAAAEEAAAAAAIEAAAAAAEEAAAAAAFEAAAAAAEEAAAAAAHNQAAAAAANQAAAAAANQAAAAAADQAAAAABFAAAAAAFEAAAAAAKEAAAAAAJEAAAAAANEAAAAAADEAAAAAABEAAAAAAEEAAAAAALEAAAAAAHEAAAAAAKEAAAAAAFEAAAAAALNQAAAAAANQAAAAAANQAAAAAADQAAAAAEDQAAAAADFAAAAAACEAAAAAALEAAAAAAAEAAAAAAFEAAAAAAMEAAAAAACEAAAAAAIEAAAAAALEAAAAAALEAAAAAANEAAAAAAFNQAAAAAANQAAAAAANQAAAAAADQAAAAACDQAAAAACFAAAAAAAEAAAAAAKEAAAAAAHEAAAAAAEEAAAAAAMEAAAAAABEAAAAAAMEAAAAAAEEAAAAAAFEAAAAAAKEAAAAAANEAAAAAAHNAAAAAAFEAAAAAANDQAAAAADDQAAAAAEFAAAAAAFFAAAAAAAEAAAAAAFEAAAAAANEAAAAAAEEAAAAAAHEAAAAAAJEAAAAAALEAAAAAABEAAAAAAKEAAAAAAIEAAAAAAJBAAAAAAHEAAAAAADFAAAAAAFBAAAAAAADQAAAAAEDQAAAAACFAAAAAAEEAAAAAADEAAAAAAIEAAAAAAAEAAAAAAIEAAAAAAAFAAAAAADFAAAAAAEFAAAAAADBAAAAAAABAAAAAAFEAAAAAAGDQAAAAACFAAAAAACBAAAAAALDQAAAAACDQAAAAADFAAAAAAAEAAAAAANEAAAAAAHFAAAAAABFAAAAAAEBAAAAAAJBAAAAAAHFAAAAAAABAAAAAADBAAAAAAPBAAAAAAL
+ version: 6
+ -7,1:
+ ind: -7,1
+ tiles: DQAAAAACBAAAAAADFAAAAAAADQAAAAAFDQAAAAAEFAAAAAABFAAAAAAABAAAAAAKBAAAAAALFAAAAAAFFAAAAAACFAAAAAACFAAAAAADBAAAAAABEAAAAAAJEAAAAAAIDQAAAAAFDQAAAAABDQAAAAABDQAAAAADDQAAAAAABAAAAAACFAAAAAACFAAAAAABFAAAAAAADQAAAAAFDQAAAAAADQAAAAABFAAAAAAABAAAAAANEAAAAAAEEAAAAAABDQAAAAACDQAAAAABDQAAAAABDQAAAAABFAAAAAABBAAAAAAEBAAAAAADBAAAAAAJFAAAAAABDQAAAAADDQAAAAAAFAAAAAABFAAAAAADBAAAAAAIEAAAAAAMEAAAAAAFBAAAAAAMFAAAAAACDQAAAAAAFAAAAAACBAAAAAAMBAAAAAANFAAAAAABFAAAAAAADQAAAAABDQAAAAACFAAAAAADFAAAAAADBAAAAAAJBAAAAAABEAAAAAABEAAAAAADBAAAAAABFAAAAAACFAAAAAADDQAAAAAEFAAAAAACFAAAAAABDQAAAAABDQAAAAAADQAAAAADBAAAAAADBAAAAAANBAAAAAADBAAAAAABEAAAAAAGEAAAAAAFEAAAAAAFBAAAAAAHBAAAAAAEFAAAAAAFDQAAAAACDQAAAAABDQAAAAAADQAAAAAFDQAAAAABFAAAAAAEFAAAAAAABAAAAAALBAAAAAAFBAAAAAAHEAAAAAACEAAAAAAFEAAAAAAAEAAAAAAEBAAAAAAEBAAAAAAPFAAAAAACDQAAAAACDQAAAAAADQAAAAAFFAAAAAAAFAAAAAAEBAAAAAAHBAAAAAALEAAAAAAIEAAAAAAMBAAAAAAKBAAAAAAIEAAAAAADEAAAAAAEEAAAAAABBAAAAAAFBAAAAAAKFAAAAAAEFAAAAAACFAAAAAABBAAAAAAFBAAAAAAEBAAAAAAJBAAAAAAMBAAAAAACBAAAAAAGEAAAAAAGEAAAAAAFEAAAAAADEAAAAAABEAAAAAACEAAAAAALBAAAAAAHBAAAAAAEBAAAAAAOBAAAAAAGBAAAAAAEEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAACEAAAAAAFEAAAAAAIBAAAAAAFEAAAAAAMEAAAAAACEAAAAAANEAAAAAADEAAAAAAEBAAAAAANBAAAAAAPEAAAAAAAEAAAAAAEEAAAAAABEAAAAAAHEAAAAAADEAAAAAAKEAAAAAACEAAAAAAJEAAAAAACEAAAAAAGEAAAAAAKEAAAAAALEAAAAAAIEAAAAAAHEAAAAAABEAAAAAAGEAAAAAAMEAAAAAAFEAAAAAAEEAAAAAAKEAAAAAADEAAAAAAHEAAAAAAJEAAAAAAEEAAAAAAMEAAAAAANEAAAAAABEAAAAAAJEAAAAAAMEAAAAAANEAAAAAAFEAAAAAAKEAAAAAAFEAAAAAACEAAAAAAAEAAAAAAKEAAAAAAJEAAAAAAKEAAAAAAMEAAAAAAEEAAAAAAJEAAAAAAHEAAAAAAFEAAAAAAAEAAAAAAGEAAAAAABEAAAAAAEEAAAAAAMEAAAAAAKEAAAAAAKEAAAAAAJEAAAAAAEEAAAAAADEAAAAAAHEAAAAAAMEAAAAAAHEAAAAAAKEAAAAAABEAAAAAACEAAAAAAEEAAAAAAIEAAAAAACEAAAAAAJEAAAAAALEAAAAAABEAAAAAAAEAAAAAAHEAAAAAAJEAAAAAAFEAAAAAAJEAAAAAAKEAAAAAAAEAAAAAAAEAAAAAANEAAAAAAJEAAAAAALEAAAAAALEAAAAAAIEAAAAAAMEAAAAAAKEAAAAAABEAAAAAAHEAAAAAAHEAAAAAAHEAAAAAAAEAAAAAAIEAAAAAACEAAAAAADEAAAAAAAEAAAAAAEEAAAAAACEAAAAAANEAAAAAAHEAAAAAAHEAAAAAANEAAAAAAMEAAAAAAMEAAAAAANEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAADEAAAAAANEAAAAAAFEAAAAAAJ
+ version: 6
+ -8,-3:
+ ind: -8,-3
+ tiles: AAAAAAAAAAAAAAAADgAAAAAEDgAAAAACDgAAAAAADgAAAAADFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAFFAAAAAABFAAAAAACFAAAAAADFAAAAAAEDgAAAAAEDgAAAAADDgAAAAADDgAAAAAADgAAAAAADgAAAAABFAAAAAABFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAACFAAAAAAEFAAAAAADFAAAAAACFAAAAAAFDgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAAEDgAAAAAEFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEDgAAAAACDgAAAAACDgAAAAAEDgAAAAAADgAAAAABFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAAFDgAAAAADDgAAAAAEDgAAAAACDgAAAAACFAAAAAAFFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAADFAAAAAADFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAAFAAAAAACFAAAAAABFAAAAAAEFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAACFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAABFAAAAAACFAAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAADFAAAAAAEFAAAAAABFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAFFAAAAAABFAAAAAADFAAAAAADFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAEFAAAAAACFAAAAAABFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAADFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAEFAAAAAACFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAABFAAAAAADFAAAAAAEFAAAAAACFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAE
+ version: 6
+ -8,-2:
+ ind: -8,-2
+ tiles: FAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAFFAAAAAABFAAAAAABFAAAAAACFAAAAAACFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAAFAAAAAACFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAADFAAAAAACFAAAAAAEFAAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAAFFAAAAAABFAAAAAAABAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAABFAAAAAACFAAAAAADFAAAAAAFFAAAAAAEFAAAAAABFAAAAAADFAAAAAABBAAAAAAHFAAAAAAEFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAAEFAAAAAABBAAAAAAFFAAAAAACFAAAAAAAFAAAAAACFAAAAAADFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAADBAAAAAACEAAAAAAAFAAAAAAFFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAABFAAAAAACFAAAAAAFFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAABBAAAAAAKEAAAAAAEFAAAAAADFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAACFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAEBAAAAAADEAAAAAAMFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAACFAAAAAABFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAABAAAAAAGBAAAAAAHBAAAAAAEEAAAAAADFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEBAAAAAANBAAAAAAHEAAAAAAKEAAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAAEBAAAAAAFBAAAAAAOFAAAAAAFBAAAAAACBAAAAAAFBAAAAAAPEAAAAAAAEAAAAAAMFAAAAAAEFAAAAAACFAAAAAADFAAAAAABFAAAAAADFAAAAAAFFAAAAAABFAAAAAABFAAAAAABBAAAAAAGBAAAAAAOBAAAAAAHBAAAAAAGEAAAAAAMEAAAAAAMEAAAAAAGFAAAAAAAFAAAAAAEFAAAAAACFAAAAAABFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAABBAAAAAAEBAAAAAAIEAAAAAADEAAAAAAAEAAAAAAMEAAAAAAIEAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAABAAAAAAPBAAAAAAOEAAAAAAHEAAAAAACEAAAAAADEAAAAAALEAAAAAABFAAAAAADFAAAAAABFAAAAAABFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAEFAAAAAACFAAAAAADBAAAAAAIEAAAAAABBAAAAAAOEAAAAAAIEAAAAAAEEAAAAAAA
+ version: 6
+ -8,-1:
+ ind: -8,-1
+ tiles: FAAAAAADFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAAEFAAAAAACFAAAAAADFAAAAAADFAAAAAABBAAAAAAOEAAAAAAGEAAAAAACEAAAAAANFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAADFAAAAAABBAAAAAAEBAAAAAAAEAAAAAAMEAAAAAAAEAAAAAAFFAAAAAADFAAAAAACFAAAAAAAFAAAAAACFAAAAAADFAAAAAADFAAAAAAAFAAAAAACBAAAAAACBAAAAAADBAAAAAALBAAAAAAGBAAAAAAIEAAAAAAFEAAAAAAMEAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAEBAAAAAAAEAAAAAAIEAAAAAAGEAAAAAAMBAAAAAANEAAAAAAFEAAAAAAJEAAAAAAKEAAAAAAJFAAAAAAEFAAAAAAEFAAAAAACFAAAAAABFAAAAAAFFAAAAAAFBAAAAAAOBAAAAAAIBAAAAAAHEAAAAAAEEAAAAAAAEAAAAAALEAAAAAAAEAAAAAAKEAAAAAAEEAAAAAAKFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFBAAAAAAABAAAAAAEEAAAAAABEAAAAAABEAAAAAAHEAAAAAAMEAAAAAAEEAAAAAAEFAAAAAAFFAAAAAACDQAAAAABFAAAAAAEFAAAAAADFAAAAAABFAAAAAAAFAAAAAADFAAAAAACBAAAAAABBAAAAAAMBAAAAAADEAAAAAAHEAAAAAAJEAAAAAAJEAAAAAAGFAAAAAABFAAAAAAADQAAAAADFAAAAAADFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAABAAAAAADBAAAAAAAEAAAAAAMEAAAAAAJEAAAAAACEAAAAAAEFAAAAAAFFAAAAAAADQAAAAABDQAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFBAAAAAAOBAAAAAAHBAAAAAACEAAAAAAHEAAAAAAFEAAAAAAEFAAAAAAAFAAAAAABFAAAAAADDQAAAAAFDQAAAAACFAAAAAAEFAAAAAACFAAAAAABFAAAAAACFAAAAAABBAAAAAAGBAAAAAALBAAAAAANBAAAAAAFEAAAAAAIEAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFDQAAAAACDQAAAAACFAAAAAAFFAAAAAAAFAAAAAACFAAAAAABFAAAAAAADQAAAAABBAAAAAADBAAAAAAPBAAAAAAIEAAAAAAJEAAAAAAHFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAADQAAAAABDQAAAAADFAAAAAACFAAAAAABFAAAAAAEFAAAAAABDQAAAAAAFAAAAAAEBAAAAAAFBAAAAAAIBAAAAAALEAAAAAALFAAAAAAAFAAAAAAAFAAAAAAEDQAAAAAEDQAAAAAEDQAAAAABFAAAAAAFFAAAAAAAFAAAAAAFDQAAAAAFDQAAAAAFFAAAAAABBAAAAAAGBAAAAAAHEAAAAAANEAAAAAAIFAAAAAACFAAAAAADFAAAAAACDQAAAAAEDQAAAAABDQAAAAAFDwAAAAAFFAAAAAAAFAAAAAAADQAAAAAFDQAAAAAABAAAAAALBAAAAAAEBAAAAAAIEAAAAAAKEAAAAAAGDQAAAAACDQAAAAAFDQAAAAAEDQAAAAAADQAAAAACDwAAAAADDwAAAAADDQAAAAABDQAAAAABDQAAAAABDQAAAAAEBAAAAAADBAAAAAABEAAAAAAHEAAAAAAHEAAAAAAMDwAAAAADDQAAAAAFDQAAAAACDQAAAAAADQAAAAADDwAAAAAEDwAAAAAADQAAAAAADQAAAAADDQAAAAAEFAAAAAAFBAAAAAAGBAAAAAADEAAAAAACEAAAAAAGEAAAAAAJ
+ version: 6
+ -8,0:
+ ind: -8,0
+ tiles: DwAAAAADDwAAAAAADQAAAAABDwAAAAADDwAAAAADDwAAAAABDQAAAAAFDwAAAAADDQAAAAAFFAAAAAACFAAAAAAEFAAAAAABFAAAAAAABAAAAAALEAAAAAAIEAAAAAAADQAAAAABDQAAAAABDQAAAAABDwAAAAAFDwAAAAAADwAAAAAADQAAAAAEDwAAAAAADwAAAAADDQAAAAAAFAAAAAAAFAAAAAABBAAAAAAIBAAAAAACEAAAAAANEAAAAAAMDQAAAAABDQAAAAABDQAAAAABDQAAAAAADwAAAAAEDwAAAAAADQAAAAAADwAAAAACDwAAAAACDQAAAAABFAAAAAABBAAAAAAKBAAAAAAABAAAAAAMBAAAAAAKFAAAAAADFAAAAAAFDwAAAAAFDwAAAAAADQAAAAACDwAAAAADDwAAAAABDQAAAAACDQAAAAAFDwAAAAAFDQAAAAAEFAAAAAAEBAAAAAAPFAAAAAAFFAAAAAABBAAAAAAHFAAAAAAEDwAAAAADDwAAAAACDwAAAAACDwAAAAAFDQAAAAAFDwAAAAACDwAAAAABDQAAAAADDQAAAAACDwAAAAAEFAAAAAADDQAAAAADDQAAAAAFDQAAAAADFAAAAAACDQAAAAABDwAAAAAADwAAAAAADwAAAAAFDwAAAAABDQAAAAACDwAAAAAEDwAAAAABDwAAAAADDQAAAAAADQAAAAADDwAAAAADDwAAAAAFDwAAAAACDQAAAAABDQAAAAAEDQAAAAAFDwAAAAACDwAAAAACDwAAAAAADwAAAAABDQAAAAAFDQAAAAABDQAAAAADDwAAAAAFDwAAAAAFDQAAAAACDwAAAAADDwAAAAAFDwAAAAADDwAAAAACDQAAAAAADQAAAAAEDwAAAAACDQAAAAADDwAAAAAADQAAAAAADQAAAAABDQAAAAAFDQAAAAAEDwAAAAADDQAAAAAFDQAAAAADDwAAAAAFDwAAAAAADwAAAAADDQAAAAAEDQAAAAAFBAAAAAAMDwAAAAAEDQAAAAAADQAAAAAEDQAAAAABDwAAAAAEDwAAAAAEDQAAAAAFDQAAAAAFDQAAAAAFDQAAAAAADwAAAAAADwAAAAACDwAAAAAADQAAAAAAFAAAAAABBAAAAAAHDwAAAAAEDQAAAAAADwAAAAAADQAAAAAEDwAAAAAFDwAAAAABDQAAAAAADwAAAAAFDQAAAAAEDQAAAAAFDwAAAAAADwAAAAAFDQAAAAADDQAAAAAABAAAAAAIFAAAAAAADwAAAAABDQAAAAAFDwAAAAAADQAAAAAFDQAAAAAEDwAAAAAADQAAAAACDwAAAAACDQAAAAABDQAAAAAFDwAAAAAFDwAAAAAADQAAAAAFFAAAAAADBAAAAAABFAAAAAABDwAAAAAADQAAAAABDwAAAAADDQAAAAAFDQAAAAACDQAAAAAADQAAAAACDwAAAAAEDQAAAAADDwAAAAAEDwAAAAADDQAAAAADDQAAAAACFAAAAAAFBAAAAAAKBAAAAAACDwAAAAABDQAAAAABDwAAAAABDwAAAAAEDQAAAAADDQAAAAADDwAAAAAEDwAAAAACDwAAAAAEDQAAAAADDwAAAAABFAAAAAAFDQAAAAAFFAAAAAACFAAAAAABFAAAAAADDwAAAAAFDQAAAAADDwAAAAABDQAAAAAEDQAAAAAFDwAAAAABDwAAAAACDwAAAAAFDQAAAAABDQAAAAABDQAAAAAAFAAAAAAEDQAAAAADDQAAAAACDQAAAAABFAAAAAAFDQAAAAABDwAAAAABDQAAAAAEDQAAAAAADwAAAAABDwAAAAACDwAAAAAADwAAAAAADwAAAAACDQAAAAACDQAAAAACDQAAAAAFDQAAAAAEDQAAAAACDQAAAAACDQAAAAABDQAAAAAADwAAAAAFDQAAAAAADwAAAAACDwAAAAAEDwAAAAAFDwAAAAADDQAAAAADDQAAAAAAFAAAAAAFBAAAAAAPFAAAAAAFFAAAAAAADQAAAAAEDQAAAAAEDQAAAAAA
+ version: 6
+ -8,1:
+ ind: -8,1
+ tiles: DwAAAAAEDQAAAAAEDQAAAAACDwAAAAAADwAAAAACDwAAAAAEDwAAAAABDwAAAAABDQAAAAABFAAAAAAFBAAAAAAGBAAAAAAJFAAAAAAAFAAAAAAFDQAAAAAEDQAAAAABDwAAAAABDwAAAAAADQAAAAABDwAAAAAFDwAAAAAFDwAAAAADDwAAAAADDwAAAAAADQAAAAABDQAAAAADFAAAAAADBAAAAAAMBAAAAAALBAAAAAANFAAAAAAEFAAAAAAADwAAAAAADwAAAAADDQAAAAABDQAAAAAADwAAAAAADwAAAAAFDwAAAAADDQAAAAADDwAAAAAEDQAAAAADFAAAAAAFFAAAAAAFBAAAAAABBAAAAAACBAAAAAAPBAAAAAAODwAAAAAADwAAAAADDwAAAAAFDQAAAAAEDQAAAAABDwAAAAAADwAAAAAEDwAAAAACDwAAAAADFAAAAAACDQAAAAAEFAAAAAABBAAAAAAOBAAAAAAPBAAAAAADBAAAAAANDwAAAAABDQAAAAADDQAAAAACDwAAAAAADQAAAAADDQAAAAABDwAAAAAEDwAAAAABDQAAAAAEDwAAAAAADQAAAAACFAAAAAAEFAAAAAAFBAAAAAAPBAAAAAABBAAAAAAHDwAAAAAEDQAAAAAADQAAAAADDQAAAAABDQAAAAABDQAAAAADDQAAAAADDwAAAAAFDwAAAAAADwAAAAABDQAAAAAEFAAAAAAFFAAAAAAABAAAAAAEBAAAAAALEAAAAAAKDwAAAAABDwAAAAAADQAAAAACDQAAAAAFDwAAAAAFDwAAAAADDQAAAAAADwAAAAAFDwAAAAACDwAAAAACDwAAAAADDQAAAAAEFAAAAAAFFAAAAAABBAAAAAALEAAAAAAADwAAAAAADwAAAAABDwAAAAABDQAAAAAEDQAAAAADDwAAAAABDwAAAAAFDwAAAAADDwAAAAADDQAAAAAFDQAAAAABDQAAAAACDQAAAAACFAAAAAACBAAAAAAOBAAAAAAMDwAAAAAEDQAAAAAFDQAAAAAFDQAAAAACDQAAAAAADQAAAAAEDwAAAAACDwAAAAAADwAAAAAADQAAAAAFDQAAAAAADQAAAAACDQAAAAABFAAAAAADBAAAAAABBAAAAAAMDwAAAAAADwAAAAACDwAAAAADDwAAAAAADQAAAAABDQAAAAAEDwAAAAABDwAAAAACDwAAAAADDQAAAAAFDQAAAAADFAAAAAADFAAAAAAEFAAAAAAEBAAAAAAHEAAAAAADDQAAAAADDwAAAAAFDQAAAAAEDQAAAAADDQAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAAEDQAAAAAADQAAAAACFAAAAAAAFAAAAAAABAAAAAAIBAAAAAAAEAAAAAAADQAAAAAADQAAAAABDQAAAAACDQAAAAABDQAAAAAFDQAAAAABDQAAAAAEDQAAAAAEDQAAAAAFDQAAAAACFAAAAAABFAAAAAADBAAAAAAGBAAAAAAEEAAAAAANEAAAAAACDQAAAAADDQAAAAADBAAAAAADBAAAAAAHBAAAAAAKFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAADBAAAAAAPBAAAAAAHBAAAAAAJEAAAAAAKEAAAAAAKFAAAAAADDQAAAAAFDQAAAAAFBAAAAAAOBAAAAAAPBAAAAAANFAAAAAABFAAAAAAFFAAAAAAABAAAAAANBAAAAAAEBAAAAAAPEAAAAAACEAAAAAALEAAAAAAIEAAAAAAKFAAAAAADFAAAAAACFAAAAAAEBAAAAAAPBAAAAAAGBAAAAAAPBAAAAAAJBAAAAAAJBAAAAAAMBAAAAAACEAAAAAAHEAAAAAAHEAAAAAAEEAAAAAAHEAAAAAAJEAAAAAAHFAAAAAADFAAAAAADFAAAAAACFAAAAAACBAAAAAAPEAAAAAABEAAAAAADEAAAAAAKEAAAAAAEEAAAAAAGEAAAAAANEAAAAAAIEAAAAAAGEAAAAAAIEAAAAAAHEAAAAAAD
+ version: 6
+ -9,-3:
+ ind: -9,-3
+ tiles: DgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAADDgAAAAABDgAAAAADDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAEDgAAAAAADgAAAAADDgAAAAADDgAAAAAEDgAAAAACDgAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAAEDgAAAAABDgAAAAAADgAAAAABDgAAAAACDgAAAAABDgAAAAADDgAAAAAADgAAAAADDgAAAAAEDgAAAAACDgAAAAADDgAAAAADDgAAAAABDgAAAAABDgAAAAAEDgAAAAADDgAAAAAEDgAAAAABDgAAAAADDgAAAAADDgAAAAACDgAAAAACFAAAAAAFDgAAAAABDgAAAAADDgAAAAAADgAAAAAEDgAAAAABFAAAAAABFAAAAAABFAAAAAACDgAAAAACDgAAAAAADgAAAAADDgAAAAAADgAAAAAEDgAAAAADDgAAAAADFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAACFAAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAAEFAAAAAACFAAAAAADFAAAAAACFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAACFAAAAAADFAAAAAAEFAAAAAAAFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAACFAAAAAABFAAAAAAAFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAADFAAAAAABFAAAAAAAFAAAAAAFFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAAFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAABFAAAAAADFAAAAAABFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAABFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAABFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAEFAAAAAACFAAAAAAFFAAAAAABFAAAAAAEFAAAAAACFAAAAAAFFAAAAAABFAAAAAAEFAAAAAABFAAAAAABFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAFFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAAF
+ version: 6
+ -10,-3:
+ ind: -10,-3
+ tiles: FAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAEFAAAAAACFAAAAAABDgAAAAAEDgAAAAACDgAAAAACDgAAAAAEFAAAAAABFAAAAAAFFAAAAAACFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAABFAAAAAADFAAAAAAEFAAAAAAADgAAAAABDgAAAAACDgAAAAAAFAAAAAAEFAAAAAABFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAADFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAEDgAAAAABDgAAAAAEFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAACFAAAAAACFAAAAAABFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAAEDgAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAADFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAFFAAAAAABFAAAAAAFFAAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAFFAAAAAABFAAAAAACFAAAAAACFAAAAAACFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAAAFAAAAAAFFAAAAAADFAAAAAACFAAAAAADFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAADFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAABFAAAAAACFAAAAAADFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAADFAAAAAAEFAAAAAAFFAAAAAABFAAAAAADFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAAFAAAAAADFAAAAAAEFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAACFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAAEFAAAAAACFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAFFAAAAAABFAAAAAABFAAAAAABFAAAAAAFFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAADFAAAAAADFAAAAAACFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAACFAAAAAACFAAAAAAA
+ version: 6
+ -10,-4:
+ ind: -10,-4
+ tiles: AAAAAAAAAAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAABDgAAAAAEDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAEDgAAAAACDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAACDgAAAAAADgAAAAACDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAADgAAAAADDgAAAAACDgAAAAADDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAACDgAAAAAEDgAAAAAADgAAAAADDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEDgAAAAADDgAAAAADDgAAAAAEDgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAAFAAAAAADDgAAAAAADgAAAAAADgAAAAAEDgAAAAAEDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAFAAAAAAEFAAAAAAAFAAAAAACDgAAAAABDgAAAAADDgAAAAAEDgAAAAAEDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAABFAAAAAACDgAAAAABDgAAAAABDgAAAAAADgAAAAADDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAADFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAAADgAAAAAEDgAAAAACDgAAAAAADgAAAAACDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAAEFAAAAAABFAAAAAAEFAAAAAADDgAAAAAADgAAAAACDgAAAAADDgAAAAACDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAAADgAAAAABDgAAAAADAAAAAAAAFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACDgAAAAAEDgAAAAABDgAAAAACDgAAAAAADgAAAAADDgAAAAAEDgAAAAADFAAAAAABFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAEFAAAAAADFAAAAAAFFAAAAAACFAAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAAEDgAAAAAC
+ version: 6
+ -11,-4:
+ ind: -11,-4
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAABDgAAAAADDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAABDgAAAAAADgAAAAACDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAADgAAAAAEDgAAAAABDgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAABDgAAAAABDgAAAAAADgAAAAAEFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAACDgAAAAAADgAAAAADDgAAAAAAFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAEDgAAAAACDgAAAAACFAAAAAAEFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAAAFAAAAAACFAAAAAAE
+ version: 6
+ -11,-3:
+ ind: -11,-3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAADDgAAAAABDgAAAAACFAAAAAAEFAAAAAABFAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAEDgAAAAADDgAAAAACDgAAAAAEFAAAAAAAFAAAAAAEFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAEDgAAAAADDgAAAAAEFAAAAAADFAAAAAAAFAAAAAADFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAADgAAAAAEDgAAAAABFAAAAAADFAAAAAAFFAAAAAABFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAEDgAAAAABFAAAAAAFFAAAAAACFAAAAAAFFAAAAAABFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAADFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAAEFAAAAAACFAAAAAAFFAAAAAABFAAAAAABFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAEDgAAAAAAFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAADDgAAAAADDgAAAAADFAAAAAACFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAAAFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAACFAAAAAABFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAEDgAAAAABDgAAAAABFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAACFAAAAAACFAAAAAAEFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAADgAAAAADDgAAAAADFAAAAAAFFAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEDgAAAAAADgAAAAAEFAAAAAACFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAADgAAAAACDgAAAAACFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEDgAAAAABDgAAAAAAFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAB
+ version: 6
+ -11,-2:
+ ind: -11,-2
+ tiles: AAAAAAAAAAAAAAAADgAAAAADDgAAAAABDgAAAAAEDgAAAAADDgAAAAAAFAAAAAABFAAAAAADFAAAAAACFAAAAAADFAAAAAAEFAAAAAACFAAAAAAAFAAAAAACFAAAAAAFAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAAADgAAAAADFAAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAACFAAAAAADFAAAAAADFAAAAAADAAAAAAAAAAAAAAAADgAAAAAEDgAAAAACDgAAAAAEDgAAAAAEFAAAAAACFAAAAAAEFAAAAAADFAAAAAAFFAAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAABDgAAAAABDgAAAAABFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAABFAAAAAAAFAAAAAACFAAAAAAEFAAAAAADFAAAAAADAAAAAAAAAAAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAADFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAFAAAAAAAAAAAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAEAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEDgAAAAAADgAAAAAAFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAEFAAAAAADFAAAAAACFAAAAAADFAAAAAACAAAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAAADgAAAAACFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFFAAAAAACAAAAAAAADgAAAAACDgAAAAADDgAAAAAEDgAAAAABDgAAAAABFAAAAAADFAAAAAACFAAAAAAAFAAAAAABFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFAAAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAAEFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAFAAAAAAAADgAAAAABDgAAAAAEDgAAAAACDgAAAAACFAAAAAADFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAFAAAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAAAFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAADAAAAAAAADgAAAAADDgAAAAAEDgAAAAADDgAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAEDgAAAAABDgAAAAADDgAAAAADDgAAAAAEDgAAAAADFAAAAAADFAAAAAABFAAAAAADFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAEFAAAAAACFAAAAAAFDgAAAAABDgAAAAABDgAAAAAEDgAAAAABDgAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABDgAAAAADDgAAAAAEDgAAAAAEDgAAAAAEDgAAAAAAFAAAAAACFAAAAAAEFAAAAAADFAAAAAAFFAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAACFAAAAAADFAAAAAAD
+ version: 6
+ -11,-1:
+ ind: -11,-1
+ tiles: DgAAAAAEDgAAAAABDgAAAAACDgAAAAADDgAAAAADFAAAAAABFAAAAAAFFAAAAAACFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAFDgAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAAFAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAAAFAAAAAAFDgAAAAACDgAAAAAEDgAAAAACDgAAAAACDgAAAAABFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAEFAAAAAABFAAAAAADDgAAAAACDgAAAAAADgAAAAADDgAAAAAADgAAAAADFAAAAAADFAAAAAAFFAAAAAABFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAADFAAAAAACFAAAAAAEFAAAAAACDgAAAAAADgAAAAAADgAAAAADDgAAAAADFAAAAAADFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAEDgAAAAABDgAAAAAEDgAAAAAEDgAAAAAAFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAACDgAAAAADDgAAAAABDgAAAAAEDgAAAAACFAAAAAAFFAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAFDgAAAAABDgAAAAACDgAAAAADDgAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAFDgAAAAAEDgAAAAABDgAAAAAADgAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAABFAAAAAACFAAAAAACFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAEDgAAAAAADgAAAAAEDgAAAAADDgAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAABDgAAAAADDgAAAAAEDgAAAAAEDgAAAAAEFAAAAAACFAAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAEFAAAAAABFAAAAAADFAAAAAABDgAAAAADDgAAAAACDgAAAAACDgAAAAADFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAADFAAAAAAFDgAAAAADDgAAAAAEDgAAAAACDgAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEDgAAAAAADgAAAAACDgAAAAADDgAAAAAAFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAABDgAAAAAADgAAAAABDgAAAAACDgAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABDgAAAAACDgAAAAAEDgAAAAADDgAAAAACFAAAAAACFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAEFAAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAAAFAAAAAABFAAAAAAD
+ version: 6
+ -11,0:
+ ind: -11,0
+ tiles: DgAAAAACDgAAAAADDgAAAAABDgAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAADFAAAAAACFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAEDgAAAAAADgAAAAAADgAAAAAEDgAAAAAAFAAAAAABFAAAAAAEFAAAAAABFAAAAAABFAAAAAACFAAAAAACFAAAAAADFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAFDgAAAAACDgAAAAACDgAAAAAADgAAAAABFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAAFAAAAAADFAAAAAADDgAAAAACDgAAAAABDgAAAAADDgAAAAAAFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAABFAAAAAACFAAAAAACDgAAAAAEDgAAAAAEDgAAAAAEFAAAAAAAFAAAAAAFFAAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABDgAAAAADDgAAAAADDgAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAABFAAAAAADFAAAAAAFFAAAAAADDgAAAAACDgAAAAAEDgAAAAABFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAFFAAAAAACFAAAAAADFAAAAAABFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAFDgAAAAAEDgAAAAACDgAAAAAAFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAEDgAAAAAADgAAAAAAFAAAAAADFAAAAAAFFAAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAACFAAAAAADFAAAAAAFFAAAAAADFAAAAAADFAAAAAACDgAAAAADDgAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAABDgAAAAABDgAAAAAEFAAAAAABFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABDgAAAAACFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAEFAAAAAADDgAAAAADFAAAAAAEFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAADFAAAAAABDgAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAADFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAAEFAAAAAADFAAAAAADFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAABFAAAAAADFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAADFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAABFAAAAAAF
+ version: 6
+ -11,1:
+ ind: -11,1
+ tiles: FAAAAAADFAAAAAAEFAAAAAAFFAAAAAACFAAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAEFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAFFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAAAFAAAAAACFAAAAAACFAAAAAAAFAAAAAAFFAAAAAADFAAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAAEFAAAAAABFAAAAAADFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADFAAAAAACFAAAAAAFFAAAAAABFAAAAAACFAAAAAACFAAAAAABFAAAAAACFAAAAAAEFAAAAAACFAAAAAACFAAAAAADFAAAAAAEFAAAAAADFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAFFAAAAAADFAAAAAABFAAAAAAEFAAAAAACFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAACFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAFFAAAAAADFAAAAAACFAAAAAADFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFDgAAAAACFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAFFAAAAAACFAAAAAABFAAAAAABFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAADgAAAAACFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAAEFAAAAAABFAAAAAABFAAAAAABDgAAAAAADgAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAABFAAAAAABDgAAAAACDgAAAAAAFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAFFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAEDgAAAAADDgAAAAAEDgAAAAAEFAAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAEDgAAAAADDgAAAAACDgAAAAAEFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAACFAAAAAAEDgAAAAAEDgAAAAACDgAAAAABDgAAAAACDgAAAAABFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAADFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAAAAAAAAAADgAAAAADDgAAAAABDgAAAAAEDgAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAACAAAAAAAAAAAAAAAADgAAAAACDgAAAAADDgAAAAABDgAAAAAAFAAAAAAEFAAAAAAEFAAAAAACFAAAAAADFAAAAAAEFAAAAAABFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAA
+ version: 6
+ -12,1:
+ ind: -12,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAABDgAAAAABDgAAAAAEDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAAEDgAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAAADgAAAAAEFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAEDgAAAAAEFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAADgAAAAABFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAEDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAEDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -9,-2:
+ ind: -9,-2
+ tiles: FAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAACFAAAAAACFAAAAAAEFAAAAAABFAAAAAABFAAAAAACFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAADFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAABFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAABFAAAAAACFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAFFAAAAAACFAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAADFAAAAAAAFAAAAAABFAAAAAABFAAAAAAFFAAAAAAEFAAAAAACFAAAAAABFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAADFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAABFAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAAEFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAFFAAAAAABFAAAAAABFAAAAAACFAAAAAABFAAAAAACFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAACFAAAAAAEFAAAAAABFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAEFAAAAAADFAAAAAAFFAAAAAABFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAEFAAAAAADFAAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAACFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAAFFAAAAAABFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAEFAAAAAACFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAABFAAAAAAE
+ version: 6
+ -9,-1:
+ ind: -9,-1
+ tiles: FAAAAAABFAAAAAABFAAAAAADFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAABFAAAAAACFAAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAACFAAAAAABFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAABFAAAAAADFAAAAAAFFAAAAAAFFAAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAADFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAEFAAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAACFAAAAAADFAAAAAAEFAAAAAADFAAAAAAAFAAAAAABFAAAAAACFAAAAAAEFAAAAAACFAAAAAADFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAFFAAAAAABFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAADFAAAAAABFAAAAAACFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAACFAAAAAABFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAFFAAAAAACFAAAAAABFAAAAAACFAAAAAADFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAAFAAAAAADFAAAAAABFAAAAAAAFAAAAAAEFAAAAAABFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAEFAAAAAACFAAAAAACFAAAAAABFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAAEFAAAAAABFAAAAAACDQAAAAABDQAAAAACFAAAAAACFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAABFAAAAAAEFAAAAAABFAAAAAACFAAAAAAADQAAAAADDQAAAAAFDQAAAAAEDQAAAAADFAAAAAAFFAAAAAACFAAAAAAEFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFDQAAAAAAFAAAAAAEDQAAAAADDQAAAAACFAAAAAABFAAAAAADFAAAAAAFFAAAAAACFAAAAAAEFAAAAAACFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAADDQAAAAACDQAAAAAADQAAAAAADwAAAAAF
+ version: 6
+ -9,0:
+ ind: -9,0
+ tiles: FAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAACDQAAAAAFDQAAAAAFDQAAAAAFDQAAAAABFAAAAAADFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAEFAAAAAABDQAAAAAFDQAAAAABFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAEDQAAAAAEDwAAAAAADQAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACDQAAAAACDQAAAAABDQAAAAAEFAAAAAADFAAAAAABFAAAAAADFAAAAAACDQAAAAADDwAAAAADDwAAAAAFFAAAAAACFAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFDQAAAAABDQAAAAABDQAAAAADDQAAAAAEDQAAAAAEDQAAAAAADQAAAAABDwAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAFFAAAAAADFAAAAAADFAAAAAAFDQAAAAAFDQAAAAAFDQAAAAABDQAAAAABDwAAAAAEDwAAAAACDwAAAAABFAAAAAADFAAAAAAFFAAAAAABFAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAADFAAAAAADDQAAAAAADQAAAAACDwAAAAABDwAAAAAFDQAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAAEFAAAAAADDQAAAAABDQAAAAADDwAAAAAADQAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAABFAAAAAABFAAAAAABFAAAAAADFAAAAAACFAAAAAADFAAAAAACDQAAAAADDQAAAAAADQAAAAAFDwAAAAAFDwAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAACFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAAAFAAAAAAEDQAAAAAEDQAAAAAADwAAAAAFDwAAAAADFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAABDQAAAAAFFAAAAAAADwAAAAAFDwAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAADDQAAAAABDQAAAAAEFAAAAAAEDwAAAAAEFAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAADDQAAAAADDQAAAAAFFAAAAAAEDwAAAAAEFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAEDQAAAAAADQAAAAABDQAAAAAFDQAAAAABDQAAAAAFDQAAAAAFFAAAAAADDwAAAAAFFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAACFAAAAAACFAAAAAAEFAAAAAACFAAAAAAFDQAAAAAEDQAAAAACFAAAAAAEFAAAAAAAFAAAAAABDQAAAAADDQAAAAADDwAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAADDQAAAAAFFAAAAAACDQAAAAAFDQAAAAAEFAAAAAADDwAAAAACDwAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACDQAAAAADDQAAAAAEFAAAAAAFFAAAAAADDwAAAAADDwAAAAAE
+ version: 6
+ -9,1:
+ ind: -9,1
+ tiles: FAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAAEFAAAAAAFDQAAAAABDQAAAAADDQAAAAABDwAAAAAFDwAAAAAEDQAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAAEFAAAAAABDQAAAAADDQAAAAAEDQAAAAAFDwAAAAAFDwAAAAAADQAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAABDQAAAAAAFAAAAAACFAAAAAABDQAAAAACDwAAAAAEDwAAAAAFDQAAAAADFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAAAFAAAAAACDQAAAAABFAAAAAAFFAAAAAAADQAAAAACDwAAAAACDwAAAAACDQAAAAACFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAABFAAAAAAFFAAAAAAFDQAAAAADFAAAAAAEDQAAAAACDQAAAAABDQAAAAAADwAAAAAFDwAAAAAAFAAAAAABFAAAAAACFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAEDQAAAAAFFAAAAAAADQAAAAADDQAAAAADDQAAAAADDwAAAAAEDwAAAAAAFAAAAAAAFAAAAAABFAAAAAADFAAAAAAFFAAAAAACFAAAAAADFAAAAAAEFAAAAAAFFAAAAAABDQAAAAAFFAAAAAABDQAAAAABDQAAAAADDQAAAAABDwAAAAADDwAAAAACFAAAAAAEFAAAAAABFAAAAAAFFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAADFAAAAAAEDQAAAAAFFAAAAAABDQAAAAAADQAAAAAFDwAAAAAFDwAAAAACFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAADDQAAAAADDQAAAAAADQAAAAAEDQAAAAAFDwAAAAACFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAEDQAAAAAADQAAAAAFDQAAAAAFFAAAAAADFAAAAAAEFAAAAAADFAAAAAACFAAAAAAFFAAAAAABFAAAAAACFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAABFAAAAAABDQAAAAAADQAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAABFAAAAAADFAAAAAAFFAAAAAACFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAFDQAAAAACDQAAAAAEFAAAAAADFAAAAAACFAAAAAABFAAAAAAFFAAAAAAEFAAAAAADFAAAAAACFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAABFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAEFAAAAAABFAAAAAACFAAAAAADFAAAAAABFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAAFFAAAAAADFAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAACFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAADFAAAAAABFAAAAAACFAAAAAAB
+ version: 6
+ -10,-2:
+ ind: -10,-2
+ tiles: FAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAACFAAAAAAFFAAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAABFAAAAAAFFAAAAAAEFAAAAAADFAAAAAACFAAAAAAFFAAAAAABFAAAAAAEFAAAAAADFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAAEFAAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAACFAAAAAABFAAAAAAFFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAAEFAAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAACFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAADFAAAAAABFAAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAAEFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAAFFAAAAAAEFAAAAAACFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAACFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAACFAAAAAADFAAAAAAEFAAAAAADFAAAAAABFAAAAAADFAAAAAADFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAADFAAAAAADFAAAAAACFAAAAAABFAAAAAACFAAAAAAEFAAAAAADFAAAAAABFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAAAFAAAAAADFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEFAAAAAACFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAEFAAAAAABFAAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAADFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAACFAAAAAACFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAA
+ version: 6
+ -10,-1:
+ ind: -10,-1
+ tiles: FAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAAFFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAEFAAAAAABFAAAAAABFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAAFFAAAAAABFAAAAAAEFAAAAAADFAAAAAABFAAAAAAFFAAAAAABFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAEFAAAAAACFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAABFAAAAAACFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAFFAAAAAADFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABFAAAAAAFFAAAAAACFAAAAAACFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAADFAAAAAADFAAAAAACFAAAAAABFAAAAAADFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAAEFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAACFAAAAAADFAAAAAABFAAAAAADFAAAAAACFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAACFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAACFAAAAAAFFAAAAAABFAAAAAAEFAAAAAADFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAABFAAAAAADFAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAADFAAAAAAFFAAAAAAFFAAAAAACFAAAAAABFAAAAAADFAAAAAACFAAAAAADFAAAAAACFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAACFAAAAAACFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAADFAAAAAAAFAAAAAAA
+ version: 6
+ -10,0:
+ ind: -10,0
+ tiles: FAAAAAAEFAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAEFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAACFAAAAAACFAAAAAADFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAADFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAAFFAAAAAACFAAAAAADFAAAAAABFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAACFAAAAAAFFAAAAAABFAAAAAAFFAAAAAACFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAADFAAAAAABFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAEFAAAAAACFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAABFAAAAAABFAAAAAACFAAAAAAFFAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABFAAAAAABFAAAAAADFAAAAAADFAAAAAAEFAAAAAAFFAAAAAACFAAAAAACFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAACFAAAAAADFAAAAAAAFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAADFAAAAAACFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAFFAAAAAACFAAAAAADFAAAAAABFAAAAAADFAAAAAAEFAAAAAAEFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAADFAAAAAADFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAAD
+ version: 6
+ -10,1:
+ ind: -10,1
+ tiles: FAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABFAAAAAABFAAAAAAEFAAAAAAFFAAAAAADFAAAAAABFAAAAAADFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAABFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAFFAAAAAADFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAAEFAAAAAABFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAACFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABFAAAAAABFAAAAAACFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAABFAAAAAAFFAAAAAACFAAAAAAEFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAEFAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAABFAAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADFAAAAAABFAAAAAAFFAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAAFFAAAAAABFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAACFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFFAAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAAEFAAAAAABFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAAFFAAAAAABFAAAAAACFAAAAAAFFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAACFAAAAAAEFAAAAAACFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAAF
+ version: 6
+ -11,2:
+ ind: -11,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAAAFAAAAAAEFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACDgAAAAAEDgAAAAACFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAADDgAAAAABDgAAAAADFAAAAAABFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAADgAAAAAEFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAADFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAADFAAAAAADFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAABDgAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAAAFAAAAAACFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAEDgAAAAADFAAAAAAEFAAAAAACFAAAAAAEFAAAAAACFAAAAAAFFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAADFAAAAAADFAAAAAADFAAAAAAFFAAAAAABFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAEDgAAAAAAFAAAAAAAFAAAAAAFFAAAAAACFAAAAAADFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAAEDgAAAAAEFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAAADgAAAAAAFAAAAAAEFAAAAAAEFAAAAAADFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAEDgAAAAADDgAAAAACDgAAAAADDgAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAACDgAAAAABDgAAAAACFAAAAAAFFAAAAAADFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAABDgAAAAABFAAAAAAEFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAABDgAAAAAADgAAAAADFAAAAAAD
+ version: 6
+ -11,3:
+ ind: -11,3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAACDgAAAAACFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACDgAAAAAEDgAAAAABDgAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAEDgAAAAADDgAAAAACFAAAAAADFAAAAAACFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAABDgAAAAABDgAAAAABFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAAADgAAAAAEFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAAEDgAAAAAAFAAAAAAEFAAAAAADFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAABDgAAAAAEDgAAAAAADgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAEDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -10,2:
+ ind: -10,2
+ tiles: FAAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAFFAAAAAABFAAAAAABFAAAAAADFAAAAAADFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAFFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAABFAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAABFAAAAAACFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAADFAAAAAAFFAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAAEFAAAAAACFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAADFAAAAAADFAAAAAADFAAAAAAFFAAAAAABFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAAEFAAAAAADFAAAAAABFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAACFAAAAAADFAAAAAADFAAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAFFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAAFFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAEFAAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAACFAAAAAACFAAAAAAFFAAAAAACBAAAAAADFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAADFAAAAAABBAAAAAAOFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAEFAAAAAABFAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAEBAAAAAALBAAAAAAOFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAFFAAAAAACFAAAAAABFAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAADBAAAAAANFAAAAAACFAAAAAAEFAAAAAACFAAAAAACFAAAAAAEFAAAAAABBAAAAAAFFAAAAAABFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAFFAAAAAADBAAAAAAOBAAAAAAKBAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAB
+ version: 6
+ -10,3:
+ ind: -10,3
+ tiles: FAAAAAADFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAEBAAAAAAPEAAAAAAJBAAAAAAIBAAAAAAOFAAAAAAAFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAACFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADBAAAAAAHBAAAAAAGEAAAAAAHEAAAAAACBAAAAAANBAAAAAABFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAAFBAAAAAANBAAAAAAABAAAAAAJBAAAAAALEAAAAAAJEAAAAAAGEAAAAAALEAAAAAAFBAAAAAAFBAAAAAADBAAAAAAMFAAAAAABFAAAAAACFAAAAAADBAAAAAADBAAAAAAAEAAAAAABEAAAAAANEAAAAAADEAAAAAAFEAAAAAAHEAAAAAAFEAAAAAAHEAAAAAAJEAAAAAADEAAAAAAIBAAAAAACBAAAAAAKFAAAAAABFAAAAAADFAAAAAAEBAAAAAABEAAAAAAEEAAAAAAEEAAAAAABEAAAAAADEAAAAAAHEAAAAAALEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAHBAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAAABAAAAAAGBAAAAAAJEAAAAAAAEAAAAAAKEAAAAAAGEAAAAAAHEAAAAAAIEAAAAAAMBAAAAAAFBAAAAAADFAAAAAAEFAAAAAAEDgAAAAADFAAAAAACFAAAAAAFFAAAAAADBAAAAAACBAAAAAAIBAAAAAAJEAAAAAADEAAAAAACEAAAAAADEAAAAAANBAAAAAAIBAAAAAANFAAAAAAAFAAAAAABFAAAAAAADgAAAAADDgAAAAADDgAAAAADFAAAAAAFFAAAAAADFAAAAAABBAAAAAALBAAAAAAPBAAAAAAABAAAAAAIBAAAAAAKBAAAAAAIFAAAAAACFAAAAAAFFAAAAAAEFAAAAAABDgAAAAABDgAAAAAADgAAAAACDgAAAAADDgAAAAAAFAAAAAAFFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAACFAAAAAABFAAAAAAEAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAAAFAAAAAAAFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAFFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAEDgAAAAACDgAAAAAEFAAAAAABFAAAAAACFAAAAAAAFAAAAAADFAAAAAAAFAAAAAACFAAAAAAFFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAACDgAAAAADFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAADgAAAAABFAAAAAAFFAAAAAABFAAAAAADFAAAAAABFAAAAAAFFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAEFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAACFAAAAAABFAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAABFAAAAAACFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAA
+ version: 6
+ -9,2:
+ ind: -9,2
+ tiles: FAAAAAAFFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAACFAAAAAAEFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAEFAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAEFAAAAAACFAAAAAADFAAAAAABFAAAAAACFAAAAAAEFAAAAAABFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAAFFAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAACFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAABFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAFFAAAAAADFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAABFAAAAAACFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAFFAAAAAABBAAAAAAJBAAAAAANBAAAAAAMBAAAAAAKBAAAAAAHBAAAAAAKBAAAAAACBAAAAAAABAAAAAALFAAAAAABFAAAAAACFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAFBAAAAAAKBAAAAAAPBAAAAAAIEAAAAAAJEAAAAAAAEAAAAAAJEAAAAAAHFAAAAAACFAAAAAACFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABFAAAAAAFBAAAAAAHBAAAAAAOEAAAAAAGEAAAAAACEAAAAAAAEAAAAAACFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAABAAAAAAGBAAAAAAGEAAAAAAFEAAAAAAKFAAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAFFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAACBAAAAAAMBAAAAAAHEAAAAAAKBAAAAAAIFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAEBAAAAAAHEAAAAAAJBAAAAAAHBAAAAAAHFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAABFAAAAAADFAAAAAAEFAAAAAAFBAAAAAALBAAAAAAKFAAAAAABBAAAAAAJBAAAAAAJFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAFBAAAAAAMBAAAAAAMBAAAAAAKFAAAAAAEFAAAAAADBAAAAAAOBAAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAAFFAAAAAADFAAAAAAFBAAAAAACBAAAAAAOEAAAAAAK
+ version: 6
+ -9,3:
+ ind: -9,3
+ tiles: FAAAAAAEFAAAAAACBAAAAAAOBAAAAAACFAAAAAABFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAADBAAAAAABBAAAAAALEAAAAAAJEAAAAAADFAAAAAADFAAAAAABBAAAAAALBAAAAAAIFAAAAAAEFAAAAAACFAAAAAACFAAAAAAAFAAAAAAEFAAAAAACFAAAAAACBAAAAAADBAAAAAAFEAAAAAAKEAAAAAADEAAAAAAIBAAAAAAOFAAAAAACBAAAAAALBAAAAAALFAAAAAABFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFBAAAAAALBAAAAAAGBAAAAAAKBAAAAAAFBAAAAAAGBAAAAAAGBAAAAAAIBAAAAAAJBAAAAAANFAAAAAAFFAAAAAAEFAAAAAACFAAAAAADFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFBAAAAAAPBAAAAAAPBAAAAAAOBAAAAAADBAAAAAAGFAAAAAAFFAAAAAAFBAAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAAFBAAAAAACBAAAAAAIBAAAAAAMBAAAAAAHFAAAAAACFAAAAAAEBAAAAAACFAAAAAAEFAAAAAACFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAAAFAAAAAACFAAAAAACBAAAAAAPBAAAAAAJBAAAAAAPBAAAAAALBAAAAAAGFAAAAAAABAAAAAAAFAAAAAADFAAAAAABFAAAAAABFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAABAAAAAADBAAAAAAOFAAAAAAFBAAAAAAOBAAAAAACBAAAAAABBAAAAAAAFAAAAAADFAAAAAACBAAAAAAJFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAAEBAAAAAADBAAAAAAAFAAAAAAEFAAAAAACFAAAAAAEBAAAAAACBAAAAAAMBAAAAAAABAAAAAAKBAAAAAAMFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAFBAAAAAAJBAAAAAAFFAAAAAABFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAFBAAAAAADBAAAAAAMBAAAAAAFBAAAAAALBAAAAAAMFAAAAAACFAAAAAAFFAAAAAACFAAAAAAAFAAAAAABBAAAAAANFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAEBAAAAAAMBAAAAAAJBAAAAAACBAAAAAAJFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAACBAAAAAAKFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABBAAAAAAGBAAAAAAABAAAAAAABAAAAAACBAAAAAAFBAAAAAAGBAAAAAAGBAAAAAAMFAAAAAABFAAAAAADFAAAAAADFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAFBAAAAAAHBAAAAAABBAAAAAAFBAAAAAAMBAAAAAADBAAAAAAMFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAADBAAAAAAFBAAAAAAGBAAAAAAMFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFBAAAAAAKFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAACBAAAAAANFAAAAAAAFAAAAAADFAAAAAABFAAAAAAFFAAAAAAF
+ version: 6
+ -8,2:
+ ind: -8,2
+ tiles: FAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAEBAAAAAALBAAAAAAFEAAAAAANEAAAAAAIEAAAAAAJEAAAAAAMEAAAAAAHEAAAAAAHEAAAAAAEEAAAAAALEAAAAAAAEAAAAAABFAAAAAAFFAAAAAAAFAAAAAADFAAAAAABBAAAAAAFEAAAAAAJEAAAAAAFEAAAAAAMEAAAAAANEAAAAAAEEAAAAAAJEAAAAAABEAAAAAAEEAAAAAAIEAAAAAADEAAAAAAKFAAAAAAAFAAAAAACFAAAAAAABAAAAAAFBAAAAAALEAAAAAAKEAAAAAACEAAAAAADEAAAAAAMEAAAAAAMEAAAAAAHEAAAAAALEAAAAAAHEAAAAAAJEAAAAAAMEAAAAAAEFAAAAAABFAAAAAABFAAAAAAABAAAAAADBAAAAAAOEAAAAAALEAAAAAANEAAAAAALEAAAAAAGEAAAAAAAEAAAAAAIEAAAAAAGEAAAAAAEEAAAAAAJEAAAAAAAEAAAAAANFAAAAAAAFAAAAAACBAAAAAACBAAAAAAPEAAAAAALEAAAAAAHEAAAAAAKEAAAAAAHEAAAAAAEEAAAAAAKEAAAAAADEAAAAAANBAAAAAAIEAAAAAAKEAAAAAAHEAAAAAABFAAAAAAFFAAAAAACBAAAAAAKBAAAAAAKEAAAAAAIEAAAAAAKEAAAAAALEAAAAAANEAAAAAAAEAAAAAAGBAAAAAALEAAAAAAIEAAAAAAAEAAAAAAAEAAAAAAKEAAAAAADFAAAAAAABAAAAAADBAAAAAAEEAAAAAAKEAAAAAAJEAAAAAAIEAAAAAAEEAAAAAAAEAAAAAAMBAAAAAAEEAAAAAAIEAAAAAAMEAAAAAAHEAAAAAAEEAAAAAAIEAAAAAADEAAAAAALEAAAAAAFEAAAAAAFEAAAAAAAEAAAAAAEEAAAAAAKEAAAAAAMEAAAAAAGEAAAAAAEEAAAAAAFEAAAAAAIEAAAAAACEAAAAAAIEAAAAAAIEAAAAAAHEAAAAAAEEAAAAAAIEAAAAAAJEAAAAAADEAAAAAAHEAAAAAALEAAAAAAFEAAAAAAGEAAAAAAMBAAAAAAPEAAAAAAGEAAAAAACEAAAAAALEAAAAAAIEAAAAAAJEAAAAAAAEAAAAAAMEAAAAAAAEAAAAAAFEAAAAAABEAAAAAAJEAAAAAADEAAAAAAKEAAAAAACBAAAAAAFEAAAAAAJEAAAAAAJEAAAAAAKEAAAAAACEAAAAAANEAAAAAAIEAAAAAABEAAAAAAMEAAAAAAMEAAAAAAIEAAAAAACEAAAAAAAEAAAAAAFEAAAAAAHBAAAAAACBAAAAAALEAAAAAAGEAAAAAALEAAAAAABEAAAAAAIEAAAAAAIBAAAAAAPBAAAAAAPBAAAAAANEAAAAAALEAAAAAAAEAAAAAANEAAAAAADEAAAAAAJBAAAAAAIBAAAAAAOEAAAAAANEAAAAAAIEAAAAAALEAAAAAABEAAAAAADBAAAAAADBAAAAAADFAAAAAAAFAAAAAADEAAAAAAAEAAAAAADEAAAAAAHEAAAAAAIEAAAAAACBAAAAAANEAAAAAALEAAAAAANEAAAAAAAEAAAAAADEAAAAAAHEAAAAAAHBAAAAAAJFAAAAAAFFAAAAAAFDQAAAAAFEAAAAAABEAAAAAACEAAAAAAAEAAAAAADEAAAAAAMBAAAAAADEAAAAAACEAAAAAAIEAAAAAABEAAAAAANEAAAAAABEAAAAAAKBAAAAAALFAAAAAAFDQAAAAAEFAAAAAACEAAAAAACEAAAAAAHEAAAAAAIEAAAAAAIEAAAAAAFBAAAAAAPEAAAAAAHEAAAAAAKEAAAAAADEAAAAAACEAAAAAAGEAAAAAACBAAAAAAOBAAAAAAPFAAAAAAEFAAAAAAAEAAAAAANEAAAAAANEAAAAAAGEAAAAAANEAAAAAANBAAAAAANBAAAAAAKEAAAAAANEAAAAAAIEAAAAAAGEAAAAAAIEAAAAAANEAAAAAAMBAAAAAAFBAAAAAAEFAAAAAAC
+ version: 6
+ -8,3:
+ ind: -8,3
+ tiles: EAAAAAAEEAAAAAANEAAAAAACEAAAAAAGBAAAAAADBAAAAAAMBAAAAAAHBAAAAAAKEAAAAAAEEAAAAAANEAAAAAADEAAAAAADEAAAAAABEAAAAAAFBAAAAAAABAAAAAAMEAAAAAACEAAAAAAKEAAAAAANEAAAAAANBAAAAAAIBAAAAAANBAAAAAANBAAAAAANBAAAAAAFEAAAAAALEAAAAAACEAAAAAALEAAAAAAIEAAAAAAAEAAAAAAMEAAAAAAAEAAAAAAEEAAAAAAFEAAAAAAJEAAAAAADEAAAAAAKBAAAAAAPBAAAAAANBAAAAAANBAAAAAAIBAAAAAAHEAAAAAALEAAAAAAMEAAAAAACEAAAAAANEAAAAAANEAAAAAALBAAAAAAMBAAAAAADEAAAAAABEAAAAAAIBAAAAAAGBAAAAAAJBAAAAAAEBAAAAAAJBAAAAAAOBAAAAAAGBAAAAAALEAAAAAACEAAAAAAMEAAAAAABEAAAAAAIEAAAAAADBAAAAAALBAAAAAAFBAAAAAAGEAAAAAABBAAAAAAKBAAAAAAEBAAAAAAJBAAAAAANBAAAAAAOBAAAAAACBAAAAAAABAAAAAAKBAAAAAANEAAAAAAEEAAAAAAHEAAAAAAEBAAAAAAKBAAAAAABBAAAAAADBAAAAAAJBAAAAAAOBAAAAAAPBAAAAAAGBAAAAAAFBAAAAAAGBAAAAAAJBAAAAAAEBAAAAAABBAAAAAAMBAAAAAAFBAAAAAAHBAAAAAADBAAAAAAIBAAAAAAOBAAAAAAKBAAAAAAEBAAAAAACBAAAAAADBAAAAAAGBAAAAAABBAAAAAAOBAAAAAAJBAAAAAAFBAAAAAAJBAAAAAABBAAAAAAKBAAAAAAABAAAAAAJBAAAAAADBAAAAAACBAAAAAADBAAAAAAEBAAAAAAFBAAAAAAHBAAAAAADBAAAAAAFBAAAAAAJBAAAAAAFBAAAAAAKBAAAAAABBAAAAAALBAAAAAANBAAAAAACBAAAAAAMBAAAAAAMBAAAAAAABAAAAAAKBAAAAAAKBAAAAAAOBAAAAAAFBAAAAAAEBAAAAAAPBAAAAAAGBAAAAAACBAAAAAAEBAAAAAAHBAAAAAAKBAAAAAABBAAAAAALBAAAAAADBAAAAAAFBAAAAAAHBAAAAAAIBAAAAAABBAAAAAAPBAAAAAAHBAAAAAADBAAAAAAMBAAAAAAIBAAAAAABBAAAAAAFBAAAAAAJBAAAAAAKBAAAAAAABAAAAAAGBAAAAAADBAAAAAAMBAAAAAAFBAAAAAAEBAAAAAAOBAAAAAABBAAAAAAPBAAAAAAEBAAAAAALBAAAAAAMBAAAAAAHBAAAAAAJBAAAAAAGBAAAAAACBAAAAAAABAAAAAANBAAAAAAOBAAAAAAJBAAAAAANBAAAAAAEBAAAAAAABAAAAAAMBAAAAAANBAAAAAAEBAAAAAAABAAAAAANBAAAAAANBAAAAAALBAAAAAAHBAAAAAAGBAAAAAACBAAAAAAGEAAAAAAHBAAAAAAHBAAAAAAJBAAAAAAFBAAAAAADBAAAAAACBAAAAAABBAAAAAALBAAAAAACBAAAAAAABAAAAAAHBAAAAAABBAAAAAAKEAAAAAACEAAAAAAEEAAAAAANEAAAAAAMBAAAAAAJBAAAAAAKBAAAAAAIBAAAAAAHBAAAAAANBAAAAAABBAAAAAAHBAAAAAAGBAAAAAAOBAAAAAANBAAAAAAPBAAAAAAHEAAAAAAEEAAAAAAGEAAAAAAGEAAAAAAKBAAAAAAKBAAAAAALBAAAAAAPBAAAAAAOBAAAAAADBAAAAAADBAAAAAAEBAAAAAAHBAAAAAAJBAAAAAABEAAAAAAIEAAAAAAHEAAAAAANEAAAAAACEAAAAAAMEAAAAAAABAAAAAACBAAAAAAKBAAAAAAFBAAAAAADFAAAAAAEFAAAAAACFAAAAAAEBAAAAAAOBAAAAAAIBAAAAAABBAAAAAADEAAAAAACEAAAAAALEAAAAAAKEAAAAAACEAAAAAAM
+ version: 6
+ 3,2:
+ ind: 3,2
+ tiles: FAAAAAAEFAAAAAABFAAAAAADFAAAAAACFAAAAAABFAAAAAAEFAAAAAABBAAAAAACBAAAAAAFBAAAAAAEBAAAAAAOEAAAAAAJEAAAAAAGFAAAAAAFEAAAAAAKEAAAAAALFAAAAAADFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAABAAAAAAEBAAAAAALBAAAAAACBAAAAAAMBAAAAAAEBAAAAAAMEAAAAAANEAAAAAAEEAAAAAAIEAAAAAAIFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAABAAAAAAEBAAAAAANBAAAAAAEBAAAAAALBAAAAAADBAAAAAACBAAAAAANBAAAAAADBAAAAAAGFAAAAAABFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAACBAAAAAAPFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAFFAAAAAABFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAAEFAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAFFAAAAAABFAAAAAACFAAAAAAAFAAAAAAFFAAAAAABFAAAAAACFAAAAAACFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAADFAAAAAABFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAABFAAAAAABFAAAAAABFAAAAAAFFAAAAAACFAAAAAAEFAAAAAADFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAACFAAAAAABFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAACFAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAABFAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAACFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAAFFAAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAAFFAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAABFAAAAAADFAAAAAAF
+ version: 6
+ 3,1:
+ ind: 3,1
+ tiles: FAAAAAAFFAAAAAABFAAAAAABFAAAAAADFAAAAAAFFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAABAAAAAAGBAAAAAADFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAAEFAAAAAADFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEBAAAAAAOBAAAAAAABAAAAAAJFAAAAAADFAAAAAAAFAAAAAAEFAAAAAADFAAAAAACFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFBAAAAAAOBAAAAAAIBAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAABFAAAAAACFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAABAAAAAAABAAAAAAMEAAAAAAGFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAAFFAAAAAAABAAAAAAMBAAAAAAOEAAAAAAMFAAAAAACFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAACBAAAAAAJBAAAAAAJEAAAAAAFFAAAAAADFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAAFAAAAAABFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFBAAAAAABBAAAAAAMEAAAAAALFAAAAAABFAAAAAABFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAAFAAAAAADBAAAAAAKEAAAAAALEAAAAAACFAAAAAACFAAAAAAEFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAACFAAAAAADFAAAAAAEFAAAAAAABAAAAAAOEAAAAAAHEAAAAAAIFAAAAAAAFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAAFBAAAAAAMBAAAAAAHEAAAAAAHEAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAEBAAAAAAPBAAAAAANEAAAAAAHEAAAAAAGFAAAAAAEFAAAAAACFAAAAAACFAAAAAACFAAAAAAAFAAAAAAFFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAAFBAAAAAAABAAAAAAIBAAAAAABEAAAAAAGEAAAAAAGFAAAAAABFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAABFAAAAAABBAAAAAAPBAAAAAACBAAAAAAKBAAAAAAPEAAAAAAHEAAAAAAKFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAACBAAAAAAHBAAAAAAJBAAAAAAHBAAAAAAKBAAAAAACEAAAAAALEAAAAAAJFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEBAAAAAALBAAAAAAKBAAAAAALBAAAAAAGEAAAAAAIEAAAAAABEAAAAAAFFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAAEBAAAAAAABAAAAAAOBAAAAAAOBAAAAAAOEAAAAAADFAAAAAABEAAAAAAJEAAAAAAK
+ version: 6
+ -4,2:
+ ind: -4,2
+ tiles: DwAAAAAADwAAAAAFDwAAAAACDQAAAAADDQAAAAABDQAAAAAFDwAAAAAAFAAAAAAFDwAAAAADDQAAAAAADQAAAAABDQAAAAADFAAAAAABBAAAAAANFAAAAAAFFAAAAAAADwAAAAABDwAAAAABFAAAAAACDwAAAAAEDQAAAAAADwAAAAAEDQAAAAACDwAAAAAADQAAAAAEDwAAAAACDwAAAAACDwAAAAACDQAAAAAEDQAAAAABFAAAAAAEFAAAAAAEDwAAAAAADQAAAAAEDwAAAAADDwAAAAAADQAAAAAADQAAAAADDwAAAAACDQAAAAAEDwAAAAAFDwAAAAADFAAAAAADDQAAAAADDQAAAAACDQAAAAAAFAAAAAAEFAAAAAACDQAAAAAADwAAAAAEFAAAAAACDwAAAAADFAAAAAAADQAAAAABDQAAAAABDwAAAAAFDwAAAAAEDwAAAAAEDwAAAAAADwAAAAAFDQAAAAAFDQAAAAAADQAAAAABFAAAAAAFFAAAAAAEDwAAAAAADQAAAAACDwAAAAABDwAAAAADDwAAAAACDwAAAAADDwAAAAADDQAAAAAADwAAAAACDQAAAAADFAAAAAABDwAAAAAFDwAAAAACDQAAAAACDQAAAAADDwAAAAAFDwAAAAABDQAAAAACDwAAAAAEDQAAAAAEDQAAAAADDwAAAAACDwAAAAACDwAAAAAAFAAAAAACDQAAAAACDwAAAAAEFAAAAAAFFAAAAAADDQAAAAAFDQAAAAAADwAAAAACDwAAAAAEDQAAAAAEDQAAAAADDwAAAAABDwAAAAAFDQAAAAAFDwAAAAAEDwAAAAADDwAAAAAEDQAAAAAADQAAAAABDQAAAAABDQAAAAABDwAAAAAEDQAAAAACDwAAAAAADQAAAAABDQAAAAABDwAAAAACDwAAAAAEDQAAAAAADwAAAAADDQAAAAACDwAAAAAFDwAAAAAFDwAAAAAFDQAAAAAEFAAAAAACDwAAAAAFDwAAAAAEDQAAAAAEDwAAAAAEFAAAAAADDQAAAAACDQAAAAAFDwAAAAABDQAAAAAEFAAAAAAAFAAAAAAFDQAAAAADDQAAAAAADwAAAAAADQAAAAABDQAAAAAFFAAAAAADDwAAAAADDwAAAAADDwAAAAACDQAAAAAFDwAAAAAFDQAAAAACDQAAAAADDwAAAAABDQAAAAADDQAAAAAFDwAAAAAADwAAAAAEDwAAAAABDQAAAAACFAAAAAAFDwAAAAAAFAAAAAAAFAAAAAACDwAAAAAEDwAAAAAFDQAAAAADFAAAAAACFAAAAAAFFAAAAAAEDQAAAAADDQAAAAAADwAAAAAADQAAAAADDQAAAAAEDQAAAAAADwAAAAABDwAAAAAADQAAAAABDwAAAAADDwAAAAABDwAAAAABDwAAAAADFAAAAAABDQAAAAAEDQAAAAAADQAAAAAEDQAAAAAEDwAAAAADDQAAAAAADwAAAAACDwAAAAAFFAAAAAAFDwAAAAACDwAAAAAFDwAAAAAFDwAAAAAFDwAAAAADDwAAAAAFDwAAAAAFDwAAAAAFDQAAAAABDQAAAAABDwAAAAABDwAAAAAEDwAAAAADDwAAAAAADQAAAAABFAAAAAAAFAAAAAADDwAAAAACDwAAAAABDQAAAAAFFAAAAAAADQAAAAAEDwAAAAAADwAAAAAEFAAAAAADFAAAAAADDQAAAAACDQAAAAACDwAAAAAFDwAAAAAFDwAAAAAFDQAAAAAFDQAAAAAAFAAAAAADDQAAAAAEDQAAAAAADQAAAAACFAAAAAADDwAAAAAADwAAAAAADwAAAAAFDwAAAAADDwAAAAABDQAAAAAADQAAAAAEDQAAAAABDQAAAAABDQAAAAADDQAAAAAEDwAAAAAFDQAAAAAFDQAAAAAADQAAAAACDQAAAAAFFAAAAAABDQAAAAAFDQAAAAACDwAAAAACDwAAAAABDQAAAAABFAAAAAACDQAAAAADDQAAAAAFDwAAAAABDQAAAAAFDwAAAAAEDQAAAAAD
+ version: 6
+ -10,4:
+ ind: -10,4
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAADFAAAAAAFFAAAAAAEFAAAAAACFAAAAAADFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACDgAAAAAAFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAADDgAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAAADgAAAAAAFAAAAAAFFAAAAAAFFAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAACDgAAAAABDgAAAAABDgAAAAADDgAAAAACFAAAAAAFFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAABDgAAAAAEDgAAAAADDgAAAAAAFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAACDgAAAAABDgAAAAACDgAAAAAEFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACDgAAAAAEDgAAAAACDgAAAAAEAAAAAAAABAAAAAADEAAAAAACEAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAAEEAAAAAAIEAAAAAAJEAAAAAAKEAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAADDgAAAAAADgAAAAADDgAAAAACBAAAAAANEAAAAAALEAAAAAAAEAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAADDgAAAAABDgAAAAADDgAAAAAADgAAAAACEAAAAAALEAAAAAAEEAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEDgAAAAACDgAAAAAEDgAAAAABDgAAAAABDgAAAAAAEAAAAAACEAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAEDgAAAAABDgAAAAACDgAAAAACDgAAAAAEBAAAAAADEAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAADgAAAAAEDgAAAAAADgAAAAABDgAAAAABDgAAAAACBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACDgAAAAAEDgAAAAABDgAAAAAEDgAAAAACDgAAAAAE
+ version: 6
+ -9,4:
+ ind: -9,4
+ tiles: FAAAAAABFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAADFAAAAAABFAAAAAABFAAAAAAEFAAAAAAFBAAAAAAHBAAAAAAEBAAAAAABFAAAAAAEFAAAAAABFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAAEFAAAAAAEFAAAAAABFAAAAAADEAAAAAAMEAAAAAADEAAAAAAJBAAAAAAPFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAADEAAAAAAKEAAAAAAAEAAAAAABEAAAAAAHEAAAAAAKEAAAAAAKBAAAAAAPFAAAAAACFAAAAAACFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAEFAAAAAADBAAAAAAOEAAAAAAHEAAAAAAHBAAAAAAOEAAAAAAGEAAAAAAFEAAAAAADEAAAAAALFAAAAAAEFAAAAAACFAAAAAACFAAAAAADFAAAAAAFFAAAAAABFAAAAAABBAAAAAAIBAAAAAANEAAAAAAFEAAAAAAKEAAAAAAAEAAAAAAKBAAAAAAPEAAAAAAABAAAAAAMFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAEBAAAAAANEAAAAAAAEAAAAAAFEAAAAAABEAAAAAACEAAAAAAFEAAAAAACEAAAAAAJEAAAAAAGBAAAAAAEFAAAAAAAFAAAAAAFFAAAAAACFAAAAAACFAAAAAAFBAAAAAAJEAAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAADEAAAAAAABAAAAAAKEAAAAAALBAAAAAAJFAAAAAACFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAAEAAAAAABEAAAAAAJEAAAAAAGEAAAAAAAEAAAAAAAEAAAAAALEAAAAAAFEAAAAAADEAAAAAADEAAAAAAGBAAAAAADFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAFFAAAAAABEAAAAAAIBAAAAAAKEAAAAAAJBAAAAAAHEAAAAAABEAAAAAAFEAAAAAAEEAAAAAAHEAAAAAABBAAAAAACFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAABFAAAAAAEEAAAAAAKEAAAAAALEAAAAAALEAAAAAADEAAAAAALEAAAAAABEAAAAAANEAAAAAAEEAAAAAACBAAAAAAJFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAEFAAAAAABFAAAAAABEAAAAAAFEAAAAAAHEAAAAAAAEAAAAAANEAAAAAAGEAAAAAAEEAAAAAAMEAAAAAANBAAAAAAGBAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAAEAAAAAABEAAAAAABEAAAAAAGEAAAAAALEAAAAAALEAAAAAAHEAAAAAAEEAAAAAAEBAAAAAAJFAAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAAEEAAAAAAJEAAAAAAHEAAAAAADEAAAAAAEEAAAAAAKEAAAAAAJEAAAAAAMEAAAAAAIBAAAAAAMFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAADFAAAAAABFAAAAAAFFAAAAAAAEAAAAAAHEAAAAAADEAAAAAADEAAAAAACBAAAAAADBAAAAAAJEAAAAAAKEAAAAAAHEAAAAAAIEAAAAAACBAAAAAAFFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAADBAAAAAANEAAAAAAIEAAAAAAFEAAAAAAKEAAAAAANEAAAAAADEAAAAAABEAAAAAANEAAAAAAKEAAAAAAEBAAAAAAIBAAAAAAFBAAAAAAKFAAAAAACFAAAAAAEFAAAAAAEAAAAAAAABAAAAAALBAAAAAAFEAAAAAANEAAAAAABEAAAAAANEAAAAAALEAAAAAAHBAAAAAAKBAAAAAAIBAAAAAANBAAAAAAPBAAAAAACBAAAAAAOFAAAAAACFAAAAAAB
+ version: 6
+ -9,5:
+ ind: -9,5
+ tiles: DgAAAAABDgAAAAACDgAAAAAEBAAAAAAFBAAAAAAEBAAAAAACBAAAAAAKBAAAAAADBAAAAAALDgAAAAABDgAAAAACFAAAAAACFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEDgAAAAADDgAAAAABDgAAAAABDgAAAAAADgAAAAAEDgAAAAADDgAAAAADDgAAAAAEDgAAAAADDgAAAAAEDgAAAAAADgAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAABDgAAAAAADgAAAAAEDgAAAAABDgAAAAAADgAAAAACDgAAAAAEAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAADDgAAAAAAFAAAAAACFAAAAAABFAAAAAADDgAAAAAADgAAAAACDgAAAAAEDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAEDgAAAAADFAAAAAACDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAABDgAAAAADDgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAADgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -8,4:
+ ind: -8,4
+ tiles: FAAAAAACFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAADFAAAAAABFAAAAAADBAAAAAABBAAAAAAABAAAAAAEBAAAAAAOEAAAAAAIEAAAAAAEEAAAAAANEAAAAAAGFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAFFAAAAAABFAAAAAAABAAAAAAEBAAAAAAHEAAAAAAJEAAAAAANEAAAAAAJEAAAAAALFAAAAAAFFAAAAAAFFAAAAAACFAAAAAACFAAAAAADFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAFFAAAAAABFAAAAAACBAAAAAAGBAAAAAANEAAAAAAAEAAAAAACEAAAAAAEFAAAAAADFAAAAAABFAAAAAAFFAAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAAFFAAAAAAABAAAAAABBAAAAAAFEAAAAAAAEAAAAAANEAAAAAANFAAAAAAEFAAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAAFFAAAAAACFAAAAAAABAAAAAAOBAAAAAALBAAAAAABEAAAAAAFEAAAAAANFAAAAAABFAAAAAAEFAAAAAABFAAAAAAAFAAAAAACFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAABAAAAAALBAAAAAAIEAAAAAADEAAAAAAMEAAAAAAGFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAACFAAAAAADBAAAAAAABAAAAAAOEAAAAAANEAAAAAAMEAAAAAAEEAAAAAAFFAAAAAAEFAAAAAADFAAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAACBAAAAAACBAAAAAAJBAAAAAACBAAAAAAOBAAAAAAMEAAAAAACEAAAAAADEAAAAAALEAAAAAAHFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEBAAAAAABBAAAAAAIBAAAAAANBAAAAAANEAAAAAAGEAAAAAACEAAAAAAAEAAAAAAGEAAAAAAHEAAAAAACFAAAAAAEFAAAAAAAFAAAAAABFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAADBAAAAAAABAAAAAAKBAAAAAAOBAAAAAAKBAAAAAANEAAAAAABEAAAAAANEAAAAAABFAAAAAAFFAAAAAAFFAAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAEBAAAAAAJBAAAAAACBAAAAAAGBAAAAAAJEAAAAAANEAAAAAAFFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEFAAAAAACFAAAAAACFAAAAAACFAAAAAACFAAAAAAEBAAAAAAFBAAAAAANBAAAAAALEAAAAAAEFAAAAAABFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAADFAAAAAADFAAAAAAAFAAAAAACFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFFAAAAAAFBAAAAAAKBAAAAAAPFAAAAAAFFAAAAAADFAAAAAABFAAAAAAEFAAAAAACFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAAABAAAAAANFAAAAAACFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFFAAAAAACFAAAAAACFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAABAAAAAAGFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAEFAAAAAABFAAAAAAFBAAAAAAFBAAAAAAE
+ version: 6
+ -8,5:
+ ind: -8,5
+ tiles: FAAAAAACFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAEFAAAAAACFAAAAAADFAAAAAADFAAAAAABDgAAAAABDgAAAAABBAAAAAADBAAAAAAABAAAAAAGFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAFDgAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAACDgAAAAADDgAAAAAEDgAAAAAEFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAEDgAAAAAEDgAAAAABDgAAAAACDgAAAAAEDgAAAAADDgAAAAADDgAAAAAEDgAAAAAADgAAAAADDgAAAAAADgAAAAACDgAAAAAEDgAAAAACDgAAAAACDgAAAAAADgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAADDgAAAAACDgAAAAADDgAAAAADDgAAAAADDgAAAAADDgAAAAAEDgAAAAADDgAAAAAADgAAAAADDgAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAACDgAAAAABDgAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAAEDgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -7,4:
+ ind: -7,4
+ tiles: EAAAAAAHEAAAAAAMEAAAAAAMEAAAAAACEAAAAAAMEAAAAAALEAAAAAAAEAAAAAAIEAAAAAAHEAAAAAAMEAAAAAALEAAAAAAJEAAAAAAFEAAAAAADEAAAAAAEEAAAAAAGEAAAAAAEEAAAAAAGEAAAAAAFEAAAAAADEAAAAAABEAAAAAAEEAAAAAAHEAAAAAAKEAAAAAADEAAAAAALEAAAAAACEAAAAAADEAAAAAAHEAAAAAACEAAAAAACEAAAAAAAEAAAAAAHEAAAAAAHEAAAAAAHEAAAAAALEAAAAAANEAAAAAAGEAAAAAAGEAAAAAACEAAAAAAEEAAAAAABEAAAAAAJEAAAAAALEAAAAAABEAAAAAAHEAAAAAAKEAAAAAAHEAAAAAANEAAAAAAIEAAAAAAHEAAAAAAFEAAAAAAMEAAAAAACEAAAAAAFEAAAAAAGEAAAAAABEAAAAAAKEAAAAAANEAAAAAAGEAAAAAABEAAAAAANEAAAAAAAEAAAAAALEAAAAAABEAAAAAABEAAAAAAIEAAAAAANEAAAAAAIEAAAAAACEAAAAAALEAAAAAAEEAAAAAANEAAAAAABEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAMEAAAAAADEAAAAAAMEAAAAAADEAAAAAAJEAAAAAAHEAAAAAAJEAAAAAAAEAAAAAAMEAAAAAAKEAAAAAAEEAAAAAAKEAAAAAACEAAAAAABEAAAAAAIEAAAAAALEAAAAAAHEAAAAAACEAAAAAAIEAAAAAAJEAAAAAABEAAAAAABEAAAAAABEAAAAAAEEAAAAAANEAAAAAAKEAAAAAAEEAAAAAAAEAAAAAAFEAAAAAAGEAAAAAAMEAAAAAAMEAAAAAAAEAAAAAAKEAAAAAACEAAAAAALEAAAAAAFEAAAAAAEEAAAAAAAEAAAAAAJEAAAAAAJEAAAAAAAEAAAAAACEAAAAAAEEAAAAAAAEAAAAAAJEAAAAAAGEAAAAAAKEAAAAAADBAAAAAAOBAAAAAAGEAAAAAAKEAAAAAAHEAAAAAABEAAAAAANEAAAAAADEAAAAAABEAAAAAAHEAAAAAAMEAAAAAABEAAAAAACEAAAAAAMEAAAAAAFEAAAAAAKEAAAAAAGBAAAAAADBAAAAAAKEAAAAAAAEAAAAAAMEAAAAAAHEAAAAAADEAAAAAAIEAAAAAAAEAAAAAAGEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAGEAAAAAACEAAAAAAJEAAAAAAHBAAAAAAOBAAAAAADEAAAAAACEAAAAAAJEAAAAAANEAAAAAAJEAAAAAACEAAAAAAKEAAAAAADEAAAAAAJEAAAAAACEAAAAAAGEAAAAAAHEAAAAAAFEAAAAAADEAAAAAAMEAAAAAAAFAAAAAAEEAAAAAAEEAAAAAAKEAAAAAAHEAAAAAAKEAAAAAADEAAAAAAGEAAAAAAFBAAAAAACBAAAAAALBAAAAAAKBAAAAAAKEAAAAAAHEAAAAAAMEAAAAAABEAAAAAANEAAAAAAIEAAAAAABEAAAAAAIEAAAAAAMEAAAAAAAEAAAAAAMBAAAAAAIBAAAAAAKBAAAAAAKBAAAAAAOBAAAAAAOBAAAAAAJBAAAAAABBAAAAAAABAAAAAAMBAAAAAACBAAAAAAIEAAAAAAIEAAAAAACEAAAAAANEAAAAAABEAAAAAAFBAAAAAAPBAAAAAAFBAAAAAAFBAAAAAALBAAAAAAOFAAAAAADFAAAAAACFAAAAAAFFAAAAAACBAAAAAAIBAAAAAALBAAAAAADEAAAAAADEAAAAAADEAAAAAADBAAAAAABBAAAAAAPBAAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAAFFAAAAAABFAAAAAAEBAAAAAAGBAAAAAAGBAAAAAAEEAAAAAAGEAAAAAAIBAAAAAAIBAAAAAABBAAAAAAEFAAAAAAAFAAAAAABFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAAC
+ version: 6
+ -7,5:
+ ind: -7,5
+ tiles: BAAAAAAMBAAAAAAGBAAAAAACEAAAAAAIEAAAAAAGBAAAAAANBAAAAAAOFAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFDgAAAAADBAAAAAAFBAAAAAAPBAAAAAAKEAAAAAACEAAAAAAMBAAAAAAGFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAEDgAAAAACDgAAAAABBAAAAAAABAAAAAACBAAAAAALBAAAAAABBAAAAAAABAAAAAAHFAAAAAACFAAAAAADFAAAAAACFAAAAAAFFAAAAAADFAAAAAABFAAAAAADFAAAAAADDgAAAAACDgAAAAAADgAAAAAADgAAAAAEBAAAAAAHBAAAAAAPBAAAAAACBAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAACFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAFDgAAAAAADgAAAAADDgAAAAAEDgAAAAACDgAAAAAEDgAAAAAEBAAAAAAMBAAAAAAABAAAAAAMFAAAAAADFAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAAFFAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAEDgAAAAAEDgAAAAABDgAAAAACDgAAAAAAFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEDgAAAAABDgAAAAACDgAAAAABFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAAFFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACDgAAAAADDgAAAAAEDgAAAAABDgAAAAAAFAAAAAAFFAAAAAADFAAAAAACFAAAAAAEFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAAADgAAAAABDgAAAAACFAAAAAABFAAAAAAEFAAAAAACFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAAEDgAAAAAEFAAAAAABFAAAAAADFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAABDgAAAAACDgAAAAAAFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -6,4:
+ ind: -6,4
+ tiles: EAAAAAAHEAAAAAAAEAAAAAAHEAAAAAAJEAAAAAAAEAAAAAAKEAAAAAAKEAAAAAAGEAAAAAAHEAAAAAAAEAAAAAAKEAAAAAAIEAAAAAAFBAAAAAACBAAAAAAOBAAAAAALEAAAAAAAEAAAAAAEEAAAAAADEAAAAAAEEAAAAAAFEAAAAAAHEAAAAAAGEAAAAAAJEAAAAAALEAAAAAALEAAAAAAGBAAAAAAEBAAAAAADBAAAAAAIBAAAAAAFBAAAAAAIEAAAAAAMEAAAAAAMEAAAAAAMEAAAAAAHEAAAAAAAEAAAAAANEAAAAAAFEAAAAAAMEAAAAAALEAAAAAANEAAAAAAJEAAAAAAIBAAAAAAFBAAAAAAPBAAAAAAKBAAAAAALEAAAAAAIEAAAAAANEAAAAAACEAAAAAADEAAAAAADBAAAAAADBAAAAAAKBAAAAAANEAAAAAAJEAAAAAAHBAAAAAADBAAAAAABBAAAAAAEFAAAAAAEFAAAAAADFAAAAAADEAAAAAAGEAAAAAAHEAAAAAABEAAAAAAHBAAAAAAABAAAAAAJBAAAAAAEFAAAAAAABAAAAAAGBAAAAAAMBAAAAAAFBAAAAAAHBAAAAAAHBAAAAAAPFAAAAAAAFAAAAAAAEAAAAAAKEAAAAAAKEAAAAAAHEAAAAAAAEAAAAAAGBAAAAAAIFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABFAAAAAABBAAAAAAMBAAAAAAMBAAAAAAGFAAAAAAEEAAAAAAAEAAAAAAMEAAAAAAJEAAAAAAFEAAAAAAHBAAAAAABFAAAAAADFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAABBAAAAAAEBAAAAAABBAAAAAADEAAAAAANEAAAAAABEAAAAAACEAAAAAAGBAAAAAACBAAAAAAEBAAAAAABFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAABFAAAAAACFAAAAAAEBAAAAAAABAAAAAAJBAAAAAABBAAAAAABEAAAAAALEAAAAAAKEAAAAAAMEAAAAAAJBAAAAAALBAAAAAADBAAAAAACBAAAAAAKBAAAAAAGFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAAFFAAAAAACBAAAAAANBAAAAAAAEAAAAAADEAAAAAANEAAAAAANBAAAAAAKBAAAAAABBAAAAAAPBAAAAAAGFAAAAAABFAAAAAAEFAAAAAADFAAAAAABFAAAAAABFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAEBAAAAAABBAAAAAAABAAAAAALBAAAAAAIFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAACFAAAAAACFAAAAAACFAAAAAAFFAAAAAAAFAAAAAABFAAAAAADFAAAAAAEFAAAAAAAFAAAAAADBAAAAAAOBAAAAAANFAAAAAAEFAAAAAAFFAAAAAACFAAAAAACFAAAAAADBAAAAAACFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAABBAAAAAAJFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAFFAAAAAACFAAAAAAFFAAAAAACFAAAAAADFAAAAAAAFAAAAAADFAAAAAACFAAAAAAFBAAAAAACBAAAAAAFFAAAAAAEFAAAAAADFAAAAAABFAAAAAAFFAAAAAABFAAAAAACFAAAAAAFFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAADFAAAAAAEFAAAAAABBAAAAAAGBAAAAAACFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAAD
+ version: 6
+ -6,5:
+ ind: -6,5
+ tiles: FAAAAAAEFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAFFAAAAAABFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAADFAAAAAACFAAAAAAAFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAAFFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAEFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAAEFAAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAAFFAAAAAABFAAAAAADFAAAAAAFFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAAEFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAAFFAAAAAABFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAAEFAAAAAADFAAAAAACFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAEFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAABFAAAAAADFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAABFAAAAAAEFAAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABFAAAAAACFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAFFAAAAAACDgAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACFAAAAAACFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAADgAAAAADDgAAAAACDgAAAAABFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAABFAAAAAACDgAAAAACAAAAAAAADgAAAAAEDgAAAAAEDgAAAAACDgAAAAAEFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAACDgAAAAAADgAAAAAEDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAAEDgAAAAADFAAAAAAAFAAAAAAEFAAAAAABFAAAAAADDgAAAAABDgAAAAABDgAAAAAEDgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAADDgAAAAABDgAAAAAEDgAAAAAEDgAAAAAADgAAAAABDgAAAAABDgAAAAAD
+ version: 6
+ -6,3:
+ ind: -6,3
+ tiles: EAAAAAAEEAAAAAAJEAAAAAAJEAAAAAAJEAAAAAAAEAAAAAALBAAAAAANBAAAAAANBAAAAAABFAAAAAACFAAAAAAEDQAAAAAEFAAAAAAAFAAAAAABFAAAAAACFAAAAAAEEAAAAAADEAAAAAAJEAAAAAACEAAAAAANEAAAAAADEAAAAAANEAAAAAACBAAAAAAJBAAAAAALFAAAAAAFFAAAAAABDQAAAAAADQAAAAABFAAAAAACFAAAAAAFFAAAAAAAEAAAAAAGEAAAAAAEEAAAAAANEAAAAAACEAAAAAAMEAAAAAAFEAAAAAAFEAAAAAAHBAAAAAAGBAAAAAAPFAAAAAABFAAAAAACDQAAAAAEFAAAAAACFAAAAAAEFAAAAAAAEAAAAAAKEAAAAAACEAAAAAAAEAAAAAADEAAAAAADEAAAAAAGEAAAAAAFEAAAAAACEAAAAAADBAAAAAAAFAAAAAABFAAAAAAFDQAAAAADDQAAAAAAFAAAAAAEFAAAAAABEAAAAAAIEAAAAAABEAAAAAAGEAAAAAAJEAAAAAABEAAAAAAIEAAAAAAHEAAAAAAJEAAAAAAJBAAAAAANBAAAAAAHFAAAAAADFAAAAAADDQAAAAACDQAAAAACFAAAAAACEAAAAAAHEAAAAAAKEAAAAAAEEAAAAAANEAAAAAAHEAAAAAAIEAAAAAAAEAAAAAAKEAAAAAAKEAAAAAAGBAAAAAAGFAAAAAAFFAAAAAADDQAAAAAEDQAAAAABDQAAAAAFEAAAAAAAEAAAAAAFEAAAAAAKEAAAAAACEAAAAAAFEAAAAAAEEAAAAAAIEAAAAAAMEAAAAAAJEAAAAAAAEAAAAAALBAAAAAABFAAAAAAFFAAAAAAFDQAAAAABDQAAAAAAEAAAAAALEAAAAAAIEAAAAAAEEAAAAAAHEAAAAAAHEAAAAAAHEAAAAAAAEAAAAAAJEAAAAAAHEAAAAAAFEAAAAAAKBAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFDQAAAAABEAAAAAACEAAAAAACEAAAAAALEAAAAAAHEAAAAAAFEAAAAAANEAAAAAAIEAAAAAAFEAAAAAAIEAAAAAABEAAAAAAGEAAAAAABBAAAAAAABAAAAAABFAAAAAAAFAAAAAABEAAAAAADEAAAAAAGEAAAAAALEAAAAAAAEAAAAAAHEAAAAAAIEAAAAAACEAAAAAANEAAAAAAAEAAAAAALEAAAAAAEEAAAAAAFEAAAAAAHBAAAAAANBAAAAAANBAAAAAAPEAAAAAAGEAAAAAAMEAAAAAAKEAAAAAAGEAAAAAAJEAAAAAAIEAAAAAABEAAAAAACEAAAAAACEAAAAAADEAAAAAAEEAAAAAADEAAAAAANEAAAAAAEEAAAAAAIBAAAAAAMEAAAAAAMEAAAAAAJEAAAAAANEAAAAAABEAAAAAALEAAAAAABEAAAAAAGEAAAAAANEAAAAAAFEAAAAAAEEAAAAAALEAAAAAABEAAAAAAFEAAAAAAEEAAAAAACBAAAAAAAEAAAAAABEAAAAAAEEAAAAAAIEAAAAAABEAAAAAANEAAAAAAIEAAAAAANEAAAAAALEAAAAAAFEAAAAAAFEAAAAAAFEAAAAAALEAAAAAACEAAAAAACEAAAAAAFEAAAAAAAEAAAAAAGEAAAAAAGEAAAAAAFEAAAAAAGEAAAAAADEAAAAAAGEAAAAAALEAAAAAADEAAAAAALEAAAAAALEAAAAAAKEAAAAAAHEAAAAAAHEAAAAAAEEAAAAAAMEAAAAAABEAAAAAANEAAAAAALEAAAAAADEAAAAAAMEAAAAAAAEAAAAAAHEAAAAAAFEAAAAAAEEAAAAAALEAAAAAAGEAAAAAAJEAAAAAAHEAAAAAAKEAAAAAACEAAAAAAEEAAAAAAAEAAAAAAKEAAAAAAGEAAAAAANEAAAAAADEAAAAAAGEAAAAAAFEAAAAAANEAAAAAAIEAAAAAAHEAAAAAALEAAAAAABEAAAAAANEAAAAAAHEAAAAAAAEAAAAAAMEAAAAAAH
+ version: 6
+ -7,3:
+ ind: -7,3
+ tiles: BAAAAAAEEAAAAAAEEAAAAAAAEAAAAAAMEAAAAAAIEAAAAAAHEAAAAAAJEAAAAAANEAAAAAAGBAAAAAADBAAAAAAJBAAAAAADBAAAAAAABAAAAAAKEAAAAAALEAAAAAALEAAAAAAKEAAAAAAEEAAAAAAGEAAAAAAIEAAAAAAMEAAAAAAGEAAAAAAGEAAAAAAMEAAAAAAGBAAAAAADBAAAAAAMDgAAAAAABAAAAAAMBAAAAAAIEAAAAAAMEAAAAAAMEAAAAAALEAAAAAAMEAAAAAAIEAAAAAAKEAAAAAAFEAAAAAALEAAAAAABBAAAAAAJBAAAAAALBAAAAAAGDgAAAAAADgAAAAABDgAAAAAEBAAAAAACEAAAAAAMEAAAAAAIEAAAAAAEEAAAAAADEAAAAAADEAAAAAANEAAAAAAFBAAAAAAABAAAAAAIBAAAAAANDgAAAAAEDgAAAAAEDgAAAAABDgAAAAAADgAAAAAEBAAAAAAJBAAAAAAOEAAAAAAKEAAAAAAAEAAAAAAFEAAAAAAJEAAAAAAJBAAAAAABBAAAAAAODgAAAAAEDgAAAAAEDgAAAAAEDgAAAAABDgAAAAABDgAAAAABDgAAAAADBAAAAAALBAAAAAAPEAAAAAAMBAAAAAAKBAAAAAAKBAAAAAAMBAAAAAAABAAAAAAFDgAAAAACDgAAAAACDgAAAAACDgAAAAADDgAAAAAADgAAAAAEBAAAAAAKBAAAAAAPBAAAAAAFBAAAAAAPEAAAAAAKBAAAAAACDgAAAAAEDgAAAAADDgAAAAAADgAAAAAEDgAAAAABDgAAAAABDgAAAAAEDgAAAAAABAAAAAAHBAAAAAAHBAAAAAAPBAAAAAAPBAAAAAANEAAAAAAAEAAAAAANDgAAAAACDgAAAAABDgAAAAAADgAAAAAEDgAAAAADDgAAAAAABAAAAAAHBAAAAAAABAAAAAACBAAAAAAFBAAAAAAHBAAAAAADEAAAAAANEAAAAAAIEAAAAAAHEAAAAAALDgAAAAADDgAAAAAEDgAAAAACBAAAAAAJBAAAAAALBAAAAAAGBAAAAAALBAAAAAADBAAAAAAKBAAAAAACEAAAAAAEEAAAAAABEAAAAAAAEAAAAAAMEAAAAAADEAAAAAAMBAAAAAAGBAAAAAAIBAAAAAAEBAAAAAAGBAAAAAAHBAAAAAALBAAAAAAOEAAAAAABEAAAAAACEAAAAAALEAAAAAAKEAAAAAAHEAAAAAAMEAAAAAACEAAAAAALEAAAAAAJBAAAAAAJBAAAAAAFBAAAAAALBAAAAAAMBAAAAAAOEAAAAAAMEAAAAAACEAAAAAAJEAAAAAALEAAAAAAGEAAAAAAAEAAAAAADEAAAAAANEAAAAAAGEAAAAAAHEAAAAAAJEAAAAAAMEAAAAAADEAAAAAAGEAAAAAAKEAAAAAAAEAAAAAALEAAAAAAKEAAAAAANEAAAAAANEAAAAAAMEAAAAAANEAAAAAAFEAAAAAAHEAAAAAANEAAAAAADEAAAAAAMEAAAAAAFEAAAAAAMEAAAAAACEAAAAAACEAAAAAAJEAAAAAAAEAAAAAAHEAAAAAAEEAAAAAAGEAAAAAADEAAAAAABEAAAAAANEAAAAAAEEAAAAAACEAAAAAANEAAAAAADEAAAAAANEAAAAAAGEAAAAAAJEAAAAAAMEAAAAAAIEAAAAAAIEAAAAAAEEAAAAAANEAAAAAABEAAAAAAEEAAAAAAAEAAAAAAKEAAAAAAKEAAAAAAJEAAAAAAJEAAAAAABEAAAAAABEAAAAAAFEAAAAAAAEAAAAAANEAAAAAACEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAANEAAAAAAMEAAAAAALEAAAAAAJEAAAAAAHEAAAAAAJEAAAAAACEAAAAAALEAAAAAACEAAAAAABEAAAAAAJEAAAAAAHEAAAAAAHEAAAAAAMEAAAAAABEAAAAAADEAAAAAAGEAAAAAABEAAAAAAKEAAAAAAHEAAAAAABEAAAAAAEEAAAAAAMEAAAAAAA
+ version: 6
+ -7,2:
+ ind: -7,2
+ tiles: EAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAABEAAAAAADEAAAAAANEAAAAAAAEAAAAAAKEAAAAAAHEAAAAAADEAAAAAAFEAAAAAAJEAAAAAABEAAAAAAFEAAAAAALEAAAAAAIEAAAAAAFEAAAAAAGEAAAAAAFEAAAAAALEAAAAAAAEAAAAAACEAAAAAALEAAAAAAEEAAAAAANEAAAAAABEAAAAAAAEAAAAAALEAAAAAANEAAAAAALEAAAAAAIEAAAAAAGEAAAAAAHEAAAAAAMEAAAAAAEEAAAAAANEAAAAAAFEAAAAAAKEAAAAAANEAAAAAANEAAAAAAGEAAAAAAKEAAAAAAIEAAAAAACEAAAAAANEAAAAAACEAAAAAAMEAAAAAACEAAAAAAIEAAAAAAIEAAAAAAKEAAAAAAMEAAAAAAMEAAAAAAKEAAAAAAJEAAAAAAJEAAAAAALEAAAAAALEAAAAAAFEAAAAAAMEAAAAAAFEAAAAAAMEAAAAAABEAAAAAAIEAAAAAAJEAAAAAANEAAAAAAJEAAAAAAMEAAAAAAIEAAAAAAKEAAAAAALEAAAAAAHEAAAAAAFEAAAAAALEAAAAAACEAAAAAAJEAAAAAAAEAAAAAAIEAAAAAABEAAAAAAIEAAAAAANEAAAAAAAEAAAAAAEEAAAAAAKEAAAAAAIEAAAAAALEAAAAAAKEAAAAAAKEAAAAAAAEAAAAAAMEAAAAAAKEAAAAAAFEAAAAAAIEAAAAAADBAAAAAAPEAAAAAACEAAAAAAHEAAAAAALEAAAAAAMEAAAAAAAEAAAAAANEAAAAAABEAAAAAAHEAAAAAACEAAAAAANEAAAAAAIEAAAAAAMEAAAAAAMEAAAAAAIEAAAAAAIBAAAAAAPEAAAAAAAEAAAAAANEAAAAAAGEAAAAAAEEAAAAAAFEAAAAAAGEAAAAAANEAAAAAANEAAAAAACEAAAAAAKEAAAAAAHEAAAAAACEAAAAAAFEAAAAAAIEAAAAAANBAAAAAALEAAAAAAGEAAAAAAEEAAAAAAJEAAAAAADEAAAAAAAEAAAAAAJEAAAAAAMEAAAAAAAEAAAAAABEAAAAAAGEAAAAAAEEAAAAAABEAAAAAALEAAAAAANEAAAAAAIBAAAAAADEAAAAAAJEAAAAAAGEAAAAAACEAAAAAAIEAAAAAAGEAAAAAAEEAAAAAAMEAAAAAAFEAAAAAAGEAAAAAABEAAAAAAAEAAAAAAJEAAAAAALEAAAAAADEAAAAAAGEAAAAAANBAAAAAAMBAAAAAANEAAAAAAFEAAAAAALEAAAAAABEAAAAAAMEAAAAAADEAAAAAAAEAAAAAAKEAAAAAAFEAAAAAAEEAAAAAAFEAAAAAAHEAAAAAAFEAAAAAAKEAAAAAAGFAAAAAAEBAAAAAAKBAAAAAABBAAAAAAOEAAAAAALEAAAAAAEEAAAAAAHEAAAAAABEAAAAAAIEAAAAAAAEAAAAAALEAAAAAANEAAAAAALEAAAAAALEAAAAAAMEAAAAAABDQAAAAAFDQAAAAABBAAAAAAKBAAAAAAIEAAAAAAAEAAAAAANEAAAAAAJEAAAAAAGEAAAAAAEEAAAAAAGEAAAAAANEAAAAAAEEAAAAAAEEAAAAAAHEAAAAAADBAAAAAAPDQAAAAADFAAAAAAFBAAAAAALBAAAAAANEAAAAAAEEAAAAAAEEAAAAAANEAAAAAADEAAAAAAJEAAAAAACEAAAAAAEEAAAAAAEEAAAAAALBAAAAAAHBAAAAAAFBAAAAAAKDwAAAAAEFAAAAAADBAAAAAAHBAAAAAAOEAAAAAAMEAAAAAAAEAAAAAADEAAAAAANEAAAAAAHEAAAAAAJEAAAAAAJEAAAAAAEBAAAAAADBAAAAAADBAAAAAABEAAAAAAHFAAAAAACBAAAAAAEBAAAAAAAEAAAAAAFEAAAAAALEAAAAAAGEAAAAAACEAAAAAAJEAAAAAADEAAAAAALEAAAAAAIBAAAAAAHBAAAAAAPBAAAAAAMEAAAAAAEEAAAAAAF
+ version: 6
+ -6,2:
+ ind: -6,2
+ tiles: EAAAAAAGEAAAAAAAEAAAAAAEEAAAAAAJEAAAAAAKEAAAAAAABAAAAAAHBAAAAAAEBAAAAAAEFAAAAAAAFAAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAAFFAAAAAABEAAAAAAHEAAAAAAIEAAAAAAEEAAAAAAKBAAAAAAOBAAAAAAFBAAAAAAKFAAAAAABFAAAAAABFAAAAAADFAAAAAACFAAAAAABFAAAAAAEFAAAAAACFAAAAAAEFAAAAAABEAAAAAAEEAAAAAAGBAAAAAAPBAAAAAAPBAAAAAAJBAAAAAAOFAAAAAACFAAAAAACFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAABFAAAAAACFAAAAAABEAAAAAAGEAAAAAADBAAAAAADBAAAAAAHFAAAAAACFAAAAAAEFAAAAAABDQAAAAAEDQAAAAAFFAAAAAACFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAAABAAAAAAOBAAAAAAKBAAAAAAGFAAAAAAFFAAAAAAFFAAAAAAFDQAAAAACDQAAAAADFAAAAAAEFAAAAAACFAAAAAADFAAAAAADFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAEBAAAAAAOFAAAAAABFAAAAAAFDQAAAAADDQAAAAADDQAAAAADDQAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAADFAAAAAACFAAAAAABFAAAAAABBAAAAAAJFAAAAAAFFAAAAAAEDQAAAAADDQAAAAAEDQAAAAAEDQAAAAACDQAAAAADFAAAAAADFAAAAAAFFAAAAAABFAAAAAAFFAAAAAACFAAAAAABFAAAAAAEFAAAAAACBAAAAAAEFAAAAAACFAAAAAAADQAAAAAEDQAAAAADDQAAAAAADQAAAAAEDQAAAAABDQAAAAABDQAAAAABDQAAAAABFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAFBAAAAAAKBAAAAAAKFAAAAAABFAAAAAAAFAAAAAAADQAAAAACDQAAAAAADwAAAAADDwAAAAAFDwAAAAAADQAAAAADDQAAAAADFAAAAAAFFAAAAAABFAAAAAAFFAAAAAACBAAAAAAMBAAAAAAMBAAAAAABFAAAAAABFAAAAAAEFAAAAAABDQAAAAAADwAAAAADDwAAAAACDwAAAAAADwAAAAABDwAAAAABDwAAAAAFDQAAAAADDQAAAAADFAAAAAADBAAAAAAIBAAAAAAGBAAAAAAJBAAAAAADBAAAAAAEFAAAAAABFAAAAAAADQAAAAACDwAAAAAADwAAAAAEDQAAAAAEDQAAAAACDwAAAAACDwAAAAADDwAAAAAADwAAAAAABAAAAAAMBAAAAAAHBAAAAAAABAAAAAALBAAAAAAPFAAAAAAFFAAAAAADDQAAAAAADQAAAAACDwAAAAABDwAAAAADDQAAAAAFDwAAAAAEFAAAAAADDwAAAAACDwAAAAAFEAAAAAAKEAAAAAAFBAAAAAAOBAAAAAAIBAAAAAAEFAAAAAACFAAAAAADDQAAAAAFDQAAAAADDQAAAAAEDwAAAAADDwAAAAAEDQAAAAAEFAAAAAABFAAAAAADDQAAAAADEAAAAAAGEAAAAAAJEAAAAAAIBAAAAAAHBAAAAAAOFAAAAAABFAAAAAAAFAAAAAAFDQAAAAACDQAAAAAADwAAAAADDwAAAAAEDwAAAAAAFAAAAAAEFAAAAAADFAAAAAAEEAAAAAAKEAAAAAAJEAAAAAAFEAAAAAALBAAAAAAOBAAAAAACBAAAAAAGFAAAAAAEFAAAAAAADQAAAAAFDQAAAAAFDwAAAAAADwAAAAABFAAAAAABFAAAAAAFFAAAAAAEEAAAAAAMEAAAAAAMEAAAAAAIEAAAAAACBAAAAAAOBAAAAAAHBAAAAAALFAAAAAACFAAAAAAEDQAAAAADDQAAAAAFDQAAAAAEDQAAAAADFAAAAAADFAAAAAAEFAAAAAAB
+ version: 6
+ -5,3:
+ ind: -5,3
+ tiles: FAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAACFAAAAAADFAAAAAABFAAAAAABFAAAAAADFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAAFAAAAAADFAAAAAACFAAAAAAFFAAAAAABFAAAAAACFAAAAAABFAAAAAACFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAACFAAAAAADFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAADQAAAAADFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAABFAAAAAABFAAAAAAFDQAAAAACDQAAAAAEDQAAAAADFAAAAAAFFAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAEFAAAAAABDQAAAAAADQAAAAACDQAAAAADDQAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAADFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAAADQAAAAABDQAAAAABDQAAAAAFDQAAAAAEDQAAAAADDQAAAAABFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAACBAAAAAALBAAAAAADFAAAAAAAFAAAAAAFFAAAAAADDQAAAAABDQAAAAACDQAAAAAADQAAAAACDQAAAAAAFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAAABAAAAAAOBAAAAAAGBAAAAAANBAAAAAAJBAAAAAAFFAAAAAADBAAAAAAMFAAAAAABFAAAAAADFAAAAAABDQAAAAABDQAAAAAEDQAAAAAEDQAAAAADDQAAAAADDQAAAAAFBAAAAAAHBAAAAAAMBAAAAAADBAAAAAAIBAAAAAAEBAAAAAAKBAAAAAANBAAAAAAGBAAAAAAKBAAAAAAPFAAAAAACFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAAEAAAAAAEEAAAAAAEEAAAAAAJEAAAAAAIEAAAAAANEAAAAAACBAAAAAAMBAAAAAAFBAAAAAALBAAAAAAOBAAAAAAIBAAAAAAABAAAAAAMBAAAAAAOBAAAAAANBAAAAAAPEAAAAAAJEAAAAAAHEAAAAAAFEAAAAAAGEAAAAAAMEAAAAAAAEAAAAAAFBAAAAAAABAAAAAAABAAAAAAMBAAAAAAGBAAAAAAJBAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAIBAAAAAAFBAAAAAALBAAAAAAIBAAAAAABBAAAAAAPBAAAAAAIBAAAAAAGBAAAAAAPBAAAAAAPBAAAAAAPBAAAAAAEBAAAAAABBAAAAAAFBAAAAAAJBAAAAAAC
+ version: 6
+ -5,2:
+ ind: -5,2
+ tiles: FAAAAAABFAAAAAABFAAAAAACFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAFFAAAAAACFAAAAAAEDQAAAAAEDQAAAAAADQAAAAACDQAAAAACFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAADDQAAAAAFDQAAAAADDQAAAAACDQAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAADDQAAAAACDQAAAAACFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAABDQAAAAAAFAAAAAABDwAAAAAADQAAAAAAFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAAFAAAAAABDQAAAAACDwAAAAABDwAAAAACFAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAFFAAAAAABFAAAAAABFAAAAAADFAAAAAADFAAAAAAFDQAAAAAADQAAAAABDQAAAAAFDwAAAAADFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAADFAAAAAABDQAAAAADDQAAAAADDQAAAAAFDQAAAAAFDwAAAAAFFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAEDQAAAAAADQAAAAAADQAAAAAADwAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAFDQAAAAAEDQAAAAADDQAAAAAADQAAAAACDwAAAAAEDQAAAAADDwAAAAACDQAAAAACFAAAAAACFAAAAAABFAAAAAAFFAAAAAADDQAAAAABDQAAAAAFDQAAAAAFDQAAAAAEDQAAAAAEDQAAAAAEDQAAAAAAFAAAAAAFDQAAAAABDQAAAAABDQAAAAADDQAAAAABDQAAAAAADQAAAAAADwAAAAAEDQAAAAAFDQAAAAAEDQAAAAABDwAAAAACDQAAAAACFAAAAAAFDwAAAAAFDwAAAAADDwAAAAAFDwAAAAAADwAAAAAFDwAAAAAFDQAAAAACDwAAAAAEDwAAAAACDwAAAAADDwAAAAAFDwAAAAAEDwAAAAADDwAAAAADDwAAAAAADwAAAAAFDQAAAAACDwAAAAABDwAAAAADDwAAAAABDwAAAAAEDwAAAAACDQAAAAABDQAAAAABDQAAAAAEDwAAAAADFAAAAAABDQAAAAAFDwAAAAABDQAAAAAFDQAAAAAADQAAAAABDQAAAAABDwAAAAACDQAAAAAFDQAAAAACDwAAAAAADQAAAAAFDQAAAAABDQAAAAAFFAAAAAADFAAAAAACDQAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAAFFAAAAAACFAAAAAADFAAAAAABDQAAAAAEDQAAAAADDQAAAAABDQAAAAADFAAAAAACFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAAFAAAAAABFAAAAAAEFAAAAAADFAAAAAAEFAAAAAACFAAAAAACFAAAAAACDQAAAAAAFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAD
+ version: 6
+ -5,5:
+ ind: -5,5
+ tiles: FAAAAAAFFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAAEFAAAAAAEFAAAAAADFAAAAAACFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAADFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAACFAAAAAADFAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAAFFAAAAAAEFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAACFAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAAFFAAAAAABFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAABFAAAAAADFAAAAAAEFAAAAAAFFAAAAAABFAAAAAACFAAAAAACFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAABFAAAAAACFAAAAAAEFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAACFAAAAAACFAAAAAADFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAADFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAABFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAFDgAAAAADDgAAAAADDgAAAAACDgAAAAABDgAAAAAADgAAAAAADgAAAAACDgAAAAABDgAAAAACDgAAAAAEDgAAAAAEDgAAAAACFAAAAAAEFAAAAAADDgAAAAABDgAAAAAEDgAAAAABDgAAAAAADgAAAAAEDgAAAAACDgAAAAAADgAAAAACDgAAAAAEDgAAAAACDgAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAACDgAAAAAADgAAAAACDgAAAAABDgAAAAAADgAAAAACDgAAAAAADgAAAAAEDgAAAAACDgAAAAACDgAAAAABDgAAAAAEDgAAAAADDgAAAAABDgAAAAADDgAAAAABDgAAAAAEDgAAAAACDgAAAAACDgAAAAADDgAAAAADDgAAAAABDgAAAAADDgAAAAADDgAAAAACDgAAAAACDgAAAAABDgAAAAADDgAAAAAEDgAAAAACDgAAAAAEDgAAAAAADgAAAAACDgAAAAABDgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAACDgAAAAABDgAAAAAEDgAAAAABDgAAAAAADgAAAAAEDgAAAAACDgAAAAAEDgAAAAACDgAAAAABDgAAAAADDgAAAAAEDgAAAAACDgAAAAACDgAAAAAADgAAAAACDgAAAAADDgAAAAADDgAAAAAEDgAAAAAD
+ version: 6
+ -5,4:
+ ind: -5,4
+ tiles: BAAAAAAJBAAAAAAMBAAAAAAJBAAAAAALBAAAAAADBAAAAAAEBAAAAAAJBAAAAAAEBAAAAAABBAAAAAAIBAAAAAAABAAAAAAJBAAAAAALBAAAAAAGBAAAAAAHBAAAAAAKBAAAAAAPBAAAAAALFAAAAAACFAAAAAACFAAAAAACFAAAAAAFBAAAAAAABAAAAAANBAAAAAAOBAAAAAACBAAAAAAHBAAAAAAJBAAAAAAEBAAAAAAJBAAAAAAGBAAAAAAHFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAADFAAAAAADFAAAAAACFAAAAAABFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAEFAAAAAACFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAAFAAAAAACFAAAAAADFAAAAAAFFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAACFAAAAAAEFAAAAAADFAAAAAAFFAAAAAABFAAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAADFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAACFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAADFAAAAAABFAAAAAAFFAAAAAACFAAAAAADFAAAAAABFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAABFAAAAAABFAAAAAAEFAAAAAADFAAAAAABFAAAAAABFAAAAAADFAAAAAABFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAEFAAAAAADFAAAAAABFAAAAAAFFAAAAAADFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABFAAAAAAFFAAAAAABFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAADFAAAAAAEFAAAAAADFAAAAAAD
+ version: 6
+ -4,5:
+ ind: -4,5
+ tiles: FAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAABFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAAEFAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAADFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAADFAAAAAABFAAAAAABFAAAAAAEFAAAAAABFAAAAAADFAAAAAAEFAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAACFAAAAAABFAAAAAADFAAAAAABFAAAAAACFAAAAAABFAAAAAACFAAAAAABFAAAAAAEFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAADFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABFAAAAAACFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAADFAAAAAAAFAAAAAACFAAAAAABFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAABFAAAAAACFAAAAAADDgAAAAAEDgAAAAABDgAAAAACDgAAAAABDgAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAADFAAAAAACFAAAAAADFAAAAAADFAAAAAAADgAAAAACDgAAAAAADgAAAAAEDgAAAAADDgAAAAACDgAAAAACDgAAAAAEDgAAAAAEDgAAAAAEDgAAAAACDgAAAAAADgAAAAACDgAAAAABDgAAAAADDgAAAAABDgAAAAAEDgAAAAADDgAAAAADDgAAAAADDgAAAAAADgAAAAACDgAAAAACDgAAAAADDgAAAAABDgAAAAAADgAAAAABDgAAAAAEDgAAAAABDgAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAAEDgAAAAABDgAAAAACDgAAAAACDgAAAAABDgAAAAAEDgAAAAADDgAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAABDgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAADDgAAAAAADgAAAAAEDgAAAAAEDgAAAAABDgAAAAADDgAAAAADDgAAAAACDgAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAAB
+ version: 6
+ -4,4:
+ ind: -4,4
+ tiles: BAAAAAAOBAAAAAAPBAAAAAAKBAAAAAAKFAAAAAADFAAAAAABFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAAABAAAAAAJBAAAAAAGBAAAAAAFBAAAAAABFAAAAAADFAAAAAABFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAABFAAAAAACFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAEFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAACFAAAAAAFFAAAAAACFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAACFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAACFAAAAAABFAAAAAAFFAAAAAADFAAAAAACFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAABFAAAAAAEFAAAAAAEFAAAAAABFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFFAAAAAADFAAAAAACFAAAAAABFAAAAAAFFAAAAAABFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAFFAAAAAACFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACFAAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAAEFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAFFAAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAADFAAAAAACFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAEFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAADFAAAAAABFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAAFFAAAAAADFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFFAAAAAADFAAAAAABFAAAAAAF
+ version: 6
+ -3,5:
+ ind: -3,5
+ tiles: FAAAAAAAFAAAAAADFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAEFAAAAAACFAAAAAADFAAAAAACFAAAAAAAFAAAAAAEFAAAAAADFAAAAAACFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAACFAAAAAABFAAAAAADFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAAFFAAAAAACFAAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAEFAAAAAACFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAAEFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAADFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAEFAAAAAACFAAAAAADFAAAAAABFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAEFAAAAAACFAAAAAAFFAAAAAABFAAAAAABFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAAFAAAAAACFAAAAAAEFAAAAAABFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAEDgAAAAABDgAAAAACFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAAFDgAAAAACDgAAAAABDgAAAAADDgAAAAAADgAAAAABDgAAAAABDgAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFDgAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAAADgAAAAAEDgAAAAAEDgAAAAACDgAAAAAAFAAAAAABFAAAAAAAFAAAAAAEDgAAAAAEDgAAAAABDgAAAAABDgAAAAADDgAAAAACDgAAAAACDgAAAAABDgAAAAAADgAAAAABDgAAAAAADgAAAAABDgAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAAEDgAAAAABDgAAAAABDgAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAAADgAAAAACDgAAAAABDgAAAAABDgAAAAACDgAAAAABDgAAAAAEDgAAAAACDgAAAAACDgAAAAAADgAAAAACDgAAAAAEDgAAAAADDgAAAAAEDgAAAAAADgAAAAABDgAAAAAEDgAAAAACDgAAAAABAAAAAAAADgAAAAABDgAAAAADDgAAAAABDgAAAAACDgAAAAAADgAAAAADDgAAAAABDgAAAAABDgAAAAADDgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAABDgAAAAABDgAAAAAADgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -2,5:
+ ind: -2,5
+ tiles: FAAAAAACFAAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAAEFAAAAAADFAAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAACFAAAAAAFFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAADFAAAAAAFFAAAAAAAFAAAAAACFAAAAAACFAAAAAADFAAAAAAEFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAABFAAAAAACFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAADFAAAAAADFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABDgAAAAACDgAAAAAADgAAAAADDgAAAAAEDgAAAAACFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACDgAAAAABDgAAAAACDgAAAAAADgAAAAAEDgAAAAACDgAAAAACDgAAAAAADgAAAAACDgAAAAAAFAAAAAAEFAAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAAEDgAAAAACDgAAAAADDgAAAAAEDgAAAAADDgAAAAACDgAAAAAEDgAAAAAADgAAAAAAFAAAAAAEFAAAAAABFAAAAAACFAAAAAADDgAAAAACDgAAAAACDgAAAAAEDgAAAAADDgAAAAADDgAAAAAEDgAAAAABDgAAAAABDgAAAAABDgAAAAACDgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAAADgAAAAAADgAAAAACDgAAAAAEDgAAAAACDgAAAAAADgAAAAAADgAAAAAEDgAAAAAADgAAAAADDgAAAAAEDgAAAAACDgAAAAAEDgAAAAABDgAAAAACDgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAADDgAAAAAADgAAAAADDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAABDgAAAAAEDgAAAAACDgAAAAADDgAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -2,4:
+ ind: -2,4
+ tiles: DQAAAAAADwAAAAAFDwAAAAAAFAAAAAAEFAAAAAABFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAADQAAAAACDQAAAAACDQAAAAAADwAAAAACFAAAAAABDQAAAAAFFAAAAAAADQAAAAADFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAADQAAAAACDQAAAAABFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAFDwAAAAAAFAAAAAADFAAAAAAADQAAAAAFDQAAAAABDQAAAAAADQAAAAACFAAAAAABFAAAAAADFAAAAAACFAAAAAACDwAAAAAADwAAAAACFAAAAAAAFAAAAAAAFAAAAAABDwAAAAAFDwAAAAAEFAAAAAAFFAAAAAADDQAAAAACDwAAAAACDwAAAAADDQAAAAAFFAAAAAABFAAAAAAEFAAAAAABFAAAAAAFDwAAAAAFDwAAAAACFAAAAAAEFAAAAAADDQAAAAAEDwAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAADDQAAAAADDwAAAAAADwAAAAAEDQAAAAAEFAAAAAAAFAAAAAABFAAAAAABDwAAAAACDwAAAAABFAAAAAAAFAAAAAABFAAAAAACBAAAAAAOBAAAAAABBAAAAAALFAAAAAADFAAAAAAFDQAAAAADDwAAAAABDQAAAAADFAAAAAADDQAAAAAEFAAAAAABDQAAAAAADwAAAAAEDwAAAAAADQAAAAABDQAAAAADBAAAAAAOBAAAAAAJBAAAAAAKBAAAAAADBAAAAAAABAAAAAAHFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAAEBAAAAAABBAAAAAAIBAAAAAAOBAAAAAAABAAAAAADBAAAAAAIBAAAAAAEBAAAAAALFAAAAAAAFAAAAAACFAAAAAABFAAAAAADDQAAAAAFDQAAAAADDQAAAAACFAAAAAAABAAAAAAMBAAAAAALBAAAAAACBAAAAAAIBAAAAAAEBAAAAAAJBAAAAAAIBAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAADQAAAAACDQAAAAADDQAAAAAFFAAAAAABFAAAAAACBAAAAAANBAAAAAAOBAAAAAAJBAAAAAAJBAAAAAAHBAAAAAAEBAAAAAADBAAAAAACBAAAAAAKFAAAAAAFFAAAAAACBAAAAAAFFAAAAAACDQAAAAABFAAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAABBAAAAAAMBAAAAAAPBAAAAAAMBAAAAAAMBAAAAAAMBAAAAAAMBAAAAAAGBAAAAAAMFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAAFAAAAAABFAAAAAADFAAAAAADBAAAAAAGBAAAAAAGBAAAAAACBAAAAAAABAAAAAADBAAAAAAFBAAAAAALBAAAAAABFAAAAAAEFAAAAAABFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAAFFAAAAAAFBAAAAAAHBAAAAAAHBAAAAAAMBAAAAAAKBAAAAAANBAAAAAAIBAAAAAACFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAAFAAAAAABBAAAAAAABAAAAAAABAAAAAAHBAAAAAAHBAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAAFFAAAAAABBAAAAAAIBAAAAAAOBAAAAAAMFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAA
+ version: 6
+ -3,4:
+ ind: -3,4
+ tiles: BAAAAAAPBAAAAAALBAAAAAAKBAAAAAANBAAAAAAOBAAAAAAOBAAAAAAJBAAAAAANBAAAAAACBAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAABDQAAAAADDQAAAAAEFAAAAAABFAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAIBAAAAAADBAAAAAAOBAAAAAACBAAAAAAIFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAFFAAAAAADFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAABAAAAAABBAAAAAALBAAAAAADBAAAAAADBAAAAAAEBAAAAAACBAAAAAAOBAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAABBAAAAAAFBAAAAAADBAAAAAAABAAAAAAGBAAAAAAJBAAAAAAPBAAAAAACBAAAAAALFAAAAAAAFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAABAAAAAAJBAAAAAAMBAAAAAAFBAAAAAAEBAAAAAAEBAAAAAAGBAAAAAAJFAAAAAABFAAAAAADFAAAAAACFAAAAAAFFAAAAAADFAAAAAABFAAAAAAEFAAAAAACFAAAAAADFAAAAAAAFAAAAAAEBAAAAAAOBAAAAAAGBAAAAAAHBAAAAAAHBAAAAAAGFAAAAAADFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAABBAAAAAAFBAAAAAAOBAAAAAAIBAAAAAAKFAAAAAAAFAAAAAABFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAFBAAAAAALBAAAAAAJFAAAAAAAFAAAAAABFAAAAAAFFAAAAAACFAAAAAAEFAAAAAABFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABFAAAAAABFAAAAAADFAAAAAAFFAAAAAABBAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAABFAAAAAADFAAAAAAEFAAAAAAFFAAAAAADFAAAAAADFAAAAAABFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAABFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAABFAAAAAAFFAAAAAABFAAAAAABFAAAAAADFAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAAEFAAAAAABFAAAAAACFAAAAAADFAAAAAAAFAAAAAAFFAAAAAACFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAAFAAAAAABFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAADFAAAAAAFFAAAAAAEFAAAAAACFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABFAAAAAABFAAAAAAFFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAA
+ version: 6
+ -4,3:
+ ind: -4,3
+ tiles: FAAAAAAAFAAAAAACFAAAAAADDQAAAAAFDQAAAAADDQAAAAACFAAAAAABDQAAAAAEDwAAAAADDQAAAAACFAAAAAAFDwAAAAACDQAAAAACDwAAAAAEDwAAAAABDQAAAAABFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAADQAAAAAFDwAAAAAEDQAAAAAAFAAAAAABDwAAAAADDwAAAAADFAAAAAAFDQAAAAAFDQAAAAADDQAAAAABDwAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAAFDQAAAAACFAAAAAABFAAAAAAFDQAAAAAEDQAAAAAFDwAAAAAFFAAAAAABDQAAAAAEFAAAAAAADwAAAAAEDQAAAAAFDwAAAAABDwAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAADFAAAAAACDQAAAAACFAAAAAAFDQAAAAAADQAAAAABDQAAAAAADQAAAAABDwAAAAAFDwAAAAABDQAAAAACDwAAAAAEDwAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAEDQAAAAACDwAAAAADDwAAAAAFDQAAAAADDQAAAAAFDwAAAAAFDwAAAAADDwAAAAACDwAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABDQAAAAAAFAAAAAACDQAAAAAFDQAAAAAEDwAAAAAEDwAAAAACFAAAAAAADQAAAAABFAAAAAAFDQAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAFDQAAAAAEDQAAAAAEDQAAAAACFAAAAAAADQAAAAABDQAAAAAADQAAAAACFAAAAAAFDQAAAAABDQAAAAAADQAAAAAEFAAAAAAFFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAABDQAAAAADDQAAAAACDQAAAAADDQAAAAAFFAAAAAADFAAAAAABFAAAAAAAFAAAAAAEDQAAAAABDQAAAAADFAAAAAADFAAAAAADFAAAAAAEFAAAAAABDQAAAAABDQAAAAAEFAAAAAAFFAAAAAAADQAAAAAEDQAAAAACDQAAAAAEFAAAAAAEFAAAAAACFAAAAAABFAAAAAADFAAAAAAEFAAAAAADFAAAAAABFAAAAAACDQAAAAAEDQAAAAABDQAAAAAEDQAAAAAEDQAAAAABDQAAAAACDQAAAAABDQAAAAAADQAAAAAFDQAAAAADFAAAAAACDQAAAAAEFAAAAAAFDQAAAAACDQAAAAAADQAAAAAEDQAAAAAADQAAAAABDQAAAAAFDQAAAAAAFAAAAAACDQAAAAABFAAAAAACFAAAAAACFAAAAAABFAAAAAACFAAAAAADFAAAAAABDQAAAAAFDQAAAAAFDQAAAAABDQAAAAAADQAAAAAADQAAAAADDQAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFBAAAAAACBAAAAAABBAAAAAAKBAAAAAAEBAAAAAADBAAAAAAOBAAAAAAKBAAAAAALBAAAAAADBAAAAAALBAAAAAABBAAAAAAIBAAAAAAHBAAAAAAIBAAAAAALBAAAAAALBAAAAAAHBAAAAAACBAAAAAAOBAAAAAAABAAAAAACBAAAAAAKBAAAAAAGBAAAAAAKBAAAAAACBAAAAAAJBAAAAAAFBAAAAAAJBAAAAAAFBAAAAAAHBAAAAAALBAAAAAALBAAAAAAKBAAAAAAEBAAAAAABBAAAAAANBAAAAAAPBAAAAAAEBAAAAAAABAAAAAANBAAAAAAKBAAAAAAOBAAAAAALBAAAAAAKBAAAAAAKBAAAAAAOBAAAAAAFBAAAAAAPBAAAAAACBAAAAAAEBAAAAAADBAAAAAAMBAAAAAAIBAAAAAAABAAAAAAABAAAAAANBAAAAAANBAAAAAAPBAAAAAAFBAAAAAAK
+ version: 6
+ -3,3:
+ ind: -3,3
+ tiles: DwAAAAABDQAAAAACDwAAAAAFDQAAAAABDQAAAAACDwAAAAAADwAAAAAEDwAAAAAADwAAAAABDQAAAAAADQAAAAAEDQAAAAAEDQAAAAABFAAAAAAEFAAAAAAAFAAAAAABDwAAAAADFAAAAAAEFAAAAAADDQAAAAAFDwAAAAAFFAAAAAAEDwAAAAAFDwAAAAAEDwAAAAABDwAAAAAFDQAAAAACDQAAAAAEDQAAAAACDQAAAAAEDQAAAAAFFAAAAAACDQAAAAAAFAAAAAABFAAAAAADDwAAAAADDwAAAAADDwAAAAABDwAAAAAFDQAAAAADDwAAAAADDwAAAAABDwAAAAAADwAAAAABDwAAAAADDQAAAAACDQAAAAAADQAAAAACDwAAAAAFDQAAAAAFDwAAAAABDwAAAAAADwAAAAACDQAAAAACFAAAAAAEDwAAAAABDwAAAAABDwAAAAAADwAAAAAEDwAAAAACDwAAAAAEDwAAAAAFDwAAAAAEDQAAAAAEDwAAAAABDwAAAAAFDwAAAAAADQAAAAAEDQAAAAAEFAAAAAADFAAAAAACDQAAAAAADQAAAAADFAAAAAAADwAAAAAADwAAAAAADQAAAAADFAAAAAABDwAAAAAADQAAAAABDQAAAAACDQAAAAAEFAAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAAFFAAAAAACFAAAAAAEFAAAAAADDQAAAAACFAAAAAAEFAAAAAAFDQAAAAAFDQAAAAAFFAAAAAAFDQAAAAAEDQAAAAAEDQAAAAAFFAAAAAAAFAAAAAABFAAAAAABFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAADQAAAAAEDQAAAAAFFAAAAAAAFAAAAAAEDQAAAAAADQAAAAABDQAAAAAEFAAAAAADFAAAAAACFAAAAAABFAAAAAAEFAAAAAAEDQAAAAAADQAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAAFAAAAAACFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEDQAAAAAEDQAAAAAAFAAAAAABDQAAAAAFDQAAAAABFAAAAAAFFAAAAAACFAAAAAADFAAAAAAADQAAAAACFAAAAAADDQAAAAACFAAAAAAEDQAAAAAEFAAAAAADFAAAAAADDQAAAAADFAAAAAACDQAAAAADFAAAAAADFAAAAAABFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAFDQAAAAAEDQAAAAAFFAAAAAACFAAAAAAAFAAAAAABDQAAAAAEFAAAAAABDQAAAAACFAAAAAADFAAAAAAFDQAAAAAADQAAAAAFFAAAAAACFAAAAAABFAAAAAAEFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFDQAAAAAAFAAAAAACDQAAAAADFAAAAAAFFAAAAAADDQAAAAAEDQAAAAACFAAAAAACFAAAAAACBAAAAAAHBAAAAAAFFAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAACFAAAAAADFAAAAAAEFAAAAAAADQAAAAACFAAAAAAFFAAAAAADFAAAAAADFAAAAAADDQAAAAABBAAAAAALBAAAAAAFBAAAAAANBAAAAAALFAAAAAAEFAAAAAAFFAAAAAADFAAAAAABFAAAAAACDQAAAAACDQAAAAAFFAAAAAAFFAAAAAAEDQAAAAABDQAAAAADDwAAAAABBAAAAAABBAAAAAAFBAAAAAACBAAAAAADBAAAAAAFBAAAAAAFBAAAAAAFFAAAAAADFAAAAAACFAAAAAAEFAAAAAAFFAAAAAADFAAAAAACFAAAAAADFAAAAAABDQAAAAAEBAAAAAAGBAAAAAAGBAAAAAADBAAAAAADBAAAAAAOBAAAAAAHBAAAAAAKBAAAAAACBAAAAAAGFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAADQAAAAAEFAAAAAAEFAAAAAAB
+ version: 6
+ -2,3:
+ ind: -2,3
+ tiles: FAAAAAADBAAAAAANBAAAAAAFBAAAAAAOBAAAAAADBAAAAAACFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAADFAAAAAADFAAAAAAEFAAAAAACBAAAAAAFBAAAAAAABAAAAAALBAAAAAALBAAAAAAGFAAAAAAEFAAAAAADFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAADBAAAAAABBAAAAAAIBAAAAAACBAAAAAAMBAAAAAABFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAABDQAAAAABDQAAAAABDQAAAAACFAAAAAADBAAAAAAHBAAAAAAJBAAAAAAKBAAAAAANBAAAAAAGFAAAAAADFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAADQAAAAAAFAAAAAAEDQAAAAADFAAAAAAFFAAAAAABFAAAAAAFBAAAAAAHBAAAAAAIBAAAAAAFBAAAAAAEBAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAADQAAAAABFAAAAAAEFAAAAAAADQAAAAAEFAAAAAACFAAAAAACFAAAAAABBAAAAAAKBAAAAAAEBAAAAAAHBAAAAAALBAAAAAANBAAAAAAIFAAAAAAAFAAAAAACFAAAAAACFAAAAAADFAAAAAADDQAAAAABFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAADBAAAAAAJBAAAAAAPBAAAAAAGBAAAAAAABAAAAAADBAAAAAAEFAAAAAAFFAAAAAABDQAAAAADDQAAAAAEDQAAAAACDQAAAAAEDQAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAABBAAAAAAEBAAAAAALBAAAAAAHBAAAAAAFBAAAAAALBAAAAAAMFAAAAAABFAAAAAACDQAAAAACDwAAAAACDQAAAAAFDQAAAAAFFAAAAAAADQAAAAADFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAABAAAAAADBAAAAAAMFAAAAAADDQAAAAAFDQAAAAAAFAAAAAAFDwAAAAAEFAAAAAAFFAAAAAABDQAAAAAEDQAAAAADFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAADQAAAAADDQAAAAAEDwAAAAAEDwAAAAABFAAAAAABFAAAAAADFAAAAAAEFAAAAAADDQAAAAAEDQAAAAAFFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEDwAAAAACDwAAAAAAFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAEDQAAAAACFAAAAAACDQAAAAAEDQAAAAAEDQAAAAAEFAAAAAADFAAAAAAEFAAAAAACFAAAAAADFAAAAAACDQAAAAAEDQAAAAACDwAAAAAEDwAAAAABFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAABDQAAAAADDQAAAAAEDwAAAAACDQAAAAACFAAAAAAAFAAAAAADFAAAAAADFAAAAAACDQAAAAADFAAAAAAFDQAAAAAEDQAAAAACFAAAAAAEFAAAAAABFAAAAAABFAAAAAACFAAAAAABFAAAAAAADwAAAAACDwAAAAACDQAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAAADQAAAAAEDQAAAAAEDQAAAAAFFAAAAAABFAAAAAAADQAAAAAEFAAAAAADDQAAAAADFAAAAAABDwAAAAAFDQAAAAAAFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAEDQAAAAADDQAAAAACDQAAAAACDwAAAAACDwAAAAADDwAAAAAA
+ version: 6
+ -1,3:
+ ind: -1,3
+ tiles: FAAAAAAFFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAFFAAAAAABFAAAAAABFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADFAAAAAADFAAAAAAFFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAAEFAAAAAABFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAABFAAAAAABFAAAAAABFAAAAAAFFAAAAAAFFAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAAFFAAAAAAFFAAAAAADFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAABFAAAAAAEFAAAAAABFAAAAAABFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAADFAAAAAAFFAAAAAACFAAAAAACFAAAAAAEBAAAAAANBAAAAAACBAAAAAALBAAAAAADFAAAAAAFFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAABBAAAAAAJBAAAAAAPBAAAAAAJBAAAAAAGBAAAAAAOBAAAAAAEBAAAAAAIBAAAAAACBAAAAAAMFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAADFAAAAAABFAAAAAAFFAAAAAADBAAAAAAIBAAAAAAJBAAAAAAFBAAAAAAFBAAAAAAMBAAAAAALBAAAAAAKBAAAAAAGBAAAAAANBAAAAAAMFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAFBAAAAAANBAAAAAACBAAAAAACBAAAAAAGBAAAAAAEBAAAAAAIBAAAAAAAFAAAAAAAFAAAAAADFAAAAAAEDQAAAAADDQAAAAAADQAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAABAAAAAADBAAAAAAGBAAAAAAMBAAAAAAEBAAAAAAHBAAAAAAIBAAAAAAABAAAAAAKBAAAAAAHDwAAAAACDwAAAAABDwAAAAACDQAAAAAFDQAAAAAFDQAAAAACFAAAAAAEFAAAAAAAFAAAAAADBAAAAAAABAAAAAAPBAAAAAAIBAAAAAAFBAAAAAAABAAAAAAJBAAAAAAHFAAAAAACDQAAAAAEDQAAAAAFDQAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAAEFAAAAAACBAAAAAAFBAAAAAAOBAAAAAAABAAAAAAPBAAAAAAFBAAAAAAMBAAAAAALDwAAAAADFAAAAAABFAAAAAABFAAAAAAEFAAAAAADFAAAAAADFAAAAAABFAAAAAAFFAAAAAADBAAAAAADBAAAAAANBAAAAAAJBAAAAAAKBAAAAAALBAAAAAAFBAAAAAAMDwAAAAAEDQAAAAABFAAAAAABFAAAAAACFAAAAAAEFAAAAAABFAAAAAABFAAAAAACFAAAAAAEBAAAAAAOBAAAAAAKBAAAAAAGFAAAAAADBAAAAAAABAAAAAAHBAAAAAAL
+ version: 6
+ 0,3:
+ ind: 0,3
+ tiles: FAAAAAAAFAAAAAABFAAAAAAFFAAAAAACFAAAAAADFAAAAAAFFAAAAAADFAAAAAACFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAFFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAACFAAAAAACFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAAFFAAAAAACFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAABFAAAAAADFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAEFAAAAAADFAAAAAAEFAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAADFAAAAAABFAAAAAACFAAAAAAFFAAAAAACFAAAAAADFAAAAAADFAAAAAADFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAACFAAAAAACFAAAAAAAFAAAAAACFAAAAAAFFAAAAAABFAAAAAADFAAAAAAEBAAAAAAJBAAAAAACBAAAAAAPBAAAAAAABAAAAAACBAAAAAAMBAAAAAANBAAAAAAEBAAAAAAOFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACBAAAAAAIBAAAAAABBAAAAAAFBAAAAAAEBAAAAAAJBAAAAAANBAAAAAAMBAAAAAADBAAAAAAHBAAAAAAABAAAAAAABAAAAAAIBAAAAAAGBAAAAAAKBAAAAAALBAAAAAAPBAAAAAAFBAAAAAAFBAAAAAAABAAAAAAFBAAAAAAEBAAAAAAJBAAAAAANBAAAAAACBAAAAAABBAAAAAAFBAAAAAALBAAAAAAPBAAAAAAPBAAAAAAABAAAAAAMBAAAAAAPBAAAAAAHBAAAAAAOBAAAAAAOBAAAAAAFBAAAAAACBAAAAAAMBAAAAAAABAAAAAAABAAAAAADBAAAAAAHBAAAAAAMBAAAAAAPBAAAAAAPBAAAAAAABAAAAAAPBAAAAAAMBAAAAAADBAAAAAAKBAAAAAAONQAAAAAANQAAAAAANQAAAAAABAAAAAAJBAAAAAABBAAAAAACBAAAAAAIFAAAAAACBAAAAAAKBAAAAAANBAAAAAAOBAAAAAAFBAAAAAAG
+ version: 6
+ 1,3:
+ ind: 1,3
+ tiles: FAAAAAABFAAAAAACFAAAAAADFAAAAAAEFAAAAAADFAAAAAACFAAAAAAEFAAAAAADFAAAAAAAFAAAAAACFAAAAAAFFAAAAAADFAAAAAABFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAAEFAAAAAACFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAACFAAAAAACFAAAAAADFAAAAAADFAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAAFAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAACFAAAAAADFAAAAAABFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAACFAAAAAACFAAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAAAFAAAAAACFAAAAAAEFAAAAAADFAAAAAACFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAACFAAAAAADFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAACFAAAAAAEFAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAFFAAAAAADFAAAAAADFAAAAAACFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAACFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAAEFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAABFAAAAAACFAAAAAABBAAAAAAEFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAFFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAADFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAEBAAAAAALBAAAAAAKBAAAAAAMBAAAAAAGBAAAAAAGFAAAAAADFAAAAAACFAAAAAABFAAAAAAEFAAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAAEFAAAAAADBAAAAAABBAAAAAALBAAAAAAEBAAAAAAIBAAAAAAOBAAAAAACBAAAAAACFAAAAAAFFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAABAAAAAANBAAAAAAKBAAAAAAOBAAAAAAFBAAAAAAFBAAAAAAOBAAAAAAABAAAAAAKFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAAEFAAAAAAF
+ version: 6
+ -1,5:
+ ind: -1,5
+ tiles: FAAAAAAEFAAAAAAAFAAAAAAEBAAAAAAJBAAAAAAKBAAAAAAIBAAAAAAKBAAAAAAGBAAAAAAOBAAAAAAGBAAAAAANBAAAAAABBAAAAAAMBAAAAAAIBAAAAAAFBAAAAAANFAAAAAADFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAADBAAAAAACBAAAAAAFBAAAAAABBAAAAAAKBAAAAAACBAAAAAAHBAAAAAAPBAAAAAALBAAAAAAJFAAAAAADFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAADFAAAAAABFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAEBAAAAAAMBAAAAAALBAAAAAAHFAAAAAACFAAAAAACFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAEFAAAAAADFAAAAAACFAAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAADFAAAAAADFAAAAAABFAAAAAACFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAABFAAAAAABFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAAFFAAAAAABFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADFAAAAAACFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAADFAAAAAABFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAABFAAAAAACFAAAAAAAFAAAAAACFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAAAFAAAAAADFAAAAAAEFAAAAAACFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAADDgAAAAABDgAAAAADFAAAAAABFAAAAAACFAAAAAACFAAAAAAEFAAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAADDgAAAAAADgAAAAADDgAAAAAEDgAAAAAAFAAAAAAFFAAAAAAFFAAAAAACFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAACDgAAAAADDgAAAAAEDgAAAAACDgAAAAACDgAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAACFAAAAAACDgAAAAABDgAAAAABDgAAAAACDgAAAAAADgAAAAAEDgAAAAACDgAAAAADDgAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAACDgAAAAADDgAAAAAADgAAAAAADgAAAAABDgAAAAAADgAAAAAEDgAAAAAADgAAAAADDgAAAAAEDgAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAAFFAAAAAAFFAAAAAACAAAAAAAAAAAAAAAADgAAAAABDgAAAAABDgAAAAAADgAAAAAADgAAAAAEDgAAAAADDgAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAABFAAAAAAFFAAAAAACFAAAAAAC
+ version: 6
+ 0,5:
+ ind: 0,5
+ tiles: BAAAAAABBAAAAAAFBAAAAAANBAAAAAAGBAAAAAAOBAAAAAAEBAAAAAAJBAAAAAAKBAAAAAAGBAAAAAACBAAAAAAHBAAAAAADBAAAAAABBAAAAAAIBAAAAAANBAAAAAANBAAAAAAKBAAAAAAPBAAAAAAJBAAAAAAMBAAAAAADBAAAAAAPBAAAAAACBAAAAAAKBAAAAAACBAAAAAAGBAAAAAAJBAAAAAALBAAAAAAKBAAAAAABBAAAAAAOBAAAAAAABAAAAAAEBAAAAAAEBAAAAAABBAAAAAALBAAAAAADBAAAAAAOBAAAAAAMBAAAAAAKBAAAAAAKBAAAAAAGBAAAAAAHBAAAAAANBAAAAAAABAAAAAABBAAAAAADBAAAAAAHFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEBAAAAAAJFAAAAAAEFAAAAAAFFAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAAFFAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAFFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAAAFAAAAAADFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFFAAAAAACFAAAAAADFAAAAAADFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAABFAAAAAADFAAAAAABFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAEFAAAAAABFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAACFAAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAADFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAEFAAAAAADFAAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAADFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAABFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAC
+ version: 6
+ 0,6:
+ ind: 0,6
+ tiles: FAAAAAACFAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAADFAAAAAAEFAAAAAACFAAAAAADFAAAAAAAFAAAAAADFAAAAAAEFAAAAAABDgAAAAAEDgAAAAAADgAAAAAEFAAAAAAEFAAAAAABFAAAAAACFAAAAAADFAAAAAABFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADDgAAAAAEDgAAAAAEDgAAAAAADgAAAAACDgAAAAADFAAAAAAAFAAAAAADFAAAAAAFFAAAAAABFAAAAAAFFAAAAAABFAAAAAADFAAAAAAAFAAAAAAEFAAAAAACFAAAAAACDgAAAAAEDgAAAAAEDgAAAAACDgAAAAADDgAAAAABDgAAAAAADgAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAABFAAAAAAFFAAAAAACFAAAAAADFAAAAAAEFAAAAAABAAAAAAAAAAAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAADDgAAAAAADgAAAAACDgAAAAAEDgAAAAAAFAAAAAACFAAAAAAEFAAAAAADFAAAAAACFAAAAAAAFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEDgAAAAAEDgAAAAADDgAAAAAADgAAAAACFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAACDgAAAAABDgAAAAACDgAAAAAADgAAAAAEDgAAAAAAFAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAADgAAAAAEDgAAAAACDgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEDgAAAAACDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,6:
+ ind: 1,6
+ tiles: FAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAEFAAAAAACFAAAAAAFFAAAAAABFAAAAAACFAAAAAADFAAAAAAEFAAAAAAEFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAABFAAAAAACFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAACFAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAABFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAABFAAAAAACFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFFAAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAADgAAAAACFAAAAAAFFAAAAAADFAAAAAABFAAAAAABFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAABFAAAAAAEFAAAAAACFAAAAAAFFAAAAAADFAAAAAADFAAAAAAEDgAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAADFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAABFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAEDgAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAAEFAAAAAABFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAADFAAAAAABDgAAAAAADgAAAAADFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAFFAAAAAACFAAAAAACFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAEFAAAAAADFAAAAAACFAAAAAAADgAAAAAADgAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAACFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABFAAAAAAEFAAAAAABDgAAAAACDgAAAAADDgAAAAABFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAEFAAAAAABFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAADFAAAAAACFAAAAAAFFAAAAAABDgAAAAACDgAAAAAADgAAAAAADgAAAAAAFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAEFAAAAAADFAAAAAAFDgAAAAADDgAAAAACDgAAAAADDgAAAAABDgAAAAAEDgAAAAAADgAAAAAEFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAEAAAAAAAADgAAAAABDgAAAAAADgAAAAAEDgAAAAABDgAAAAAEDgAAAAABFAAAAAACFAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAAC
+ version: 6
+ 1,5:
+ ind: 1,5
+ tiles: BAAAAAADFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAACFAAAAAABBAAAAAAOBAAAAAABBAAAAAANBAAAAAACBAAAAAALBAAAAAAOBAAAAAANBAAAAAACFAAAAAABBAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAEFAAAAAADBAAAAAAPBAAAAAAPBAAAAAAEBAAAAAACBAAAAAAABAAAAAAOBAAAAAAJBAAAAAANBAAAAAAFBAAAAAAOBAAAAAAKBAAAAAAIBAAAAAAOFAAAAAAAFAAAAAAAFAAAAAAFBAAAAAAHBAAAAAAHBAAAAAAFBAAAAAALBAAAAAAOBAAAAAAJBAAAAAAHBAAAAAAMBAAAAAANBAAAAAAKBAAAAAADBAAAAAAPBAAAAAAMBAAAAAAFBAAAAAACBAAAAAAMFAAAAAACFAAAAAACFAAAAAAFFAAAAAABFAAAAAABBAAAAAALBAAAAAAABAAAAAAEBAAAAAAOBAAAAAAABAAAAAAOBAAAAAAGBAAAAAACBAAAAAAPBAAAAAAMBAAAAAAKFAAAAAAFFAAAAAAFFAAAAAADFAAAAAADFAAAAAAFFAAAAAAAFAAAAAADFAAAAAACFAAAAAAABAAAAAAHBAAAAAACBAAAAAAABAAAAAADBAAAAAAIBAAAAAAFBAAAAAAKFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAADFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAABFAAAAAAEFAAAAAACFAAAAAAFFAAAAAADFAAAAAABFAAAAAAEFAAAAAADFAAAAAABFAAAAAACFAAAAAADFAAAAAABFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAEFAAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAACFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAFFAAAAAACFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAEFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAFFAAAAAABFAAAAAAAFAAAAAADFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAFFAAAAAACFAAAAAADFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAA
+ version: 6
+ 0,4:
+ ind: 0,4
+ tiles: FAAAAAADFAAAAAAABAAAAAAONQAAAAAANQAAAAAANQAAAAAABAAAAAAGBAAAAAAKBAAAAAAHBAAAAAAJFAAAAAAABAAAAAALBAAAAAACBAAAAAALBAAAAAACBAAAAAAOBAAAAAAOBAAAAAAMAgAAAAANAgAAAAALEwAAAAAAAgAAAAALAgAAAAAEAgAAAAAIAgAAAAABAgAAAAAAAgAAAAADAgAAAAAFAgAAAAAIAgAAAAAEBAAAAAAGFAAAAAACFAAAAAACFAAAAAAAAgAAAAAGFgAAAAAAFgAAAAADFgAAAAABAgAAAAAFGQAAAAABGQAAAAACBAAAAAAKBAAAAAADBAAAAAAPBAAAAAAIAgAAAAAABAAAAAAMFAAAAAACFAAAAAAFFAAAAAADAgAAAAAMFwAAAAACFgAAAAAAFgAAAAADAgAAAAAJGQAAAAAAGQAAAAACGQAAAAAAEAAAAAAFBAAAAAAIBAAAAAACAgAAAAAJBAAAAAACFAAAAAAEAgAAAAAKAgAAAAAKAgAAAAADFwAAAAABFgAAAAACFgAAAAABAgAAAAAFEAAAAAALGQAAAAACGQAAAAADGQAAAAABGQAAAAABBAAAAAAAAgAAAAANFAAAAAAAFAAAAAACFgAAAAADFgAAAAABAgAAAAACFwAAAAABFwAAAAABFgAAAAADAgAAAAAEEAAAAAAGEAAAAAAKEAAAAAAFEAAAAAANBAAAAAAMBAAAAAAPAgAAAAAGFAAAAAAFFAAAAAAAFgAAAAAAFgAAAAABAgAAAAAGFgAAAAADFwAAAAACFgAAAAABAgAAAAAHEAAAAAAKBAAAAAAEBAAAAAAABAAAAAALBAAAAAAOBAAAAAACAgAAAAAGFAAAAAAAFAAAAAABFwAAAAACFgAAAAAAEwAAAAABFgAAAAADFwAAAAACFgAAAAADAgAAAAAFGQAAAAACEAAAAAAHBAAAAAABEAAAAAALEAAAAAACBAAAAAAGAgAAAAAIFAAAAAADFAAAAAADFwAAAAADFgAAAAACAgAAAAAEFgAAAAABFgAAAAABFgAAAAADAgAAAAAJGQAAAAABGQAAAAACEAAAAAABEAAAAAABBAAAAAADBAAAAAANAgAAAAAAFAAAAAAEFAAAAAACFgAAAAAAFgAAAAACAgAAAAANAgAAAAAGAgAAAAAJFgAAAAACAgAAAAAGGQAAAAACGQAAAAACGQAAAAABGQAAAAAAGQAAAAADGQAAAAABAgAAAAADBAAAAAABFAAAAAABAgAAAAADAgAAAAAIAgAAAAACAgAAAAAGAgAAAAAEGAAAAAABAgAAAAAAAgAAAAAEAgAAAAAEEwAAAAAAAgAAAAACBAAAAAABAgAAAAABAgAAAAANBAAAAAADFAAAAAAEFAAAAAAFBAAAAAABBAAAAAAMBAAAAAAHAgAAAAAHFgAAAAABFgAAAAABFwAAAAADFgAAAAADFgAAAAABFgAAAAABBAAAAAADEAAAAAALBAAAAAANBAAAAAAAFAAAAAABBAAAAAABBAAAAAAIBAAAAAANBAAAAAABEwAAAAABFgAAAAAAFwAAAAABFwAAAAACFgAAAAADFwAAAAAAFwAAAAADAgAAAAAMBAAAAAALFAAAAAADFAAAAAAAFAAAAAAABAAAAAAGBAAAAAACFAAAAAABFAAAAAAFAgAAAAANFgAAAAAAFgAAAAABFwAAAAACFwAAAAABFwAAAAABFgAAAAADAgAAAAABFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAACAgAAAAAFAgAAAAAFAgAAAAAKAgAAAAAMAgAAAAAMAgAAAAALAgAAAAADAgAAAAAFFAAAAAACFAAAAAADFAAAAAADFAAAAAACBAAAAAABBAAAAAAHFAAAAAABFAAAAAADFAAAAAAFFAAAAAACFAAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAAAFAAAAAABFAAAAAAD
+ version: 6
+ 1,4:
+ ind: 1,4
+ tiles: BAAAAAAPBAAAAAADBAAAAAAFBAAAAAABFAAAAAACFAAAAAABBAAAAAAMBAAAAAANBAAAAAAGBAAAAAAIBAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAFBAAAAAAEFAAAAAACFAAAAAABFAAAAAABFAAAAAADBAAAAAABFAAAAAADBAAAAAAABAAAAAAABAAAAAAKBAAAAAACBAAAAAAABAAAAAAHBAAAAAAGFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADBAAAAAAGFAAAAAAFFAAAAAAAFAAAAAAEBAAAAAABFAAAAAAFFAAAAAAFBAAAAAALBAAAAAAGBAAAAAADBAAAAAAFBAAAAAAPFAAAAAAFFAAAAAACFAAAAAACFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAAEBAAAAAAJFAAAAAADFAAAAAADBAAAAAADBAAAAAAABAAAAAAHFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAADFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAADFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAACFAAAAAACBAAAAAAIFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAABFAAAAAABFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAADFAAAAAABFAAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAADFAAAAAACFAAAAAAEFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAABFAAAAAAEFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAFFAAAAAABFAAAAAABFAAAAAAEFAAAAAABFAAAAAAFFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAACFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAACFAAAAAAFFAAAAAACFAAAAAAAFAAAAAABFAAAAAADFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAFFAAAAAACFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAABFAAAAAADFAAAAAAFFAAAAAABFAAAAAACFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAEFAAAAAABFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAACFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAEFAAAAAADFAAAAAABFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAB
+ version: 6
+ -1,4:
+ ind: -1,4
+ tiles: DwAAAAAFDQAAAAAFDQAAAAACFAAAAAADBAAAAAADBAAAAAANBAAAAAACBAAAAAAOBAAAAAAOBAAAAAABBAAAAAANBAAAAAAJFAAAAAAFFAAAAAACFAAAAAAAFAAAAAABDwAAAAABFAAAAAAFFAAAAAAAFAAAAAADBAAAAAANBAAAAAAKBAAAAAANBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAANBAAAAAAABAAAAAACBAAAAAACDwAAAAADFAAAAAAEFAAAAAAFFAAAAAAEAgAAAAABAgAAAAAJNQAAAAAAAgAAAAAKEAAAAAAIEAAAAAANEAAAAAAMBAAAAAAEBAAAAAAPBAAAAAAMFAAAAAAFFAAAAAAFFAAAAAABDQAAAAAAFAAAAAAEFAAAAAAAAgAAAAALNQAAAAAANQAAAAAAAgAAAAAAEAAAAAAHEAAAAAAGEAAAAAADBAAAAAAIBAAAAAAPFAAAAAAFFAAAAAAEFAAAAAACDQAAAAACFAAAAAABFAAAAAAAFAAAAAAAAgAAAAAHNQAAAAAANQAAAAAANQAAAAAAEAAAAAAKEAAAAAABEAAAAAACBAAAAAABBAAAAAAAAgAAAAAMAgAAAAAJAgAAAAACDQAAAAACFAAAAAADFAAAAAAEFAAAAAAEAgAAAAAJNQAAAAAANQAAAAAANQAAAAAAEAAAAAAIEAAAAAACEAAAAAAMBAAAAAADBAAAAAAKAgAAAAAGFgAAAAADFgAAAAABDQAAAAACDQAAAAAEFAAAAAAEFAAAAAAAAgAAAAAENQAAAAAANQAAAAAAAgAAAAAIEAAAAAADEAAAAAABEAAAAAABBAAAAAAIBAAAAAANAgAAAAAMFgAAAAAAFgAAAAACFAAAAAAEDQAAAAABFAAAAAAFFAAAAAADAgAAAAAEAgAAAAAJAgAAAAAFAgAAAAAFEAAAAAAKEAAAAAADEAAAAAAIBAAAAAAPBAAAAAACAgAAAAAIFgAAAAABFgAAAAAAFAAAAAACFAAAAAADDQAAAAAAFAAAAAADBAAAAAAGBAAAAAAKBAAAAAANBAAAAAAEBAAAAAAIBAAAAAAFBAAAAAAKBAAAAAAJBAAAAAADAgAAAAADFgAAAAADFwAAAAABDQAAAAADDQAAAAAAFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAADFAAAAAAFFAAAAAADBAAAAAADBAAAAAAGBAAAAAAMAgAAAAADFgAAAAABFgAAAAADFAAAAAAFDQAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAAADQAAAAAEDQAAAAAFDQAAAAAFFAAAAAADFAAAAAABBAAAAAAABAAAAAADAgAAAAAKAgAAAAAGAgAAAAAIFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAEDQAAAAAEDwAAAAACDwAAAAACDwAAAAABDQAAAAAEFAAAAAADBAAAAAANBAAAAAAFFAAAAAACFAAAAAAFFAAAAAAEBAAAAAANBAAAAAAPFAAAAAADFAAAAAAAFAAAAAAEFAAAAAACDQAAAAABDwAAAAACDwAAAAACDQAAAAADFAAAAAAEBAAAAAAOBAAAAAAKBAAAAAADBAAAAAAKBAAAAAADBAAAAAAFBAAAAAAIBAAAAAAFBAAAAAAOFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAABAAAAAAPBAAAAAANBAAAAAAPBAAAAAAHBAAAAAAMBAAAAAAHBAAAAAAJBAAAAAACBAAAAAAOBAAAAAAFBAAAAAAEBAAAAAAJFAAAAAAFFAAAAAADFAAAAAACFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABBAAAAAAGBAAAAAAABAAAAAANBAAAAAALBAAAAAANBAAAAAAIBAAAAAAHBAAAAAALBAAAAAAHBAAAAAAHBAAAAAAIBAAAAAAEBAAAAAAIBAAAAAAEBAAAAAACBAAAAAAL
+ version: 6
+ 1,7:
+ ind: 1,7
+ tiles: AAAAAAAAAAAAAAAADgAAAAADDgAAAAAADgAAAAAADgAAAAACDgAAAAAEDgAAAAAEDgAAAAACFAAAAAABFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAADFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAACDgAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAEDgAAAAABDgAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAABDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAABDgAAAAAEDgAAAAACDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,7:
+ ind: 2,7
+ tiles: FAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAACFAAAAAADFAAAAAABFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABFAAAAAAFDgAAAAACDgAAAAAADgAAAAAADgAAAAACDgAAAAAEFAAAAAADFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAAEFAAAAAACFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABDgAAAAADDgAAAAABDgAAAAAEDgAAAAADDgAAAAADDgAAAAAEDgAAAAABDgAAAAAAFAAAAAACFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEDgAAAAADDgAAAAABDgAAAAABDgAAAAAEDgAAAAAEDgAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAAEFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAEDgAAAAACDgAAAAACDgAAAAACDgAAAAABFAAAAAADFAAAAAABFAAAAAAEFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAADDgAAAAADDgAAAAADDgAAAAAAFAAAAAABFAAAAAACFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAAEDgAAAAABDgAAAAAEFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAAEDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAAEDgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,7:
+ ind: 3,7
+ tiles: FAAAAAAAFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAACFAAAAAADFAAAAAAEFAAAAAADFAAAAAADFAAAAAADDQAAAAADDQAAAAAEDwAAAAACDwAAAAAADQAAAAABFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAEFAAAAAACDQAAAAACDQAAAAAEDwAAAAAADQAAAAAFFAAAAAADFAAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAABFAAAAAABFAAAAAAFFAAAAAACFAAAAAACDQAAAAAADQAAAAAFDQAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAFDQAAAAAEFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAABFAAAAAACFAAAAAACFAAAAAABFAAAAAAFFAAAAAADFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAEFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAAFFAAAAAABFAAAAAAFFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADFAAAAAABFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAACFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAACFAAAAAADFAAAAAABFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEDgAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAAEFAAAAAABFAAAAAACFAAAAAADDgAAAAACDgAAAAAEFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAAFFAAAAAACFAAAAAACDgAAAAAADgAAAAAADgAAAAACDgAAAAADFAAAAAACFAAAAAAFFAAAAAACFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAABDgAAAAABDgAAAAABDgAAAAAEDgAAAAAADgAAAAAAFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAEAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAEDgAAAAABDgAAAAADDgAAAAACDgAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAFFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAADDgAAAAAADgAAAAAADgAAAAAEFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAFFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACDgAAAAAEDgAAAAAEDgAAAAAADgAAAAADDgAAAAADFAAAAAAA
+ version: 6
+ 4,7:
+ ind: 4,7
+ tiles: DQAAAAAAFAAAAAACFAAAAAADDQAAAAAADQAAAAAAFAAAAAAEFAAAAAACDQAAAAAFDQAAAAACFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEDQAAAAAAFAAAAAAADQAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADBAAAAAAFFAAAAAAEFAAAAAAEDQAAAAAEDQAAAAADDQAAAAAFDQAAAAAFDQAAAAABFAAAAAAEDQAAAAAFFAAAAAAEDQAAAAACDQAAAAAFFAAAAAAAFAAAAAADFAAAAAAEBAAAAAAHBAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAEDQAAAAAEDQAAAAADDQAAAAABFAAAAAADDQAAAAADFAAAAAAFDwAAAAADDwAAAAAFDQAAAAAAFAAAAAAFFAAAAAAAFAAAAAAEBAAAAAABBAAAAAABFAAAAAADFAAAAAABDQAAAAAFDQAAAAABDQAAAAACDQAAAAABDQAAAAABFAAAAAACDQAAAAAEDwAAAAAADQAAAAADDQAAAAAEFAAAAAAEFAAAAAABFAAAAAABBAAAAAADBAAAAAAGFAAAAAACFAAAAAACFAAAAAACDQAAAAAFDQAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAAEFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAABFAAAAAACBAAAAAANFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAADFAAAAAABFAAAAAADFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAFBAAAAAADBAAAAAAMFAAAAAACBAAAAAAOBAAAAAAGFAAAAAABFAAAAAAAFAAAAAADFAAAAAADFAAAAAAFFAAAAAADFAAAAAADFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAAABAAAAAABFAAAAAAFFAAAAAABFAAAAAAEFAAAAAADFAAAAAACFAAAAAAAFAAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAAEFAAAAAADFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAABFAAAAAACFAAAAAADBAAAAAADBAAAAAAEFAAAAAAFFAAAAAADFAAAAAADFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAACFAAAAAADFAAAAAAEFAAAAAACBAAAAAAOFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAAEFAAAAAAFFAAAAAADFAAAAAABFAAAAAABFAAAAAADFAAAAAABFAAAAAAFFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAADFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAAFFAAAAAABFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAADFAAAAAADFAAAAAABFAAAAAADFAAAAAAFFAAAAAACFAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAADFAAAAAACFAAAAAAB
+ version: 6
+ 4,8:
+ ind: 4,8
+ tiles: DgAAAAAEDgAAAAACDgAAAAAADgAAAAAEFAAAAAABFAAAAAABFAAAAAADFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAADgAAAAAEDgAAAAAEDgAAAAABDgAAAAAEDgAAAAAEDgAAAAACDgAAAAAADgAAAAADFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAABDgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAADDgAAAAADDgAAAAAEDgAAAAABDgAAAAAEDgAAAAAEFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAABFAAAAAAFDgAAAAAEDgAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAAEDgAAAAACDgAAAAAEDgAAAAAEDgAAAAACDgAAAAADFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAEDgAAAAAEDgAAAAACDgAAAAADDgAAAAAEDgAAAAACDgAAAAAADgAAAAADDgAAAAAADgAAAAAEDgAAAAABDgAAAAACDgAAAAADDgAAAAAAFAAAAAADFAAAAAAAFAAAAAADAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAEDgAAAAACDgAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAABDgAAAAAADgAAAAACFAAAAAAEFAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAAADgAAAAABDgAAAAACDgAAAAABDgAAAAACDgAAAAAADgAAAAAADgAAAAACDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEDgAAAAACDgAAAAAEDgAAAAAEDgAAAAAEDgAAAAAADgAAAAADDgAAAAAEDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAADDgAAAAAEDgAAAAAEDgAAAAAEDgAAAAADDgAAAAACDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAACDgAAAAADDgAAAAADDgAAAAACDgAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 5,8:
+ ind: 5,8
+ tiles: FAAAAAABFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAAFFAAAAAACBAAAAAAEFAAAAAACFAAAAAABBAAAAAABFAAAAAAEFAAAAAACBAAAAAAOFAAAAAACFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAAEFAAAAAADBAAAAAAGFAAAAAACBAAAAAAABAAAAAAEFAAAAAADFAAAAAADFAAAAAABFAAAAAAEFAAAAAADFAAAAAAFFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAACFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAEFAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAACFAAAAAAEFAAAAAAEFAAAAAADFAAAAAADFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABFAAAAAAFFAAAAAACFAAAAAABDgAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAADFAAAAAAEFAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAAFDgAAAAABDgAAAAABFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABFAAAAAADFAAAAAAFDgAAAAAADgAAAAADDgAAAAABFAAAAAACFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAAEFAAAAAACFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAFDgAAAAADDgAAAAACDgAAAAADDgAAAAACDgAAAAAEDgAAAAABFAAAAAACFAAAAAAFFAAAAAABFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAEDgAAAAAADgAAAAAEDgAAAAACDgAAAAAEDgAAAAAEDgAAAAAADgAAAAABFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFFAAAAAACFAAAAAABAAAAAAAADgAAAAAEDgAAAAAADgAAAAADDgAAAAADDgAAAAAEDgAAAAAADgAAAAAEDgAAAAAEDgAAAAABDgAAAAAADgAAAAACDgAAAAAEDgAAAAAEDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAAADgAAAAACDgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAAADgAAAAACDgAAAAAEDgAAAAACDgAAAAAEDgAAAAADDgAAAAACDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 6,8:
+ ind: 6,8
+ tiles: FAAAAAAAFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAAAFAAAAAADAAAAAAAAFAAAAAAFFAAAAAADFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABDgAAAAAADgAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAAFFAAAAAAEDgAAAAADDgAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAACFAAAAAACFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAEDgAAAAABDgAAAAAEDgAAAAABFAAAAAAAFAAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAABFAAAAAAAFAAAAAADFAAAAAAFDgAAAAACDgAAAAAADgAAAAACFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAEDgAAAAADDgAAAAABDgAAAAAEDgAAAAACFAAAAAABFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAAAFAAAAAADDgAAAAABDgAAAAADDgAAAAAADgAAAAAEDgAAAAAEDgAAAAABFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAACDgAAAAACDgAAAAABDgAAAAABDgAAAAADDgAAAAADDgAAAAADAAAAAAAAAAAAAAAAFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEDgAAAAADDgAAAAACDgAAAAAEDgAAAAAEDgAAAAAEDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAABDgAAAAADDgAAAAAEDgAAAAACDgAAAAACDgAAAAAEDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEFAAAAAACFAAAAAAADgAAAAADDgAAAAADDgAAAAACDgAAAAAEDgAAAAADDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAEDgAAAAACDgAAAAAEDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 6,7:
+ ind: 6,7
+ tiles: BAAAAAAFFAAAAAACFAAAAAAABAAAAAADBAAAAAABBAAAAAAFEAAAAAABEAAAAAABEAAAAAADEAAAAAAMEAAAAAAEEAAAAAACEAAAAAAMEAAAAAAJEAAAAAANFAAAAAABBAAAAAAFBAAAAAALBAAAAAALBAAAAAAGBAAAAAALBAAAAAAFEAAAAAAMEAAAAAADEAAAAAAFEAAAAAAAEAAAAAAFEAAAAAAMEAAAAAAAEAAAAAAFEAAAAAAKFAAAAAAEBAAAAAABBAAAAAAABAAAAAAFBAAAAAADFAAAAAAEFAAAAAAEEAAAAAAJEAAAAAANEAAAAAABEAAAAAAFEAAAAAAKEAAAAAACEAAAAAAHFAAAAAAEFAAAAAADFAAAAAACBAAAAAANBAAAAAAKBAAAAAANBAAAAAALEAAAAAAJEAAAAAAGEAAAAAANEAAAAAABFAAAAAAAEAAAAAALEAAAAAAGEAAAAAAHFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAFBAAAAAAFBAAAAAADBAAAAAADBAAAAAADFAAAAAAAFAAAAAAAFAAAAAADEAAAAAAMEAAAAAALEAAAAAAIEAAAAAAAFAAAAAACFAAAAAAEFAAAAAABFAAAAAACFAAAAAACBAAAAAACBAAAAAAKBAAAAAADBAAAAAADFAAAAAAAFAAAAAABFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAABFAAAAAACBAAAAAABBAAAAAAABAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAABFAAAAAABFAAAAAAABAAAAAABBAAAAAAKBAAAAAAHFAAAAAACFAAAAAAEFAAAAAAFFAAAAAABFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAEDgAAAAABBAAAAAAEBAAAAAADBAAAAAAIBAAAAAAHFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAEDgAAAAAEBAAAAAADBAAAAAAOBAAAAAADBAAAAAAHBAAAAAALFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAAEFAAAAAABFAAAAAAEFAAAAAABFAAAAAACBAAAAAAIBAAAAAAJBAAAAAANBAAAAAAEBAAAAAALFAAAAAACFAAAAAACFAAAAAACFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAEFAAAAAADFAAAAAADFAAAAAADBAAAAAACBAAAAAAIBAAAAAAIBAAAAAAGBAAAAAAMFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAABFAAAAAADBAAAAAACBAAAAAAEBAAAAAAOBAAAAAANFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAFBAAAAAAABAAAAAAMBAAAAAAIFAAAAAADFAAAAAAAFAAAAAADFAAAAAAFFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAFBAAAAAAGFAAAAAADFAAAAAACFAAAAAABFAAAAAADFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAAAFAAAAAACFAAAAAADFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAFFAAAAAABFAAAAAAC
+ version: 6
+ 7,7:
+ ind: 7,7
+ tiles: FAAAAAAEFAAAAAAADgAAAAABDgAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAADDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAABDgAAAAAEDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAADDgAAAAABDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAEDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAADDgAAAAADDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACDgAAAAAEDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAABDgAAAAAADgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAABDgAAAAAEDgAAAAABDgAAAAABDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAABFAAAAAAADgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 6,6:
+ ind: 6,6
+ tiles: FAAAAAAFFAAAAAACFAAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAADBAAAAAALBAAAAAAMEAAAAAAFEAAAAAAJEAAAAAADEAAAAAAKEAAAAAAHFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAADFAAAAAABFAAAAAAAFAAAAAACBAAAAAAPBAAAAAAFEAAAAAAIEAAAAAAIEAAAAAABEAAAAAABEAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAFFAAAAAACBAAAAAAKEAAAAAACEAAAAAAKEAAAAAAEEAAAAAAMEAAAAAAIEAAAAAAJFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAAEBAAAAAAFBAAAAAAJEAAAAAAFEAAAAAAEEAAAAAAGEAAAAAAHEAAAAAAAEAAAAAAJFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAACFAAAAAADFAAAAAAFBAAAAAAHBAAAAAAFBAAAAAAFEAAAAAADEAAAAAAKEAAAAAADEAAAAAADEAAAAAACEAAAAAAKFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAABBAAAAAABBAAAAAACBAAAAAAEEAAAAAADEAAAAAAFEAAAAAAFEAAAAAAHEAAAAAAKEAAAAAAJFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADBAAAAAALBAAAAAANBAAAAAAEEAAAAAAAEAAAAAANEAAAAAAJEAAAAAAFEAAAAAADEAAAAAAIFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAEBAAAAAAFBAAAAAAIBAAAAAAJEAAAAAACEAAAAAAKEAAAAAAGEAAAAAAFEAAAAAAGEAAAAAAJFAAAAAACFAAAAAABFAAAAAADBAAAAAAJFAAAAAADFAAAAAABFAAAAAACFAAAAAAEBAAAAAAKBAAAAAAOEAAAAAAGEAAAAAAAEAAAAAAJEAAAAAAIEAAAAAAEEAAAAAAGFAAAAAABFAAAAAABFAAAAAAABAAAAAAJFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABBAAAAAAJBAAAAAADEAAAAAANEAAAAAAJEAAAAAAJEAAAAAAAEAAAAAANEAAAAAAIFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAEFAAAAAADBAAAAAAABAAAAAABEAAAAAAGEAAAAAABEAAAAAAKEAAAAAAHEAAAAAAHEAAAAAAGFAAAAAAEFAAAAAADFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAACBAAAAAAEBAAAAAAJBAAAAAAMEAAAAAAAEAAAAAAEEAAAAAACEAAAAAAAEAAAAAACEAAAAAAMFAAAAAABFAAAAAAEFAAAAAACFAAAAAADFAAAAAACFAAAAAACBAAAAAADBAAAAAAHBAAAAAAKBAAAAAADEAAAAAAHEAAAAAAAEAAAAAAGEAAAAAAHEAAAAAADEAAAAAAGFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADBAAAAAAJBAAAAAAABAAAAAACBAAAAAAIBAAAAAAHBAAAAAAKEAAAAAAEEAAAAAAGEAAAAAAKEAAAAAAFEAAAAAAIEAAAAAAGFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABBAAAAAABBAAAAAACBAAAAAAGBAAAAAAAEAAAAAAMEAAAAAABEAAAAAALEAAAAAAGEAAAAAACEAAAAAAMEAAAAAAAEAAAAAADFAAAAAAEFAAAAAACFAAAAAAFFAAAAAADBAAAAAALBAAAAAAKBAAAAAAPEAAAAAAIEAAAAAALEAAAAAAFEAAAAAAHEAAAAAAMFAAAAAAAEAAAAAAEEAAAAAABEAAAAAAF
+ version: 6
+ 7,6:
+ ind: 7,6
+ tiles: EAAAAAAGFAAAAAAEDgAAAAACDgAAAAAEDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAGFAAAAAACDgAAAAADDgAAAAAEDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAFAAAAAAEFAAAAAAADgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAKFAAAAAADFAAAAAAFDgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAADgAAAAACDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAJFAAAAAAEFAAAAAAEDgAAAAAEDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAFEAAAAAAAFAAAAAADDgAAAAACDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAEEAAAAAAKFAAAAAAEDgAAAAACDgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAGEAAAAAAIFAAAAAADDgAAAAACDgAAAAACDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAMEAAAAAANFAAAAAADDgAAAAABDgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAMEAAAAAAGFAAAAAAADgAAAAACDgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAFEAAAAAAFFAAAAAAFDgAAAAACDgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAIFAAAAAAFFAAAAAABDgAAAAADDgAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAJFAAAAAACDgAAAAABDgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAFFAAAAAACFAAAAAAADgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAEFAAAAAABDgAAAAACDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 6,5:
+ ind: 6,5
+ tiles: FAAAAAAEFAAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAADBAAAAAAEBAAAAAAFBAAAAAAGFAAAAAACEAAAAAADFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAFEAAAAAAGFAAAAAAFFAAAAAACFAAAAAABFAAAAAADFAAAAAACFAAAAAAFFAAAAAADBAAAAAACBAAAAAAHBAAAAAAGEAAAAAAFFAAAAAABFAAAAAAAFAAAAAABFAAAAAACEAAAAAAIFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAEBAAAAAAABAAAAAALBAAAAAAEFAAAAAACEAAAAAAIFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAAEFAAAAAACFAAAAAADFAAAAAAEFAAAAAABFAAAAAABBAAAAAANBAAAAAAKBAAAAAAPEAAAAAAIFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAAFFAAAAAABFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAABAAAAAAMBAAAAAAEBAAAAAAEEAAAAAAHFAAAAAAEFAAAAAAEFAAAAAAAEAAAAAABFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAEBAAAAAAJBAAAAAAJBAAAAAAPEAAAAAAHEAAAAAAJFAAAAAACEAAAAAAGEAAAAAAKFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAFBAAAAAAJBAAAAAAJFAAAAAACEAAAAAAAFAAAAAACFAAAAAAEEAAAAAACFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAFFAAAAAABBAAAAAAHBAAAAAACBAAAAAAPEAAAAAAMEAAAAAAFFAAAAAAEEAAAAAAGFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAACFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAADBAAAAAAGBAAAAAAIBAAAAAAFFAAAAAADEAAAAAAHFAAAAAAEEAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAAEFAAAAAABFAAAAAADBAAAAAAABAAAAAAMFAAAAAAEFAAAAAABEAAAAAAKFAAAAAADEAAAAAAGFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAAFBAAAAAAABAAAAAAIBAAAAAAEBAAAAAADFAAAAAACEAAAAAAGFAAAAAABEAAAAAAKFAAAAAACFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAADBAAAAAAFEAAAAAAMEAAAAAAMEAAAAAALFAAAAAAEEAAAAAALEAAAAAALEAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABBAAAAAAAEAAAAAAAEAAAAAAMEAAAAAAJEAAAAAAHFAAAAAABEAAAAAAJEAAAAAALFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAEBAAAAAAMEAAAAAABEAAAAAAGEAAAAAAFEAAAAAAMEAAAAAAFEAAAAAAJEAAAAAAMFAAAAAABFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAAFBAAAAAAIBAAAAAAPEAAAAAAAEAAAAAANEAAAAAAHEAAAAAAEEAAAAAAAEAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAAFFAAAAAAEFAAAAAABBAAAAAALBAAAAAAAEAAAAAAFEAAAAAAAEAAAAAACEAAAAAADFAAAAAACEAAAAAAD
+ version: 6
+ 7,5:
+ ind: 7,5
+ tiles: EAAAAAAGFAAAAAAEDgAAAAADDgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAJFAAAAAADDgAAAAAEDgAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAFDgAAAAABDgAAAAACDgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAJDgAAAAABDgAAAAADDgAAAAADDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAMDgAAAAADDgAAAAACDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAACDgAAAAAADgAAAAACDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAMDgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAFDgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAEDgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAANDgAAAAAEDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAFDgAAAAAEDgAAAAAEDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAEFAAAAAADDgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAJFAAAAAADDgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAABFAAAAAADDgAAAAAEDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 4,-1:
+ ind: 4,-1
+ tiles: EAAAAAAEEAAAAAAAEAAAAAANEAAAAAABBAAAAAAOBAAAAAANFAAAAAADFAAAAAABFAAAAAADDQAAAAABDQAAAAAFDQAAAAACFAAAAAADFAAAAAAFFAAAAAAADQAAAAAAEAAAAAAFEAAAAAAFEAAAAAAFEAAAAAADBAAAAAAHBAAAAAAJBAAAAAABFAAAAAACFAAAAAAEDQAAAAAEDQAAAAAFFAAAAAAEDQAAAAADFAAAAAAEFAAAAAADDQAAAAABEAAAAAAIEAAAAAAFEAAAAAAKEAAAAAAMBAAAAAAGBAAAAAACBAAAAAAEBAAAAAAHFAAAAAAEFAAAAAAEDQAAAAAEDQAAAAAEFAAAAAABDQAAAAACFAAAAAAEDQAAAAABEAAAAAADEAAAAAAEEAAAAAALEAAAAAACBAAAAAABBAAAAAAPBAAAAAAFBAAAAAAAFAAAAAAAFAAAAAAEFAAAAAABDQAAAAADDQAAAAACFAAAAAABDQAAAAACDQAAAAAEEAAAAAANEAAAAAAGEAAAAAAHEAAAAAACEAAAAAADBAAAAAAHBAAAAAAMBAAAAAAEBAAAAAACFAAAAAAAFAAAAAADFAAAAAAADQAAAAAFDQAAAAAEDQAAAAACFAAAAAAFEAAAAAAMEAAAAAAIEAAAAAAJEAAAAAACEAAAAAAGBAAAAAAJBAAAAAAIBAAAAAAJBAAAAAAJFAAAAAAFFAAAAAACFAAAAAACFAAAAAAEDQAAAAABDQAAAAADFAAAAAADEAAAAAABEAAAAAAHEAAAAAAJEAAAAAAHFAAAAAADEAAAAAAIBAAAAAAPBAAAAAABBAAAAAAHFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAEBAAAAAAAFAAAAAAABAAAAAAIEAAAAAABEAAAAAAEEAAAAAAEEAAAAAAMFAAAAAABEAAAAAACBAAAAAABBAAAAAAMBAAAAAAIBAAAAAALFAAAAAAEFAAAAAACFAAAAAAABAAAAAAEBAAAAAAGBAAAAAAGEAAAAAAGEAAAAAAEEAAAAAAGEAAAAAAHFAAAAAACFAAAAAAAEAAAAAABBAAAAAAOBAAAAAAMBAAAAAACBAAAAAADFAAAAAAEBAAAAAADBAAAAAAPBAAAAAAFBAAAAAAPEAAAAAANEAAAAAAHEAAAAAADEAAAAAABFAAAAAAAFAAAAAADEAAAAAACEAAAAAAMBAAAAAAABAAAAAALBAAAAAAJBAAAAAAIBAAAAAAJBAAAAAAFBAAAAAAPBAAAAAAFEAAAAAADEAAAAAAFEAAAAAAGEAAAAAANFAAAAAAFFAAAAAAAFAAAAAAEEAAAAAAFBAAAAAAJBAAAAAAABAAAAAANBAAAAAANBAAAAAAOBAAAAAABBAAAAAAIBAAAAAAPEAAAAAAIEAAAAAAJEAAAAAAJEAAAAAAGEAAAAAAJEAAAAAAMEAAAAAAIEAAAAAAMEAAAAAAEBAAAAAADBAAAAAAOBAAAAAAIBAAAAAAIBAAAAAAKBAAAAAANBAAAAAAPEAAAAAAGEAAAAAAJEAAAAAALEAAAAAAMEAAAAAAGEAAAAAAKEAAAAAAKEAAAAAAFEAAAAAABEAAAAAALEAAAAAADEAAAAAAIEAAAAAANEAAAAAAMEAAAAAAHEAAAAAACEAAAAAAMEAAAAAACEAAAAAAEEAAAAAAAEAAAAAAHEAAAAAACEAAAAAACEAAAAAAEEAAAAAAFFAAAAAABEAAAAAAAEAAAAAAAEAAAAAAHEAAAAAALEAAAAAAGEAAAAAADEAAAAAAEEAAAAAAAEAAAAAANEAAAAAAAEAAAAAAKEAAAAAAHEAAAAAACEAAAAAAFEAAAAAAFFAAAAAAEEAAAAAALFAAAAAAEEAAAAAALEAAAAAACEAAAAAANEAAAAAADEAAAAAAKEAAAAAAHEAAAAAAHEAAAAAADEAAAAAAFEAAAAAAFEAAAAAAFEAAAAAADEAAAAAABFAAAAAABEAAAAAAGEAAAAAABEAAAAAAFEAAAAAAABAAAAAAKBAAAAAAJ
+ version: 6
+ 5,-1:
+ ind: 5,-1
+ tiles: FAAAAAAEFAAAAAABDgAAAAADDgAAAAAADgAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEFAAAAAABFAAAAAACDgAAAAAEDgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAFAAAAAAFFAAAAAAADgAAAAADDgAAAAAEDgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAACBAAAAAANBAAAAAAKFAAAAAAFDgAAAAAEDgAAAAADDgAAAAABDgAAAAADDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAAEFAAAAAADFAAAAAAEFAAAAAACFAAAAAAADgAAAAABDgAAAAADDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAANFAAAAAACFAAAAAACFAAAAAAEFAAAAAACFAAAAAAFDgAAAAAEDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMBAAAAAAEFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAEDgAAAAAEDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAAEFAAAAAAEBAAAAAAEFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAEDgAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAAGBAAAAAAHBAAAAAAMFAAAAAADFAAAAAACFAAAAAAFFAAAAAADDgAAAAACDgAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAALBAAAAAAJBAAAAAAIFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABDgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAIBAAAAAAHBAAAAAAGFAAAAAADFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAADgAAAAABDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAKBAAAAAAFFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAABFAAAAAACFAAAAAAADgAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAAFAAAAAADDgAAAAAADgAAAAACDgAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAAEFAAAAAABFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAAFDgAAAAAEDgAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAACFAAAAAABDgAAAAACDgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAABFAAAAAAEFAAAAAADFAAAAAAAFAAAAAADDgAAAAADDgAAAAACDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 5,0:
+ ind: 5,0
+ tiles: FAAAAAADFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAACFAAAAAABFAAAAAAFFAAAAAADFAAAAAACFAAAAAADDgAAAAAEDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAAFAAAAAABFAAAAAADFAAAAAAFFAAAAAACFAAAAAACFAAAAAACDgAAAAAEDgAAAAAADgAAAAADDgAAAAAEAAAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABDgAAAAAEDgAAAAAEDgAAAAADAAAAAAAAFAAAAAACFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAEDgAAAAACDgAAAAAEDgAAAAAEAAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAFFAAAAAADFAAAAAACFAAAAAAEDgAAAAADDgAAAAACDgAAAAACAAAAAAAABAAAAAALBAAAAAAEFAAAAAAAFAAAAAACFAAAAAAEFAAAAAADFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAEDgAAAAAEDgAAAAACDgAAAAACAAAAAAAABAAAAAAGBAAAAAAPBAAAAAAABAAAAAAFBAAAAAAOBAAAAAANFAAAAAAFFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADDgAAAAADDgAAAAADDgAAAAAEDgAAAAADEAAAAAAMBAAAAAAGBAAAAAAEBAAAAAAJBAAAAAAABAAAAAABFAAAAAACFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAFDgAAAAACDgAAAAADDgAAAAAEEAAAAAAHEAAAAAAGBAAAAAACBAAAAAAJBAAAAAANBAAAAAAGFAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAABDgAAAAABDgAAAAAADgAAAAABEAAAAAAMBAAAAAALBAAAAAANBAAAAAAPBAAAAAAGFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADDgAAAAAADgAAAAAADgAAAAACBAAAAAAKBAAAAAACBAAAAAAJFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAAEFAAAAAABFAAAAAACFAAAAAABDgAAAAACDgAAAAADDgAAAAACBAAAAAAOBAAAAAAKFAAAAAAEFAAAAAADFAAAAAACFAAAAAAFFAAAAAADFAAAAAACFAAAAAADFAAAAAAAFAAAAAACFAAAAAADFAAAAAAADgAAAAAADgAAAAAADgAAAAABBAAAAAAJBAAAAAAJFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAADBAAAAAAABAAAAAAMBAAAAAABFAAAAAACFAAAAAAEFAAAAAACFAAAAAABDgAAAAADDgAAAAAABAAAAAAEBAAAAAAFBAAAAAAFBAAAAAAKFAAAAAAFBAAAAAAGBAAAAAABBAAAAAAEBAAAAAADBAAAAAAOFAAAAAAAFAAAAAADFAAAAAADFAAAAAABDgAAAAABDgAAAAACBAAAAAADBAAAAAALBAAAAAAHBAAAAAAGBAAAAAAABAAAAAAKBAAAAAAKBAAAAAADBAAAAAAGFAAAAAAFFAAAAAACFAAAAAACFAAAAAAEFAAAAAABDgAAAAAADgAAAAAABAAAAAAHBAAAAAAHBAAAAAAOBAAAAAAHBAAAAAAHBAAAAAAIBAAAAAAIBAAAAAAEBAAAAAAKFAAAAAAAFAAAAAABFAAAAAADFAAAAAACFAAAAAACDgAAAAACDgAAAAAB
+ version: 6
+ 6,4:
+ ind: 6,4
+ tiles: BAAAAAAMBAAAAAAPBAAAAAABBAAAAAAJBAAAAAAEBAAAAAADBAAAAAAIBAAAAAAEBAAAAAAGBAAAAAAPBAAAAAAABAAAAAADBAAAAAAPBAAAAAAJBAAAAAAMBAAAAAAEBAAAAAAMBAAAAAACBAAAAAAEBAAAAAAOBAAAAAAIBAAAAAAKBAAAAAAKBAAAAAALBAAAAAAIBAAAAAAMBAAAAAADBAAAAAAIBAAAAAAFBAAAAAAIBAAAAAAMBAAAAAAKBAAAAAAABAAAAAAIBAAAAAADBAAAAAAPBAAAAAAMBAAAAAACBAAAAAAIBAAAAAAKBAAAAAAPBAAAAAANBAAAAAAHBAAAAAAOBAAAAAACBAAAAAAIBAAAAAAEBAAAAAABBAAAAAANBAAAAAAHBAAAAAALBAAAAAAFBAAAAAACBAAAAAAIBAAAAAAMBAAAAAAFBAAAAAAKBAAAAAAPBAAAAAAGBAAAAAAFBAAAAAALBAAAAAAOBAAAAAAMBAAAAAAPBAAAAAACBAAAAAAOBAAAAAAHBAAAAAAEBAAAAAAPBAAAAAANBAAAAAADBAAAAAAJBAAAAAAFBAAAAAAPBAAAAAAFBAAAAAAIEAAAAAADBAAAAAAIBAAAAAAABAAAAAAGBAAAAAAFBAAAAAAHBAAAAAAOBAAAAAAKBAAAAAANBAAAAAAHBAAAAAAHBAAAAAAPBAAAAAABBAAAAAAABAAAAAAKBAAAAAAHEAAAAAAIBAAAAAACBAAAAAAPBAAAAAAJEAAAAAANEAAAAAAJBAAAAAANBAAAAAAEBAAAAAALBAAAAAAHBAAAAAAMBAAAAAAOBAAAAAAPBAAAAAALEAAAAAADEAAAAAAFEAAAAAAGEAAAAAAABAAAAAALBAAAAAABEAAAAAANEAAAAAAJEAAAAAAKEAAAAAABEAAAAAAJEAAAAAANEAAAAAAABAAAAAAJBAAAAAAHBAAAAAACEAAAAAAAEAAAAAAGEAAAAAAGEAAAAAAJEAAAAAAFBAAAAAABBAAAAAADFAAAAAADEAAAAAAIEAAAAAAFEAAAAAAEEAAAAAAEEAAAAAAEEAAAAAAIBAAAAAACBAAAAAANEAAAAAAAEAAAAAALEAAAAAALEAAAAAAAEAAAAAABBAAAAAAGEAAAAAAIEAAAAAAIEAAAAAAFFAAAAAABEAAAAAAIEAAAAAAJEAAAAAACEAAAAAAKEAAAAAAAEAAAAAAIEAAAAAAJEAAAAAAJEAAAAAALEAAAAAAHEAAAAAAHEAAAAAAGBAAAAAALBAAAAAAPBAAAAAAFEAAAAAABFAAAAAADEAAAAAADFAAAAAADEAAAAAANEAAAAAANEAAAAAAIEAAAAAAIEAAAAAADEAAAAAADEAAAAAALEAAAAAAAEAAAAAAIBAAAAAAMBAAAAAADBAAAAAAFBAAAAAABFAAAAAABFAAAAAAFFAAAAAAFEAAAAAANEAAAAAAGEAAAAAAFEAAAAAANEAAAAAAJEAAAAAAMFAAAAAAEEAAAAAAJEAAAAAAIFAAAAAABFAAAAAACBAAAAAAKBAAAAAAKBAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACFAAAAAACEAAAAAAGEAAAAAAGEAAAAAAEEAAAAAAIFAAAAAADEAAAAAACEAAAAAAIFAAAAAABFAAAAAAAFAAAAAAABAAAAAAIBAAAAAAJBAAAAAANFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABEAAAAAAJFAAAAAAEFAAAAAADEAAAAAABFAAAAAABFAAAAAAAFAAAAAAEFAAAAAADBAAAAAAOBAAAAAAFBAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAACEAAAAAAMEAAAAAACFAAAAAACFAAAAAAFEAAAAAAKFAAAAAAEFAAAAAABFAAAAAADFAAAAAABFAAAAAAEBAAAAAALBAAAAAAJBAAAAAADBAAAAAAFFAAAAAAAEAAAAAANEAAAAAAMEAAAAAAKFAAAAAABFAAAAAAFEAAAAAAG
+ version: 6
+ 6,3:
+ ind: 6,3
+ tiles: EAAAAAANEAAAAAAKEAAAAAAJBAAAAAAGBAAAAAALBAAAAAAOBAAAAAAMBAAAAAAKBAAAAAAOBAAAAAALBAAAAAAPBAAAAAALBAAAAAADBAAAAAAJBAAAAAAGBAAAAAAKEAAAAAAJEAAAAAANEAAAAAAKEAAAAAAMBAAAAAANBAAAAAAGBAAAAAABBAAAAAAJBAAAAAAPBAAAAAANBAAAAAALBAAAAAAABAAAAAAKBAAAAAAFBAAAAAANBAAAAAAIFAAAAAACEAAAAAANEAAAAAAEEAAAAAAHEAAAAAAABAAAAAAPBAAAAAAKBAAAAAACBAAAAAAABAAAAAAFBAAAAAADBAAAAAAIBAAAAAAKBAAAAAABBAAAAAAEBAAAAAANFAAAAAADFAAAAAABEAAAAAAIEAAAAAAFEAAAAAAMEAAAAAAMEAAAAAAAEAAAAAAKBAAAAAACBAAAAAACBAAAAAAABAAAAAAGBAAAAAADEAAAAAANBAAAAAAJBAAAAAABFAAAAAAFFAAAAAABFAAAAAAAEAAAAAAFEAAAAAADEAAAAAAAEAAAAAAGEAAAAAAHEAAAAAAEEAAAAAAGEAAAAAAFEAAAAAAIBAAAAAAFEAAAAAAEEAAAAAALBAAAAAAIFAAAAAACFAAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAAFFAAAAAAAEAAAAAAFEAAAAAAGEAAAAAAAEAAAAAAFEAAAAAAMEAAAAAAAEAAAAAAHEAAAAAANEAAAAAANFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAACEAAAAAAEEAAAAAAHBAAAAAAMFAAAAAAFFAAAAAADFAAAAAABEAAAAAALEAAAAAALEAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAAFAAAAAACEAAAAAANEAAAAAAIBAAAAAACFAAAAAACFAAAAAAAEAAAAAALEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAAFAAAAAADFAAAAAADEAAAAAAKEAAAAAABBAAAAAAMEAAAAAANEAAAAAABEAAAAAAIBAAAAAAFBAAAAAAHEAAAAAACEAAAAAAFBAAAAAAOFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAABEAAAAAAMBAAAAAACBAAAAAAOBAAAAAAFBAAAAAALBAAAAAAKBAAAAAAEBAAAAAAEBAAAAAALBAAAAAAKEAAAAAAIEAAAAAAHEAAAAAACFAAAAAACFAAAAAACFAAAAAAEEAAAAAAIBAAAAAAPBAAAAAABBAAAAAAPBAAAAAACBAAAAAAIBAAAAAAFBAAAAAAFBAAAAAAPBAAAAAAHEAAAAAAHEAAAAAAFEAAAAAAHEAAAAAAFFAAAAAABFAAAAAADEAAAAAAABAAAAAABBAAAAAAJBAAAAAAPBAAAAAALBAAAAAABBAAAAAADBAAAAAAGBAAAAAAJBAAAAAAMBAAAAAAIEAAAAAAJEAAAAAAHEAAAAAAGEAAAAAAEEAAAAAAKEAAAAAAAEAAAAAAFBAAAAAAHBAAAAAAMBAAAAAAJBAAAAAAFBAAAAAALBAAAAAAGBAAAAAAPBAAAAAAABAAAAAAHBAAAAAAGEAAAAAAJEAAAAAAAEAAAAAAKEAAAAAACEAAAAAAJEAAAAAAIEAAAAAAGBAAAAAADBAAAAAADBAAAAAACBAAAAAAEBAAAAAAFBAAAAAAPBAAAAAAFBAAAAAAKBAAAAAAMBAAAAAAJBAAAAAAGBAAAAAAABAAAAAADBAAAAAAKEAAAAAAJEAAAAAAMBAAAAAACBAAAAAAKBAAAAAAPBAAAAAAMBAAAAAANBAAAAAAOBAAAAAAFBAAAAAALBAAAAAAOBAAAAAAOBAAAAAAOBAAAAAAJBAAAAAAHBAAAAAACEAAAAAAGEAAAAAAJ
+ version: 6
+ 6,2:
+ ind: 6,2
+ tiles: BAAAAAAPBAAAAAADDgAAAAABDgAAAAACDgAAAAAADgAAAAADDgAAAAAEDgAAAAACDgAAAAABBAAAAAAJBAAAAAAMBAAAAAACBAAAAAALBAAAAAAIBAAAAAAADgAAAAABBAAAAAAFBAAAAAAEBAAAAAAABAAAAAAGDgAAAAADDgAAAAAEDgAAAAACDgAAAAAEBAAAAAAMBAAAAAAMBAAAAAAPBAAAAAAABAAAAAACBAAAAAAFBAAAAAAGBAAAAAAMBAAAAAAJBAAAAAACBAAAAAAKBAAAAAAKBAAAAAANBAAAAAABBAAAAAABBAAAAAAMBAAAAAAFBAAAAAACBAAAAAADBAAAAAAJBAAAAAAOBAAAAAAHBAAAAAACBAAAAAAIBAAAAAAOBAAAAAAKBAAAAAAJBAAAAAALBAAAAAALBAAAAAAHBAAAAAAOBAAAAAAFBAAAAAANBAAAAAANBAAAAAADBAAAAAAABAAAAAAKBAAAAAACBAAAAAAIBAAAAAABBAAAAAAMBAAAAAALBAAAAAAABAAAAAAIBAAAAAAFBAAAAAAOBAAAAAAKBAAAAAAMBAAAAAAOBAAAAAAFBAAAAAACBAAAAAABBAAAAAAMBAAAAAALBAAAAAALBAAAAAADBAAAAAAOBAAAAAAMBAAAAAADBAAAAAAMBAAAAAAFBAAAAAALBAAAAAAJBAAAAAABBAAAAAANBAAAAAANBAAAAAAFBAAAAAANBAAAAAAFBAAAAAAIBAAAAAAGBAAAAAADBAAAAAAMBAAAAAAIBAAAAAAABAAAAAAKBAAAAAACBAAAAAAGBAAAAAAMBAAAAAAEBAAAAAAEBAAAAAAPBAAAAAAFBAAAAAADBAAAAAAMBAAAAAAJBAAAAAACBAAAAAABBAAAAAAPBAAAAAADBAAAAAAHBAAAAAAKBAAAAAAKBAAAAAAPBAAAAAAGBAAAAAAMBAAAAAAMBAAAAAALBAAAAAAKBAAAAAANBAAAAAAKBAAAAAAGBAAAAAACBAAAAAABBAAAAAAKBAAAAAANBAAAAAANBAAAAAALBAAAAAAPBAAAAAAABAAAAAAMBAAAAAADBAAAAAADBAAAAAAIBAAAAAAHBAAAAAAHBAAAAAAPBAAAAAAMBAAAAAAGBAAAAAAKBAAAAAAFBAAAAAAJBAAAAAANBAAAAAAPBAAAAAAEBAAAAAAPBAAAAAALBAAAAAAIBAAAAAAPBAAAAAAGBAAAAAADBAAAAAALBAAAAAAHBAAAAAAOBAAAAAAEBAAAAAAPBAAAAAAOBAAAAAAIBAAAAAAFBAAAAAAOBAAAAAALBAAAAAADBAAAAAANBAAAAAAKBAAAAAABBAAAAAALBAAAAAAEBAAAAAABBAAAAAAKBAAAAAAGBAAAAAAJBAAAAAAEBAAAAAAABAAAAAAHBAAAAAAKBAAAAAAMBAAAAAAFBAAAAAALBAAAAAADBAAAAAAEBAAAAAAEBAAAAAAJBAAAAAAMBAAAAAACBAAAAAACBAAAAAAKBAAAAAAJBAAAAAAIBAAAAAAOBAAAAAABBAAAAAADBAAAAAAABAAAAAAJBAAAAAAIBAAAAAAHBAAAAAACBAAAAAAFBAAAAAAGBAAAAAAEBAAAAAADBAAAAAANBAAAAAAMBAAAAAAKBAAAAAAOBAAAAAAPBAAAAAALBAAAAAAKBAAAAAAJBAAAAAAIBAAAAAANBAAAAAAEBAAAAAAGBAAAAAAJBAAAAAAABAAAAAAHBAAAAAAJBAAAAAAHBAAAAAAHBAAAAAALBAAAAAANBAAAAAAHBAAAAAAKBAAAAAAEBAAAAAAJBAAAAAAEBAAAAAABBAAAAAAOBAAAAAALBAAAAAALBAAAAAADBAAAAAAHBAAAAAAMBAAAAAACBAAAAAAEBAAAAAAKBAAAAAAAEAAAAAACEAAAAAADBAAAAAAMBAAAAAAEBAAAAAACBAAAAAAOBAAAAAAABAAAAAAHBAAAAAAABAAAAAAOBAAAAAACBAAAAAAPBAAAAAAMBAAAAAAABAAAAAAPBAAAAAAN
+ version: 6
+ 5,3:
+ ind: 5,3
+ tiles: EAAAAAAMEAAAAAAEEAAAAAADEAAAAAAIEAAAAAAIEAAAAAAIEAAAAAAMEAAAAAADEAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAAFEAAAAAAGEAAAAAAIEAAAAAAJEAAAAAANEAAAAAAHEAAAAAAGEAAAAAALEAAAAAAAEAAAAAADEAAAAAAIFAAAAAABFAAAAAAAFAAAAAACFAAAAAAEFAAAAAADFAAAAAACEAAAAAAEBAAAAAAJBAAAAAABBAAAAAAOEAAAAAAJEAAAAAAEEAAAAAAJEAAAAAANFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAFBAAAAAAJBAAAAAAGBAAAAAAFBAAAAAACBAAAAAAEBAAAAAAPEAAAAAANEAAAAAAIEAAAAAAAEAAAAAANFAAAAAAAFAAAAAABFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAEBAAAAAAJBAAAAAACBAAAAAAABAAAAAALBAAAAAAABAAAAAAPBAAAAAAAEAAAAAAAEAAAAAAFFAAAAAAEFAAAAAACFAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAACBAAAAAAABAAAAAAMBAAAAAAABAAAAAAPEAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEBAAAAAAOBAAAAAAMBAAAAAAKEAAAAAAEFAAAAAABFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAEFAAAAAADFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFFAAAAAADFAAAAAAEBAAAAAAOBAAAAAAGBAAAAAAIEAAAAAADFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAAEFAAAAAABFAAAAAADFAAAAAAEFAAAAAAABAAAAAAGBAAAAAALBAAAAAAEEAAAAAAEFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAABFAAAAAAFFAAAAAAEBAAAAAAMBAAAAAAGBAAAAAAOBAAAAAAIEAAAAAAEEAAAAAALEAAAAAABFAAAAAABFAAAAAADFAAAAAADEAAAAAADEAAAAAABFAAAAAACFAAAAAAFBAAAAAABBAAAAAABBAAAAAAOBAAAAAAMBAAAAAAGEAAAAAAKEAAAAAAJFAAAAAACEAAAAAACFAAAAAAFEAAAAAALEAAAAAAKEAAAAAADEAAAAAAHBAAAAAAPBAAAAAAPBAAAAAAJBAAAAAAABAAAAAAPBAAAAAAHEAAAAAAAEAAAAAADEAAAAAACEAAAAAAMEAAAAAABEAAAAAALEAAAAAAKEAAAAAAEEAAAAAAIBAAAAAANBAAAAAAOBAAAAAAABAAAAAAPBAAAAAALBAAAAAAHBAAAAAALBAAAAAAIEAAAAAABEAAAAAALEAAAAAALEAAAAAAJEAAAAAACEAAAAAAIBAAAAAALBAAAAAAEBAAAAAAFBAAAAAAGBAAAAAACBAAAAAAFBAAAAAAKBAAAAAAABAAAAAAHBAAAAAAIBAAAAAABBAAAAAAGBAAAAAACBAAAAAAIBAAAAAAGBAAAAAAFBAAAAAAIBAAAAAAPBAAAAAAJBAAAAAAMBAAAAAANFAAAAAAABAAAAAADBAAAAAAPBAAAAAABFAAAAAACBAAAAAABBAAAAAAPBAAAAAAMBAAAAAAFBAAAAAAFBAAAAAAPBAAAAAAABAAAAAABBAAAAAAMFAAAAAABFAAAAAAABAAAAAANBAAAAAABBAAAAAAGFAAAAAACFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEBAAAAAAFBAAAAAAIBAAAAAAGBAAAAAAIBAAAAAAEBAAAAAAJ
+ version: 6
+ 5,4:
+ ind: 5,4
+ tiles: FAAAAAAEFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAADBAAAAAAKBAAAAAAIBAAAAAAGBAAAAAACFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAFBAAAAAANBAAAAAAHBAAAAAAGFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAACFAAAAAADFAAAAAACFAAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAABFAAAAAACBAAAAAAKBAAAAAAMBAAAAAAIFAAAAAACFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAAFAAAAAACFAAAAAADBAAAAAAJBAAAAAAPFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAADFAAAAAABFAAAAAAFFAAAAAACFAAAAAAAFAAAAAACBAAAAAAOBAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAEBAAAAAAGFAAAAAACFAAAAAABFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAEFAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAFFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAAAEAAAAAAHFAAAAAAFFAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAADFAAAAAACFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAABFAAAAAABFAAAAAACEAAAAAAMFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAACFAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFFAAAAAACFAAAAAABFAAAAAACFAAAAAAEBAAAAAAMBAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAFFAAAAAADBAAAAAAGBAAAAAABFAAAAAAFFAAAAAADFAAAAAAEFAAAAAADFAAAAAABFAAAAAABFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAEFAAAAAABFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAFBAAAAAAJFAAAAAAEFAAAAAADFAAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABBAAAAAACFAAAAAAAFAAAAAABFAAAAAADFAAAAAAEFAAAAAADEAAAAAAFEAAAAAAEFAAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAAAFAAAAAAABAAAAAAJFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAADEAAAAAAFEAAAAAADEAAAAAAEEAAAAAAAFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAD
+ version: 6
+ 5,2:
+ ind: 5,2
+ tiles: EAAAAAANEAAAAAAGEAAAAAAIEAAAAAADFAAAAAABFAAAAAABFAAAAAABEAAAAAALEAAAAAAFEAAAAAAEBAAAAAACBAAAAAAKBAAAAAAOBAAAAAAIBAAAAAABBAAAAAANEAAAAAANEAAAAAAKEAAAAAACEAAAAAANFAAAAAACFAAAAAADFAAAAAAAEAAAAAAEEAAAAAAGBAAAAAAEBAAAAAAIBAAAAAABBAAAAAAABAAAAAAJBAAAAAAJBAAAAAAMEAAAAAACEAAAAAAKEAAAAAAAEAAAAAAIFAAAAAAAFAAAAAABEAAAAAACEAAAAAADEAAAAAAIBAAAAAALBAAAAAAIBAAAAAALBAAAAAAJBAAAAAADBAAAAAAABAAAAAADEAAAAAACEAAAAAAKEAAAAAAFEAAAAAANFAAAAAACFAAAAAABEAAAAAAEEAAAAAACEAAAAAAFBAAAAAABBAAAAAAABAAAAAADBAAAAAAEBAAAAAAFBAAAAAABBAAAAAAEEAAAAAAFEAAAAAALEAAAAAACEAAAAAAMFAAAAAAEFAAAAAAAEAAAAAAGEAAAAAAAEAAAAAAJEAAAAAAHBAAAAAADBAAAAAANBAAAAAAGBAAAAAAEBAAAAAANBAAAAAABEAAAAAALEAAAAAAMEAAAAAALEAAAAAAGEAAAAAAEEAAAAAAIEAAAAAAKEAAAAAAEEAAAAAANEAAAAAADBAAAAAAEBAAAAAABBAAAAAAFBAAAAAANBAAAAAAFBAAAAAALEAAAAAANEAAAAAAKEAAAAAANEAAAAAANEAAAAAAFEAAAAAAEEAAAAAAIEAAAAAANEAAAAAAEEAAAAAACEAAAAAADEAAAAAAMEAAAAAAHEAAAAAADEAAAAAAABAAAAAAJEAAAAAAKEAAAAAACEAAAAAAIEAAAAAAIEAAAAAANEAAAAAAJEAAAAAALEAAAAAAHEAAAAAAKEAAAAAAJEAAAAAACEAAAAAABEAAAAAAKEAAAAAAMEAAAAAAGBAAAAAADEAAAAAABEAAAAAAFEAAAAAAKEAAAAAAIEAAAAAAEEAAAAAAIEAAAAAAEEAAAAAAHEAAAAAALFAAAAAAFFAAAAAAFEAAAAAAJEAAAAAAEEAAAAAAHEAAAAAAGBAAAAAANEAAAAAANEAAAAAAAEAAAAAAJEAAAAAAAEAAAAAAHEAAAAAALEAAAAAAAEAAAAAADEAAAAAAGFAAAAAACFAAAAAAEEAAAAAAEEAAAAAAIEAAAAAACBAAAAAAIBAAAAAAOEAAAAAAFEAAAAAAFEAAAAAAMEAAAAAAMEAAAAAAKEAAAAAAFEAAAAAAEEAAAAAAHEAAAAAAMFAAAAAACFAAAAAAFEAAAAAAIEAAAAAANBAAAAAAOBAAAAAAIBAAAAAALEAAAAAANEAAAAAAJEAAAAAADEAAAAAAFEAAAAAAEEAAAAAABEAAAAAAJEAAAAAAEEAAAAAAGFAAAAAAFFAAAAAAAEAAAAAAGEAAAAAAABAAAAAAKBAAAAAALBAAAAAAAEAAAAAAFEAAAAAAJEAAAAAANEAAAAAAKEAAAAAADEAAAAAADEAAAAAADEAAAAAAMEAAAAAAEFAAAAAACFAAAAAABEAAAAAAJEAAAAAALEAAAAAAJBAAAAAAEBAAAAAAJEAAAAAAAEAAAAAAJEAAAAAABEAAAAAAHEAAAAAAKEAAAAAAKEAAAAAAJEAAAAAAEEAAAAAANFAAAAAABFAAAAAAAFAAAAAAEEAAAAAAFEAAAAAAEEAAAAAAMBAAAAAAIEAAAAAAKEAAAAAALEAAAAAANEAAAAAADEAAAAAAGEAAAAAAEEAAAAAAMEAAAAAALEAAAAAABFAAAAAACFAAAAAAEFAAAAAAAEAAAAAAJEAAAAAAIEAAAAAAAEAAAAAADEAAAAAAFEAAAAAAJEAAAAAAMEAAAAAABEAAAAAAKEAAAAAAIEAAAAAAGEAAAAAAKEAAAAAAJFAAAAAAEFAAAAAABFAAAAAABFAAAAAAEEAAAAAADEAAAAAABEAAAAAAC
+ version: 6
+ 5,1:
+ ind: 5,1
+ tiles: BAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAANBAAAAAANBAAAAAAJBAAAAAAPFAAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAAEDgAAAAABDgAAAAACBAAAAAALBAAAAAANBAAAAAAHBAAAAAALBAAAAAAIBAAAAAAKBAAAAAABBAAAAAANFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAADDgAAAAAEDgAAAAABBAAAAAABBAAAAAAOBAAAAAAKBAAAAAANBAAAAAAFBAAAAAABBAAAAAAHBAAAAAAEFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEDgAAAAAEDgAAAAADDgAAAAABBAAAAAAPBAAAAAAJBAAAAAACBAAAAAAOBAAAAAAPBAAAAAAHBAAAAAAHFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAFDgAAAAAADgAAAAADDgAAAAAEFAAAAAAEEAAAAAADBAAAAAANBAAAAAAJBAAAAAADBAAAAAAGFAAAAAAEFAAAAAAFFAAAAAABFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABDgAAAAABDgAAAAAADgAAAAAEFAAAAAACEAAAAAAHBAAAAAAOBAAAAAACBAAAAAANFAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAFBAAAAAAHBAAAAAAIDgAAAAABFAAAAAAEEAAAAAAEBAAAAAANBAAAAAALBAAAAAAKFAAAAAACFAAAAAABFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAEBAAAAAAHBAAAAAAIDgAAAAAEFAAAAAAFEAAAAAANBAAAAAAJBAAAAAALBAAAAAAMFAAAAAADFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAABFAAAAAAABAAAAAACBAAAAAAJBAAAAAAIDgAAAAADFAAAAAADEAAAAAACBAAAAAAGBAAAAAAJBAAAAAADFAAAAAAAFAAAAAAEFAAAAAABFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFBAAAAAAIBAAAAAABBAAAAAAADgAAAAAEFAAAAAAEEAAAAAACBAAAAAAOBAAAAAACBAAAAAABFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAFFAAAAAADFAAAAAADBAAAAAADBAAAAAALBAAAAAAMBAAAAAABDgAAAAACFAAAAAAAEAAAAAAKEAAAAAAHBAAAAAAOBAAAAAAKBAAAAAACFAAAAAAFFAAAAAACFAAAAAAEFAAAAAACBAAAAAAMBAAAAAAABAAAAAABBAAAAAALBAAAAAAEDgAAAAABFAAAAAACFAAAAAABEAAAAAACEAAAAAALBAAAAAAIBAAAAAAEBAAAAAAMBAAAAAADBAAAAAAPBAAAAAAIBAAAAAAOBAAAAAACBAAAAAANBAAAAAAABAAAAAAGDgAAAAAEEAAAAAAMEAAAAAAIEAAAAAAIEAAAAAAKEAAAAAACBAAAAAAJBAAAAAANBAAAAAADBAAAAAADBAAAAAAPBAAAAAABBAAAAAAIBAAAAAAKBAAAAAAMBAAAAAAFDgAAAAABEAAAAAAFEAAAAAALEAAAAAADEAAAAAAIEAAAAAAKEAAAAAAGBAAAAAAEBAAAAAALBAAAAAAAEAAAAAALEAAAAAAIEAAAAAAHBAAAAAAFBAAAAAAKBAAAAAALDgAAAAAEEAAAAAAAEAAAAAAIEAAAAAAMEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAACEAAAAAAHEAAAAAABEAAAAAAGBAAAAAAKBAAAAAAGBAAAAAAIBAAAAAAAEAAAAAAFEAAAAAAAEAAAAAACEAAAAAAJFAAAAAADEAAAAAAEEAAAAAACEAAAAAACEAAAAAANEAAAAAAIEAAAAAAEEAAAAAAHBAAAAAAKBAAAAAAEBAAAAAAIBAAAAAAN
+ version: 6
+ 7,3:
+ ind: 7,3
+ tiles: BAAAAAAGBAAAAAAGDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAJBAAAAAAIDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALBAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAAGDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIBAAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAHBAAAAAAGDgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAODgAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAOBAAAAAAOBAAAAAAFDgAAAAACDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAAMBAAAAAANBAAAAAAODgAAAAAEDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAAIBAAAAAALBAAAAAAMDgAAAAAEDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAEBAAAAAAOBAAAAAAABAAAAAAKBAAAAAAIBAAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALBAAAAAABBAAAAAALBAAAAAAGBAAAAAAGBAAAAAADBAAAAAAHDgAAAAADDgAAAAABDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAFBAAAAAAHBAAAAAANBAAAAAALBAAAAAADBAAAAAAJBAAAAAAKBAAAAAANBAAAAAAJBAAAAAACDgAAAAAEDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAPBAAAAAAOBAAAAAAABAAAAAAFBAAAAAAEBAAAAAAMBAAAAAAPBAAAAAABBAAAAAABBAAAAAAJBAAAAAAMDgAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAABAAAAAAABAAAAAAKBAAAAAAKBAAAAAALBAAAAAALBAAAAAAMBAAAAAAIBAAAAAACBAAAAAAEBAAAAAAODgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAHEAAAAAAFEAAAAAABBAAAAAACBAAAAAAGBAAAAAABBAAAAAAJBAAAAAACBAAAAAACFAAAAAAAFAAAAAADDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 7,4:
+ ind: 7,4
+ tiles: EAAAAAAIEAAAAAALEAAAAAALEAAAAAAHEAAAAAAMEAAAAAAHEAAAAAAGBAAAAAAIFAAAAAABFAAAAAAAFAAAAAAEDgAAAAAEDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAPEAAAAAAEEAAAAAAKEAAAAAALEAAAAAAAEAAAAAAGBAAAAAACBAAAAAAPBAAAAAAHBAAAAAAOBAAAAAAGDgAAAAADDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGBAAAAAAFBAAAAAAFBAAAAAAMBAAAAAAHBAAAAAAIBAAAAAAMBAAAAAAFBAAAAAAIBAAAAAAEBAAAAAAODgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAABBAAAAAANBAAAAAAEBAAAAAAPBAAAAAAGBAAAAAAMBAAAAAAABAAAAAAJBAAAAAAGBAAAAAADDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAABBAAAAAAGBAAAAAADFAAAAAAEFAAAAAAFBAAAAAAJBAAAAAAEBAAAAAAADgAAAAADDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAANBAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAABDgAAAAABDgAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAKBAAAAAAKFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAABDgAAAAACDgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABBAAAAAAKFAAAAAABFAAAAAADFAAAAAAFDgAAAAAEDgAAAAACDgAAAAAEDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAMFAAAAAAFFAAAAAAFFAAAAAADFAAAAAADDgAAAAACDgAAAAAEDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIFAAAAAADFAAAAAAFFAAAAAACFAAAAAAEDgAAAAABDgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABFAAAAAAEFAAAAAAAFAAAAAAEDgAAAAADDgAAAAAEDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAMFAAAAAADFAAAAAAAFAAAAAACDgAAAAABDgAAAAABDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAALFAAAAAADFAAAAAACFAAAAAABDgAAAAADDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAKEAAAAAANFAAAAAAFDgAAAAAEDgAAAAACDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAADEAAAAAAMFAAAAAADDgAAAAAEDgAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAABEAAAAAAFFAAAAAAFDgAAAAADDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 5,-2:
+ ind: 5,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAFDgAAAAABDgAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAEDgAAAAABDgAAAAABDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAADgAAAAABDgAAAAACDgAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAACFAAAAAABDgAAAAAADgAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 4,0:
+ ind: 4,0
+ tiles: EAAAAAAFEAAAAAAKEAAAAAANEAAAAAAHEAAAAAADEAAAAAAIEAAAAAAFEAAAAAANEAAAAAAKFAAAAAAEEAAAAAAMEAAAAAAGBAAAAAAJBAAAAAAKBAAAAAABFAAAAAAFEAAAAAAAEAAAAAAEEAAAAAAAEAAAAAAEEAAAAAACEAAAAAAAEAAAAAAGEAAAAAACEAAAAAAMEAAAAAABEAAAAAAIBAAAAAAEBAAAAAAMBAAAAAAHFAAAAAAFFAAAAAAAEAAAAAAEEAAAAAAHEAAAAAANEAAAAAANEAAAAAAMEAAAAAAKEAAAAAAGEAAAAAAFEAAAAAAHEAAAAAAGEAAAAAAJBAAAAAAGBAAAAAALFAAAAAAEFAAAAAABFAAAAAAAEAAAAAAIEAAAAAABEAAAAAABEAAAAAAKEAAAAAAKEAAAAAAMEAAAAAAAEAAAAAAHEAAAAAAEEAAAAAAMEAAAAAAFBAAAAAAOBAAAAAADBAAAAAADFAAAAAADFAAAAAAEEAAAAAAAEAAAAAAJEAAAAAANEAAAAAAIEAAAAAAGEAAAAAANEAAAAAAGEAAAAAALEAAAAAADEAAAAAAKEAAAAAAKEAAAAAAIBAAAAAAOBAAAAAAFFAAAAAAAFAAAAAAEEAAAAAAKEAAAAAALEAAAAAAFEAAAAAAMEAAAAAAEEAAAAAAKEAAAAAAAEAAAAAAFEAAAAAADFAAAAAABEAAAAAAGEAAAAAADEAAAAAAABAAAAAAHBAAAAAAPBAAAAAABEAAAAAAKEAAAAAAHEAAAAAALEAAAAAAEEAAAAAABEAAAAAAEEAAAAAABEAAAAAAAEAAAAAALEAAAAAAJEAAAAAAKEAAAAAANEAAAAAANEAAAAAANEAAAAAAIEAAAAAAHEAAAAAACEAAAAAAGEAAAAAAGEAAAAAAHEAAAAAAIEAAAAAACEAAAAAAGEAAAAAAMEAAAAAAFEAAAAAAIEAAAAAAIEAAAAAAHEAAAAAACEAAAAAAJEAAAAAALEAAAAAAJEAAAAAACEAAAAAANEAAAAAAJEAAAAAAJEAAAAAACEAAAAAAKEAAAAAABEAAAAAAAEAAAAAAEEAAAAAAEEAAAAAABEAAAAAAHEAAAAAALEAAAAAAEEAAAAAAMEAAAAAABEAAAAAACEAAAAAAFEAAAAAANEAAAAAANEAAAAAAHEAAAAAABEAAAAAAGEAAAAAADEAAAAAAIEAAAAAAFEAAAAAAAEAAAAAADEAAAAAAKEAAAAAACEAAAAAAGEAAAAAACEAAAAAAIEAAAAAAIEAAAAAACEAAAAAAIEAAAAAACEAAAAAAGEAAAAAAGEAAAAAAJEAAAAAAGEAAAAAABEAAAAAABEAAAAAADEAAAAAAMEAAAAAADEAAAAAAIEAAAAAAMEAAAAAAAEAAAAAAKEAAAAAAEEAAAAAAGEAAAAAAEEAAAAAAEEAAAAAABEAAAAAAGEAAAAAALEAAAAAANEAAAAAAMEAAAAAAHEAAAAAAMEAAAAAADEAAAAAAABAAAAAAGEAAAAAACEAAAAAAAEAAAAAACEAAAAAALEAAAAAACEAAAAAACEAAAAAAJEAAAAAACEAAAAAAEEAAAAAAAEAAAAAAHEAAAAAAHEAAAAAANEAAAAAAHEAAAAAALBAAAAAABEAAAAAADEAAAAAAMEAAAAAAIEAAAAAAGEAAAAAANEAAAAAAAEAAAAAADEAAAAAACEAAAAAAIEAAAAAAAEAAAAAAIEAAAAAAEEAAAAAAIEAAAAAAKEAAAAAAIBAAAAAAGEAAAAAAAEAAAAAAEEAAAAAAJEAAAAAABEAAAAAAKEAAAAAALEAAAAAANEAAAAAABEAAAAAAGEAAAAAAFEAAAAAADEAAAAAAHEAAAAAAIEAAAAAAMEAAAAAANBAAAAAAHEAAAAAADEAAAAAAKEAAAAAAAEAAAAAAIEAAAAAAIEAAAAAABEAAAAAAMEAAAAAAJEAAAAAACEAAAAAAAEAAAAAAMEAAAAAADEAAAAAAIEAAAAAAKEAAAAAAHEAAAAAAD
+ version: 6
+ 4,1:
+ ind: 4,1
+ tiles: EAAAAAAHEAAAAAABEAAAAAAHEAAAAAAIEAAAAAADEAAAAAACEAAAAAAKEAAAAAADEAAAAAADEAAAAAAHEAAAAAACEAAAAAADEAAAAAANEAAAAAAAEAAAAAAEEAAAAAADEAAAAAACEAAAAAAHEAAAAAACEAAAAAANEAAAAAAFEAAAAAAIEAAAAAAMEAAAAAADEAAAAAAAEAAAAAANEAAAAAAKEAAAAAACEAAAAAAFEAAAAAAJEAAAAAAEEAAAAAAFEAAAAAAEEAAAAAAJEAAAAAALEAAAAAAMEAAAAAACEAAAAAAIEAAAAAAIEAAAAAANEAAAAAAJEAAAAAAMEAAAAAANEAAAAAANEAAAAAAIEAAAAAAKFAAAAAAFFAAAAAABEAAAAAAGEAAAAAANEAAAAAABEAAAAAAEEAAAAAAFEAAAAAADEAAAAAAMEAAAAAAEEAAAAAADEAAAAAAGEAAAAAACEAAAAAAEEAAAAAAMEAAAAAAAFAAAAAAAFAAAAAABEAAAAAADEAAAAAACEAAAAAABEAAAAAACEAAAAAADEAAAAAALEAAAAAAJEAAAAAAEEAAAAAANEAAAAAAFEAAAAAAIEAAAAAABEAAAAAACEAAAAAAJFAAAAAAFFAAAAAAAEAAAAAAAEAAAAAAIEAAAAAALEAAAAAAFEAAAAAAHEAAAAAAGEAAAAAAIEAAAAAAFEAAAAAAIEAAAAAANEAAAAAAKEAAAAAAMEAAAAAAEEAAAAAAGFAAAAAACFAAAAAAAEAAAAAAEEAAAAAAFEAAAAAALEAAAAAAHEAAAAAAMEAAAAAAEEAAAAAAAEAAAAAABEAAAAAAHEAAAAAAIEAAAAAALEAAAAAADEAAAAAAHEAAAAAAGFAAAAAACFAAAAAADEAAAAAAEEAAAAAAFEAAAAAAGEAAAAAAMEAAAAAAAEAAAAAAAEAAAAAABEAAAAAAEEAAAAAAKEAAAAAALEAAAAAALEAAAAAADEAAAAAAHEAAAAAANFAAAAAAFFAAAAAAAEAAAAAAGEAAAAAAJEAAAAAAMEAAAAAABEAAAAAAFEAAAAAACEAAAAAAKEAAAAAABEAAAAAABEAAAAAAJEAAAAAAAEAAAAAAFEAAAAAAMEAAAAAAIFAAAAAACFAAAAAABEAAAAAAKEAAAAAAKEAAAAAAIEAAAAAANEAAAAAAFEAAAAAAAEAAAAAAMEAAAAAALEAAAAAAMEAAAAAAAEAAAAAACEAAAAAAEEAAAAAAAEAAAAAAFFAAAAAACFAAAAAAFEAAAAAAGEAAAAAABEAAAAAADEAAAAAANEAAAAAAKEAAAAAAJEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAJEAAAAAADEAAAAAADEAAAAAAGEAAAAAABFAAAAAAEFAAAAAACEAAAAAACEAAAAAAFEAAAAAADEAAAAAAAEAAAAAAKEAAAAAAJEAAAAAACEAAAAAAIEAAAAAAIEAAAAAAGEAAAAAACEAAAAAAIEAAAAAABEAAAAAAFFAAAAAABFAAAAAAAEAAAAAADEAAAAAAIEAAAAAAEEAAAAAANEAAAAAAAEAAAAAAAEAAAAAAMEAAAAAAGEAAAAAAKEAAAAAAGEAAAAAAIEAAAAAAIEAAAAAANEAAAAAAJEAAAAAANEAAAAAAIEAAAAAAFEAAAAAAGEAAAAAADEAAAAAAFEAAAAAAFEAAAAAAEEAAAAAABEAAAAAADEAAAAAAFEAAAAAADEAAAAAANEAAAAAAHEAAAAAACEAAAAAAKEAAAAAAIEAAAAAADEAAAAAABEAAAAAABEAAAAAALEAAAAAAAEAAAAAANEAAAAAAFEAAAAAABEAAAAAAIEAAAAAAEEAAAAAABEAAAAAAJEAAAAAAGEAAAAAAGEAAAAAAKEAAAAAAFEAAAAAAHEAAAAAAAEAAAAAAMEAAAAAANEAAAAAAHEAAAAAAKEAAAAAADEAAAAAACEAAAAAAIEAAAAAAFEAAAAAAKEAAAAAACEAAAAAACEAAAAAALEAAAAAAFEAAAAAABEAAAAAAK
+ version: 6
+ 4,2:
+ ind: 4,2
+ tiles: EAAAAAAKEAAAAAADEAAAAAALEAAAAAAKEAAAAAAFEAAAAAAMEAAAAAABEAAAAAAJEAAAAAALEAAAAAAFEAAAAAAGEAAAAAAMEAAAAAALEAAAAAAFEAAAAAAAEAAAAAAFEAAAAAADEAAAAAALEAAAAAAIEAAAAAABEAAAAAANEAAAAAALEAAAAAALEAAAAAACEAAAAAAIEAAAAAANEAAAAAAIEAAAAAAEEAAAAAAJEAAAAAAGEAAAAAAKEAAAAAAJBAAAAAAEBAAAAAAMEAAAAAALEAAAAAAAEAAAAAADFAAAAAACEAAAAAAJEAAAAAAHEAAAAAACEAAAAAAGEAAAAAABEAAAAAADEAAAAAAJEAAAAAAEEAAAAAAMEAAAAAACBAAAAAAIBAAAAAAJBAAAAAABEAAAAAAEEAAAAAAMEAAAAAAEEAAAAAACEAAAAAAJEAAAAAAEEAAAAAAFEAAAAAAMEAAAAAAJEAAAAAAMEAAAAAAHEAAAAAACEAAAAAACBAAAAAAHBAAAAAAGBAAAAAAEBAAAAAABEAAAAAANEAAAAAADEAAAAAAJEAAAAAAGEAAAAAAAEAAAAAAGEAAAAAABEAAAAAAGEAAAAAAGEAAAAAAEEAAAAAAAEAAAAAANFAAAAAAABAAAAAANBAAAAAANBAAAAAANBAAAAAAKEAAAAAAKEAAAAAAKEAAAAAABEAAAAAAGEAAAAAAEEAAAAAANEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAALFAAAAAABFAAAAAAEFAAAAAAABAAAAAAFBAAAAAACBAAAAAACEAAAAAAEEAAAAAABEAAAAAACEAAAAAALEAAAAAABEAAAAAAFEAAAAAACEAAAAAAAEAAAAAAEEAAAAAADFAAAAAACFAAAAAACFAAAAAABFAAAAAAABAAAAAAFBAAAAAAGBAAAAAAEBAAAAAAHBAAAAAAEEAAAAAAHFAAAAAADEAAAAAABEAAAAAAIEAAAAAABEAAAAAALEAAAAAALFAAAAAABFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAEFAAAAAABBAAAAAAOBAAAAAAGBAAAAAADBAAAAAAPEAAAAAAJEAAAAAAIEAAAAAABEAAAAAACEAAAAAAHEAAAAAAIFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAADBAAAAAABBAAAAAAEEAAAAAANEAAAAAANEAAAAAANEAAAAAAGEAAAAAAJEAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAEBAAAAAAABAAAAAAOBAAAAAACEAAAAAAMEAAAAAAHEAAAAAAEEAAAAAADEAAAAAACEAAAAAADFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAADFAAAAAADFAAAAAAABAAAAAAEBAAAAAAKEAAAAAALEAAAAAANEAAAAAAMEAAAAAAIEAAAAAAKEAAAAAAJEAAAAAAIFAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAAEFAAAAAACFAAAAAADBAAAAAAMBAAAAAALEAAAAAAKFAAAAAACEAAAAAANEAAAAAAIEAAAAAAAEAAAAAAHEAAAAAAJFAAAAAADFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADBAAAAAAMBAAAAAACEAAAAAADEAAAAAANFAAAAAAFEAAAAAAFEAAAAAAFEAAAAAAJEAAAAAACEAAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAAEBAAAAAANBAAAAAAMEAAAAAAAEAAAAAAAFAAAAAABFAAAAAAEEAAAAAAEEAAAAAABEAAAAAAIEAAAAAAFEAAAAAADFAAAAAADFAAAAAADFAAAAAADFAAAAAAFFAAAAAADBAAAAAANBAAAAAAIEAAAAAAFEAAAAAAIFAAAAAADFAAAAAACEAAAAAAKEAAAAAADEAAAAAAGEAAAAAAJEAAAAAAB
+ version: 6
+ 4,3:
+ ind: 4,3
+ tiles: FAAAAAADFAAAAAADFAAAAAABFAAAAAADBAAAAAANBAAAAAABBAAAAAALBAAAAAAABAAAAAAABAAAAAAHBAAAAAALEAAAAAACEAAAAAAEEAAAAAAMEAAAAAAGEAAAAAALFAAAAAAAFAAAAAAEFAAAAAAEBAAAAAAFBAAAAAACBAAAAAAPBAAAAAANBAAAAAAJBAAAAAAGBAAAAAAJBAAAAAANBAAAAAALBAAAAAAHBAAAAAABBAAAAAAEEAAAAAADFAAAAAAFFAAAAAACFAAAAAACFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAAFBAAAAAAKBAAAAAALBAAAAAACBAAAAAAKFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAABFAAAAAAEFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAADFAAAAAABFAAAAAAEFAAAAAACFAAAAAAFFAAAAAACFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAAFFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAABFAAAAAABFAAAAAABFAAAAAACFAAAAAAAFAAAAAACFAAAAAAEFAAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAACFAAAAAADFAAAAAABFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABFAAAAAABFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABFAAAAAADFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAAFFAAAAAACFAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAAAFAAAAAAABAAAAAAIBAAAAAAFDQAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABBAAAAAACBAAAAAAOBAAAAAACDQAAAAABDQAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAABFAAAAAADFAAAAAADBAAAAAAGBAAAAAAIFAAAAAAADQAAAAADDQAAAAAADQAAAAAEFAAAAAAEFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAABFAAAAAABFAAAAAADFAAAAAAB
+ version: 6
+ 3,3:
+ ind: 3,3
+ tiles: FAAAAAADFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAADFAAAAAADFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAAFAAAAAACFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAADFAAAAAAEFAAAAAACFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAEFAAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAAFFAAAAAADFAAAAAABFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAAEFAAAAAABFAAAAAADFAAAAAACFAAAAAAFFAAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAADFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAACFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAACFAAAAAADFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAEFAAAAAADFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAEFAAAAAABFAAAAAADFAAAAAADFAAAAAAFFAAAAAAEFAAAAAADFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAACFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAEFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAABFAAAAAAEFAAAAAACFAAAAAAFDQAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAACDQAAAAAEDQAAAAADDQAAAAAEDQAAAAAEFAAAAAAFFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAABDQAAAAAFDQAAAAADDQAAAAAFDQAAAAAFDQAAAAAADQAAAAAADQAAAAAADQAAAAAFFAAAAAACDQAAAAABFAAAAAABFAAAAAAEFAAAAAABFAAAAAABFAAAAAACFAAAAAADDwAAAAAFDwAAAAAEDwAAAAAFDwAAAAABDwAAAAABDwAAAAADDwAAAAAFDQAAAAAEDQAAAAADDQAAAAAEDQAAAAABDQAAAAADFAAAAAADFAAAAAAEFAAAAAACFAAAAAABDwAAAAADDwAAAAAADwAAAAAADwAAAAABDwAAAAACDwAAAAAAFAAAAAADDwAAAAABDwAAAAACDQAAAAAEDQAAAAAEDQAAAAACDQAAAAAFDQAAAAAFFAAAAAAFFAAAAAADDwAAAAACDwAAAAADDwAAAAADFAAAAAAFDwAAAAAADwAAAAACDwAAAAAADwAAAAAFDwAAAAABDwAAAAAADwAAAAAFDQAAAAADDQAAAAABDQAAAAACDQAAAAACDQAAAAACDwAAAAAADwAAAAAFDwAAAAAFDwAAAAABDwAAAAAADwAAAAAEDwAAAAAEDQAAAAACDwAAAAAADwAAAAAADwAAAAAFDwAAAAAADwAAAAABDQAAAAAFDQAAAAAEDQAAAAAFDwAAAAAEDwAAAAAFDwAAAAAADwAAAAACDQAAAAABDwAAAAACDwAAAAADDwAAAAAFDwAAAAABDQAAAAAFDwAAAAACDwAAAAAADwAAAAADDwAAAAAFDQAAAAAADQAAAAAEDwAAAAAFDwAAAAABDwAAAAAADwAAAAADDwAAAAACDwAAAAAFDwAAAAABDwAAAAACDwAAAAAADwAAAAACDwAAAAABDwAAAAAFDwAAAAABDwAAAAAADwAAAAAFDQAAAAAD
+ version: 6
+ 4,4:
+ ind: 4,4
+ tiles: DQAAAAAADQAAAAACDQAAAAABDQAAAAADFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFDwAAAAACDQAAAAAEDQAAAAAEDQAAAAADFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAAFFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAAEDwAAAAABDwAAAAACDQAAAAACDQAAAAADFAAAAAAAFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAAEDwAAAAADDwAAAAAFDwAAAAAFDQAAAAAEDQAAAAACFAAAAAACFAAAAAACFAAAAAAEFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAEFAAAAAACDwAAAAADDwAAAAABDwAAAAAFDQAAAAACDQAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAEDwAAAAAADwAAAAAADwAAAAACDQAAAAABDQAAAAAEFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAABFAAAAAACFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAEDwAAAAAFDwAAAAABDQAAAAACDQAAAAADDQAAAAAAFAAAAAAFFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAAFFAAAAAACFAAAAAACDwAAAAACDQAAAAAEDQAAAAAADQAAAAAEDQAAAAAAFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAADQAAAAAEDQAAAAADDQAAAAADDQAAAAAEFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAADQAAAAACDQAAAAAFDQAAAAADFAAAAAADFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAACFAAAAAACFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAADQAAAAADDQAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAAFAAAAAADFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAABFAAAAAACFAAAAAAEFAAAAAADFAAAAAADFAAAAAACFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAFBAAAAAAPBAAAAAAGBAAAAAAIBAAAAAALFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAAFBAAAAAAEBAAAAAAEBAAAAAAJBAAAAAAIEAAAAAADEAAAAAAL
+ version: 6
+ 3,4:
+ ind: 3,4
+ tiles: DwAAAAACDwAAAAAADwAAAAADDQAAAAADDwAAAAAEDwAAAAACDwAAAAAADwAAAAABDwAAAAAFDwAAAAACDwAAAAAFDwAAAAACDwAAAAACDwAAAAAEDwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAAFDwAAAAADDwAAAAACDwAAAAAEDwAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAABDQAAAAAEFAAAAAABDwAAAAABDwAAAAABDwAAAAAEDwAAAAADDwAAAAAADwAAAAAEDwAAAAACDwAAAAABDwAAAAAFDwAAAAAEDwAAAAAEDwAAAAAEDwAAAAACDwAAAAACDwAAAAADDQAAAAABDwAAAAACFAAAAAAFDwAAAAABDwAAAAAADwAAAAACDwAAAAABDwAAAAADDwAAAAABDwAAAAABDwAAAAACDwAAAAADDwAAAAADDwAAAAAFDwAAAAAADwAAAAADDQAAAAACDQAAAAAEDwAAAAADDwAAAAAFDwAAAAAFDwAAAAABDwAAAAACDwAAAAABDwAAAAAEDwAAAAABDwAAAAAFDwAAAAACDwAAAAAADwAAAAAFDwAAAAAFDwAAAAACDQAAAAAADQAAAAAEDQAAAAABDQAAAAACDwAAAAAADwAAAAADDwAAAAAADwAAAAAADwAAAAAFDwAAAAAEDwAAAAABDwAAAAADDwAAAAADDwAAAAACDwAAAAAADwAAAAACDQAAAAAEDQAAAAAFDQAAAAABDQAAAAABDQAAAAAEDQAAAAADDQAAAAADDQAAAAABDQAAAAABDwAAAAADDwAAAAADDwAAAAABDwAAAAAADwAAAAABDwAAAAADDwAAAAAFFAAAAAADFAAAAAAFDQAAAAADDQAAAAABDQAAAAAADQAAAAABDQAAAAACDQAAAAAEDQAAAAADDQAAAAADDQAAAAACDQAAAAAADwAAAAACDwAAAAAADwAAAAADDwAAAAABFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAEDQAAAAAEDQAAAAADDQAAAAADDQAAAAAFDQAAAAAFDQAAAAAADQAAAAAEDQAAAAAADQAAAAAADQAAAAAEDQAAAAAADQAAAAADFAAAAAADFAAAAAABFAAAAAADFAAAAAACFAAAAAADFAAAAAADFAAAAAAEFAAAAAAAFAAAAAABDQAAAAACDQAAAAACDQAAAAAFDQAAAAACDQAAAAADDQAAAAAADQAAAAACBAAAAAAGFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAACDQAAAAABDQAAAAACDQAAAAAFDQAAAAABDQAAAAAABAAAAAALBAAAAAAFFAAAAAABFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAAFAAAAAADFAAAAAADFAAAAAAFBAAAAAAJBAAAAAAOBAAAAAANFAAAAAADFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAADFAAAAAADBAAAAAAMBAAAAAAKBAAAAAAGBAAAAAALFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAEFAAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAAABAAAAAAAFAAAAAAEBAAAAAAABAAAAAAKBAAAAAAKFAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACBAAAAAAJBAAAAAALBAAAAAAMBAAAAAABBAAAAAAHFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAD
+ version: 6
+ 5,5:
+ ind: 5,5
+ tiles: EAAAAAAJEAAAAAACFAAAAAACFAAAAAABBAAAAAAEFAAAAAAEFAAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAAEFAAAAAAAEAAAAAAKBAAAAAAHBAAAAAAMBAAAAAAMBAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAEBAAAAAAHFAAAAAABFAAAAAABFAAAAAABFAAAAAABBAAAAAAEBAAAAAAMBAAAAAAEBAAAAAALFAAAAAACFAAAAAADFAAAAAACFAAAAAAFFAAAAAACFAAAAAAEFAAAAAACFAAAAAABBAAAAAALFAAAAAAEFAAAAAAAFAAAAAAFBAAAAAAFBAAAAAANBAAAAAABFAAAAAAEFAAAAAABFAAAAAADFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAEFAAAAAABFAAAAAADFAAAAAAFFAAAAAABFAAAAAABFAAAAAADBAAAAAAKFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAAEFAAAAAACFAAAAAACFAAAAAAEFAAAAAACFAAAAAADFAAAAAADFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAACFAAAAAABFAAAAAAEFAAAAAABFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAAEFAAAAAABFAAAAAADFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAACFAAAAAABFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAAFAAAAAAEFAAAAAADFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAEFAAAAAABFAAAAAAFFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAADFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAEBAAAAAAPFAAAAAADFAAAAAAAFAAAAAABFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAAFAAAAAABFAAAAAAABAAAAAAOFAAAAAAEFAAAAAACFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAABFAAAAAAFFAAAAAABFAAAAAADFAAAAAADFAAAAAAFFAAAAAAAFAAAAAADBAAAAAAFBAAAAAAJBAAAAAAMFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACBAAAAAAIBAAAAAAEBAAAAAAKFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAAFBAAAAAAPFAAAAAADFAAAAAACFAAAAAAEFAAAAAAE
+ version: 6
+ 5,6:
+ ind: 5,6
+ tiles: BAAAAAADEAAAAAAIBAAAAAALBAAAAAAPFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAABEAAAAAAFEAAAAAAGEAAAAAAGBAAAAAAMBAAAAAALFAAAAAAEFAAAAAABFAAAAAACFAAAAAABFAAAAAAEFAAAAAADFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAABEAAAAAAHEAAAAAADEAAAAAANEAAAAAAMEAAAAAADEAAAAAAJFAAAAAAEFAAAAAAEFAAAAAADFAAAAAABFAAAAAACFAAAAAACFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAFEAAAAAAEEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAGEAAAAAALEAAAAAAFBAAAAAAAFAAAAAABFAAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAAFFAAAAAABFAAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAABEAAAAAAEEAAAAAANEAAAAAABBAAAAAABBAAAAAAAFAAAAAACFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAEEAAAAAABEAAAAAAGEAAAAAAEEAAAAAAKEAAAAAAMEAAAAAABEAAAAAAKEAAAAAAABAAAAAAPBAAAAAAOFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAAFAAAAAACFAAAAAADEAAAAAAJEAAAAAAJEAAAAAANEAAAAAACEAAAAAADEAAAAAALEAAAAAAMEAAAAAAFEAAAAAAMBAAAAAAEBAAAAAACFAAAAAAFFAAAAAABFAAAAAAFFAAAAAACFAAAAAABEAAAAAADEAAAAAACEAAAAAANEAAAAAANEAAAAAAFEAAAAAACEAAAAAADEAAAAAAJEAAAAAACEAAAAAACBAAAAAAPBAAAAAAIFAAAAAACFAAAAAAAFAAAAAADFAAAAAAFEAAAAAAKEAAAAAAIEAAAAAANEAAAAAALEAAAAAABEAAAAAAMEAAAAAAGEAAAAAAIEAAAAAAFEAAAAAANBAAAAAAPBAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAACEAAAAAADEAAAAAAFEAAAAAAAEAAAAAAMEAAAAAANEAAAAAAEEAAAAAAKEAAAAAALBAAAAAAMBAAAAAAJBAAAAAAPBAAAAAAJFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAAAEAAAAAAKEAAAAAAEEAAAAAAHEAAAAAAGEAAAAAAIEAAAAAAJEAAAAAADEAAAAAANBAAAAAADBAAAAAAHBAAAAAADBAAAAAAJFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAABAAAAAALEAAAAAABEAAAAAAEEAAAAAACEAAAAAACEAAAAAAHEAAAAAAMEAAAAAAEBAAAAAAEBAAAAAAMBAAAAAAGBAAAAAAJFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACBAAAAAALEAAAAAAFEAAAAAAMEAAAAAAHEAAAAAAFEAAAAAAKBAAAAAAGEAAAAAAHBAAAAAABEAAAAAALBAAAAAAJBAAAAAAFFAAAAAADFAAAAAACFAAAAAACFAAAAAAEBAAAAAABEAAAAAAGEAAAAAAGEAAAAAAKBAAAAAAMEAAAAAAFEAAAAAAHEAAAAAAMEAAAAAAIEAAAAAACEAAAAAABBAAAAAAHFAAAAAAEFAAAAAACFAAAAAACFAAAAAACBAAAAAABBAAAAAAPEAAAAAAIEAAAAAAKEAAAAAAIEAAAAAAMFAAAAAABBAAAAAALEAAAAAANEAAAAAAHEAAAAAALFAAAAAADFAAAAAAEFAAAAAADBAAAAAANBAAAAAABFAAAAAABBAAAAAAHEAAAAAABEAAAAAAABAAAAAAEEAAAAAAHEAAAAAANEAAAAAADEAAAAAABEAAAAAAABAAAAAAOFAAAAAAFFAAAAAAEFAAAAAAEBAAAAAABBAAAAAAP
+ version: 6
+ 5,7:
+ ind: 5,7
+ tiles: FAAAAAADBAAAAAANBAAAAAAMEAAAAAAGEAAAAAAHEAAAAAADEAAAAAABEAAAAAABBAAAAAAIEAAAAAAGFAAAAAABBAAAAAALBAAAAAAABAAAAAABBAAAAAAJBAAAAAAEFAAAAAAAFAAAAAADBAAAAAAGBAAAAAAKEAAAAAAGEAAAAAANEAAAAAAIEAAAAAABEAAAAAAAEAAAAAABBAAAAAANBAAAAAAIBAAAAAAOBAAAAAAGBAAAAAAKBAAAAAALFAAAAAAAFAAAAAAEBAAAAAADBAAAAAAMBAAAAAANEAAAAAAJEAAAAAAHBAAAAAAMBAAAAAAOBAAAAAAABAAAAAABBAAAAAAOBAAAAAANBAAAAAALBAAAAAAPBAAAAAAJFAAAAAACFAAAAAACBAAAAAAPBAAAAAAKBAAAAAAEBAAAAAAIBAAAAAAIBAAAAAAFBAAAAAAGBAAAAAAFBAAAAAAIBAAAAAAJBAAAAAAIBAAAAAABBAAAAAAJBAAAAAAOFAAAAAABFAAAAAAFFAAAAAAEFAAAAAADBAAAAAABBAAAAAALBAAAAAAPBAAAAAALBAAAAAAMBAAAAAAMBAAAAAAHBAAAAAABBAAAAAACBAAAAAAGBAAAAAACBAAAAAAAFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAFBAAAAAAFBAAAAAAKBAAAAAAEBAAAAAAOBAAAAAAABAAAAAABBAAAAAAABAAAAAAEBAAAAAANBAAAAAABBAAAAAAKBAAAAAACFAAAAAAFFAAAAAADFAAAAAADFAAAAAAEBAAAAAAEBAAAAAAOBAAAAAACBAAAAAACBAAAAAAMBAAAAAAKBAAAAAADBAAAAAABBAAAAAABBAAAAAAJBAAAAAAHBAAAAAANFAAAAAADFAAAAAABFAAAAAAFFAAAAAABFAAAAAAEBAAAAAANBAAAAAAOBAAAAAAJBAAAAAAPBAAAAAAMBAAAAAAPBAAAAAAMBAAAAAAIBAAAAAAGBAAAAAAEBAAAAAANFAAAAAABFAAAAAAAFAAAAAABFAAAAAAEFAAAAAADBAAAAAACBAAAAAAGBAAAAAAGBAAAAAANBAAAAAAPBAAAAAABBAAAAAAMBAAAAAAHBAAAAAAKBAAAAAAFBAAAAAADBAAAAAAJFAAAAAADFAAAAAAEFAAAAAAEBAAAAAALBAAAAAAFBAAAAAAJBAAAAAAIBAAAAAAKBAAAAAAIBAAAAAAMBAAAAAAKBAAAAAAMBAAAAAAMBAAAAAAPBAAAAAAMFAAAAAAFBAAAAAAOFAAAAAAAFAAAAAABBAAAAAAABAAAAAAEBAAAAAACBAAAAAAMBAAAAAAJBAAAAAACBAAAAAAABAAAAAAMBAAAAAAEBAAAAAANBAAAAAADBAAAAAAFFAAAAAACFAAAAAABFAAAAAADFAAAAAAEBAAAAAADBAAAAAACBAAAAAAHBAAAAAAFBAAAAAAHBAAAAAAJBAAAAAACBAAAAAADBAAAAAADBAAAAAALBAAAAAAPBAAAAAAKFAAAAAABBAAAAAALBAAAAAALBAAAAAALBAAAAAAMBAAAAAADBAAAAAAGBAAAAAADBAAAAAANBAAAAAAKBAAAAAAKBAAAAAAKBAAAAAABBAAAAAAPBAAAAAAPBAAAAAAFFAAAAAABFAAAAAACFAAAAAACFAAAAAADBAAAAAAOBAAAAAAJBAAAAAAPBAAAAAAFBAAAAAAEBAAAAAAKBAAAAAABBAAAAAAIBAAAAAAIBAAAAAALBAAAAAADBAAAAAAPFAAAAAADFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAABBAAAAAAGBAAAAAAJBAAAAAADBAAAAAAMBAAAAAAHBAAAAAADBAAAAAACBAAAAAALBAAAAAABBAAAAAAKFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAAFFAAAAAADFAAAAAAFBAAAAAAPBAAAAAAJBAAAAAACBAAAAAANBAAAAAAFBAAAAAAFBAAAAAANBAAAAAANBAAAAAAN
+ version: 6
+ 4,6:
+ ind: 4,6
+ tiles: DQAAAAAFDQAAAAADDQAAAAACFAAAAAACFAAAAAAEFAAAAAAEBAAAAAAHEAAAAAANEAAAAAAIEAAAAAAAEAAAAAAIEAAAAAAMEAAAAAAFEAAAAAADEAAAAAALEAAAAAALDQAAAAACDQAAAAAEDQAAAAADFAAAAAAAFAAAAAAFFAAAAAACBAAAAAAGBAAAAAAOEAAAAAAJEAAAAAALEAAAAAAJEAAAAAADEAAAAAAAEAAAAAANEAAAAAAMEAAAAAAKFAAAAAADDQAAAAAADQAAAAAFDQAAAAAFFAAAAAAAFAAAAAADBAAAAAANBAAAAAAOEAAAAAAHEAAAAAADEAAAAAAKEAAAAAAEEAAAAAAJEAAAAAACEAAAAAAGEAAAAAAMDQAAAAAAFAAAAAAFFAAAAAAEDQAAAAACFAAAAAAFFAAAAAABFAAAAAAFBAAAAAAKEAAAAAAHEAAAAAAKEAAAAAAJEAAAAAAHEAAAAAAHEAAAAAAGEAAAAAADEAAAAAANDQAAAAAAFAAAAAADFAAAAAADDQAAAAADDQAAAAADFAAAAAAFFAAAAAABBAAAAAAOBAAAAAANEAAAAAACEAAAAAAMEAAAAAAHEAAAAAAMEAAAAAAHEAAAAAAEEAAAAAAGDQAAAAAEDQAAAAADFAAAAAAAFAAAAAAEDQAAAAABDQAAAAADFAAAAAAAFAAAAAADBAAAAAAKEAAAAAAFEAAAAAADEAAAAAAMEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAGDQAAAAAADQAAAAADDQAAAAAAFAAAAAADFAAAAAAFDQAAAAAADQAAAAAFFAAAAAAABAAAAAAMBAAAAAAHEAAAAAADEAAAAAAKEAAAAAAIEAAAAAAFEAAAAAAAEAAAAAAIDQAAAAAEDQAAAAABDQAAAAADFAAAAAAAFAAAAAACFAAAAAABDQAAAAADDQAAAAAFFAAAAAACBAAAAAAIBAAAAAAJEAAAAAANEAAAAAAIEAAAAAAGEAAAAAAJEAAAAAAGFAAAAAADDQAAAAAEDQAAAAABDQAAAAACFAAAAAADFAAAAAAEFAAAAAABDQAAAAACDQAAAAAAFAAAAAACBAAAAAABBAAAAAAEEAAAAAADEAAAAAAKEAAAAAAJEAAAAAALFAAAAAAAFAAAAAACDQAAAAABDQAAAAAEFAAAAAABFAAAAAABFAAAAAACFAAAAAABDQAAAAACDQAAAAADBAAAAAACBAAAAAAGBAAAAAACEAAAAAAKEAAAAAAEEAAAAAAIFAAAAAADFAAAAAAEFAAAAAAEDQAAAAAFDQAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAABDQAAAAACDQAAAAADBAAAAAAMBAAAAAABBAAAAAADBAAAAAAABAAAAAAOBAAAAAAAFAAAAAAAFAAAAAACFAAAAAACDQAAAAAEDQAAAAAEFAAAAAABFAAAAAACFAAAAAADFAAAAAABDQAAAAABFAAAAAAAFAAAAAAFFAAAAAADBAAAAAAHBAAAAAADBAAAAAAKFAAAAAABFAAAAAACFAAAAAAEDQAAAAABDQAAAAACFAAAAAAFFAAAAAACFAAAAAAAFAAAAAACFAAAAAADDQAAAAACFAAAAAADFAAAAAAAFAAAAAAABAAAAAAABAAAAAAPFAAAAAAAFAAAAAAAFAAAAAACDQAAAAAEDQAAAAAAFAAAAAAEFAAAAAADFAAAAAABFAAAAAABFAAAAAAFFAAAAAAEDQAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAABBAAAAAADBAAAAAAFFAAAAAAEFAAAAAACDQAAAAAADQAAAAAEFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAADDQAAAAAEFAAAAAABFAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAEDQAAAAACDQAAAAABFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAAADQAAAAAEDQAAAAAAFAAAAAAD
+ version: 6
+ 2,6:
+ ind: 2,6
+ tiles: FAAAAAABFAAAAAABFAAAAAAAFAAAAAAEFAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAACFAAAAAADFAAAAAABFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAACFAAAAAAEFAAAAAABFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAAFFAAAAAAFFAAAAAABFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAFFAAAAAADFAAAAAABFAAAAAABFAAAAAACFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAFFAAAAAACFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAEFAAAAAADFAAAAAADFAAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAAFAAAAAADFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAAFAAAAAABFAAAAAAEFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAAFFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAACFAAAAAAEFAAAAAADFAAAAAADFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAABFAAAAAAFFAAAAAACFAAAAAAEFAAAAAABFAAAAAABFAAAAAACFAAAAAAEFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAAFFAAAAAACFAAAAAAEFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAE
+ version: 6
+ 2,5:
+ ind: 2,5
+ tiles: FAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAACFAAAAAADFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAFFAAAAAACFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFFAAAAAACFAAAAAACFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAADFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAAEFAAAAAACFAAAAAABBAAAAAAMBAAAAAAHBAAAAAAPFAAAAAABFAAAAAACFAAAAAADFAAAAAAEFAAAAAACFAAAAAABFAAAAAADFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAABBAAAAAAJBAAAAAAIBAAAAAAOBAAAAAAPBAAAAAAABAAAAAAJBAAAAAADBAAAAAANBAAAAAAHFAAAAAACFAAAAAAEFAAAAAADBAAAAAAIFAAAAAAAFAAAAAAAFAAAAAADBAAAAAALBAAAAAAMBAAAAAAJBAAAAAAIBAAAAAABBAAAAAAABAAAAAALBAAAAAACBAAAAAADBAAAAAAPBAAAAAANBAAAAAAPBAAAAAAGBAAAAAAIFAAAAAAEFAAAAAAFFAAAAAABBAAAAAAJBAAAAAAFBAAAAAAHBAAAAAAABAAAAAAJBAAAAAAEBAAAAAAFBAAAAAAPBAAAAAANBAAAAAALBAAAAAAPBAAAAAANBAAAAAAJBAAAAAAOBAAAAAAAFAAAAAAEFAAAAAAABAAAAAACBAAAAAABBAAAAAANBAAAAAAIBAAAAAACBAAAAAAGBAAAAAAKBAAAAAAKBAAAAAAMBAAAAAABBAAAAAABBAAAAAAFBAAAAAAFBAAAAAAPFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAEFAAAAAADBAAAAAAJBAAAAAAOBAAAAAAKBAAAAAALBAAAAAAKBAAAAAACBAAAAAANBAAAAAALBAAAAAABBAAAAAAEBAAAAAAEFAAAAAADFAAAAAACFAAAAAAEFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABFAAAAAABFAAAAAAEFAAAAAACFAAAAAAEFAAAAAACFAAAAAACBAAAAAABBAAAAAADFAAAAAACFAAAAAABFAAAAAAFFAAAAAAFFAAAAAACFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFFAAAAAABFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAAFAAAAAACFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAABFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAABFAAAAAACFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAABFAAAAAAFFAAAAAABFAAAAAAEFAAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAACFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAACFAAAAAACFAAAAAAFFAAAAAADFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAAB
+ version: 6
+ 2,4:
+ ind: 2,4
+ tiles: FAAAAAAFFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAABFAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAACFAAAAAAEDQAAAAADDQAAAAABDwAAAAAFDQAAAAAEFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAACFAAAAAADFAAAAAAEFAAAAAACFAAAAAABDQAAAAABDQAAAAAEDQAAAAABDwAAAAACBAAAAAAMFAAAAAAFFAAAAAABFAAAAAADFAAAAAACFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAFDQAAAAAEDQAAAAAADQAAAAAABAAAAAAHBAAAAAAMBAAAAAANFAAAAAADFAAAAAAEFAAAAAABFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAFFAAAAAADFAAAAAADFAAAAAAAFAAAAAADDQAAAAABDQAAAAAAFAAAAAAFBAAAAAALBAAAAAANBAAAAAABBAAAAAADFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADDQAAAAAFFAAAAAABFAAAAAACFAAAAAAABAAAAAAOBAAAAAAABAAAAAALBAAAAAAEFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAFDQAAAAACBAAAAAACFAAAAAAAFAAAAAAAFAAAAAAABAAAAAAGBAAAAAAGBAAAAAAGBAAAAAAMBAAAAAALFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAAFAAAAAABFAAAAAACFAAAAAADBAAAAAAHFAAAAAACFAAAAAAEFAAAAAAEFAAAAAAABAAAAAAJBAAAAAAIBAAAAAAMBAAAAAAJBAAAAAAIBAAAAAAHFAAAAAABFAAAAAAFFAAAAAACFAAAAAAFFAAAAAABFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAABAAAAAAFFAAAAAAFFAAAAAAEBAAAAAAABAAAAAAPBAAAAAADBAAAAAAMBAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAABBAAAAAAIFAAAAAACFAAAAAAABAAAAAAHBAAAAAALBAAAAAAPBAAAAAAJFAAAAAABFAAAAAABFAAAAAABFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAACFAAAAAACFAAAAAACBAAAAAAKFAAAAAAABAAAAAAIBAAAAAAEBAAAAAAMFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAACFAAAAAAEFAAAAAACFAAAAAAFBAAAAAAJBAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAACFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAFFAAAAAABBAAAAAAGFAAAAAAEFAAAAAAAFAAAAAABFAAAAAAFFAAAAAADFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAACFAAAAAAFFAAAAAACFAAAAAAEBAAAAAAMFAAAAAADFAAAAAABFAAAAAAAFAAAAAAFFAAAAAACFAAAAAAEFAAAAAACFAAAAAADFAAAAAACFAAAAAAFFAAAAAABFAAAAAADFAAAAAAAFAAAAAAEFAAAAAADFAAAAAACFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAFFAAAAAACFAAAAAADFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAB
+ version: 6
+ 3,5:
+ ind: 3,5
+ tiles: FAAAAAABFAAAAAAEFAAAAAAAFAAAAAAFBAAAAAAEBAAAAAAOBAAAAAAJBAAAAAAIBAAAAAADBAAAAAANFAAAAAAFFAAAAAADFAAAAAADFAAAAAAAFAAAAAAEFAAAAAACFAAAAAAFFAAAAAAEFAAAAAADFAAAAAABFAAAAAADBAAAAAAGFAAAAAAABAAAAAAGBAAAAAAEBAAAAAAPFAAAAAAEFAAAAAACFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAAFBAAAAAAHBAAAAAAKBAAAAAAEBAAAAAAIBAAAAAAMFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAAFFAAAAAADFAAAAAADFAAAAAADFAAAAAAEFAAAAAABFAAAAAAEBAAAAAALBAAAAAANBAAAAAAABAAAAAABFAAAAAAAFAAAAAAEFAAAAAADFAAAAAABFAAAAAACFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFBAAAAAAEBAAAAAANBAAAAAALBAAAAAAFFAAAAAAFFAAAAAADFAAAAAABFAAAAAABFAAAAAACFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAADFAAAAAAAFAAAAAACFAAAAAAECAAAAAABCAAAAAACFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABBAAAAAADFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAACFAAAAAADFAAAAAABCAAAAAAACAAAAAABCAAAAAADCAAAAAACFAAAAAAAFAAAAAAEFAAAAAAEBAAAAAALBAAAAAADBAAAAAAABAAAAAAFBAAAAAANBAAAAAANBAAAAAAMBAAAAAAPBAAAAAAJBAAAAAAFCAAAAAABCAAAAAADBAAAAAAOBAAAAAAKBAAAAAAEBAAAAAACBAAAAAAMBAAAAAAHBAAAAAABBAAAAAADBAAAAAAIBAAAAAADBAAAAAACBAAAAAADBAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAABBAAAAAAOBAAAAAAPBAAAAAAABAAAAAAIBAAAAAACBAAAAAAJBAAAAAAGBAAAAAAGBAAAAAALBAAAAAADBAAAAAALBAAAAAAJBAAAAAADCAAAAAADCAAAAAAABAAAAAAHBAAAAAAFBAAAAAACBAAAAAADBAAAAAALBAAAAAAEBAAAAAAOBAAAAAAEBAAAAAAJBAAAAAAKBAAAAAAGBAAAAAAOBAAAAAAGCAAAAAADCAAAAAABCAAAAAADCAAAAAABBAAAAAAKBAAAAAACBAAAAAAOFAAAAAAEFAAAAAADBAAAAAAJBAAAAAAABAAAAAAOFAAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAAECAAAAAADCAAAAAACFAAAAAABFAAAAAABFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAADFAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAADFAAAAAADFAAAAAABFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAFDQAAAAABDQAAAAADDQAAAAAFFAAAAAAEFAAAAAAFCAAAAAACCAAAAAABFAAAAAABFAAAAAAFFAAAAAADFAAAAAABFAAAAAADFAAAAAABFAAAAAABFAAAAAAFFAAAAAAEDQAAAAACDQAAAAAFDQAAAAACDQAAAAAEFAAAAAAEBAAAAAANBAAAAAAFFAAAAAADFAAAAAAFFAAAAAACDQAAAAAEFAAAAAAEFAAAAAAEFAAAAAADFAAAAAACDQAAAAAFDQAAAAADDQAAAAADDQAAAAACDQAAAAAFFAAAAAAABAAAAAAEBAAAAAAOFAAAAAAFFAAAAAAEFAAAAAAEDQAAAAAD
+ version: 6
+ 3,6:
+ ind: 3,6
+ tiles: FAAAAAAEFAAAAAAAFAAAAAADFAAAAAABFAAAAAAEDQAAAAADDQAAAAAFDQAAAAADDQAAAAABFAAAAAAAFAAAAAABBAAAAAAMFAAAAAACFAAAAAAEFAAAAAADFAAAAAABFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAAFAAAAAADDQAAAAAFDQAAAAAFDQAAAAADDQAAAAADFAAAAAAAFAAAAAACBAAAAAANBAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAABDQAAAAAADQAAAAACFAAAAAADFAAAAAADFAAAAAABBAAAAAAJBAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAABFAAAAAAFFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAABAAAAAAMBAAAAAAGFAAAAAADFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAAFBAAAAAANBAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAACFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAFFAAAAAACFAAAAAADFAAAAAABFAAAAAACFAAAAAACFAAAAAABBAAAAAAEBAAAAAAAFAAAAAAFFAAAAAADFAAAAAABFAAAAAACFAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAAEFAAAAAADDQAAAAABDQAAAAAEFAAAAAABFAAAAAAFFAAAAAACBAAAAAAEFAAAAAADFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFDQAAAAADFAAAAAAADQAAAAAADQAAAAAAFAAAAAABBAAAAAAJBAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAADFAAAAAADFAAAAAADDQAAAAAADwAAAAAFDQAAAAAFFAAAAAADFAAAAAADBAAAAAAMBAAAAAAAFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAEFAAAAAAEFAAAAAADFAAAAAACFAAAAAAEFAAAAAADDQAAAAADDwAAAAAEDQAAAAABDQAAAAAEFAAAAAAFFAAAAAACBAAAAAAHBAAAAAANFAAAAAABFAAAAAABFAAAAAAAFAAAAAADFAAAAAABFAAAAAAAFAAAAAACFAAAAAACDQAAAAAADQAAAAABDwAAAAABDQAAAAAFFAAAAAADFAAAAAABFAAAAAABBAAAAAAGFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAADFAAAAAABDQAAAAACDQAAAAAFDwAAAAAEFAAAAAACDQAAAAAFFAAAAAAAFAAAAAAABAAAAAADFAAAAAAEFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAADDQAAAAAADwAAAAAFDwAAAAAEDQAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAAAFAAAAAAEFAAAAAADFAAAAAABFAAAAAAEFAAAAAAFFAAAAAACDQAAAAAEDQAAAAAAFAAAAAADDQAAAAABDQAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABDQAAAAACDQAAAAACFAAAAAAFDQAAAAADDQAAAAAAFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACFAAAAAAEFAAAAAADFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAAEFAAAAAABDQAAAAAFDwAAAAAADQAAAAACDQAAAAABDQAAAAAA
+ version: 6
+ 4,5:
+ ind: 4,5
+ tiles: FAAAAAAEFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAACFAAAAAACFAAAAAACBAAAAAAHBAAAAAANBAAAAAAGEAAAAAANEAAAAAALEAAAAAANEAAAAAAGFAAAAAAAFAAAAAACFAAAAAADFAAAAAADFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAEBAAAAAAMBAAAAAAJBAAAAAAHFAAAAAAEEAAAAAAKEAAAAAABEAAAAAABEAAAAAAIFAAAAAABFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAEFAAAAAAABAAAAAAABAAAAAAJBAAAAAAFBAAAAAAAFAAAAAAAEAAAAAAEEAAAAAADEAAAAAABEAAAAAAJBAAAAAAHFAAAAAADFAAAAAACFAAAAAAFFAAAAAAFFAAAAAADBAAAAAAMBAAAAAAJBAAAAAAGBAAAAAALEAAAAAABEAAAAAALEAAAAAAJEAAAAAANFAAAAAAABAAAAAAIBAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAADBAAAAAAMBAAAAAAMBAAAAAAOBAAAAAAHFAAAAAACEAAAAAAHEAAAAAAAEAAAAAAFEAAAAAACBAAAAAAKBAAAAAAHBAAAAAAMFAAAAAACFAAAAAAFFAAAAAABBAAAAAANBAAAAAAABAAAAAADBAAAAAAJBAAAAAAPEAAAAAAFEAAAAAAHEAAAAAABEAAAAAANEAAAAAALBAAAAAACBAAAAAAJFAAAAAABFAAAAAAEFAAAAAAABAAAAAAJBAAAAAAABAAAAAAKBAAAAAAAEAAAAAAFEAAAAAAAEAAAAAAFEAAAAAAKEAAAAAAHEAAAAAAGEAAAAAAGBAAAAAACBAAAAAALFAAAAAADBAAAAAAIBAAAAAAPBAAAAAAMBAAAAAAJBAAAAAAPEAAAAAAJEAAAAAAEEAAAAAABEAAAAAAHEAAAAAALEAAAAAANEAAAAAABEAAAAAAEBAAAAAALBAAAAAAJBAAAAAAJBAAAAAAPBAAAAAAHBAAAAAAGBAAAAAAOBAAAAAAIEAAAAAAHEAAAAAABEAAAAAAGEAAAAAAFEAAAAAAFEAAAAAADEAAAAAADEAAAAAAMBAAAAAAABAAAAAACBAAAAAAABAAAAAAHBAAAAAAABAAAAAAKBAAAAAALBAAAAAAKEAAAAAABEAAAAAAEEAAAAAAIEAAAAAAAEAAAAAAHEAAAAAAGEAAAAAADEAAAAAAMEAAAAAACBAAAAAAFBAAAAAAPBAAAAAAPBAAAAAAABAAAAAAHBAAAAAAABAAAAAABBAAAAAANEAAAAAAFEAAAAAAJEAAAAAAHEAAAAAALEAAAAAAFEAAAAAAKEAAAAAACEAAAAAALBAAAAAADBAAAAAABFAAAAAACFAAAAAACFAAAAAADBAAAAAAMBAAAAAAOBAAAAAAMEAAAAAAKEAAAAAAIEAAAAAAJEAAAAAAMEAAAAAACEAAAAAAIEAAAAAAKEAAAAAAJBAAAAAAOBAAAAAALFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFBAAAAAAGEAAAAAALEAAAAAAJFAAAAAAAEAAAAAAKEAAAAAADEAAAAAAIEAAAAAAJEAAAAAAMEAAAAAAGBAAAAAAGBAAAAAALFAAAAAAEFAAAAAAEBAAAAAACBAAAAAAJBAAAAAAJEAAAAAAIEAAAAAAHEAAAAAAGEAAAAAAEEAAAAAAFEAAAAAALEAAAAAAMEAAAAAAIEAAAAAALBAAAAAALBAAAAAAEDQAAAAAFDQAAAAAAFAAAAAAEFAAAAAACBAAAAAAFBAAAAAAAEAAAAAAHEAAAAAAKEAAAAAADEAAAAAAMEAAAAAAKEAAAAAAHEAAAAAABEAAAAAAEEAAAAAAFEAAAAAAJDQAAAAAEDQAAAAADDQAAAAAAFAAAAAAAFAAAAAADFAAAAAACBAAAAAALEAAAAAABEAAAAAADEAAAAAAHEAAAAAAKEAAAAAAGEAAAAAACEAAAAAAEEAAAAAAMEAAAAAAF
+ version: 6
+ 2,3:
+ ind: 2,3
+ tiles: FAAAAAAFFAAAAAAAFAAAAAABFAAAAAAFFAAAAAACFAAAAAAFFAAAAAACFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAAFFAAAAAACFAAAAAAEFAAAAAACFAAAAAABFAAAAAAEFAAAAAACFAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAABFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFFAAAAAACFAAAAAABFAAAAAAFFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEFAAAAAACFAAAAAACFAAAAAABFAAAAAADFAAAAAABFAAAAAABFAAAAAADFAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAAEFAAAAAADFAAAAAAFFAAAAAABFAAAAAAEFAAAAAAAFAAAAAACFAAAAAAFFAAAAAADFAAAAAAAFAAAAAABFAAAAAAFFAAAAAADFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAEFAAAAAABFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAFFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAFFAAAAAACFAAAAAABFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAAFFAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAFFAAAAAADFAAAAAAEFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAADFAAAAAABDQAAAAADDQAAAAACFAAAAAACFAAAAAAFFAAAAAAAFAAAAAABFAAAAAABFAAAAAAFFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAFFAAAAAADDQAAAAAFDQAAAAACDQAAAAAAFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAACDQAAAAACDQAAAAACDQAAAAACDQAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAAEFAAAAAABFAAAAAADFAAAAAABFAAAAAABFAAAAAAEFAAAAAABFAAAAAABDQAAAAABDQAAAAAADQAAAAABDQAAAAAADwAAAAADFAAAAAAEFAAAAAABFAAAAAACFAAAAAAEFAAAAAADFAAAAAAEFAAAAAABFAAAAAAAFAAAAAAEFAAAAAACFAAAAAACDQAAAAACDQAAAAAFFAAAAAADDwAAAAADDwAAAAAEFAAAAAABFAAAAAACFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAAFFAAAAAAEFAAAAAABFAAAAAACFAAAAAAFDQAAAAABDQAAAAAFDwAAAAAFDwAAAAABDwAAAAABFAAAAAABFAAAAAAAFAAAAAAEFAAAAAADFAAAAAACFAAAAAABFAAAAAACFAAAAAACFAAAAAADFAAAAAADFAAAAAABDQAAAAACDQAAAAAADwAAAAABDwAAAAACDwAAAAADFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAACFAAAAAAAFAAAAAABFAAAAAAFFAAAAAADDQAAAAADDQAAAAADDwAAAAAEDwAAAAAFDwAAAAABFAAAAAABFAAAAAAFFAAAAAAAFAAAAAABFAAAAAACFAAAAAAFFAAAAAACFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAEDQAAAAADDQAAAAAFDQAAAAACDwAAAAAADwAAAAAF
+ version: 6
+ 6,1:
+ ind: 6,1
+ tiles: DgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAABDgAAAAAADgAAAAAADgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAAEDgAAAAAEDgAAAAADDgAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEDgAAAAAADgAAAAAEDgAAAAACDgAAAAAADgAAAAACDgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAAEDgAAAAAEDgAAAAAADgAAAAABDgAAAAAEDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAADgAAAAAEDgAAAAABDgAAAAACDgAAAAABDgAAAAACDgAAAAAEDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAABDgAAAAACDgAAAAADDgAAAAADDgAAAAABDgAAAAAEDgAAAAADDgAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAADBAAAAAAIDgAAAAACDgAAAAAADgAAAAABDgAAAAAADgAAAAACDgAAAAABDgAAAAAEDgAAAAABDgAAAAACDgAAAAADDgAAAAACDgAAAAAEDgAAAAAADgAAAAABDgAAAAAD
+ version: 6
+ 7,2:
+ ind: 7,2
+ tiles: DgAAAAAEDgAAAAAADgAAAAACDgAAAAADDgAAAAACDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAAEDgAAAAADDgAAAAACDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACDgAAAAABDgAAAAADDgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAADDgAAAAACDgAAAAABDgAAAAAEDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABDgAAAAACDgAAAAABDgAAAAACDgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALDgAAAAADDgAAAAAEDgAAAAAADgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALDgAAAAABDgAAAAADDgAAAAAEDgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGDgAAAAACDgAAAAACDgAAAAAEDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGDgAAAAAADgAAAAADDgAAAAAEDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAIDgAAAAAEDgAAAAACDgAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAABDgAAAAAADgAAAAAEDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAKDgAAAAADDgAAAAABDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAADDgAAAAABDgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAOBAAAAAAHDgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAGBAAAAAAJDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAALBAAAAAANDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 7,1:
+ ind: 7,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAEDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEDgAAAAACDgAAAAAEDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAAEDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAEDgAAAAAEDgAAAAAEDgAAAAAEDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAADgAAAAACDgAAAAABDgAAAAAEDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAACDgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAABDgAAAAABDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAAEDgAAAAABDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 6,0:
+ ind: 6,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 7,8:
+ ind: 7,8
+ tiles: DgAAAAADDgAAAAACDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,8:
+ ind: 3,8
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAABDgAAAAAEDgAAAAAEDgAAAAACDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAADgAAAAAADgAAAAADDgAAAAAEDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAABDgAAAAADDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,6:
+ ind: -1,6
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAAEDgAAAAACDgAAAAACDgAAAAABDgAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAADDgAAAAAADgAAAAAEDgAAAAAADgAAAAAEDgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -6,6:
+ ind: -6,6
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAABDgAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAADDgAAAAAEDgAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAACDgAAAAAEDgAAAAAEDgAAAAADDgAAAAAEDgAAAAAEDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAADgAAAAAEDgAAAAAADgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -5,6:
+ ind: -5,6
+ tiles: DgAAAAAEDgAAAAABDgAAAAADDgAAAAAEDgAAAAAADgAAAAAEDgAAAAABDgAAAAADDgAAAAAEDgAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAAEDgAAAAABDgAAAAADDgAAAAAEDgAAAAACDgAAAAAEDgAAAAAEDgAAAAAADgAAAAACDgAAAAAEDgAAAAABDgAAAAABDgAAAAACDgAAAAAEDgAAAAAEDgAAAAAADgAAAAAEDgAAAAACDgAAAAAADgAAAAAEDgAAAAADDgAAAAACDgAAAAADDgAAAAAEDgAAAAABDgAAAAACDgAAAAACDgAAAAABDgAAAAABDgAAAAACDgAAAAABDgAAAAACDgAAAAAADgAAAAABDgAAAAAADgAAAAACDgAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAEDgAAAAACDgAAAAAADgAAAAAEDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -4,6:
+ ind: -4,6
+ tiles: DgAAAAAADgAAAAAEDgAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAABDgAAAAADDgAAAAABDgAAAAABDgAAAAADDgAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAADgAAAAADDgAAAAABDgAAAAADDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -10,5:
+ ind: -10,5
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAEDgAAAAACDgAAAAAEDgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAADgAAAAACDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -12,0:
+ ind: -12,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAEDgAAAAABDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAEDgAAAAADDgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABDgAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAADDgAAAAADDgAAAAADDgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAADDgAAAAADDgAAAAADDgAAAAAD
+ version: 6
+ -12,-1:
+ ind: -12,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAC
+ version: 6
+ -6,-5:
+ ind: -6,-5
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAADDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -7,-5:
+ ind: -7,-5
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAEDgAAAAAADgAAAAACDgAAAAAB
+ 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
+ inherent: True
+ enabled: True
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14BrickTileStoneEndE
+ decals:
+ 186: -47,3
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14BrickTileStoneEndN
+ decals:
+ 185: -48,4
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14BrickTileStoneEndS
+ decals:
+ 184: -48,2
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14BrickTileStoneEndW
+ decals:
+ 183: -49,3
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraGrass1
+ decals:
+ 15: 49.09297,59.49988
+ 49: 49.359924,64.45203
+ 69: 52.34697,66.45361
+ 119: 57.401115,67.01922
+ 176: 64.27647,68.894226
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraGrass10
+ decals:
+ 2: 46.37117,60.525146
+ 22: 52.673714,58.872
+ 29: 49.358604,60.3561
+ 40: 47.758976,62.292095
+ 47: 47.67283,63.765427
+ 53: 50.50953,62.74025
+ 67: 52.37909,65.5913
+ 73: 52.233067,63.2528
+ 79: 55.44881,61.017544
+ 89: 54.745472,63.021095
+ 96: 55.366283,64.615105
+ 98: 53.5851,67.0151
+ 106: 55.510265,68.52478
+ 120: 57.308704,66.24185
+ 135: 57.701458,67.893585
+ 147: 60.249287,66.17217
+ 165: 62.141033,64.972664
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraGrass11
+ decals:
+ 8: 48.73864,58.733578
+ 16: 49.53789,58.65163
+ 23: 52.94325,59.55701
+ 42: 46.867065,63.262333
+ 82: 56.39604,61.302322
+ 91: 53.651924,64.1987
+ 95: 56.698566,63.30666
+ 117: 57.274857,62.71058
+ 121: 57.43962,65.58763
+ 148: 60.25699,64.748276
+ 170: 63.898422,66.20169
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraGrass12
+ decals:
+ 7: 47.96083,58.718185
+ 20: 51.84777,58.836353
+ 25: 54.682262,59.426167
+ 33: 46.20942,62.207066
+ 38: 51.115402,60.23933
+ 50: 49.801453,63.677223
+ 74: 52.741337,63.99682
+ 80: 54.470776,61.871883
+ 81: 56.02639,60.640404
+ 83: 57.03617,60.784103
+ 88: 55.30765,62.659348
+ 99: 52.184483,68.799164
+ 108: 56.784893,69.001976
+ 122: 57.401115,64.68711
+ 137: 57.686058,69.413956
+ 152: 61.824047,64.126236
+ 168: 63.07572,67.51514
+ 179: 63.732315,69.91684
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraGrass13
+ decals:
+ 3: 45.893703,61.210155
+ 6: 47.228313,58.294865
+ 14: 46.748158,61.33027
+ 19: 50.308,58.097466
+ 24: 53.72876,59.16448
+ 32: 46.937172,61.976162
+ 34: 45.504772,60.68311
+ 37: 50.553284,61.11797
+ 41: 46.95691,62.723114
+ 45: 49.634796,62.775146
+ 57: 51.37745,63.1846
+ 87: 54.052376,62.613167
+ 90: 53.983067,63.521385
+ 93: 55.55111,63.499077
+ 97: 54.511467,64.88449
+ 101: 53.886417,68.74529
+ 105: 54.75556,68.455505
+ 118: 56.79238,64.126564
+ 123: 57.609047,63.754303
+ 136: 57.724564,68.65198
+ 141: 58.525475,69.80649
+ 143: 59.39605,68.6504
+ 146: 60.672848,67.85929
+ 149: 60.126072,65.502556
+ 151: 60.768436,63.170933
+ 167: 63.03637,66.600685
+ 178: 64.51939,69.68085
+ 181: 62.532032,70.7428
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraGrass14
+ decals:
+ 17: 50.123173,58.78248
+ 26: 54.836285,59.98803
+ 27: 53.03785,60.159832
+ 36: 49.752373,60.902462
+ 66: 52.17116,64.75236
+ 72: 53.564148,65.417435
+ 76: 53.421135,61.906635
+ 78: 55.15491,60.332535
+ 94: 56.27501,62.760193
+ 107: 55.856815,68.92501
+ 124: 57.893986,62.93075
+ 138: 58.694897,67.93618
+ 182: 63.33878,70.55598
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraGrass2
+ decals:
+ 65: 51.218163,65.067924
+ 125: 58.895123,62.31501
+ 126: 59.86546,62.892265
+ 139: 58.540874,68.93675
+ 160: 61.869503,69.5722
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraGrass3
+ decals:
+ 31: 47.659687,61.47972
+ 35: 48.766052,61.456627
+ 43: 47.693684,63.08568
+ 55: 52.41709,61.65226
+ 64: 51.301254,66.050835
+ 112: 55.311935,65.80783
+ 115: 56.31978,65.940475
+ 127: 58.910526,63.477074
+ 145: 60.318596,68.80935
+ 153: 61.194393,64.89975
+ 159: 61.567795,70.60137
+ 163: 62.03682,66.620636
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraGrass4
+ decals:
+ 21: 51.96838,59.61936
+ 48: 48.317715,64.49821
+ 56: 52.062843,62.43802
+ 62: 51.087387,66.95404
+ 100: 52.96999,68.930016
+ 109: 54.91148,67.493416
+ 128: 58.28674,64.29292
+ 155: 60.9058,66.872055
+ 171: 64.15422,67.83394
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraGrass5
+ decals:
+ 61: 50.244118,66.67696
+ 116: 56.358284,64.91681
+ 129: 59.21087,64.66237
+ 140: 59.465004,69.38316
+ 154: 60.95827,65.72571
+ 166: 62.9675,65.627235
+ 175: 65.11273,68.75656
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraGrass6
+ decals:
+ 60: 50.070843,65.81108
+ 103: 54.333256,66.56273
+ 130: 58.263638,65.330574
+ 158: 60.517662,70.6407
+ 174: 63.341824,68.92372
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraGrass7
+ decals:
+ 4: 47.111214,59.033615
+ 9: 48.122555,59.44168
+ 52: 51.10251,62.016754
+ 77: 54.531128,60.902092
+ 110: 55.989628,67.83207
+ 114: 56.41219,66.88403
+ 131: 58.29444,66.26958
+ 142: 59.734898,67.772964
+ 156: 61.25998,68.50431
+ 162: 61.852013,67.53842
+ 173: 65.15773,67.80444
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraGrass8
+ decals:
+ 51: 51.39515,61.285564
+ 59: 49.08712,65.46525
+ 63: 51.74021,67.75888
+ 75: 53.066887,62.891815
+ 85: 55.4469,61.885715
+ 102: 53.927197,67.85247
+ 132: 59.22627,65.70002
+ 157: 60.820534,69.736084
+ 172: 64.8921,66.90965
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraGrass9
+ decals:
+ 1: 46.108093,59.80719
+ 5: 46.136215,59.053066
+ 12: 47.398655,60.590504
+ 18: 51.216724,58.243706
+ 58: 50.138317,64.9688
+ 70: 52.603817,67.35345
+ 86: 56.23241,62.093525
+ 104: 54.34866,65.69556
+ 133: 59.287876,66.485085
+ 144: 59.84113,70.040825
+ 164: 61.944996,65.75535
+ 169: 63.20362,68.10567
+ 177: 65.27457,69.366196
+ 180: 62.758316,69.779175
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraRock01
+ decals:
+ 54: 53.393204,60.903755
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraRock02
+ decals:
+ 44: 48.744514,62.52027
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraRock04
+ decals:
+ 150: 60.92871,63.937614
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14FloraRock05
+ decals:
+ 71: 53.323616,66.28497
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14GrassBushes2
+ decals:
+ 111: 55.358143,66.85458
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14GrassBushes3
+ decals:
+ 13: 48.2785,60.454742
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14GrassBushes4
+ decals:
+ 92: 54.511467,63.9224
+ 134: 58.317543,67.32403
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14GrassBushes5
+ decals:
+ 30: 51.765404,64.019646
+ 84: 57.119686,61.70229
+ 161: 62.1891,68.67413
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14GrassBushes6
+ decals:
+ 28: 50.109985,59.67494
+ 46: 48.76201,63.483208
+ - node:
+ color: '#FFFFFFFF'
+ id: CP14GrassBushes9
+ decals:
+ 39: 52.052246,60.607315
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 43195
+ 0,-1:
+ 0: 47359
+ -1,0:
+ 0: 61627
+ 0,1:
+ 0: 3978
+ -1,1:
+ 0: 20239
+ 0,2:
+ 0: 30583
+ 0,3:
+ 0: 65520
+ -1,3:
+ 0: 65524
+ 1,0:
+ 0: 62395
+ 1,1:
+ 0: 8191
+ 1,2:
+ 0: 55773
+ 1,3:
+ 0: 65521
+ 1,-1:
+ 0: 46011
+ 1,4:
+ 0: 56796
+ 2,0:
+ 0: 61559
+ 2,1:
+ 0: 53247
+ 2,2:
+ 0: 56797
+ 2,3:
+ 0: 65532
+ 2,-1:
+ 0: 20599
+ 2,4:
+ 0: 65535
+ 3,0:
+ 0: 65535
+ 3,1:
+ 0: 65535
+ 3,2:
+ 0: 65535
+ 3,3:
+ 0: 65535
+ 3,-1:
+ 0: 65375
+ 3,4:
+ 0: 65535
+ 4,0:
+ 0: 63351
+ 4,1:
+ 0: 8191
+ 4,2:
+ 0: 63965
+ 4,3:
+ 0: 53759
+ -4,0:
+ 0: 4080
+ -5,0:
+ 0: 32767
+ -4,1:
+ 0: 63743
+ -4,2:
+ 0: 4079
+ -4,3:
+ 0: 65535
+ -5,3:
+ 0: 65535
+ -4,4:
+ 0: 56591
+ -4,-1:
+ 0: 26208
+ -3,0:
+ 0: 4095
+ -3,1:
+ 0: 30583
+ -3,2:
+ 0: 60935
+ -3,3:
+ 0: 65535
+ -3,-1:
+ 0: 65532
+ -3,4:
+ 0: 56783
+ -2,0:
+ 0: 53725
+ -2,1:
+ 0: 7965
+ -2,2:
+ 0: 56797
+ -2,3:
+ 0: 65521
+ -2,-1:
+ 0: 55807
+ -2,4:
+ 0: 56785
+ -1,2:
+ 0: 21845
+ -1,-1:
+ 0: 45567
+ 0,-4:
+ 0: 4080
+ -1,-4:
+ 0: 4088
+ 0,-3:
+ 0: 1911
+ 0,-2:
+ 0: 65535
+ -1,-2:
+ 0: 61559
+ 0,-5:
+ 0: 61166
+ 1,-4:
+ 0: 65528
+ 1,-3:
+ 0: 65535
+ 1,-2:
+ 0: 46079
+ 1,-5:
+ 0: 48059
+ 2,-4:
+ 0: 65531
+ 2,-3:
+ 0: 65471
+ 2,-2:
+ 0: 20735
+ 2,-5:
+ 0: 65535
+ 3,-4:
+ 0: 65535
+ 3,-3:
+ 0: 65535
+ 3,-2:
+ 0: 65493
+ 3,-5:
+ 0: 65535
+ 4,-4:
+ 0: 65535
+ 4,-3:
+ 0: 65535
+ 4,-2:
+ 0: 65500
+ 4,-1:
+ 0: 30685
+ -4,-4:
+ 0: 65520
+ -4,-5:
+ 0: 32759
+ -5,-4:
+ 0: 4080
+ -4,-3:
+ 0: 4095
+ -4,-2:
+ 0: 63351
+ -5,-2:
+ 0: 61166
+ -5,-1:
+ 0: 65520
+ -3,-4:
+ 0: 65527
+ -3,-3:
+ 0: 65535
+ -3,-2:
+ 0: 56783
+ -3,-5:
+ 0: 30577
+ -2,-4:
+ 0: 8176
+ -2,-3:
+ 0: 8191
+ -2,-2:
+ 0: 63351
+ -2,-5:
+ 0: 65528
+ -1,-3:
+ 0: 26487
+ -1,-5:
+ 0: 48059
+ -8,0:
+ 0: 65294
+ -9,0:
+ 0: 65535
+ -8,1:
+ 0: 44735
+ -9,1:
+ 0: 58623
+ -8,2:
+ 0: 41698
+ -9,2:
+ 0: 61678
+ -8,3:
+ 0: 58026
+ -9,3:
+ 0: 63359
+ -8,-1:
+ 0: 61166
+ -8,4:
+ 0: 43682
+ -7,0:
+ 0: 65518
+ -7,1:
+ 0: 65503
+ -7,2:
+ 0: 24819
+ -7,3:
+ 0: 61543
+ -6,0:
+ 0: 65535
+ -6,1:
+ 0: 65535
+ -6,2:
+ 0: 65535
+ -6,3:
+ 0: 65535
+ -6,4:
+ 0: 56607
+ -6,-1:
+ 0: 61166
+ -5,1:
+ 0: 30583
+ -5,2:
+ 0: 30583
+ -5,4:
+ 0: 56591
+ -8,-4:
+ 0: 57564
+ -9,-4:
+ 0: 56784
+ -8,-3:
+ 0: 57582
+ -9,-3:
+ 0: 48056
+ -8,-2:
+ 0: 3822
+ -9,-2:
+ 0: 48011
+ -9,-1:
+ 0: 65435
+ -8,-5:
+ 0: 52236
+ -7,-4:
+ 0: 30583
+ -7,-3:
+ 0: 61559
+ -7,-2:
+ 0: 57599
+ -7,-5:
+ 0: 30471
+ -7,-1:
+ 0: 3822
+ -6,-4:
+ 0: 65535
+ -6,-3:
+ 0: 61183
+ -6,-5:
+ 0: 65535
+ -6,-2:
+ 0: 61166
+ -5,-3:
+ 0: 26214
+ -5,-5:
+ 0: 26214
+ -8,-7:
+ 0: 52477
+ -9,-7:
+ 0: 64640
+ -9,-6:
+ 0: 63359
+ -9,-5:
+ 0: 51071
+ -8,-6:
+ 0: 52416
+ -7,-7:
+ 0: 65535
+ -7,-6:
+ 0: 30576
+ -6,-7:
+ 0: 65535
+ -6,-6:
+ 0: 65535
+ -6,-8:
+ 0: 30583
+ -6,-9:
+ 0: 30583
+ -5,-7:
+ 0: 4095
+ -5,-6:
+ 0: 26118
+ -4,-7:
+ 0: 4095
+ -4,-6:
+ 0: 1911
+ -3,-7:
+ 0: 65535
+ -3,-6:
+ 0: 21791
+ -3,-8:
+ 0: 65535
+ -3,-9:
+ 0: 30583
+ -2,-8:
+ 0: 65535
+ -2,-7:
+ 0: 53759
+ -2,-6:
+ 0: 65421
+ -2,-9:
+ 0: 64712
+ -1,-8:
+ 0: 65535
+ -1,-7:
+ 0: 56575
+ -1,-6:
+ 0: 48013
+ -1,-9:
+ 0: 65535
+ 0,-8:
+ 0: 65527
+ 0,-7:
+ 0: 65535
+ 0,-6:
+ 0: 4095
+ 1,-8:
+ 0: 30576
+ 1,-7:
+ 0: 65535
+ 1,-6:
+ 0: 36863
+ 1,-9:
+ 0: 65534
+ 2,-8:
+ 0: 60563
+ 2,-7:
+ 0: 65470
+ 2,-6:
+ 0: 49151
+ 2,-9:
+ 0: 65535
+ 3,-8:
+ 0: 65502
+ 3,-7:
+ 0: 65535
+ 3,-6:
+ 0: 65535
+ 3,-9:
+ 0: 33079
+ 4,-8:
+ 0: 65535
+ 4,-7:
+ 0: 65535
+ 4,-6:
+ 0: 65535
+ 4,-5:
+ 0: 65535
+ -9,4:
+ 0: 63359
+ -8,5:
+ 0: 49378
+ -9,5:
+ 0: 30591
+ -8,6:
+ 0: 65535
+ -9,6:
+ 0: 65535
+ -8,7:
+ 0: 65535
+ -9,7:
+ 0: 65535
+ -8,8:
+ 0: 65535
+ -7,4:
+ 0: 26464
+ -7,5:
+ 0: 16624
+ -7,6:
+ 0: 29495
+ -7,7:
+ 0: 13111
+ -7,8:
+ 0: 65535
+ -6,5:
+ 0: 65309
+ -6,6:
+ 0: 65535
+ -6,7:
+ 0: 24831
+ -6,8:
+ 0: 65535
+ -5,5:
+ 0: 65293
+ -5,6:
+ 0: 24017
+ -5,7:
+ 0: 24817
+ -5,8:
+ 0: 65535
+ -4,5:
+ 0: 65293
+ -4,6:
+ 0: 48048
+ -4,7:
+ 0: 24816
+ 5,-4:
+ 0: 65535
+ 5,-3:
+ 0: 65471
+ 5,-2:
+ 0: 65531
+ 5,-1:
+ 0: 47359
+ 5,-5:
+ 0: 65535
+ 5,0:
+ 0: 47291
+ 6,-4:
+ 0: 65535
+ 6,-3:
+ 0: 65535
+ 6,-2:
+ 0: 65535
+ 6,-1:
+ 0: 65535
+ 6,-5:
+ 0: 65535
+ 6,0:
+ 0: 4095
+ 7,-4:
+ 0: 65535
+ 7,-3:
+ 0: 65535
+ 7,-2:
+ 0: 65527
+ 7,-1:
+ 0: 65535
+ 7,-5:
+ 0: 65535
+ 7,0:
+ 0: 36863
+ 8,-4:
+ 0: 65535
+ 8,-3:
+ 0: 65535
+ 8,-2:
+ 0: 65535
+ 8,-1:
+ 0: 65535
+ -12,0:
+ 0: 65520
+ -12,-1:
+ 0: 65535
+ -13,0:
+ 0: 47505
+ -12,1:
+ 0: 28927
+ -13,1:
+ 0: 4507
+ -12,2:
+ 0: 63351
+ -13,2:
+ 0: 65535
+ -12,3:
+ 0: 65535
+ -13,3:
+ 0: 65535
+ -12,4:
+ 0: 65535
+ -11,0:
+ 0: 65531
+ -11,1:
+ 0: 29439
+ -11,2:
+ 0: 61559
+ -11,3:
+ 0: 65535
+ -11,-1:
+ 0: 47931
+ -11,4:
+ 0: 65535
+ -10,0:
+ 0: 65535
+ -10,1:
+ 0: 65535
+ -10,2:
+ 0: 63231
+ -10,3:
+ 0: 65535
+ -10,-1:
+ 0: 65423
+ -10,4:
+ 0: 65535
+ -12,-4:
+ 0: 65520
+ -13,-4:
+ 0: 39312
+ -12,-3:
+ 0: 65295
+ -13,-3:
+ 0: 47112
+ -12,-2:
+ 0: 65535
+ -13,-2:
+ 0: 39355
+ -13,-1:
+ 0: 48057
+ -12,-5:
+ 0: 53247
+ -11,-4:
+ 0: 56784
+ -11,-3:
+ 0: 65293
+ -11,-2:
+ 0: 47935
+ -11,-5:
+ 0: 53247
+ -10,-4:
+ 0: 65520
+ -10,-3:
+ 0: 40385
+ -10,-2:
+ 0: 65293
+ -10,-5:
+ 0: 53247
+ -13,4:
+ 0: 65535
+ -12,5:
+ 0: 65535
+ -13,5:
+ 0: 65535
+ -12,6:
+ 0: 65535
+ -13,6:
+ 0: 65535
+ -12,7:
+ 0: 65535
+ -13,7:
+ 0: 65535
+ -12,8:
+ 0: 65535
+ -11,5:
+ 0: 65535
+ -11,6:
+ 0: 65535
+ -11,7:
+ 0: 65535
+ -11,8:
+ 0: 65535
+ -10,5:
+ 0: 65535
+ -10,6:
+ 0: 65535
+ -10,7:
+ 0: 65535
+ -10,8:
+ 0: 65535
+ -9,8:
+ 0: 65535
+ -4,8:
+ 0: 65535
+ -3,5:
+ 0: 65485
+ -3,6:
+ 0: 48056
+ -3,7:
+ 0: 24824
+ -3,8:
+ 0: 65535
+ -2,5:
+ 0: 56785
+ -2,6:
+ 0: 4081
+ -2,7:
+ 0: 52422
+ -2,8:
+ 0: 65535
+ -1,4:
+ 0: 56784
+ -1,5:
+ 0: 56784
+ -1,6:
+ 0: 4080
+ -1,7:
+ 0: 65532
+ -1,8:
+ 0: 65535
+ 0,4:
+ 0: 56784
+ 0,5:
+ 0: 56784
+ 0,6:
+ 0: 4080
+ 0,7:
+ 0: 65528
+ 0,8:
+ 0: 65535
+ 1,5:
+ 0: 56796
+ 1,6:
+ 0: 53244
+ 1,7:
+ 0: 52445
+ 1,8:
+ 0: 52445
+ 2,5:
+ 0: 47935
+ 2,6:
+ 0: 48059
+ 2,7:
+ 0: 48051
+ 2,8:
+ 0: 30579
+ 3,5:
+ 0: 65295
+ 3,6:
+ 0: 65535
+ 3,7:
+ 0: 65534
+ 4,4:
+ 0: 65309
+ 4,5:
+ 0: 30479
+ 4,6:
+ 0: 30583
+ 4,7:
+ 0: 30577
+ 5,1:
+ 0: 61439
+ 5,2:
+ 0: 65535
+ 5,3:
+ 0: 65279
+ 6,1:
+ 0: 60047
+ 6,2:
+ 0: 65528
+ 6,3:
+ 0: 65535
+ 7,1:
+ 0: 49147
+ 7,2:
+ 0: 14193
+ 7,3:
+ 0: 32639
+ 8,0:
+ 0: 65535
+ 8,1:
+ 0: 65535
+ 8,2:
+ 0: 65535
+ 8,3:
+ 0: 65535
+ 5,4:
+ 0: 32736
+ 5,5:
+ 0: 32631
+ 5,6:
+ 0: 30591
+ 5,7:
+ 0: 65407
+ 5,8:
+ 0: 61166
+ 6,4:
+ 0: 4080
+ 6,5:
+ 0: 1911
+ 6,6:
+ 0: 30479
+ 6,7:
+ 0: 65287
+ 6,8:
+ 0: 65535
+ 7,4:
+ 0: 8176
+ 7,5:
+ 0: 56797
+ 7,6:
+ 0: 65521
+ 7,7:
+ 0: 4095
+ 7,8:
+ 0: 52454
+ 8,4:
+ 0: 53247
+ 8,5:
+ 0: 56797
+ 8,6:
+ 0: 65532
+ 8,7:
+ 0: 4095
+ 4,-9:
+ 0: 61416
+ 5,-8:
+ 0: 65535
+ 5,-7:
+ 0: 65535
+ 5,-6:
+ 0: 65535
+ 5,-9:
+ 0: 65535
+ 6,-8:
+ 0: 65535
+ 6,-7:
+ 0: 65535
+ 6,-6:
+ 0: 65535
+ 6,-9:
+ 0: 65535
+ 7,-8:
+ 0: 65535
+ 7,-7:
+ 0: 65519
+ 7,-6:
+ 0: 65535
+ 7,-9:
+ 0: 64433
+ 8,-8:
+ 0: 65535
+ 8,-7:
+ 0: 65535
+ 8,-6:
+ 0: 65535
+ 8,-5:
+ 0: 65535
+ -16,4:
+ 0: 65535
+ -16,3:
+ 0: 65535
+ -17,4:
+ 0: 65535
+ -16,5:
+ 0: 65535
+ -17,5:
+ 0: 65535
+ -16,6:
+ 0: 65535
+ -17,6:
+ 0: 65535
+ -16,7:
+ 0: 65535
+ -17,7:
+ 0: 65535
+ -16,8:
+ 0: 65535
+ -15,4:
+ 0: 65535
+ -15,5:
+ 0: 65535
+ -15,6:
+ 0: 65535
+ -15,7:
+ 0: 65535
+ -15,3:
+ 0: 65535
+ -15,8:
+ 0: 65535
+ -14,4:
+ 0: 65535
+ -14,5:
+ 0: 65535
+ -14,6:
+ 0: 65535
+ -14,7:
+ 0: 65535
+ -14,3:
+ 0: 65535
+ -14,8:
+ 0: 65535
+ -13,8:
+ 0: 65535
+ -12,9:
+ 0: 65535
+ -13,9:
+ 0: 65535
+ -12,10:
+ 0: 65535
+ -13,10:
+ 0: 65535
+ -12,11:
+ 0: 65535
+ -13,11:
+ 0: 65535
+ -12,12:
+ 0: 65535
+ -11,9:
+ 0: 65535
+ -11,10:
+ 0: 65535
+ -11,11:
+ 0: 65535
+ -11,12:
+ 0: 65535
+ -10,9:
+ 0: 65535
+ -10,10:
+ 0: 65535
+ -10,11:
+ 0: 65535
+ -10,12:
+ 0: 65535
+ -9,9:
+ 0: 65535
+ -9,10:
+ 0: 65535
+ -9,11:
+ 0: 65535
+ -9,12:
+ 0: 65535
+ -8,9:
+ 0: 65535
+ -8,10:
+ 0: 65535
+ -8,11:
+ 0: 65535
+ -8,12:
+ 0: 65535
+ -7,9:
+ 0: 65535
+ -7,10:
+ 0: 65535
+ -7,11:
+ 0: 65535
+ -7,12:
+ 0: 65535
+ -6,9:
+ 0: 65535
+ -6,10:
+ 0: 65535
+ -6,11:
+ 0: 65535
+ -6,12:
+ 0: 65535
+ -5,9:
+ 0: 65535
+ -5,10:
+ 0: 65535
+ -5,11:
+ 0: 65535
+ -5,12:
+ 0: 65535
+ -4,9:
+ 0: 65535
+ -4,10:
+ 0: 65535
+ -4,11:
+ 0: 65535
+ 8,-9:
+ 0: 65535
+ 9,-8:
+ 0: 65531
+ 9,-7:
+ 0: 65535
+ 9,-6:
+ 0: 65535
+ 9,-5:
+ 0: 65535
+ 9,-9:
+ 0: 15289
+ 9,-4:
+ 0: 65535
+ 10,-8:
+ 0: 32767
+ 10,-7:
+ 0: 65395
+ 10,-6:
+ 0: 65535
+ 10,-5:
+ 0: 65535
+ 10,-4:
+ 0: 65535
+ 10,-9:
+ 0: 24831
+ 11,-7:
+ 0: 6350
+ 11,-6:
+ 0: 65395
+ 11,-5:
+ 0: 65535
+ 11,-8:
+ 0: 61166
+ 11,-4:
+ 0: 65535
+ 11,-9:
+ 0: 61439
+ 12,-8:
+ 0: 65535
+ 12,-7:
+ 0: 65535
+ 12,-6:
+ 0: 6350
+ 12,-5:
+ 0: 65395
+ -12,-8:
+ 0: 47935
+ -12,-9:
+ 0: 65504
+ -13,-8:
+ 0: 65228
+ -12,-7:
+ 0: 15291
+ -13,-7:
+ 0: 65535
+ -12,-6:
+ 0: 65535
+ -13,-6:
+ 0: 65535
+ -13,-5:
+ 0: 53247
+ -11,-8:
+ 0: 48015
+ -11,-7:
+ 0: 43707
+ -11,-6:
+ 0: 65535
+ -11,-9:
+ 0: 65520
+ -10,-8:
+ 0: 65535
+ -10,-7:
+ 0: 65535
+ -10,-6:
+ 0: 65535
+ -10,-9:
+ 0: 28928
+ -9,-8:
+ 0: 4368
+ -16,-4:
+ 0: 65535
+ -16,-5:
+ 0: 65535
+ -17,-4:
+ 0: 65535
+ -16,-3:
+ 0: 65535
+ -17,-3:
+ 0: 65535
+ -16,-2:
+ 0: 65535
+ -17,-2:
+ 0: 65535
+ -16,-1:
+ 0: 65535
+ -17,-1:
+ 0: 65535
+ -16,0:
+ 0: 65535
+ -15,-4:
+ 0: 65535
+ -15,-3:
+ 0: 65535
+ -15,-2:
+ 0: 65535
+ -15,-1:
+ 0: 65535
+ -15,-5:
+ 0: 65535
+ -15,0:
+ 0: 65535
+ -14,-4:
+ 0: 65535
+ -14,-3:
+ 0: 65535
+ -14,-2:
+ 0: 65535
+ -14,-1:
+ 0: 65535
+ -14,-5:
+ 0: 65535
+ -14,0:
+ 0: 65535
+ -17,0:
+ 0: 65535
+ -16,1:
+ 0: 65535
+ -17,1:
+ 0: 65535
+ -16,2:
+ 0: 65535
+ -17,2:
+ 0: 65535
+ -17,3:
+ 0: 65535
+ -15,1:
+ 0: 65535
+ -15,2:
+ 0: 65535
+ -14,1:
+ 0: 65535
+ -14,2:
+ 0: 65535
+ -6,-11:
+ 0: 30576
+ -6,-10:
+ 0: 30583
+ -3,-11:
+ 0: 30576
+ -3,-10:
+ 0: 30583
+ -1,-10:
+ 0: 65518
+ -1,-11:
+ 0: 51328
+ 0,-11:
+ 0: 65535
+ 0,-10:
+ 0: 49151
+ 0,-9:
+ 0: 2367
+ 0,-12:
+ 0: 65518
+ 0,-13:
+ 0: 52360
+ 1,-12:
+ 0: 65535
+ 1,-11:
+ 0: 65535
+ 1,-10:
+ 0: 33661
+ 1,-13:
+ 0: 65535
+ 2,-12:
+ 0: 65535
+ 2,-11:
+ 0: 40959
+ 2,-10:
+ 0: 65512
+ 2,-13:
+ 0: 65535
+ 3,-12:
+ 0: 65535
+ 3,-11:
+ 0: 59519
+ 3,-10:
+ 0: 65535
+ 3,-13:
+ 0: 65535
+ 4,-12:
+ 0: 65535
+ 4,-11:
+ 0: 65281
+ 4,-10:
+ 0: 16383
+ 4,-13:
+ 0: 64883
+ 5,-12:
+ 0: 65023
+ 5,-11:
+ 0: 15116
+ 5,-10:
+ 0: 51387
+ 5,-13:
+ 0: 65280
+ 6,-12:
+ 0: 32511
+ 6,-11:
+ 0: 63953
+ 6,-10:
+ 0: 61903
+ 6,-13:
+ 0: 65408
+ 7,-12:
+ 0: 60667
+ 7,-11:
+ 0: 65535
+ 7,-10:
+ 0: 255
+ 7,-13:
+ 0: 65534
+ 8,-12:
+ 0: 65516
+ 8,-11:
+ 0: 65535
+ 8,-10:
+ 0: 57471
+ 1,-14:
+ 0: 49152
+ 2,-14:
+ 0: 61440
+ 3,-14:
+ 0: 61440
+ 7,-14:
+ 0: 51336
+ 7,-16:
+ 0: 136
+ 7,-17:
+ 0: 34952
+ 8,-16:
+ 0: 65535
+ 8,-14:
+ 0: 65535
+ 8,-13:
+ 0: 37239
+ 9,-12:
+ 0: 65535
+ 9,-11:
+ 0: 65535
+ 9,-10:
+ 0: 52943
+ 9,-13:
+ 0: 65229
+ 10,-12:
+ 0: 65535
+ 10,-11:
+ 0: 65535
+ 10,-10:
+ 0: 65535
+ 10,-13:
+ 0: 65535
+ 11,-12:
+ 0: 65535
+ 11,-11:
+ 0: 65535
+ 11,-10:
+ 0: 65535
+ 11,-13:
+ 0: 65527
+ 12,-12:
+ 0: 29489
+ 12,-11:
+ 0: 65535
+ 12,-10:
+ 0: 65535
+ 12,-9:
+ 0: 65535
+ 8,-17:
+ 0: 65535
+ 8,-15:
+ 0: 65262
+ 9,-16:
+ 0: 65535
+ 9,-15:
+ 0: 65535
+ 9,-14:
+ 0: 55699
+ 9,-17:
+ 0: 65535
+ 10,-16:
+ 0: 65535
+ 10,-15:
+ 0: 16799
+ 10,-14:
+ 0: 65534
+ 10,-17:
+ 0: 65535
+ 11,-16:
+ 0: 65535
+ 11,-15:
+ 0: 61439
+ 11,-14:
+ 0: 14812
+ 11,-17:
+ 0: 65535
+ 12,-16:
+ 0: 65535
+ 12,-15:
+ 0: 65535
+ 12,-14:
+ 0: 65535
+ 12,-13:
+ 0: 4142
+ 12,-17:
+ 0: 65535
+ 13,-16:
+ 0: 65535
+ 13,-15:
+ 0: 65535
+ 13,-14:
+ 0: 65535
+ 13,-13:
+ 0: 61183
+ 13,-17:
+ 0: 65535
+ 13,-12:
+ 0: 61166
+ 14,-16:
+ 0: 65535
+ 14,-15:
+ 0: 65535
+ 14,-14:
+ 0: 65535
+ 14,-13:
+ 0: 65535
+ 14,-17:
+ 0: 65535
+ 14,-12:
+ 0: 65535
+ 15,-16:
+ 0: 65535
+ 15,-15:
+ 0: 65535
+ 15,-14:
+ 0: 65535
+ 15,-13:
+ 0: 65535
+ 15,-17:
+ 0: 65535
+ 15,-12:
+ 0: 65535
+ 16,-16:
+ 0: 65535
+ 16,-15:
+ 0: 65535
+ 16,-14:
+ 0: 65535
+ 16,-13:
+ 0: 65535
+ 13,-11:
+ 0: 40398
+ 13,-10:
+ 0: 63291
+ 13,-9:
+ 0: 65535
+ 13,-8:
+ 0: 65535
+ 14,-11:
+ 0: 65535
+ 14,-10:
+ 0: 61183
+ 14,-9:
+ 0: 40398
+ 14,-8:
+ 0: 30523
+ 15,-11:
+ 0: 65535
+ 15,-10:
+ 0: 65535
+ 15,-9:
+ 0: 65535
+ 15,-8:
+ 0: 61439
+ 16,-12:
+ 0: 65535
+ 16,-11:
+ 0: 65535
+ 16,-10:
+ 0: 65535
+ 16,-9:
+ 0: 65535
+ 8,-18:
+ 0: 57344
+ 9,-18:
+ 0: 61440
+ 10,-18:
+ 0: 12288
+ 11,-18:
+ 0: 34944
+ 12,-18:
+ 0: 65535
+ 12,-19:
+ 0: 64712
+ 12,-20:
+ 0: 32768
+ 13,-20:
+ 0: 28672
+ 13,-19:
+ 0: 65535
+ 13,-18:
+ 0: 65535
+ 14,-19:
+ 0: 65535
+ 14,-18:
+ 0: 65535
+ 15,-19:
+ 0: 65328
+ 15,-18:
+ 0: 65535
+ 16,-19:
+ 0: 12288
+ 16,-18:
+ 0: 65395
+ 16,-17:
+ 0: 65535
+ 17,-18:
+ 0: 4096
+ 17,-17:
+ 0: 4352
+ 17,-16:
+ 0: 65395
+ 17,-15:
+ 0: 65535
+ 17,-14:
+ 0: 65535
+ 17,-13:
+ 0: 65535
+ 17,-12:
+ 0: 65535
+ 18,-16:
+ 0: 4096
+ 18,-15:
+ 0: 30515
+ 18,-14:
+ 0: 65399
+ 18,-13:
+ 0: 13311
+ 18,-12:
+ 0: 4371
+ 16,-8:
+ 0: 65535
+ 17,-11:
+ 0: 65535
+ 17,-10:
+ 0: 65535
+ 17,-9:
+ 0: 65535
+ 17,-8:
+ 0: 65535
+ 18,-11:
+ 0: 29491
+ 18,-10:
+ 0: 30583
+ 18,-9:
+ 0: 30583
+ 18,-8:
+ 0: 63351
+ 12,-4:
+ 0: 65535
+ 13,-7:
+ 0: 65535
+ 13,-6:
+ 0: 65535
+ 13,-5:
+ 0: 39118
+ 13,-4:
+ 0: 47547
+ 14,-7:
+ 0: 65535
+ 14,-6:
+ 0: 65535
+ 14,-5:
+ 0: 65535
+ 14,-4:
+ 0: 65535
+ 15,-7:
+ 0: 4366
+ 15,-6:
+ 0: 29627
+ 15,-5:
+ 0: 65535
+ 15,-4:
+ 0: 65535
+ 16,-7:
+ 0: 65231
+ 16,-6:
+ 0: 61439
+ 16,-5:
+ 0: 47580
+ 16,-4:
+ 0: 63347
+ 17,-7:
+ 0: 65535
+ 17,-6:
+ 0: 65535
+ 17,-5:
+ 0: 65535
+ 17,-4:
+ 0: 61183
+ 18,-7:
+ 0: 65535
+ 18,-6:
+ 0: 65535
+ 18,-5:
+ 0: 65535
+ 18,-4:
+ 0: 65535
+ 19,-8:
+ 0: 4096
+ 19,-7:
+ 0: 65297
+ 19,-6:
+ 0: 65535
+ 19,-5:
+ 0: 65535
+ 19,-4:
+ 0: 65535
+ 20,-6:
+ 0: 30579
+ 20,-5:
+ 0: 65535
+ 9,-3:
+ 0: 4095
+ 9,-2:
+ 0: 61678
+ 9,-1:
+ 0: 65535
+ 9,0:
+ 0: 65535
+ 10,-3:
+ 0: 61439
+ 10,-2:
+ 0: 65262
+ 10,-1:
+ 0: 65535
+ 10,0:
+ 0: 65535
+ 11,-3:
+ 0: 65535
+ 11,-2:
+ 0: 65535
+ 11,-1:
+ 0: 65535
+ 11,0:
+ 0: 65535
+ 12,-3:
+ 0: 63487
+ 12,-2:
+ 0: 65535
+ 12,-1:
+ 0: 65535
+ 12,0:
+ 0: 65535
+ 13,-3:
+ 0: 155
+ 13,-2:
+ 0: 65521
+ 13,-1:
+ 0: 65535
+ 13,0:
+ 0: 65535
+ 14,-3:
+ 0: 61439
+ 14,-2:
+ 0: 47566
+ 14,-1:
+ 0: 30579
+ 14,0:
+ 0: 39859
+ 15,-3:
+ 0: 65535
+ 15,-2:
+ 0: 65535
+ 15,-1:
+ 0: 65535
+ 15,0:
+ 0: 65535
+ 16,-3:
+ 0: 65535
+ 16,-2:
+ 0: 65535
+ 16,-1:
+ 0: 65535
+ 9,1:
+ 0: 65535
+ 9,2:
+ 0: 65535
+ 9,3:
+ 0: 65279
+ 9,4:
+ 0: 64766
+ 10,1:
+ 0: 65535
+ 10,2:
+ 0: 65535
+ 10,3:
+ 0: 65535
+ 10,4:
+ 0: 65535
+ 11,1:
+ 0: 65535
+ 11,2:
+ 0: 65535
+ 11,3:
+ 0: 65535
+ 11,4:
+ 0: 65535
+ 12,1:
+ 0: 65535
+ 12,2:
+ 0: 65535
+ 12,3:
+ 0: 65535
+ 12,4:
+ 0: 65535
+ 13,1:
+ 0: 63487
+ 13,2:
+ 0: 65535
+ 13,3:
+ 0: 65535
+ 13,4:
+ 0: 65535
+ 14,1:
+ 0: 9
+ 14,2:
+ 0: 65297
+ 14,3:
+ 0: 65535
+ 14,4:
+ 0: 65535
+ 15,1:
+ 0: 61439
+ 15,2:
+ 0: 14796
+ 15,3:
+ 0: 63351
+ 15,4:
+ 0: 30719
+ 16,0:
+ 0: 65535
+ 16,1:
+ 0: 65535
+ 16,2:
+ 0: 65535
+ 16,3:
+ 0: 61183
+ 8,8:
+ 0: 65526
+ 9,5:
+ 0: 53247
+ 9,6:
+ 0: 52462
+ 9,7:
+ 0: 52462
+ 9,8:
+ 0: 65532
+ 10,5:
+ 0: 65535
+ 10,6:
+ 0: 65535
+ 10,7:
+ 0: 65535
+ 10,8:
+ 0: 65535
+ 11,5:
+ 0: 65535
+ 11,6:
+ 0: 65535
+ 11,7:
+ 0: 65535
+ 11,8:
+ 0: 65535
+ 12,5:
+ 0: 65535
+ 12,6:
+ 0: 65535
+ 12,7:
+ 0: 65535
+ 4,8:
+ 0: 56784
+ 3,8:
+ 0: 65520
+ 4,9:
+ 0: 3853
+ 3,9:
+ 0: 3855
+ 4,10:
+ 0: 65523
+ 3,10:
+ 0: 65521
+ 4,11:
+ 0: 65535
+ 3,11:
+ 0: 65535
+ 4,12:
+ 0: 65535
+ 5,9:
+ 0: 4078
+ 5,10:
+ 0: 65526
+ 5,11:
+ 0: 65535
+ 5,12:
+ 0: 65535
+ 6,9:
+ 0: 4095
+ 6,10:
+ 0: 65526
+ 6,11:
+ 0: 65535
+ 6,12:
+ 0: 65535
+ 7,10:
+ 0: 65532
+ 7,11:
+ 0: 65535
+ 7,9:
+ 0: 52462
+ 7,12:
+ 0: 65535
+ 8,9:
+ 0: 65535
+ 8,10:
+ 0: 65535
+ 8,11:
+ 0: 65535
+ 8,12:
+ 0: 65535
+ 9,9:
+ 0: 65535
+ 9,10:
+ 0: 65535
+ 9,11:
+ 0: 65535
+ 9,12:
+ 0: 65535
+ 10,9:
+ 0: 65535
+ 10,10:
+ 0: 65535
+ 10,11:
+ 0: 65535
+ 10,12:
+ 0: 65535
+ 11,9:
+ 0: 65535
+ 11,10:
+ 0: 65535
+ 11,11:
+ 0: 65535
+ 11,12:
+ 0: 65535
+ 12,8:
+ 0: 65535
+ 12,9:
+ 0: 65535
+ 12,10:
+ 0: 65535
+ 12,11:
+ 0: 65535
+ 0,9:
+ 0: 65535
+ -1,9:
+ 0: 65535
+ 0,10:
+ 0: 65535
+ -1,10:
+ 0: 65535
+ 0,11:
+ 0: 65535
+ -1,11:
+ 0: 65535
+ 0,12:
+ 0: 65535
+ 1,9:
+ 0: 3293
+ 1,10:
+ 0: 65528
+ 1,11:
+ 0: 65535
+ 1,12:
+ 0: 65535
+ 2,9:
+ 0: 3959
+ 2,10:
+ 0: 65529
+ 2,11:
+ 0: 65535
+ 2,12:
+ 0: 65535
+ 3,12:
+ 0: 65535
+ -4,12:
+ 0: 65535
+ -3,9:
+ 0: 65535
+ -3,10:
+ 0: 65535
+ -3,11:
+ 0: 65535
+ -3,12:
+ 0: 65535
+ -2,9:
+ 0: 65535
+ -2,10:
+ 0: 65535
+ -2,11:
+ 0: 65535
+ -2,12:
+ 0: 65535
+ -1,12:
+ 0: 65535
+ -16,-8:
+ 0: 65535
+ -16,-9:
+ 0: 65535
+ -17,-8:
+ 0: 65535
+ -16,-7:
+ 0: 65535
+ -17,-7:
+ 0: 65535
+ -16,-6:
+ 0: 65535
+ -17,-6:
+ 0: 65535
+ -17,-5:
+ 0: 65535
+ -15,-8:
+ 0: 65527
+ -15,-7:
+ 0: 65535
+ -15,-6:
+ 0: 65535
+ -15,-9:
+ 0: 13072
+ -14,-8:
+ 0: 12544
+ -14,-7:
+ 0: 65535
+ -14,-6:
+ 0: 65535
+ -13,-9:
+ 0: 32768
+ -20,-8:
+ 0: 57600
+ -21,-8:
+ 0: 65394
+ -20,-7:
+ 0: 65535
+ -21,-7:
+ 0: 61439
+ -20,-6:
+ 0: 65535
+ -21,-6:
+ 0: 51951
+ -20,-5:
+ 0: 65535
+ -21,-5:
+ 0: 32904
+ -20,-4:
+ 0: 65535
+ -20,-9:
+ 0: 26487
+ -19,-8:
+ 0: 52986
+ -19,-7:
+ 0: 65535
+ -19,-6:
+ 0: 65535
+ -19,-5:
+ 0: 65535
+ -19,-4:
+ 0: 65535
+ -19,-9:
+ 0: 59598
+ -18,-8:
+ 0: 65535
+ -18,-7:
+ 0: 65535
+ -18,-6:
+ 0: 65535
+ -18,-5:
+ 0: 65535
+ -18,-9:
+ 0: 65535
+ -18,-4:
+ 0: 65535
+ -17,-9:
+ 0: 65535
+ -21,-4:
+ 0: 65228
+ -20,-3:
+ 0: 65535
+ -21,-3:
+ 0: 57343
+ -20,-2:
+ 0: 65535
+ -21,-2:
+ 0: 60655
+ -20,-1:
+ 0: 65535
+ -21,-1:
+ 0: 65480
+ -20,0:
+ 0: 65535
+ -19,-3:
+ 0: 65535
+ -19,-2:
+ 0: 65535
+ -19,-1:
+ 0: 65535
+ -19,0:
+ 0: 65535
+ -18,-3:
+ 0: 65535
+ -18,-2:
+ 0: 65535
+ -18,-1:
+ 0: 65535
+ -18,0:
+ 0: 65535
+ -21,0:
+ 0: 65535
+ -20,1:
+ 0: 65535
+ -21,1:
+ 0: 65535
+ -20,2:
+ 0: 65535
+ -21,2:
+ 0: 65535
+ -20,3:
+ 0: 65535
+ -21,3:
+ 0: 65535
+ -20,4:
+ 0: 65535
+ -19,1:
+ 0: 65535
+ -19,2:
+ 0: 65535
+ -19,3:
+ 0: 65535
+ -19,4:
+ 0: 65535
+ -18,1:
+ 0: 65535
+ -18,2:
+ 0: 65535
+ -18,3:
+ 0: 65535
+ -18,4:
+ 0: 65535
+ -21,4:
+ 0: 65535
+ -20,5:
+ 0: 65535
+ -21,5:
+ 0: 65535
+ -20,6:
+ 0: 65535
+ -21,6:
+ 0: 65535
+ -20,7:
+ 0: 65535
+ -21,7:
+ 0: 65535
+ -20,8:
+ 0: 65535
+ -19,5:
+ 0: 65535
+ -19,6:
+ 0: 65535
+ -19,7:
+ 0: 65535
+ -19,8:
+ 0: 65535
+ -18,5:
+ 0: 65535
+ -18,6:
+ 0: 65535
+ -18,7:
+ 0: 65535
+ -18,8:
+ 0: 65535
+ -17,8:
+ 0: 65535
+ -16,-10:
+ 0: 63248
+ -17,-10:
+ 0: 65523
+ -20,-12:
+ 0: 2271
+ -20,-13:
+ 0: 65521
+ -21,-12:
+ 0: 6847
+ -20,-11:
+ 0: 30576
+ -21,-11:
+ 0: 65216
+ -20,-10:
+ 0: 29491
+ -21,-10:
+ 0: 39167
+ -21,-9:
+ 0: 15
+ -19,-12:
+ 0: 61415
+ -19,-13:
+ 0: 13104
+ -19,-11:
+ 0: 20172
+ -19,-10:
+ 0: 60652
+ -18,-12:
+ 0: 29440
+ -18,-11:
+ 0: 65527
+ -18,-10:
+ 0: 65535
+ -17,-11:
+ 0: 4352
+ -21,-13:
+ 0: 65535
+ -24,-16:
+ 0: 65535
+ -24,-17:
+ 0: 28672
+ -25,-16:
+ 0: 65535
+ -24,-15:
+ 0: 65535
+ -25,-15:
+ 0: 65535
+ -24,-14:
+ 0: 65535
+ -25,-14:
+ 0: 65535
+ -24,-13:
+ 0: 65535
+ -25,-13:
+ 0: 65535
+ -24,-12:
+ 0: 65535
+ -23,-16:
+ 0: 65328
+ -23,-15:
+ 0: 65535
+ -23,-14:
+ 0: 65535
+ -23,-13:
+ 0: 65535
+ -23,-12:
+ 0: 65535
+ -22,-16:
+ 0: 12288
+ -22,-15:
+ 0: 65535
+ -22,-14:
+ 0: 65535
+ -22,-13:
+ 0: 65535
+ -22,-12:
+ 0: 65535
+ -21,-14:
+ 0: 12544
+ -25,-12:
+ 0: 65535
+ -24,-11:
+ 0: 15357
+ -25,-11:
+ 0: 65535
+ -24,-10:
+ 0: 6003
+ -25,-10:
+ 0: 65535
+ -24,-9:
+ 0: 4099
+ -25,-9:
+ 0: 62455
+ -24,-8:
+ 0: 65534
+ -23,-11:
+ 0: 65535
+ -23,-9:
+ 0: 252
+ -23,-10:
+ 0: 78
+ -23,-8:
+ 0: 65404
+ -22,-11:
+ 0: 14295
+ -22,-9:
+ 0: 9932
+ -22,-8:
+ 0: 45875
+ -22,-10:
+ 0: 136
+ -25,-8:
+ 0: 65535
+ -24,-7:
+ 0: 65535
+ -25,-7:
+ 0: 65535
+ -24,-6:
+ 0: 65535
+ -25,-6:
+ 0: 65535
+ -24,-5:
+ 0: 65535
+ -25,-5:
+ 0: 65535
+ -24,-4:
+ 0: 65535
+ -23,-7:
+ 0: 65535
+ -23,-6:
+ 0: 65535
+ -23,-5:
+ 0: 32627
+ -23,-4:
+ 0: 65535
+ -22,-7:
+ 0: 48127
+ -22,-6:
+ 0: 265
+ -22,-5:
+ 0: 29472
+ -22,-4:
+ 0: 34957
+ -25,-4:
+ 0: 65535
+ -24,-3:
+ 0: 61439
+ -25,-3:
+ 0: 3583
+ -24,-2:
+ 0: 65534
+ -25,-2:
+ 0: 32512
+ -24,-1:
+ 0: 65535
+ -25,-1:
+ 0: 65535
+ -24,0:
+ 0: 65535
+ -23,-3:
+ 0: 65535
+ -23,-2:
+ 0: 65535
+ -23,-1:
+ 0: 30719
+ -23,0:
+ 0: 65407
+ -22,-2:
+ 0: 4352
+ -22,-1:
+ 0: 34819
+ -22,0:
+ 0: 65533
+ -25,0:
+ 0: 65535
+ -24,1:
+ 0: 65535
+ -25,1:
+ 0: 65535
+ -24,2:
+ 0: 65535
+ -25,2:
+ 0: 65531
+ -24,3:
+ 0: 65535
+ -25,3:
+ 0: 65535
+ -24,4:
+ 0: 65535
+ -23,1:
+ 0: 65535
+ -23,2:
+ 0: 65535
+ -23,3:
+ 0: 65534
+ -23,4:
+ 0: 65535
+ -22,1:
+ 0: 65535
+ -22,2:
+ 0: 65535
+ -22,3:
+ 0: 65535
+ -22,4:
+ 0: 65535
+ -25,4:
+ 0: 65535
+ -24,5:
+ 0: 65535
+ -25,5:
+ 0: 65535
+ -24,6:
+ 0: 61439
+ -25,6:
+ 0: 2287
+ -24,7:
+ 0: 2302
+ -23,5:
+ 0: 65535
+ -23,6:
+ 0: 65535
+ -23,7:
+ 0: 61439
+ -23,8:
+ 0: 65535
+ -22,5:
+ 0: 65535
+ -22,6:
+ 0: 65535
+ -22,7:
+ 0: 65535
+ -22,8:
+ 0: 65535
+ -21,8:
+ 0: 65535
+ -28,-16:
+ 0: 65024
+ -28,-15:
+ 0: 65535
+ -29,-16:
+ 0: 32768
+ -29,-15:
+ 0: 65535
+ -28,-14:
+ 0: 65535
+ -29,-14:
+ 0: 65535
+ -28,-13:
+ 0: 65535
+ -29,-13:
+ 0: 65535
+ -28,-12:
+ 0: 65535
+ -27,-16:
+ 0: 65504
+ -27,-15:
+ 0: 65535
+ -27,-14:
+ 0: 65535
+ -27,-13:
+ 0: 65535
+ -27,-12:
+ 0: 65535
+ -26,-16:
+ 0: 65535
+ -26,-15:
+ 0: 65535
+ -26,-14:
+ 0: 65535
+ -26,-13:
+ 0: 65535
+ -26,-12:
+ 0: 65535
+ -25,-17:
+ 0: 61440
+ -31,-13:
+ 0: 65262
+ -31,-12:
+ 0: 65535
+ -31,-14:
+ 0: 52424
+ -30,-14:
+ 0: 65535
+ -30,-13:
+ 0: 65535
+ -30,-15:
+ 0: 65472
+ -30,-12:
+ 0: 65535
+ -29,-12:
+ 0: 65535
+ -28,-11:
+ 0: 65535
+ -29,-11:
+ 0: 65535
+ -28,-10:
+ 0: 65535
+ -29,-10:
+ 0: 65535
+ -28,-9:
+ 0: 65535
+ -29,-9:
+ 0: 65535
+ -28,-8:
+ 0: 65535
+ -27,-11:
+ 0: 65535
+ -27,-10:
+ 0: 65535
+ -27,-9:
+ 0: 65535
+ -27,-8:
+ 0: 65535
+ -26,-11:
+ 0: 65535
+ -26,-10:
+ 0: 65535
+ -26,-9:
+ 0: 65535
+ -26,-8:
+ 0: 65535
+ -29,-8:
+ 0: 65535
+ -28,-7:
+ 0: 65519
+ -29,-7:
+ 0: 32767
+ -28,-6:
+ 0: 2254
+ -28,-5:
+ 0: 60928
+ -28,-4:
+ 0: 65534
+ -27,-7:
+ 0: 65535
+ -27,-6:
+ 0: 34799
+ -27,-5:
+ 0: 32752
+ -27,-4:
+ 0: 13107
+ -26,-7:
+ 0: 65535
+ -26,-6:
+ 0: 65535
+ -26,-5:
+ 0: 61407
+ -26,-4:
+ 0: 64714
+ -28,-3:
+ 0: 52463
+ -28,-2:
+ 0: 35020
+ -28,-1:
+ 0: 204
+ -27,-3:
+ 0: 65523
+ -27,-2:
+ 0: 37695
+ -27,-1:
+ 0: 63177
+ -28,0:
+ 0: 65496
+ -27,0:
+ 0: 65535
+ -26,-2:
+ 0: 65408
+ -26,-1:
+ 0: 65535
+ -26,-3:
+ 0: 174
+ -26,0:
+ 0: 65535
+ -29,0:
+ 0: 64503
+ -28,1:
+ 0: 65535
+ -29,1:
+ 0: 65535
+ -28,2:
+ 0: 65535
+ -29,2:
+ 0: 65535
+ -28,3:
+ 0: 65535
+ -29,3:
+ 0: 65535
+ -28,4:
+ 0: 65535
+ -27,1:
+ 0: 65535
+ -27,2:
+ 0: 65535
+ -27,3:
+ 0: 65535
+ -27,4:
+ 0: 65535
+ -26,1:
+ 0: 65535
+ -26,2:
+ 0: 65535
+ -26,3:
+ 0: 65535
+ -26,4:
+ 0: 65535
+ -29,4:
+ 0: 65535
+ -28,5:
+ 0: 65535
+ -29,5:
+ 0: 32767
+ -28,6:
+ 0: 159
+ -29,6:
+ 0: 65535
+ -27,5:
+ 0: 65535
+ -27,6:
+ 0: 2047
+ -27,7:
+ 0: 52224
+ -27,8:
+ 0: 65534
+ -26,5:
+ 0: 65535
+ -26,6:
+ 0: 31
+ -26,7:
+ 0: 65280
+ -26,8:
+ 0: 32767
+ -25,7:
+ 0: 4352
+ -25,8:
+ 0: 33041
+ -32,-12:
+ 0: 65532
+ -33,-12:
+ 0: 65472
+ -32,-11:
+ 0: 65535
+ -33,-11:
+ 0: 65535
+ -32,-10:
+ 0: 65535
+ -33,-10:
+ 0: 65535
+ -32,-9:
+ 0: 65535
+ -33,-9:
+ 0: 65535
+ -32,-8:
+ 0: 65535
+ -31,-11:
+ 0: 65535
+ -31,-10:
+ 0: 65535
+ -31,-9:
+ 0: 65535
+ -31,-8:
+ 0: 65535
+ -30,-11:
+ 0: 65535
+ -30,-10:
+ 0: 65535
+ -30,-9:
+ 0: 65535
+ -30,-8:
+ 0: 65535
+ -33,-8:
+ 0: 65535
+ -32,-7:
+ 0: 65535
+ -33,-7:
+ 0: 65535
+ -32,-6:
+ 0: 65535
+ -33,-6:
+ 0: 65535
+ -32,-5:
+ 0: 65535
+ -33,-5:
+ 0: 65535
+ -32,-4:
+ 0: 65535
+ -31,-7:
+ 0: 65535
+ -31,-6:
+ 0: 65535
+ -31,-5:
+ 0: 65535
+ -31,-4:
+ 0: 65535
+ -30,-7:
+ 0: 65535
+ -30,-6:
+ 0: 65535
+ -30,-5:
+ 0: 65407
+ -30,-4:
+ 0: 65535
+ -29,-6:
+ 0: 30519
+ -29,-5:
+ 0: 4115
+ -29,-4:
+ 0: 4371
+ -33,-4:
+ 0: 65535
+ -32,-3:
+ 0: 65535
+ -33,-3:
+ 0: 65535
+ -32,-2:
+ 0: 65535
+ -33,-2:
+ 0: 65535
+ -32,-1:
+ 0: 65535
+ -33,-1:
+ 0: 65535
+ -32,0:
+ 0: 65535
+ -31,-3:
+ 0: 65535
+ -31,-2:
+ 0: 65535
+ -31,-1:
+ 0: 65535
+ -31,0:
+ 0: 65535
+ -30,-3:
+ 0: 65341
+ -30,-2:
+ 0: 65535
+ -30,-1:
+ 0: 65535
+ -30,0:
+ 0: 65535
+ -29,-3:
+ 0: 4352
+ -29,-2:
+ 0: 30067
+ -29,-1:
+ 0: 12307
+ -33,0:
+ 0: 65535
+ -32,1:
+ 0: 65535
+ -33,1:
+ 0: 65535
+ -32,2:
+ 0: 65535
+ -33,2:
+ 0: 65535
+ -32,3:
+ 0: 65535
+ -33,3:
+ 0: 65535
+ -32,4:
+ 0: 65535
+ -31,1:
+ 0: 65535
+ -31,2:
+ 0: 65535
+ -31,3:
+ 0: 65535
+ -31,4:
+ 0: 65535
+ -30,1:
+ 0: 65535
+ -30,2:
+ 0: 65535
+ -30,3:
+ 0: 65535
+ -30,4:
+ 0: 65535
+ -33,4:
+ 0: 65535
+ -32,5:
+ 0: 65535
+ -33,5:
+ 0: 65535
+ -32,6:
+ 0: 65535
+ -33,6:
+ 0: 65535
+ -32,7:
+ 0: 65535
+ -33,7:
+ 0: 65535
+ -32,8:
+ 0: 65535
+ -31,5:
+ 0: 65535
+ -31,6:
+ 0: 65535
+ -31,7:
+ 0: 57343
+ -31,8:
+ 0: 13111
+ -30,5:
+ 0: 65535
+ -30,6:
+ 0: 65535
+ -30,7:
+ 0: 24575
+ -29,7:
+ 0: 53
+ -36,-12:
+ 0: 65393
+ -37,-12:
+ 0: 65535
+ -36,-11:
+ 0: 65535
+ -37,-11:
+ 0: 65535
+ -36,-10:
+ 0: 65535
+ -37,-10:
+ 0: 65535
+ -36,-9:
+ 0: 65535
+ -37,-9:
+ 0: 65535
+ -36,-8:
+ 0: 65535
+ -35,-12:
+ 0: 65472
+ -35,-11:
+ 0: 65535
+ -35,-10:
+ 0: 65535
+ -35,-9:
+ 0: 65535
+ -35,-8:
+ 0: 65535
+ -34,-12:
+ 0: 65392
+ -34,-11:
+ 0: 65535
+ -34,-10:
+ 0: 65535
+ -34,-9:
+ 0: 65535
+ -34,-8:
+ 0: 65535
+ -40,-12:
+ 0: 65535
+ -40,-13:
+ 0: 65535
+ -41,-12:
+ 0: 65535
+ -40,-11:
+ 0: 65535
+ -41,-11:
+ 0: 65535
+ -40,-10:
+ 0: 65535
+ -41,-10:
+ 0: 65535
+ -40,-9:
+ 0: 65535
+ -41,-9:
+ 0: 65535
+ -40,-8:
+ 0: 65535
+ -39,-12:
+ 0: 65535
+ -39,-11:
+ 0: 65535
+ -39,-10:
+ 0: 65535
+ -39,-9:
+ 0: 65535
+ -39,-13:
+ 0: 65535
+ -39,-8:
+ 0: 65535
+ -38,-12:
+ 0: 65535
+ -38,-11:
+ 0: 65535
+ -38,-10:
+ 0: 65535
+ -38,-9:
+ 0: 65535
+ -38,-13:
+ 0: 65535
+ -38,-8:
+ 0: 65535
+ -37,-13:
+ 0: 65393
+ -37,-8:
+ 0: 65535
+ -40,-16:
+ 0: 65380
+ -40,-15:
+ 0: 65535
+ -41,-16:
+ 0: 32768
+ -41,-15:
+ 0: 60616
+ -40,-14:
+ 0: 65535
+ -41,-14:
+ 0: 65535
+ -41,-13:
+ 0: 65535
+ -39,-15:
+ 0: 29489
+ -39,-14:
+ 0: 65535
+ -38,-14:
+ 0: 63248
+ -42,-13:
+ 0: 60620
+ -42,-12:
+ 0: 65534
+ -42,-14:
+ 0: 51200
+ -44,-9:
+ 0: 34944
+ -43,-9:
+ 0: 65535
+ -44,-8:
+ 0: 52428
+ -43,-10:
+ 0: 65260
+ -43,-8:
+ 0: 65535
+ -43,-11:
+ 0: 34944
+ -42,-11:
+ 0: 65535
+ -42,-10:
+ 0: 65535
+ -42,-9:
+ 0: 65535
+ -42,-8:
+ 0: 65535
+ -41,-8:
+ 0: 65535
+ -44,-5:
+ 0: 65534
+ -44,-4:
+ 0: 65535
+ -44,-7:
+ 0: 60620
+ -44,-6:
+ 0: 61166
+ -43,-7:
+ 0: 65535
+ -43,-6:
+ 0: 65535
+ -43,-5:
+ 0: 65535
+ -43,-4:
+ 0: 65535
+ -42,-7:
+ 0: 65535
+ -42,-6:
+ 0: 65535
+ -42,-5:
+ 0: 65535
+ -42,-4:
+ 0: 65535
+ -41,-7:
+ 0: 65535
+ -41,-6:
+ 0: 65535
+ -41,-5:
+ 0: 65535
+ -41,-4:
+ 0: 65535
+ -40,-7:
+ 0: 65535
+ -40,-6:
+ 0: 65535
+ -40,-5:
+ 0: 65535
+ -45,-4:
+ 0: 34816
+ -44,-3:
+ 0: 65535
+ -45,-3:
+ 0: 51336
+ -44,-2:
+ 0: 65535
+ -45,-2:
+ 0: 52428
+ -44,-1:
+ 0: 65535
+ -45,-1:
+ 0: 36044
+ -44,0:
+ 0: 65535
+ -43,-3:
+ 0: 65535
+ -43,-2:
+ 0: 65535
+ -43,-1:
+ 0: 65535
+ -43,0:
+ 0: 65535
+ -42,-3:
+ 0: 65535
+ -42,-2:
+ 0: 65535
+ -42,-1:
+ 0: 65535
+ -42,0:
+ 0: 65535
+ -41,-3:
+ 0: 65535
+ -41,-2:
+ 0: 65535
+ -41,-1:
+ 0: 65535
+ -41,0:
+ 0: 65535
+ -40,-4:
+ 0: 65535
+ -40,-3:
+ 0: 65535
+ -40,-2:
+ 0: 65535
+ -40,-1:
+ 0: 65535
+ -45,0:
+ 0: 136
+ -44,1:
+ 0: 65535
+ -45,1:
+ 0: 60544
+ -44,2:
+ 0: 65535
+ -45,2:
+ 0: 65518
+ -44,3:
+ 0: 65535
+ -45,3:
+ 0: 65535
+ -44,4:
+ 0: 65535
+ -43,1:
+ 0: 65535
+ -43,2:
+ 0: 65535
+ -43,3:
+ 0: 65535
+ -43,4:
+ 0: 65535
+ -42,1:
+ 0: 65535
+ -42,2:
+ 0: 65535
+ -42,3:
+ 0: 65535
+ -42,4:
+ 0: 65535
+ -41,1:
+ 0: 65535
+ -41,2:
+ 0: 65535
+ -41,3:
+ 0: 65535
+ -41,4:
+ 0: 65535
+ -40,0:
+ 0: 65535
+ -40,1:
+ 0: 65535
+ -40,2:
+ 0: 65535
+ -40,3:
+ 0: 65535
+ -45,4:
+ 0: 65535
+ -44,5:
+ 0: 65535
+ -45,5:
+ 0: 61183
+ -44,6:
+ 0: 65535
+ -45,6:
+ 0: 34956
+ -44,7:
+ 0: 52991
+ -43,5:
+ 0: 65535
+ -43,6:
+ 0: 65535
+ -43,7:
+ 0: 65535
+ -44,8:
+ 0: 8
+ -43,8:
+ 0: 61183
+ -42,5:
+ 0: 65535
+ -42,6:
+ 0: 65535
+ -42,7:
+ 0: 65535
+ -42,8:
+ 0: 65535
+ -41,5:
+ 0: 65535
+ -41,6:
+ 0: 65535
+ -41,7:
+ 0: 65535
+ -41,8:
+ 0: 65535
+ -40,4:
+ 0: 65535
+ -40,5:
+ 0: 65535
+ -40,6:
+ 0: 65535
+ -40,7:
+ 0: 65535
+ -46,4:
+ 0: 2184
+ -46,3:
+ 0: 34816
+ -36,-7:
+ 0: 65535
+ -37,-7:
+ 0: 65535
+ -36,-6:
+ 0: 65535
+ -37,-6:
+ 0: 65535
+ -36,-5:
+ 0: 65535
+ -37,-5:
+ 0: 65535
+ -36,-4:
+ 0: 65535
+ -35,-7:
+ 0: 65535
+ -35,-6:
+ 0: 65535
+ -35,-5:
+ 0: 65535
+ -35,-4:
+ 0: 65535
+ -34,-7:
+ 0: 65535
+ -34,-6:
+ 0: 65535
+ -34,-5:
+ 0: 65535
+ -34,-4:
+ 0: 65535
+ -37,-4:
+ 0: 65535
+ -36,-3:
+ 0: 65535
+ -37,-3:
+ 0: 65535
+ -36,-2:
+ 0: 65535
+ -37,-2:
+ 0: 65535
+ -36,-1:
+ 0: 65535
+ -37,-1:
+ 0: 65535
+ -36,0:
+ 0: 65535
+ -35,-3:
+ 0: 65535
+ -35,-2:
+ 0: 65535
+ -35,-1:
+ 0: 65535
+ -35,0:
+ 0: 65535
+ -34,-3:
+ 0: 65535
+ -34,-2:
+ 0: 65535
+ -34,-1:
+ 0: 65535
+ -34,0:
+ 0: 65535
+ -37,0:
+ 0: 65535
+ -36,1:
+ 0: 65535
+ -37,1:
+ 0: 65535
+ -36,2:
+ 0: 65535
+ -37,2:
+ 0: 65535
+ -36,3:
+ 0: 65535
+ -37,3:
+ 0: 65535
+ -36,4:
+ 0: 65535
+ -35,1:
+ 0: 65535
+ -35,2:
+ 0: 65535
+ -35,3:
+ 0: 65535
+ -35,4:
+ 0: 65535
+ -34,1:
+ 0: 65535
+ -34,2:
+ 0: 65535
+ -34,3:
+ 0: 65535
+ -34,4:
+ 0: 65535
+ -37,4:
+ 0: 65535
+ -36,5:
+ 0: 65535
+ -37,5:
+ 0: 65535
+ -36,6:
+ 0: 65535
+ -37,6:
+ 0: 65535
+ -36,7:
+ 0: 65535
+ -37,7:
+ 0: 65535
+ -36,8:
+ 0: 65535
+ -35,5:
+ 0: 65535
+ -35,6:
+ 0: 65535
+ -35,7:
+ 0: 65535
+ -35,8:
+ 0: 65535
+ -34,5:
+ 0: 65535
+ -34,6:
+ 0: 65535
+ -34,7:
+ 0: 65535
+ -34,8:
+ 0: 65535
+ -33,8:
+ 0: 65535
+ -39,-7:
+ 0: 65535
+ -39,-6:
+ 0: 65535
+ -39,-5:
+ 0: 65535
+ -39,-4:
+ 0: 65535
+ -38,-7:
+ 0: 65535
+ -38,-6:
+ 0: 65535
+ -38,-5:
+ 0: 65535
+ -38,-4:
+ 0: 65535
+ -39,-3:
+ 0: 65535
+ -39,-2:
+ 0: 65535
+ -39,-1:
+ 0: 65535
+ -39,0:
+ 0: 65535
+ -38,-3:
+ 0: 65535
+ -38,-2:
+ 0: 65535
+ -38,-1:
+ 0: 65535
+ -38,0:
+ 0: 65535
+ -39,1:
+ 0: 65535
+ -39,2:
+ 0: 65535
+ -39,3:
+ 0: 65535
+ -39,4:
+ 0: 65535
+ -38,1:
+ 0: 65535
+ -38,2:
+ 0: 65535
+ -38,3:
+ 0: 65535
+ -38,4:
+ 0: 65535
+ -40,8:
+ 0: 65535
+ -39,5:
+ 0: 65535
+ -39,6:
+ 0: 65535
+ -39,7:
+ 0: 65535
+ -39,8:
+ 0: 65535
+ -38,5:
+ 0: 65535
+ -38,6:
+ 0: 65535
+ -38,7:
+ 0: 65535
+ -38,8:
+ 0: 65535
+ -37,8:
+ 0: 65535
+ -43,11:
+ 0: 140
+ -43,9:
+ 0: 34952
+ -42,9:
+ 0: 65535
+ -43,10:
+ 0: 32768
+ -42,10:
+ 0: 65535
+ -42,11:
+ 0: 35071
+ -41,9:
+ 0: 65535
+ -41,10:
+ 0: 65535
+ -41,11:
+ 0: 65535
+ -42,12:
+ 0: 65228
+ -41,12:
+ 0: 65535
+ -40,9:
+ 0: 65535
+ -40,10:
+ 0: 65535
+ -40,11:
+ 0: 65535
+ -43,13:
+ 0: 142
+ -43,12:
+ 0: 32768
+ -42,13:
+ 0: 3327
+ -41,13:
+ 0: 61439
+ -40,12:
+ 0: 65535
+ -40,13:
+ 0: 65535
+ -39,9:
+ 0: 65535
+ -39,10:
+ 0: 65535
+ -39,11:
+ 0: 65535
+ -39,12:
+ 0: 65535
+ -38,9:
+ 0: 65535
+ -38,10:
+ 0: 65535
+ -38,11:
+ 0: 65535
+ -38,12:
+ 0: 65535
+ -37,9:
+ 0: 65535
+ -37,10:
+ 0: 65535
+ -37,11:
+ 0: 65535
+ -37,12:
+ 0: 65535
+ -36,9:
+ 0: 65535
+ -36,10:
+ 0: 65535
+ -36,11:
+ 0: 65535
+ -40,14:
+ 0: 207
+ -39,13:
+ 0: 65535
+ -39,14:
+ 0: 53247
+ -38,13:
+ 0: 65535
+ -38,14:
+ 0: 65535
+ -39,15:
+ 0: 8
+ -38,15:
+ 0: 61183
+ -38,16:
+ 0: 61166
+ -37,13:
+ 0: 65535
+ -37,14:
+ 0: 65535
+ -37,15:
+ 0: 65535
+ -37,16:
+ 0: 65535
+ -36,12:
+ 0: 65535
+ -36,13:
+ 0: 65535
+ -36,14:
+ 0: 65535
+ -36,15:
+ 0: 65535
+ -35,9:
+ 0: 65535
+ -35,10:
+ 0: 65535
+ -35,11:
+ 0: 65535
+ -35,12:
+ 0: 65535
+ -34,9:
+ 0: 65535
+ -34,10:
+ 0: 65535
+ -34,11:
+ 0: 65535
+ -34,12:
+ 0: 65535
+ -33,9:
+ 0: 65535
+ -33,10:
+ 0: 63293
+ -33,11:
+ 0: 65535
+ -33,12:
+ 0: 65527
+ -32,9:
+ 0: 32767
+ -32,10:
+ 0: 4097
+ -32,11:
+ 0: 33040
+ -36,16:
+ 0: 65535
+ -35,13:
+ 0: 65535
+ -35,14:
+ 0: 65535
+ -35,15:
+ 0: 65535
+ -35,16:
+ 0: 65535
+ -34,13:
+ 0: 65535
+ -34,14:
+ 0: 65535
+ -34,15:
+ 0: 65535
+ -34,16:
+ 0: 65535
+ -33,13:
+ 0: 65535
+ -33,14:
+ 0: 65535
+ -33,15:
+ 0: 65535
+ -33,16:
+ 0: 65535
+ -32,12:
+ 0: 64392
+ -32,13:
+ 0: 65535
+ -32,14:
+ 0: 65535
+ -32,15:
+ 0: 65535
+ -31,9:
+ 0: 32785
+ -31,10:
+ 0: 65224
+ -31,11:
+ 0: 65535
+ -31,12:
+ 0: 65535
+ -30,9:
+ 0: 65506
+ -30,10:
+ 0: 65535
+ -30,11:
+ 0: 65535
+ -30,12:
+ 0: 65535
+ -29,9:
+ 0: 65532
+ -29,10:
+ 0: 65535
+ -29,11:
+ 0: 65535
+ -29,12:
+ 0: 65535
+ -28,8:
+ 0: 65408
+ -28,9:
+ 0: 65343
+ -28,10:
+ 0: 65535
+ -28,11:
+ 0: 65535
+ -32,16:
+ 0: 65535
+ -31,13:
+ 0: 65535
+ -31,14:
+ 0: 65535
+ -31,15:
+ 0: 65535
+ -31,16:
+ 0: 65535
+ -30,13:
+ 0: 65535
+ -30,14:
+ 0: 65535
+ -30,15:
+ 0: 49151
+ -30,16:
+ 0: 65407
+ -29,13:
+ 0: 65535
+ -29,14:
+ 0: 5103
+ -29,15:
+ 0: 34816
+ -28,12:
+ 0: 65535
+ -28,13:
+ 0: 65535
+ -28,14:
+ 0: 255
+ -28,15:
+ 0: 28928
+ -29,16:
+ 0: 12696
+ 12,12:
+ 0: 65535
+ 13,8:
+ 0: 65535
+ 13,9:
+ 0: 65535
+ 13,10:
+ 0: 65535
+ 13,11:
+ 0: 65535
+ 13,7:
+ 0: 65535
+ 13,12:
+ 0: 65535
+ 14,8:
+ 0: 65535
+ 14,9:
+ 0: 65535
+ 14,10:
+ 0: 65535
+ 14,11:
+ 0: 65535
+ 14,7:
+ 0: 32767
+ 14,12:
+ 0: 65535
+ 15,8:
+ 0: 65294
+ 15,9:
+ 0: 65535
+ 15,10:
+ 0: 65535
+ 15,11:
+ 0: 65535
+ 15,12:
+ 0: 65535
+ 15,7:
+ 0: 60571
+ 16,8:
+ 0: 15599
+ 16,9:
+ 0: 65523
+ 16,10:
+ 0: 65535
+ 16,11:
+ 0: 65535
+ 13,5:
+ 0: 65535
+ 13,6:
+ 0: 65535
+ 14,5:
+ 0: 65535
+ 14,6:
+ 0: 65535
+ 15,5:
+ 0: 46967
+ 15,6:
+ 0: 48059
+ 16,4:
+ 0: 65262
+ 16,5:
+ 0: 65535
+ 16,6:
+ 0: 65535
+ 16,7:
+ 0: 65535
+ -16,9:
+ 0: 65535
+ -17,9:
+ 0: 65535
+ -16,10:
+ 0: 65535
+ -17,10:
+ 0: 65535
+ -16,11:
+ 0: 65535
+ -17,11:
+ 0: 65535
+ -16,12:
+ 0: 65535
+ -15,9:
+ 0: 65535
+ -15,10:
+ 0: 65535
+ -15,11:
+ 0: 65535
+ -15,12:
+ 0: 65535
+ -14,9:
+ 0: 65535
+ -14,10:
+ 0: 65535
+ -14,11:
+ 0: 65535
+ -14,12:
+ 0: 65535
+ -13,12:
+ 0: 65535
+ -39,18:
+ 0: 34952
+ -38,18:
+ 0: 65535
+ -39,19:
+ 0: 8
+ -38,19:
+ 0: 61439
+ -38,17:
+ 0: 65535
+ -38,20:
+ 0: 12
+ -37,17:
+ 0: 65535
+ -37,18:
+ 0: 65534
+ -37,19:
+ 0: 65535
+ -37,20:
+ 0: 3327
+ -36,17:
+ 0: 65535
+ -36,18:
+ 0: 65535
+ -36,19:
+ 0: 61439
+ -36,20:
+ 0: 65535
+ -35,17:
+ 0: 65535
+ -35,18:
+ 0: 65535
+ -35,19:
+ 0: 65535
+ -35,20:
+ 0: 1023
+ -34,17:
+ 0: 65535
+ -34,18:
+ 0: 65535
+ -34,19:
+ 0: 65535
+ -34,20:
+ 0: 36863
+ -33,17:
+ 0: 65535
+ -33,18:
+ 0: 65535
+ -33,19:
+ 0: 65535
+ -33,20:
+ 0: 65535
+ -32,17:
+ 0: 65535
+ -32,18:
+ 0: 65535
+ -32,19:
+ 0: 65535
+ -34,21:
+ 0: 8
+ -33,21:
+ 0: 52991
+ -32,20:
+ 0: 65535
+ -32,21:
+ 0: 31
+ -31,17:
+ 0: 65535
+ -31,18:
+ 0: 65535
+ -31,19:
+ 0: 65535
+ -31,20:
+ 0: 65535
+ -30,17:
+ 0: 65535
+ -30,18:
+ 0: 65405
+ -30,19:
+ 0: 65535
+ -30,20:
+ 0: 65535
+ -29,17:
+ 0: 4370
+ -29,18:
+ 0: 64866
+ -29,19:
+ 0: 65527
+ -29,20:
+ 0: 65535
+ -28,16:
+ 0: 61175
+ -28,17:
+ 0: 61438
+ -28,18:
+ 0: 4108
+ -28,19:
+ 0: 32561
+ -31,21:
+ 0: 15
+ -30,21:
+ 0: 15
+ -29,21:
+ 0: 15
+ -28,20:
+ 0: 65535
+ -28,21:
+ 0: 143
+ -27,16:
+ 0: 65432
+ -27,17:
+ 0: 65535
+ -27,18:
+ 0: 59399
+ -27,19:
+ 0: 65531
+ -27,20:
+ 0: 65535
+ -26,16:
+ 0: 65535
+ -26,17:
+ 0: 63359
+ -26,18:
+ 0: 53452
+ -26,19:
+ 0: 65535
+ -26,20:
+ 0: 65535
+ -26,15:
+ 0: 61064
+ -25,16:
+ 0: 57343
+ -25,17:
+ 0: 28672
+ -25,18:
+ 0: 36095
+ -25,19:
+ 0: 65527
+ -25,15:
+ 0: 65531
+ -25,20:
+ 0: 65535
+ -24,16:
+ 0: 13107
+ -24,17:
+ 0: 12288
+ -24,18:
+ 0: 65535
+ -24,19:
+ 0: 65535
+ -27,21:
+ 0: 61183
+ -26,21:
+ 0: 65535
+ -27,22:
+ 0: 8
+ -26,22:
+ 0: 2287
+ -25,21:
+ 0: 65535
+ -25,22:
+ 0: 61439
+ -24,20:
+ 0: 65535
+ -24,21:
+ 0: 65535
+ -24,22:
+ 0: 65535
+ -25,23:
+ 0: 8
+ -24,23:
+ 0: 2287
+ -24,15:
+ 0: 65535
+ -23,17:
+ 0: 52975
+ -23,18:
+ 0: 65531
+ -23,19:
+ 0: 65535
+ -23,16:
+ 0: 58368
+ -23,20:
+ 0: 65535
+ -22,16:
+ 0: 32128
+ -22,17:
+ 0: 65535
+ -22,18:
+ 0: 65503
+ -22,19:
+ 0: 65535
+ -22,20:
+ 0: 65535
+ -21,16:
+ 0: 65214
+ -21,17:
+ 0: 65535
+ -21,18:
+ 0: 65535
+ -21,19:
+ 0: 65535
+ -21,20:
+ 0: 65535
+ -20,16:
+ 0: 65535
+ -20,17:
+ 0: 65535
+ -20,18:
+ 0: 65535
+ -20,19:
+ 0: 65535
+ -23,21:
+ 0: 65535
+ -23,22:
+ 0: 65535
+ -23,23:
+ 0: 61439
+ -23,24:
+ 0: 142
+ -22,21:
+ 0: 65535
+ -22,22:
+ 0: 65535
+ -22,23:
+ 0: 65535
+ -22,24:
+ 0: 3327
+ -21,21:
+ 0: 65535
+ -21,22:
+ 0: 65535
+ -21,23:
+ 0: 65535
+ -21,24:
+ 0: 65535
+ -20,20:
+ 0: 65535
+ -20,21:
+ 0: 65535
+ -20,22:
+ 0: 65535
+ -20,23:
+ 0: 65535
+ -25,12:
+ 0: 63357
+ -25,13:
+ 0: 1271
+ -24,14:
+ 0: 61152
+ -24,11:
+ 0: 52443
+ -24,12:
+ 0: 8
+ -23,12:
+ 0: 36095
+ -23,13:
+ 0: 30464
+ -23,14:
+ 0: 4471
+ -23,11:
+ 0: 57343
+ -22,12:
+ 0: 65535
+ -22,13:
+ 0: 52975
+ -22,11:
+ 0: 65535
+ -22,14:
+ 0: 140
+ -21,12:
+ 0: 65535
+ -21,13:
+ 0: 65535
+ -21,14:
+ 0: 61423
+ -21,11:
+ 0: 65535
+ -21,15:
+ 0: 140
+ -20,12:
+ 0: 65535
+ -20,13:
+ 0: 65535
+ -20,14:
+ 0: 65535
+ -20,15:
+ 0: 59646
+ -27,12:
+ 0: 65535
+ -27,13:
+ 0: 65535
+ -27,14:
+ 0: 127
+ -27,11:
+ 0: 65535
+ -26,12:
+ 0: 65535
+ -26,13:
+ 0: 32767
+ -26,11:
+ 0: 65535
+ -26,14:
+ 0: 52462
+ -25,14:
+ 0: 12561
+ -25,11:
+ 0: 32767
+ -27,9:
+ 0: 15243
+ -27,10:
+ 0: 65399
+ -26,9:
+ 0: 35219
+ -26,10:
+ 0: 65532
+ -25,9:
+ 0: 65532
+ -25,10:
+ 0: 65535
+ -24,8:
+ 0: 65216
+ -24,9:
+ 0: 65535
+ -24,10:
+ 0: 65535
+ -23,9:
+ 0: 65535
+ -23,10:
+ 0: 65535
+ -22,9:
+ 0: 65535
+ -22,10:
+ 0: 65535
+ -21,9:
+ 0: 65535
+ -21,10:
+ 0: 65535
+ -20,9:
+ 0: 65535
+ -20,10:
+ 0: 65535
+ -20,11:
+ 0: 65535
+ -19,12:
+ 0: 65535
+ -19,13:
+ 0: 65535
+ -19,14:
+ 0: 65535
+ -19,15:
+ 0: 65279
+ -19,11:
+ 0: 65535
+ -19,16:
+ 0: 65535
+ -18,12:
+ 0: 65535
+ -18,13:
+ 0: 65535
+ -18,14:
+ 0: 65535
+ -18,15:
+ 0: 65535
+ -18,11:
+ 0: 65535
+ -18,16:
+ 0: 65535
+ -17,12:
+ 0: 65535
+ -17,13:
+ 0: 65535
+ -17,14:
+ 0: 65535
+ -17,15:
+ 0: 65535
+ -17,16:
+ 0: 65535
+ -16,13:
+ 0: 65535
+ -16,14:
+ 0: 65535
+ -16,15:
+ 0: 65535
+ -19,9:
+ 0: 65535
+ -19,10:
+ 0: 65535
+ -18,9:
+ 0: 65535
+ -18,10:
+ 0: 65535
+ -20,24:
+ 0: 65535
+ -19,20:
+ 0: 65535
+ -19,21:
+ 0: 65535
+ -19,22:
+ 0: 65535
+ -19,23:
+ 0: 65535
+ -19,19:
+ 0: 65535
+ -19,24:
+ 0: 65535
+ -18,20:
+ 0: 65535
+ -18,21:
+ 0: 65535
+ -18,22:
+ 0: 65535
+ -18,23:
+ 0: 65535
+ -18,19:
+ 0: 65535
+ -18,24:
+ 0: 65535
+ -17,20:
+ 0: 65535
+ -17,21:
+ 0: 65535
+ -17,22:
+ 0: 65535
+ -17,23:
+ 0: 65535
+ -17,19:
+ 0: 65535
+ -17,24:
+ 0: 4095
+ -16,20:
+ 0: 65535
+ -16,21:
+ 0: 65535
+ -16,22:
+ 0: 65535
+ -16,23:
+ 0: 65535
+ -19,17:
+ 0: 65535
+ -19,18:
+ 0: 65535
+ -18,17:
+ 0: 65535
+ -18,18:
+ 0: 65535
+ -17,17:
+ 0: 65535
+ -17,18:
+ 0: 65535
+ -16,16:
+ 0: 65535
+ -16,17:
+ 0: 65535
+ -16,18:
+ 0: 65535
+ -16,19:
+ 0: 65535
+ -16,24:
+ 0: 2047
+ -15,20:
+ 0: 65535
+ -15,21:
+ 0: 65535
+ -15,22:
+ 0: 65535
+ -15,23:
+ 0: 65535
+ -15,19:
+ 0: 65535
+ -15,24:
+ 0: 63
+ -14,20:
+ 0: 65535
+ -14,21:
+ 0: 65535
+ -14,22:
+ 0: 65535
+ -14,23:
+ 0: 65535
+ -14,19:
+ 0: 65535
+ -14,24:
+ 0: 15
+ -13,20:
+ 0: 65535
+ -13,21:
+ 0: 65535
+ -13,22:
+ 0: 65535
+ -13,23:
+ 0: 65535
+ -13,19:
+ 0: 65535
+ -13,24:
+ 0: 1
+ -12,20:
+ 0: 65535
+ -12,21:
+ 0: 65535
+ -12,22:
+ 0: 65535
+ -12,23:
+ 0: 8191
+ -15,16:
+ 0: 65535
+ -15,17:
+ 0: 65535
+ -15,18:
+ 0: 65535
+ -15,15:
+ 0: 65535
+ -14,16:
+ 0: 65535
+ -14,17:
+ 0: 65535
+ -14,18:
+ 0: 65535
+ -14,15:
+ 0: 65535
+ -13,16:
+ 0: 65535
+ -13,17:
+ 0: 65535
+ -13,18:
+ 0: 65535
+ -13,15:
+ 0: 65535
+ -12,16:
+ 0: 65535
+ -12,17:
+ 0: 65535
+ -12,18:
+ 0: 65535
+ -12,19:
+ 0: 65535
+ -11,20:
+ 0: 65535
+ -11,21:
+ 0: 65535
+ -11,22:
+ 0: 65535
+ -11,23:
+ 0: 1023
+ -11,19:
+ 0: 65535
+ -10,20:
+ 0: 65535
+ -10,21:
+ 0: 65535
+ -10,22:
+ 0: 65535
+ -10,23:
+ 0: 127
+ -10,19:
+ 0: 65535
+ -9,20:
+ 0: 65535
+ -9,21:
+ 0: 65535
+ -9,22:
+ 0: 65535
+ -9,23:
+ 0: 7
+ -9,19:
+ 0: 65535
+ -8,20:
+ 0: 65535
+ -8,21:
+ 0: 65535
+ -8,22:
+ 0: 65535
+ -8,19:
+ 0: 65535
+ -7,20:
+ 0: 65535
+ -7,21:
+ 0: 65535
+ -7,22:
+ 0: 8191
+ -7,19:
+ 0: 65535
+ -6,20:
+ 0: 65535
+ -6,21:
+ 0: 65535
+ -6,22:
+ 0: 61439
+ -6,19:
+ 0: 65535
+ -5,20:
+ 0: 65535
+ -5,21:
+ 0: 65535
+ -5,22:
+ 0: 65535
+ -5,19:
+ 0: 65535
+ -5,23:
+ 0: 207
+ -4,20:
+ 0: 65535
+ -4,21:
+ 0: 65535
+ -4,22:
+ 0: 65535
+ -4,23:
+ 0: 53247
+ -8,16:
+ 0: 65535
+ -8,15:
+ 0: 65535
+ -9,16:
+ 0: 65535
+ -8,17:
+ 0: 65535
+ -9,17:
+ 0: 65535
+ -8,18:
+ 0: 65535
+ -9,18:
+ 0: 65535
+ -7,16:
+ 0: 65535
+ -7,17:
+ 0: 65535
+ -7,18:
+ 0: 65535
+ -7,15:
+ 0: 65535
+ -6,16:
+ 0: 65535
+ -6,17:
+ 0: 65535
+ -6,18:
+ 0: 65535
+ -6,15:
+ 0: 65535
+ -5,16:
+ 0: 65535
+ -5,17:
+ 0: 65535
+ -5,18:
+ 0: 65535
+ -5,15:
+ 0: 65535
+ -4,16:
+ 0: 65535
+ -4,17:
+ 0: 65535
+ -4,18:
+ 0: 65535
+ -4,19:
+ 0: 65535
+ -12,15:
+ 0: 65535
+ -11,16:
+ 0: 65535
+ -11,17:
+ 0: 65535
+ -11,18:
+ 0: 65535
+ -11,15:
+ 0: 65535
+ -10,16:
+ 0: 65535
+ -10,17:
+ 0: 65535
+ -10,18:
+ 0: 65535
+ -10,15:
+ 0: 65535
+ -9,15:
+ 0: 65535
+ -15,13:
+ 0: 65535
+ -15,14:
+ 0: 65535
+ -14,13:
+ 0: 65535
+ -14,14:
+ 0: 65535
+ -13,13:
+ 0: 65535
+ -13,14:
+ 0: 65535
+ -12,13:
+ 0: 65535
+ -12,14:
+ 0: 65535
+ -11,13:
+ 0: 65535
+ -11,14:
+ 0: 65535
+ -10,13:
+ 0: 65535
+ -10,14:
+ 0: 65535
+ -9,13:
+ 0: 65535
+ -9,14:
+ 0: 65535
+ -8,13:
+ 0: 65535
+ -8,14:
+ 0: 65535
+ -7,13:
+ 0: 65535
+ -7,14:
+ 0: 65535
+ -6,13:
+ 0: 65535
+ -6,14:
+ 0: 65535
+ -5,13:
+ 0: 65535
+ -5,14:
+ 0: 65535
+ -4,13:
+ 0: 65535
+ -4,14:
+ 0: 65535
+ -4,15:
+ 0: 65535
+ -3,13:
+ 0: 65535
+ -3,14:
+ 0: 65535
+ -3,15:
+ 0: 65535
+ -3,16:
+ 0: 25855
+ -2,13:
+ 0: 65535
+ -2,14:
+ 0: 65535
+ -2,15:
+ 0: 65535
+ -2,16:
+ 0: 65535
+ -1,13:
+ 0: 65535
+ -1,14:
+ 0: 65535
+ -1,15:
+ 0: 65535
+ -1,16:
+ 0: 65535
+ 0,13:
+ 0: 65535
+ 0,14:
+ 0: 65535
+ 0,15:
+ 0: 65535
+ 0,16:
+ 0: 47935
+ 1,13:
+ 0: 65535
+ 1,14:
+ 0: 65535
+ 1,15:
+ 0: 65535
+ 1,16:
+ 0: 47903
+ 2,13:
+ 0: 65535
+ 2,14:
+ 0: 65535
+ 2,15:
+ 0: 65535
+ 2,16:
+ 0: 65535
+ 3,13:
+ 0: 65535
+ 3,14:
+ 0: 65535
+ 3,15:
+ 0: 65535
+ 3,16:
+ 0: 65503
+ 4,13:
+ 0: 65535
+ 4,14:
+ 0: 65535
+ 4,15:
+ 0: 65535
+ 4,16:
+ 0: 65535
+ 5,13:
+ 0: 65535
+ 5,14:
+ 0: 65535
+ 5,15:
+ 0: 65535
+ 5,16:
+ 0: 65535
+ 6,13:
+ 0: 65535
+ 6,14:
+ 0: 65535
+ 6,15:
+ 0: 65535
+ 6,16:
+ 0: 65535
+ 7,13:
+ 0: 65535
+ 7,14:
+ 0: 65535
+ 7,15:
+ 0: 65535
+ 7,16:
+ 0: 65535
+ 8,13:
+ 0: 65535
+ 8,14:
+ 0: 65535
+ 8,15:
+ 0: 65535
+ -3,20:
+ 0: 65535
+ -3,21:
+ 0: 65535
+ -3,22:
+ 0: 65535
+ -3,23:
+ 0: 65535
+ -3,19:
+ 0: 65535
+ -3,24:
+ 0: 14
+ -2,20:
+ 0: 65535
+ -2,21:
+ 0: 65535
+ -2,22:
+ 0: 65535
+ -2,23:
+ 0: 65535
+ -2,19:
+ 0: 65535
+ -2,24:
+ 0: 255
+ -1,20:
+ 0: 65535
+ -1,21:
+ 0: 65535
+ -1,22:
+ 0: 65535
+ -1,23:
+ 0: 65535
+ -1,19:
+ 0: 65535
+ -1,24:
+ 0: 4095
+ 0,20:
+ 0: 65535
+ 0,21:
+ 0: 65535
+ 0,22:
+ 0: 65535
+ 0,23:
+ 0: 65535
+ 0,19:
+ 0: 65535
+ 0,24:
+ 0: 65535
+ 1,20:
+ 0: 65535
+ 1,21:
+ 0: 65535
+ 1,22:
+ 0: 65535
+ 1,23:
+ 0: 65535
+ 1,19:
+ 0: 61679
+ 1,24:
+ 0: 65535
+ 2,20:
+ 0: 65535
+ 2,21:
+ 0: 65535
+ 2,22:
+ 0: 65535
+ 2,23:
+ 0: 65535
+ 2,19:
+ 0: 61559
+ 2,24:
+ 0: 65535
+ 3,20:
+ 0: 65535
+ 3,21:
+ 0: 65535
+ 3,22:
+ 0: 65535
+ 3,23:
+ 0: 65535
+ 3,19:
+ 0: 65535
+ 3,24:
+ 0: 65535
+ 4,20:
+ 0: 65535
+ 4,21:
+ 0: 65535
+ 4,22:
+ 0: 65535
+ 4,23:
+ 0: 65535
+ 0,25:
+ 0: 12
+ 1,25:
+ 0: 2287
+ 2,25:
+ 0: 53247
+ 3,25:
+ 0: 65535
+ 3,26:
+ 0: 36079
+ 4,24:
+ 0: 65535
+ 4,25:
+ 0: 65535
+ 4,26:
+ 0: 65535
+ 3,27:
+ 0: 8
+ 4,27:
+ 0: 61439
+ 4,28:
+ 0: 12
+ 5,24:
+ 0: 65535
+ 5,25:
+ 0: 65535
+ 5,26:
+ 0: 65535
+ 5,27:
+ 0: 65535
+ 5,23:
+ 0: 65535
+ 5,28:
+ 0: 2287
+ 6,24:
+ 0: 65535
+ 6,25:
+ 0: 65535
+ 6,26:
+ 0: 65535
+ 6,27:
+ 0: 65535
+ 6,23:
+ 0: 65535
+ 6,28:
+ 0: 36863
+ 7,24:
+ 0: 65535
+ 7,25:
+ 0: 65535
+ 7,26:
+ 0: 65535
+ 7,27:
+ 0: 65535
+ 7,23:
+ 0: 65535
+ 7,28:
+ 0: 65535
+ 8,24:
+ 0: 65535
+ 8,25:
+ 0: 65535
+ 8,26:
+ 0: 65535
+ 8,27:
+ 0: 65535
+ 4,19:
+ 0: 65535
+ 5,20:
+ 0: 65535
+ 5,21:
+ 0: 65535
+ 5,22:
+ 0: 65535
+ 5,19:
+ 0: 65535
+ 6,20:
+ 0: 65535
+ 6,21:
+ 0: 65535
+ 6,22:
+ 0: 65535
+ 6,19:
+ 0: 65535
+ 7,20:
+ 0: 65535
+ 7,21:
+ 0: 65535
+ 7,22:
+ 0: 65535
+ 7,19:
+ 0: 65535
+ 8,20:
+ 0: 65535
+ 8,21:
+ 0: 65535
+ 8,22:
+ 0: 65535
+ 8,23:
+ 0: 65535
+ 0,17:
+ 0: 64440
+ -1,17:
+ 0: 56785
+ 0,18:
+ 0: 61627
+ -1,18:
+ 0: 61917
+ 1,17:
+ 0: 48059
+ 1,18:
+ 0: 58027
+ 2,17:
+ 0: 65535
+ 2,18:
+ 0: 29439
+ 3,17:
+ 0: 65535
+ 3,18:
+ 0: 65279
+ 4,17:
+ 0: 65535
+ 4,18:
+ 0: 65535
+ 5,17:
+ 0: 65535
+ 5,18:
+ 0: 65535
+ 6,17:
+ 0: 65535
+ 6,18:
+ 0: 65535
+ 7,17:
+ 0: 65535
+ 7,18:
+ 0: 65535
+ 8,16:
+ 0: 65535
+ 8,17:
+ 0: 65535
+ 8,18:
+ 0: 65535
+ 8,19:
+ 0: 65535
+ -3,18:
+ 0: 65535
+ -3,17:
+ 0: 1774
+ -2,17:
+ 0: 65535
+ -2,18:
+ 0: 65535
+ 8,28:
+ 0: 65535
+ 9,28:
+ 0: 65535
+ 8,29:
+ 0: 8
+ 9,29:
+ 0: 207
+ 9,27:
+ 0: 65535
+ 10,28:
+ 0: 65535
+ 10,29:
+ 0: 61439
+ 10,27:
+ 0: 65535
+ 11,28:
+ 0: 65535
+ 11,29:
+ 0: 65535
+ 10,30:
+ 0: 2184
+ 11,30:
+ 0: 36863
+ 11,27:
+ 0: 65535
+ 12,28:
+ 0: 65535
+ 12,29:
+ 0: 65535
+ 12,30:
+ 0: 65535
+ 12,27:
+ 0: 65535
+ 12,31:
+ 0: 207
+ 13,28:
+ 0: 65535
+ 13,29:
+ 0: 65535
+ 13,30:
+ 0: 65535
+ 13,31:
+ 0: 3839
+ 13,27:
+ 0: 65535
+ 14,28:
+ 0: 65535
+ 14,29:
+ 0: 65535
+ 14,30:
+ 0: 65535
+ 14,31:
+ 0: 65535
+ 14,27:
+ 0: 65535
+ 14,32:
+ 0: 204
+ 15,28:
+ 0: 65535
+ 15,29:
+ 0: 65535
+ 15,30:
+ 0: 65535
+ 15,31:
+ 0: 65535
+ 15,27:
+ 0: 65535
+ 15,32:
+ 0: 53247
+ 16,28:
+ 0: 65535
+ 16,29:
+ 0: 65535
+ 16,30:
+ 0: 65535
+ 16,31:
+ 0: 65535
+ 16,27:
+ 0: 65535
+ 16,32:
+ 0: 65535
+ 17,28:
+ 0: 65535
+ 17,29:
+ 0: 65535
+ 17,30:
+ 0: 65535
+ 17,31:
+ 0: 65535
+ 17,27:
+ 0: 65535
+ 17,32:
+ 0: 65535
+ 18,28:
+ 0: 65535
+ 18,29:
+ 0: 65535
+ 18,30:
+ 0: 65535
+ 18,31:
+ 0: 65535
+ 18,27:
+ 0: 65535
+ 18,32:
+ 0: 65535
+ 19,28:
+ 0: 65535
+ 19,29:
+ 0: 65535
+ 19,30:
+ 0: 65535
+ 19,31:
+ 0: 65535
+ 19,27:
+ 0: 65535
+ 19,32:
+ 0: 65535
+ 20,28:
+ 0: 65535
+ 20,29:
+ 0: 65535
+ 20,30:
+ 0: 65535
+ 20,31:
+ 0: 65535
+ 16,33:
+ 0: 143
+ 17,33:
+ 0: 52991
+ 18,33:
+ 0: 65535
+ 18,34:
+ 0: 239
+ 19,33:
+ 0: 65535
+ 19,34:
+ 0: 3327
+ 20,32:
+ 0: 65535
+ 20,33:
+ 0: 65535
+ 20,34:
+ 0: 65535
+ 20,35:
+ 0: 142
+ 21,32:
+ 0: 65535
+ 21,33:
+ 0: 65535
+ 21,34:
+ 0: 65535
+ 21,35:
+ 0: 3327
+ 21,31:
+ 0: 65535
+ 22,32:
+ 0: 65535
+ 22,33:
+ 0: 65535
+ 22,34:
+ 0: 65535
+ 22,35:
+ 0: 4095
+ 22,31:
+ 0: 65535
+ 23,32:
+ 0: 65535
+ 23,33:
+ 0: 65535
+ 23,34:
+ 0: 65535
+ 23,35:
+ 0: 4095
+ 23,31:
+ 0: 65535
+ 24,32:
+ 0: 65535
+ 24,33:
+ 0: 65535
+ 24,34:
+ 0: 65535
+ 24,35:
+ 0: 511
+ 24,31:
+ 0: 65535
+ 25,32:
+ 0: 65535
+ 25,33:
+ 0: 65535
+ 25,34:
+ 0: 16383
+ 25,35:
+ 0: 17
+ 25,31:
+ 0: 65535
+ 26,32:
+ 0: 65535
+ 26,33:
+ 0: 65535
+ 26,34:
+ 0: 383
+ 26,31:
+ 0: 65535
+ 27,32:
+ 0: 65527
+ 27,33:
+ 0: 16383
+ 27,34:
+ 0: 1
+ 27,31:
+ 0: 65535
+ 28,32:
+ 0: 4471
+ 24,28:
+ 0: 65535
+ 24,27:
+ 0: 65535
+ 23,28:
+ 0: 65535
+ 24,29:
+ 0: 65535
+ 23,29:
+ 0: 65535
+ 24,30:
+ 0: 65535
+ 23,30:
+ 0: 65535
+ 25,28:
+ 0: 153
+ 25,29:
+ 0: 65527
+ 25,30:
+ 0: 65535
+ 25,27:
+ 0: 4991
+ 26,28:
+ 0: 32769
+ 26,29:
+ 0: 65532
+ 26,30:
+ 0: 65535
+ 27,28:
+ 0: 65516
+ 27,29:
+ 0: 65535
+ 27,30:
+ 0: 65535
+ 27,27:
+ 0: 32771
+ 28,28:
+ 0: 32767
+ 28,29:
+ 0: 65399
+ 28,30:
+ 0: 65535
+ 28,31:
+ 0: 65535
+ 28,27:
+ 0: 65518
+ 29,28:
+ 0: 17
+ 29,31:
+ 0: 17
+ 29,27:
+ 0: 4371
+ 24,24:
+ 0: 65535
+ 24,23:
+ 0: 65535
+ 23,24:
+ 0: 65535
+ 24,25:
+ 0: 65535
+ 23,25:
+ 0: 65535
+ 24,26:
+ 0: 31743
+ 23,26:
+ 0: 65535
+ 23,27:
+ 0: 65535
+ 25,24:
+ 0: 65535
+ 25,25:
+ 0: 65535
+ 25,26:
+ 0: 61167
+ 25,23:
+ 0: 65535
+ 26,24:
+ 0: 13107
+ 26,25:
+ 0: 39040
+ 26,26:
+ 0: 39321
+ 26,23:
+ 0: 13073
+ 26,27:
+ 0: 8
+ 27,24:
+ 0: 4096
+ 27,25:
+ 0: 30579
+ 27,26:
+ 0: 30583
+ 28,24:
+ 0: 65278
+ 28,25:
+ 0: 61166
+ 28,26:
+ 0: 61166
+ 28,23:
+ 0: 61167
+ 29,24:
+ 0: 4369
+ 29,25:
+ 0: 12561
+ 29,26:
+ 0: 13107
+ 29,23:
+ 0: 4096
+ 24,20:
+ 0: 65535
+ 24,19:
+ 0: 65527
+ 23,20:
+ 0: 65535
+ 24,21:
+ 0: 65535
+ 23,21:
+ 0: 65535
+ 24,22:
+ 0: 63967
+ 23,22:
+ 0: 65535
+ 23,23:
+ 0: 65535
+ 25,20:
+ 0: 65527
+ 25,21:
+ 0: 65535
+ 25,22:
+ 0: 65535
+ 25,19:
+ 0: 28928
+ 26,20:
+ 0: 4352
+ 26,21:
+ 0: 13073
+ 26,22:
+ 0: 4915
+ 28,21:
+ 0: 65535
+ 28,20:
+ 0: 61166
+ 28,22:
+ 0: 26214
+ 28,19:
+ 0: 61167
+ 29,20:
+ 0: 4369
+ 29,19:
+ 0: 4915
+ 17,-3:
+ 0: 40398
+ 17,-2:
+ 0: 30523
+ 17,-1:
+ 0: 65535
+ 17,0:
+ 0: 65535
+ 18,-3:
+ 0: 65535
+ 18,-2:
+ 0: 61439
+ 18,-1:
+ 0: 30520
+ 18,0:
+ 0: 48051
+ 19,-3:
+ 0: 65535
+ 19,-2:
+ 0: 65525
+ 19,-1:
+ 0: 49155
+ 19,0:
+ 0: 65535
+ 20,-4:
+ 0: 57343
+ 20,-3:
+ 0: 61439
+ 20,-2:
+ 0: 65406
+ 20,-1:
+ 0: 65534
+ 20,0:
+ 0: 65535
+ 21,-4:
+ 0: 63283
+ 21,-3:
+ 0: 65535
+ 21,-2:
+ 0: 65535
+ 21,-1:
+ 0: 65535
+ 21,-5:
+ 0: 4352
+ 21,0:
+ 0: 65535
+ 22,-4:
+ 0: 4096
+ 22,-3:
+ 0: 13073
+ 22,-2:
+ 0: 30583
+ 22,-1:
+ 0: 65535
+ 22,0:
+ 0: 65535
+ 23,-1:
+ 0: 4369
+ 23,0:
+ 0: 30577
+ 20,1:
+ 0: 61439
+ 19,1:
+ 0: 2303
+ 20,2:
+ 0: 65516
+ 20,3:
+ 0: 65535
+ 19,2:
+ 0: 45840
+ 19,3:
+ 0: 15291
+ 20,4:
+ 0: 52975
+ 21,1:
+ 0: 32255
+ 21,2:
+ 0: 65503
+ 21,3:
+ 0: 57343
+ 22,1:
+ 0: 65535
+ 22,2:
+ 0: 65535
+ 22,3:
+ 0: 65535
+ 21,4:
+ 0: 65480
+ 22,4:
+ 0: 65535
+ 23,1:
+ 0: 65399
+ 23,2:
+ 0: 65535
+ 23,3:
+ 0: 65535
+ 23,4:
+ 0: 65535
+ 24,2:
+ 0: 4096
+ 24,3:
+ 0: 4369
+ 24,16:
+ 0: 28727
+ 24,15:
+ 0: 65535
+ 23,16:
+ 0: 61704
+ 24,17:
+ 0: 3839
+ 23,17:
+ 0: 30527
+ 24,18:
+ 0: 12288
+ 23,18:
+ 0: 65399
+ 23,19:
+ 0: 65535
+ 25,17:
+ 0: 61439
+ 25,15:
+ 0: 7167
+ 25,18:
+ 0: 12
+ 25,16:
+ 0: 34816
+ 26,16:
+ 0: 65535
+ 26,17:
+ 0: 32767
+ 26,18:
+ 0: 18039
+ 26,15:
+ 0: 65395
+ 27,16:
+ 0: 65531
+ 27,17:
+ 0: 53247
+ 27,15:
+ 0: 4096
+ 27,18:
+ 0: 2188
+ 28,16:
+ 0: 65296
+ 28,17:
+ 0: 65535
+ 28,18:
+ 0: 65535
+ 24,11:
+ 0: 65534
+ 24,12:
+ 0: 14540
+ 23,12:
+ 0: 65395
+ 24,13:
+ 0: 16383
+ 23,13:
+ 0: 65535
+ 24,14:
+ 0: 65481
+ 23,14:
+ 0: 59423
+ 23,15:
+ 0: 61439
+ 25,12:
+ 0: 61439
+ 25,13:
+ 0: 53104
+ 25,14:
+ 0: 65393
+ 25,11:
+ 0: 65535
+ 26,12:
+ 0: 65407
+ 26,13:
+ 0: 65295
+ 26,14:
+ 0: 40175
+ 26,11:
+ 0: 61439
+ 27,12:
+ 0: 57343
+ 27,13:
+ 0: 39176
+ 27,14:
+ 0: 40413
+ 27,11:
+ 0: 65535
+ 28,12:
+ 0: 29559
+ 28,13:
+ 0: 65527
+ 28,14:
+ 0: 65535
+ 28,15:
+ 0: 3311
+ 24,8:
+ 0: 65519
+ 24,7:
+ 0: 63283
+ 23,8:
+ 0: 61439
+ 24,9:
+ 0: 65535
+ 23,9:
+ 0: 53247
+ 24,10:
+ 0: 65535
+ 23,10:
+ 0: 65534
+ 23,11:
+ 0: 40174
+ 25,8:
+ 0: 65535
+ 25,9:
+ 0: 65535
+ 25,10:
+ 0: 65535
+ 25,7:
+ 0: 61440
+ 26,8:
+ 0: 65535
+ 26,9:
+ 0: 65535
+ 26,10:
+ 0: 65535
+ 26,7:
+ 0: 65518
+ 27,8:
+ 0: 65535
+ 27,9:
+ 0: 65535
+ 27,10:
+ 0: 65535
+ 27,7:
+ 0: 65535
+ 28,8:
+ 0: 65535
+ 28,9:
+ 0: 65535
+ 28,10:
+ 0: 65535
+ 28,11:
+ 0: 30719
+ 20,12:
+ 0: 63247
+ 20,11:
+ 0: 65535
+ 19,12:
+ 0: 65336
+ 20,13:
+ 0: 65535
+ 19,13:
+ 0: 65535
+ 20,14:
+ 0: 65535
+ 19,14:
+ 0: 65535
+ 20,15:
+ 0: 65535
+ 19,15:
+ 0: 65535
+ 20,16:
+ 0: 65535
+ 21,12:
+ 0: 28927
+ 21,13:
+ 0: 65535
+ 21,14:
+ 0: 511
+ 21,15:
+ 0: 65521
+ 21,11:
+ 0: 65535
+ 21,16:
+ 0: 65535
+ 22,12:
+ 0: 53247
+ 22,13:
+ 0: 39865
+ 22,14:
+ 0: 137
+ 22,15:
+ 0: 32752
+ 22,11:
+ 0: 65527
+ 22,16:
+ 0: 65523
+ 19,16:
+ 0: 65535
+ 20,17:
+ 0: 65535
+ 19,17:
+ 0: 65535
+ 20,18:
+ 0: 65535
+ 19,18:
+ 0: 65535
+ 20,19:
+ 0: 255
+ 19,19:
+ 0: 2047
+ 21,17:
+ 0: 65535
+ 21,18:
+ 0: 15359
+ 21,19:
+ 0: 61183
+ 21,20:
+ 0: 65534
+ 22,17:
+ 0: 65535
+ 22,18:
+ 0: 65331
+ 22,19:
+ 0: 65535
+ 22,20:
+ 0: 65535
+ 20,8:
+ 0: 65535
+ 20,7:
+ 0: 65395
+ 19,8:
+ 0: 65535
+ 20,9:
+ 0: 65535
+ 19,9:
+ 0: 65535
+ 20,10:
+ 0: 65535
+ 19,10:
+ 0: 65535
+ 19,11:
+ 0: 65535
+ 21,8:
+ 0: 30583
+ 21,9:
+ 0: 65399
+ 21,10:
+ 0: 65535
+ 21,7:
+ 0: 7407
+ 22,8:
+ 0: 65534
+ 22,9:
+ 0: 7407
+ 22,10:
+ 0: 30583
+ 22,7:
+ 0: 51707
+ 23,7:
+ 0: 65519
+ 19,4:
+ 0: 65399
+ 20,5:
+ 0: 56797
+ 19,5:
+ 0: 65535
+ 20,6:
+ 0: 48029
+ 19,6:
+ 0: 65535
+ 19,7:
+ 0: 65535
+ 21,5:
+ 0: 65535
+ 21,6:
+ 0: 65399
+ 22,5:
+ 0: 65534
+ 22,6:
+ 0: 65263
+ 23,5:
+ 0: 65535
+ 23,6:
+ 0: 57343
+ 24,4:
+ 0: 4369
+ 24,5:
+ 0: 4369
+ 24,6:
+ 0: 12561
+ 29,13:
+ 0: 4096
+ 29,14:
+ 0: 63283
+ 29,15:
+ 0: 65535
+ 30,14:
+ 0: 28672
+ 30,15:
+ 0: 65535
+ 29,16:
+ 0: 65480
+ 30,16:
+ 0: 65535
+ 31,15:
+ 0: 4368
+ 31,16:
+ 0: 17
+ 29,17:
+ 0: 65535
+ 29,18:
+ 0: 30719
+ 30,17:
+ 0: 4407
+ 17,1:
+ 0: 65535
+ 17,2:
+ 0: 65535
+ 17,3:
+ 0: 65535
+ 17,4:
+ 0: 65535
+ 18,1:
+ 0: 29499
+ 18,2:
+ 0: 65535
+ 18,3:
+ 0: 65535
+ 18,4:
+ 0: 65535
+ 17,5:
+ 0: 65535
+ 17,6:
+ 0: 65535
+ 17,7:
+ 0: 65535
+ 17,8:
+ 0: 65535
+ 18,5:
+ 0: 65535
+ 18,6:
+ 0: 65535
+ 18,7:
+ 0: 65535
+ 18,8:
+ 0: 65535
+ 16,12:
+ 0: 65535
+ 17,9:
+ 0: 62351
+ 17,10:
+ 0: 65535
+ 17,11:
+ 0: 14335
+ 17,12:
+ 0: 65535
+ 18,9:
+ 0: 52991
+ 18,10:
+ 0: 39865
+ 18,11:
+ 0: 61133
+ 16,13:
+ 0: 65535
+ 15,13:
+ 0: 65535
+ 16,14:
+ 0: 65535
+ 15,14:
+ 0: 65535
+ 16,15:
+ 0: 65535
+ 15,15:
+ 0: 65535
+ 16,16:
+ 0: 65535
+ 17,13:
+ 0: 65535
+ 17,14:
+ 0: 65535
+ 17,15:
+ 0: 65535
+ 17,16:
+ 0: 65535
+ 18,12:
+ 0: 65520
+ 18,13:
+ 0: 65535
+ 18,14:
+ 0: 65535
+ 18,15:
+ 0: 65535
+ 18,16:
+ 0: 65535
+ 12,13:
+ 0: 65535
+ 11,13:
+ 0: 65535
+ 12,14:
+ 0: 65535
+ 11,14:
+ 0: 65535
+ 12,15:
+ 0: 65535
+ 11,15:
+ 0: 65535
+ 12,16:
+ 0: 65535
+ 13,13:
+ 0: 65535
+ 13,14:
+ 0: 65535
+ 13,15:
+ 0: 65535
+ 13,16:
+ 0: 65535
+ 14,13:
+ 0: 65535
+ 14,14:
+ 0: 65535
+ 14,15:
+ 0: 65535
+ 14,16:
+ 0: 65535
+ 15,16:
+ 0: 65535
+ 16,17:
+ 0: 65535
+ 15,17:
+ 0: 65535
+ 16,18:
+ 0: 65535
+ 15,18:
+ 0: 65535
+ 16,19:
+ 0: 65535
+ 15,19:
+ 0: 65535
+ 16,20:
+ 0: 65535
+ 17,17:
+ 0: 65535
+ 17,18:
+ 0: 65535
+ 17,19:
+ 0: 65535
+ 17,20:
+ 0: 32767
+ 18,17:
+ 0: 65535
+ 18,18:
+ 0: 65535
+ 18,19:
+ 0: 65535
+ 18,20:
+ 0: 32823
+ 11,16:
+ 0: 65535
+ 12,17:
+ 0: 65535
+ 11,17:
+ 0: 65535
+ 12,18:
+ 0: 65535
+ 11,18:
+ 0: 65535
+ 12,19:
+ 0: 65535
+ 11,19:
+ 0: 65535
+ 12,20:
+ 0: 65535
+ 13,17:
+ 0: 65535
+ 13,18:
+ 0: 65535
+ 13,19:
+ 0: 65535
+ 13,20:
+ 0: 65535
+ 14,17:
+ 0: 65535
+ 14,18:
+ 0: 65535
+ 14,19:
+ 0: 65535
+ 14,20:
+ 0: 65535
+ 15,20:
+ 0: 65535
+ 20,20:
+ 0: 64640
+ 20,21:
+ 0: 65535
+ 19,21:
+ 0: 52441
+ 20,22:
+ 0: 65535
+ 19,22:
+ 0: 34952
+ 20,23:
+ 0: 52991
+ 21,21:
+ 0: 65535
+ 21,22:
+ 0: 65535
+ 21,23:
+ 0: 63487
+ 20,24:
+ 0: 28936
+ 21,24:
+ 0: 52991
+ 22,21:
+ 0: 65535
+ 22,22:
+ 0: 65535
+ 22,23:
+ 0: 52479
+ 22,24:
+ 0: 65535
+ 19,24:
+ 0: 65535
+ 20,25:
+ 0: 61439
+ 19,25:
+ 0: 3276
+ 20,26:
+ 0: 29456
+ 19,26:
+ 0: 65328
+ 20,27:
+ 0: 30583
+ 21,25:
+ 0: 29464
+ 21,26:
+ 0: 7
+ 22,25:
+ 0: 52991
+ 22,27:
+ 0: 61128
+ 22,28:
+ 0: 64718
+ 22,26:
+ 0: 34952
+ 21,28:
+ 0: 62224
+ 21,29:
+ 0: 65535
+ 21,30:
+ 0: 65535
+ 22,29:
+ 0: 65535
+ 22,30:
+ 0: 65535
+ 16,24:
+ 0: 65535
+ 16,23:
+ 0: 65535
+ 15,24:
+ 0: 65535
+ 16,25:
+ 0: 65535
+ 15,25:
+ 0: 65535
+ 16,26:
+ 0: 65535
+ 15,26:
+ 0: 65535
+ 17,24:
+ 0: 65527
+ 17,25:
+ 0: 65535
+ 17,26:
+ 0: 65535
+ 17,23:
+ 0: 32561
+ 18,25:
+ 0: 30481
+ 18,26:
+ 0: 65527
+ 18,24:
+ 0: 140
+ 18,23:
+ 0: 52974
+ 19,23:
+ 0: 29457
+ 9,24:
+ 0: 65535
+ 9,25:
+ 0: 65535
+ 9,26:
+ 0: 65535
+ 9,23:
+ 0: 65535
+ 10,24:
+ 0: 65535
+ 10,25:
+ 0: 65535
+ 10,26:
+ 0: 65535
+ 10,23:
+ 0: 65535
+ 11,24:
+ 0: 65535
+ 11,25:
+ 0: 65535
+ 11,26:
+ 0: 65535
+ 11,23:
+ 0: 65535
+ 12,24:
+ 0: 65535
+ 12,25:
+ 0: 65535
+ 12,26:
+ 0: 65535
+ 9,20:
+ 0: 65535
+ 9,21:
+ 0: 65535
+ 9,22:
+ 0: 65535
+ 9,19:
+ 0: 65535
+ 10,20:
+ 0: 65535
+ 10,21:
+ 0: 65535
+ 10,22:
+ 0: 65535
+ 10,19:
+ 0: 65535
+ 11,20:
+ 0: 65535
+ 11,21:
+ 0: 65535
+ 11,22:
+ 0: 65535
+ 12,21:
+ 0: 65535
+ 12,22:
+ 0: 65535
+ 12,23:
+ 0: 65535
+ 9,16:
+ 0: 65535
+ 9,17:
+ 0: 65535
+ 9,18:
+ 0: 65535
+ 9,15:
+ 0: 65535
+ 10,16:
+ 0: 65535
+ 10,17:
+ 0: 65535
+ 10,18:
+ 0: 65535
+ 10,15:
+ 0: 65535
+ 13,21:
+ 0: 65535
+ 13,22:
+ 0: 65535
+ 13,23:
+ 0: 65535
+ 13,24:
+ 0: 65535
+ 14,21:
+ 0: 65535
+ 14,22:
+ 0: 65535
+ 14,23:
+ 0: 65535
+ 14,24:
+ 0: 65535
+ 15,21:
+ 0: 65535
+ 15,22:
+ 0: 65535
+ 15,23:
+ 0: 65535
+ 16,21:
+ 0: 32767
+ 16,22:
+ 0: 65535
+ 13,25:
+ 0: 65535
+ 13,26:
+ 0: 65535
+ 14,25:
+ 0: 65535
+ 14,26:
+ 0: 65535
+ 17,21:
+ 0: 34835
+ 17,22:
+ 0: 479
+ 18,21:
+ 0: 65534
+ 18,22:
+ 0: 61047
+ 19,20:
+ 0: 4352
+ 9,13:
+ 0: 65535
+ 9,14:
+ 0: 65535
+ 10,13:
+ 0: 65535
+ 10,14:
+ 0: 65535
+ 26,6:
+ 0: 61164
+ 26,5:
+ 0: 51200
+ 27,5:
+ 0: 65520
+ 27,6:
+ 0: 65535
+ 28,5:
+ 0: 65392
+ 28,6:
+ 0: 65535
+ 28,7:
+ 0: 65535
+ 29,8:
+ 0: 13107
+ 29,9:
+ 0: 4915
+ 29,10:
+ 0: 17
+ 29,7:
+ 0: 13107
+ 29,5:
+ 0: 4096
+ 29,6:
+ 0: 13105
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+- proto: CP14AgaricMushroom
+ entities:
+ - uid: 15590
+ components:
+ - type: Transform
+ pos: 32.05044,20.70214
+ parent: 2
+ - uid: 15591
+ components:
+ - type: Transform
+ pos: 32.347317,20.686516
+ parent: 2
+ - uid: 15592
+ components:
+ - type: Transform
+ pos: 31.722317,20.624016
+ parent: 2
+ - uid: 15593
+ components:
+ - type: Transform
+ pos: 32.066067,20.624016
+ parent: 2
+ - uid: 15594
+ components:
+ - type: Transform
+ pos: 31.612942,20.73339
+ parent: 2
+ - uid: 15595
+ components:
+ - type: Transform
+ pos: 31.784817,20.73339
+ parent: 2
+- proto: CP14AlchemyFurnace
+ entities:
+ - uid: 14252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,30.5
+ parent: 2
+ - uid: 14255
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,29.5
+ parent: 2
+ - uid: 14442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-11.5
+ parent: 2
+ - uid: 14518
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 2
+ - uid: 15583
+ components:
+ - type: Transform
+ pos: 30.5,23.5
+ parent: 2
+ - type: ItemPlacer
+ placedEntities:
+ - 15601
+- proto: CP14BankStorageMarker
+ entities:
+ - uid: 55
+ components:
+ - type: Transform
+ pos: -25.5,-2.5
+ parent: 2
+- proto: CP14BarrelAgaricMushroom
+ entities:
+ - uid: 15589
+ components:
+ - type: Transform
+ pos: 32.45669,23.436516
+ parent: 2
+- proto: CP14BarrelWater
+ entities:
+ - uid: 15456
+ components:
+ - type: Transform
+ pos: 26.48374,22.857513
+ parent: 2
+- proto: CP14BaseLightCrossbow
+ entities:
+ - uid: 1584
+ components:
+ - type: Transform
+ pos: -47.301495,-4.4134536
+ parent: 2
+ - uid: 17760
+ components:
+ - type: Transform
+ pos: -38.18782,-14.131587
+ parent: 2
+ - uid: 17761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.12532,-14.423253
+ parent: 2
+- proto: CP14BaseMop
+ entities:
+ - uid: 14416
+ components:
+ - type: Transform
+ pos: -9.222181,-21.224224
+ parent: 2
+- proto: CP14BaseSharpeningStoneStructure
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,6.5
+ parent: 2
+ - uid: 14484
+ components:
+ - type: Transform
+ pos: -13.5,-16.5
+ parent: 2
+- proto: CP14BaseShield
+ entities:
+ - uid: 17722
+ components:
+ - type: Transform
+ pos: -38.71168,-12.220549
+ parent: 2
+ - uid: 17723
+ components:
+ - type: Transform
+ pos: -38.49293,-12.283049
+ parent: 2
+ - uid: 17724
+ components:
+ - type: Transform
+ pos: -38.24293,-12.267424
+ parent: 2
+ - uid: 17725
+ components:
+ - type: Transform
+ pos: -38.02418,-12.298674
+ parent: 2
+- proto: CP14BaseTombstone
+ entities:
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 26.514177,1.6628153
+ parent: 2
+ - uid: 741
+ components:
+ - type: Transform
+ pos: 24.497072,-4.3109007
+ parent: 2
+ - uid: 10492
+ components:
+ - type: Transform
+ pos: -112.5,46.5
+ parent: 2
+ - uid: 15401
+ components:
+ - type: Transform
+ pos: 28.5,-4.5
+ parent: 2
+- proto: CP14BenchWood
+ entities:
+ - uid: 1466
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-22.5
+ parent: 2
+ - uid: 1467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-22.5
+ parent: 2
+ - uid: 1503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,-25.5
+ parent: 2
+ - uid: 1504
+ components:
+ - type: Transform
+ pos: 38.5,-9.5
+ parent: 2
+ - uid: 1505
+ components:
+ - type: Transform
+ pos: 40.5,-9.5
+ parent: 2
+ - uid: 1510
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-25.5
+ parent: 2
+ - uid: 1519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-25.5
+ parent: 2
+ - uid: 10069
+ components:
+ - type: Transform
+ pos: 37.5,-64.5
+ parent: 2
+- proto: CP14BiomeSpawnerCave
+ entities:
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 9.5,-34.5
+ parent: 2
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 34.5,-46.5
+ parent: 2
+ - uid: 22
+ components:
+ - type: Transform
+ pos: 35.5,-46.5
+ parent: 2
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 36.5,-47.5
+ parent: 2
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 35.5,-49.5
+ parent: 2
+ - uid: 26
+ components:
+ - type: Transform
+ pos: 36.5,-49.5
+ parent: 2
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 30.5,-45.5
+ parent: 2
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 36.5,-46.5
+ parent: 2
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 36.5,-48.5
+ parent: 2
+ - uid: 170
+ components:
+ - type: Transform
+ pos: 35.5,-48.5
+ parent: 2
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 33.5,-46.5
+ parent: 2
+ - uid: 173
+ components:
+ - type: Transform
+ pos: 28.5,-44.5
+ parent: 2
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 37.5,-46.5
+ parent: 2
+ - uid: 179
+ components:
+ - type: Transform
+ pos: 32.5,-43.5
+ parent: 2
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 29.5,-45.5
+ parent: 2
+ - uid: 197
+ components:
+ - type: Transform
+ pos: 35.5,-47.5
+ parent: 2
+ - uid: 198
+ components:
+ - type: Transform
+ pos: 32.5,-46.5
+ parent: 2
+ - uid: 212
+ components:
+ - type: Transform
+ pos: 29.5,-44.5
+ parent: 2
+ - uid: 267
+ components:
+ - type: Transform
+ pos: 34.5,-49.5
+ parent: 2
+ - uid: 268
+ components:
+ - type: Transform
+ pos: 38.5,-46.5
+ parent: 2
+ - uid: 269
+ components:
+ - type: Transform
+ pos: 32.5,-47.5
+ parent: 2
+ - uid: 428
+ components:
+ - type: Transform
+ pos: 32.5,-44.5
+ parent: 2
+ - uid: 475
+ components:
+ - type: Transform
+ pos: 30.5,-44.5
+ parent: 2
+ - uid: 490
+ components:
+ - type: Transform
+ pos: 31.5,-44.5
+ parent: 2
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 32.5,-45.5
+ parent: 2
+ - uid: 522
+ components:
+ - type: Transform
+ pos: 8.5,-37.5
+ parent: 2
+ - uid: 737
+ components:
+ - type: Transform
+ pos: 34.5,-47.5
+ parent: 2
+ - uid: 777
+ components:
+ - type: Transform
+ pos: 34.5,-48.5
+ parent: 2
+ - uid: 948
+ components:
+ - type: Transform
+ pos: 38.5,-50.5
+ parent: 2
+ - uid: 949
+ components:
+ - type: Transform
+ pos: 37.5,-50.5
+ parent: 2
+ - uid: 951
+ components:
+ - type: Transform
+ pos: 38.5,-49.5
+ parent: 2
+ - uid: 952
+ components:
+ - type: Transform
+ pos: 38.5,-51.5
+ parent: 2
+ - uid: 953
+ components:
+ - type: Transform
+ pos: 10.5,-35.5
+ parent: 2
+ - uid: 954
+ components:
+ - type: Transform
+ pos: 11.5,-35.5
+ parent: 2
+ - uid: 956
+ components:
+ - type: Transform
+ pos: 17.5,-36.5
+ parent: 2
+ - uid: 957
+ components:
+ - type: Transform
+ pos: 17.5,-37.5
+ parent: 2
+ - uid: 958
+ components:
+ - type: Transform
+ pos: 14.5,-36.5
+ parent: 2
+ - uid: 959
+ components:
+ - type: Transform
+ pos: 16.5,-36.5
+ parent: 2
+ - uid: 960
+ components:
+ - type: Transform
+ pos: 15.5,-37.5
+ parent: 2
+ - uid: 961
+ components:
+ - type: Transform
+ pos: 15.5,-36.5
+ parent: 2
+ - uid: 962
+ components:
+ - type: Transform
+ pos: 14.5,-35.5
+ parent: 2
+ - uid: 963
+ components:
+ - type: Transform
+ pos: 19.5,-39.5
+ parent: 2
+ - uid: 964
+ components:
+ - type: Transform
+ pos: 12.5,-39.5
+ parent: 2
+ - uid: 965
+ components:
+ - type: Transform
+ pos: 12.5,-33.5
+ parent: 2
+ - uid: 966
+ components:
+ - type: Transform
+ pos: 13.5,-34.5
+ parent: 2
+ - uid: 967
+ components:
+ - type: Transform
+ pos: 19.5,-40.5
+ parent: 2
+ - uid: 968
+ components:
+ - type: Transform
+ pos: 11.5,-34.5
+ parent: 2
+ - uid: 969
+ components:
+ - type: Transform
+ pos: 13.5,-35.5
+ parent: 2
+ - uid: 970
+ components:
+ - type: Transform
+ pos: 12.5,-35.5
+ parent: 2
+ - uid: 971
+ components:
+ - type: Transform
+ pos: 19.5,-41.5
+ parent: 2
+ - uid: 972
+ components:
+ - type: Transform
+ pos: 12.5,-34.5
+ parent: 2
+ - uid: 973
+ components:
+ - type: Transform
+ pos: 18.5,-39.5
+ parent: 2
+ - uid: 975
+ components:
+ - type: Transform
+ pos: 16.5,-40.5
+ parent: 2
+ - uid: 976
+ components:
+ - type: Transform
+ pos: 15.5,-40.5
+ parent: 2
+ - uid: 977
+ components:
+ - type: Transform
+ pos: -103.5,30.5
+ parent: 2
+ - uid: 978
+ components:
+ - type: Transform
+ pos: 17.5,-40.5
+ parent: 2
+ - uid: 979
+ components:
+ - type: Transform
+ pos: 28.5,-43.5
+ parent: 2
+ - uid: 980
+ components:
+ - type: Transform
+ pos: 31.5,-42.5
+ parent: 2
+ - uid: 981
+ components:
+ - type: Transform
+ pos: 27.5,-43.5
+ parent: 2
+ - uid: 982
+ components:
+ - type: Transform
+ pos: 30.5,-43.5
+ parent: 2
+ - uid: 983
+ components:
+ - type: Transform
+ pos: 29.5,-42.5
+ parent: 2
+ - uid: 984
+ components:
+ - type: Transform
+ pos: 31.5,-43.5
+ parent: 2
+ - uid: 985
+ components:
+ - type: Transform
+ pos: 27.5,-42.5
+ parent: 2
+ - uid: 986
+ components:
+ - type: Transform
+ pos: 30.5,-42.5
+ parent: 2
+ - uid: 987
+ components:
+ - type: Transform
+ pos: 29.5,-43.5
+ parent: 2
+ - uid: 988
+ components:
+ - type: Transform
+ pos: 28.5,-42.5
+ parent: 2
+ - uid: 989
+ components:
+ - type: Transform
+ pos: 26.5,-38.5
+ parent: 2
+ - uid: 990
+ components:
+ - type: Transform
+ pos: 25.5,-42.5
+ parent: 2
+ - uid: 991
+ components:
+ - type: Transform
+ pos: 26.5,-42.5
+ parent: 2
+ - uid: 992
+ components:
+ - type: Transform
+ pos: 16.5,-41.5
+ parent: 2
+ - uid: 993
+ components:
+ - type: Transform
+ pos: 26.5,-41.5
+ parent: 2
+ - uid: 994
+ components:
+ - type: Transform
+ pos: 14.5,-40.5
+ parent: 2
+ - uid: 995
+ components:
+ - type: Transform
+ pos: 15.5,-41.5
+ parent: 2
+ - uid: 996
+ components:
+ - type: Transform
+ pos: -104.5,31.5
+ parent: 2
+ - uid: 997
+ components:
+ - type: Transform
+ pos: 26.5,-43.5
+ parent: 2
+ - uid: 998
+ components:
+ - type: Transform
+ pos: 21.5,-41.5
+ parent: 2
+ - uid: 999
+ components:
+ - type: Transform
+ pos: 21.5,-40.5
+ parent: 2
+ - uid: 1001
+ components:
+ - type: Transform
+ pos: 12.5,-36.5
+ parent: 2
+ - uid: 1003
+ components:
+ - type: Transform
+ pos: 20.5,-41.5
+ parent: 2
+ - uid: 1008
+ components:
+ - type: Transform
+ pos: 20.5,-40.5
+ parent: 2
+ - uid: 1009
+ components:
+ - type: Transform
+ pos: 20.5,-39.5
+ parent: 2
+ - uid: 1010
+ components:
+ - type: Transform
+ pos: 21.5,-39.5
+ parent: 2
+ - uid: 1011
+ components:
+ - type: Transform
+ pos: 36.5,-40.5
+ parent: 2
+ - uid: 1012
+ components:
+ - type: Transform
+ pos: 32.5,-40.5
+ parent: 2
+ - uid: 1013
+ components:
+ - type: Transform
+ pos: 35.5,-41.5
+ parent: 2
+ - uid: 1014
+ components:
+ - type: Transform
+ pos: 34.5,-41.5
+ parent: 2
+ - uid: 1015
+ components:
+ - type: Transform
+ pos: 34.5,-40.5
+ parent: 2
+ - uid: 1016
+ components:
+ - type: Transform
+ pos: 36.5,-41.5
+ parent: 2
+ - uid: 1017
+ components:
+ - type: Transform
+ pos: 33.5,-41.5
+ parent: 2
+ - uid: 1018
+ components:
+ - type: Transform
+ pos: 34.5,-39.5
+ parent: 2
+ - uid: 1019
+ components:
+ - type: Transform
+ pos: 33.5,-39.5
+ parent: 2
+ - uid: 1020
+ components:
+ - type: Transform
+ pos: 33.5,-40.5
+ parent: 2
+ - uid: 1021
+ components:
+ - type: Transform
+ pos: 35.5,-39.5
+ parent: 2
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: 36.5,-39.5
+ parent: 2
+ - uid: 1023
+ components:
+ - type: Transform
+ pos: 32.5,-41.5
+ parent: 2
+ - uid: 1024
+ components:
+ - type: Transform
+ pos: 35.5,-40.5
+ parent: 2
+ - uid: 1025
+ components:
+ - type: Transform
+ pos: 32.5,-39.5
+ parent: 2
+ - uid: 1026
+ components:
+ - type: Transform
+ pos: 29.5,-41.5
+ parent: 2
+ - uid: 1027
+ components:
+ - type: Transform
+ pos: 29.5,-40.5
+ parent: 2
+ - uid: 1028
+ components:
+ - type: Transform
+ pos: 28.5,-41.5
+ parent: 2
+ - uid: 1029
+ components:
+ - type: Transform
+ pos: 31.5,-39.5
+ parent: 2
+ - uid: 1030
+ components:
+ - type: Transform
+ pos: 31.5,-40.5
+ parent: 2
+ - uid: 1031
+ components:
+ - type: Transform
+ pos: 38.5,-41.5
+ parent: 2
+ - uid: 1032
+ components:
+ - type: Transform
+ pos: 29.5,-39.5
+ parent: 2
+ - uid: 1033
+ components:
+ - type: Transform
+ pos: 32.5,-37.5
+ parent: 2
+ - uid: 1034
+ components:
+ - type: Transform
+ pos: 30.5,-38.5
+ parent: 2
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: 38.5,-42.5
+ parent: 2
+ - uid: 1036
+ components:
+ - type: Transform
+ pos: 38.5,-43.5
+ parent: 2
+ - uid: 1037
+ components:
+ - type: Transform
+ pos: 10.5,-34.5
+ parent: 2
+ - uid: 1038
+ components:
+ - type: Transform
+ pos: 33.5,-38.5
+ parent: 2
+ - uid: 1039
+ components:
+ - type: Transform
+ pos: 34.5,-38.5
+ parent: 2
+ - uid: 1040
+ components:
+ - type: Transform
+ pos: 27.5,-38.5
+ parent: 2
+ - uid: 1041
+ components:
+ - type: Transform
+ pos: 29.5,-38.5
+ parent: 2
+ - uid: 1042
+ components:
+ - type: Transform
+ pos: 28.5,-38.5
+ parent: 2
+ - uid: 1043
+ components:
+ - type: Transform
+ pos: 30.5,-41.5
+ parent: 2
+ - uid: 1044
+ components:
+ - type: Transform
+ pos: 31.5,-41.5
+ parent: 2
+ - uid: 1045
+ components:
+ - type: Transform
+ pos: 18.5,-37.5
+ parent: 2
+ - uid: 1046
+ components:
+ - type: Transform
+ pos: 30.5,-40.5
+ parent: 2
+ - uid: 1047
+ components:
+ - type: Transform
+ pos: 30.5,-39.5
+ parent: 2
+ - uid: 1048
+ components:
+ - type: Transform
+ pos: 31.5,-37.5
+ parent: 2
+ - uid: 1049
+ components:
+ - type: Transform
+ pos: 38.5,-40.5
+ parent: 2
+ - uid: 1050
+ components:
+ - type: Transform
+ pos: 32.5,-38.5
+ parent: 2
+ - uid: 1051
+ components:
+ - type: Transform
+ pos: 31.5,-38.5
+ parent: 2
+ - uid: 1052
+ components:
+ - type: Transform
+ pos: 19.5,-37.5
+ parent: 2
+ - uid: 1053
+ components:
+ - type: Transform
+ pos: 16.5,-38.5
+ parent: 2
+ - uid: 1054
+ components:
+ - type: Transform
+ pos: 18.5,-41.5
+ parent: 2
+ - uid: 1055
+ components:
+ - type: Transform
+ pos: 18.5,-40.5
+ parent: 2
+ - uid: 1056
+ components:
+ - type: Transform
+ pos: 17.5,-38.5
+ parent: 2
+ - uid: 1057
+ components:
+ - type: Transform
+ pos: 20.5,-38.5
+ parent: 2
+ - uid: 1058
+ components:
+ - type: Transform
+ pos: 19.5,-38.5
+ parent: 2
+ - uid: 1059
+ components:
+ - type: Transform
+ pos: 18.5,-38.5
+ parent: 2
+ - uid: 1060
+ components:
+ - type: Transform
+ pos: 21.5,-38.5
+ parent: 2
+ - uid: 1061
+ components:
+ - type: Transform
+ pos: 41.5,-47.5
+ parent: 2
+ - uid: 1062
+ components:
+ - type: Transform
+ pos: 41.5,-48.5
+ parent: 2
+ - uid: 1063
+ components:
+ - type: Transform
+ pos: 35.5,-50.5
+ parent: 2
+ - uid: 1064
+ components:
+ - type: Transform
+ pos: 41.5,-49.5
+ parent: 2
+ - uid: 1065
+ components:
+ - type: Transform
+ pos: 37.5,-52.5
+ parent: 2
+ - uid: 1066
+ components:
+ - type: Transform
+ pos: 41.5,-46.5
+ parent: 2
+ - uid: 1067
+ components:
+ - type: Transform
+ pos: 41.5,-45.5
+ parent: 2
+ - uid: 1068
+ components:
+ - type: Transform
+ pos: 41.5,-52.5
+ parent: 2
+ - uid: 1069
+ components:
+ - type: Transform
+ pos: 36.5,-51.5
+ parent: 2
+ - uid: 1070
+ components:
+ - type: Transform
+ pos: 37.5,-47.5
+ parent: 2
+ - uid: 1071
+ components:
+ - type: Transform
+ pos: 35.5,-51.5
+ parent: 2
+ - uid: 1072
+ components:
+ - type: Transform
+ pos: 36.5,-50.5
+ parent: 2
+ - uid: 1073
+ components:
+ - type: Transform
+ pos: 41.5,-50.5
+ parent: 2
+ - uid: 1074
+ components:
+ - type: Transform
+ pos: 41.5,-51.5
+ parent: 2
+ - uid: 1075
+ components:
+ - type: Transform
+ pos: 40.5,-51.5
+ parent: 2
+ - uid: 1076
+ components:
+ - type: Transform
+ pos: 37.5,-51.5
+ parent: 2
+ - uid: 1077
+ components:
+ - type: Transform
+ pos: 40.5,-52.5
+ parent: 2
+ - uid: 1078
+ components:
+ - type: Transform
+ pos: 40.5,-50.5
+ parent: 2
+ - uid: 1079
+ components:
+ - type: Transform
+ pos: 37.5,-49.5
+ parent: 2
+ - uid: 1080
+ components:
+ - type: Transform
+ pos: 37.5,-48.5
+ parent: 2
+ - uid: 1081
+ components:
+ - type: Transform
+ pos: 39.5,-50.5
+ parent: 2
+ - uid: 1082
+ components:
+ - type: Transform
+ pos: 39.5,-51.5
+ parent: 2
+ - uid: 1083
+ components:
+ - type: Transform
+ pos: 38.5,-52.5
+ parent: 2
+ - uid: 1084
+ components:
+ - type: Transform
+ pos: 40.5,-45.5
+ parent: 2
+ - uid: 1085
+ components:
+ - type: Transform
+ pos: 40.5,-46.5
+ parent: 2
+ - uid: 1086
+ components:
+ - type: Transform
+ pos: 39.5,-49.5
+ parent: 2
+ - uid: 1087
+ components:
+ - type: Transform
+ pos: 39.5,-48.5
+ parent: 2
+ - uid: 1088
+ components:
+ - type: Transform
+ pos: 39.5,-47.5
+ parent: 2
+ - uid: 1089
+ components:
+ - type: Transform
+ pos: 39.5,-46.5
+ parent: 2
+ - uid: 1090
+ components:
+ - type: Transform
+ pos: 39.5,-45.5
+ parent: 2
+ - uid: 1091
+ components:
+ - type: Transform
+ pos: 38.5,-48.5
+ parent: 2
+ - uid: 1092
+ components:
+ - type: Transform
+ pos: 38.5,-47.5
+ parent: 2
+ - uid: 1093
+ components:
+ - type: Transform
+ pos: 38.5,-45.5
+ parent: 2
+ - uid: 1094
+ components:
+ - type: Transform
+ pos: 37.5,-45.5
+ parent: 2
+ - uid: 1095
+ components:
+ - type: Transform
+ pos: 40.5,-49.5
+ parent: 2
+ - uid: 1096
+ components:
+ - type: Transform
+ pos: 40.5,-48.5
+ parent: 2
+ - uid: 1097
+ components:
+ - type: Transform
+ pos: 39.5,-52.5
+ parent: 2
+ - uid: 1098
+ components:
+ - type: Transform
+ pos: 40.5,-47.5
+ parent: 2
+ - uid: 1099
+ components:
+ - type: Transform
+ pos: 35.5,-42.5
+ parent: 2
+ - uid: 1100
+ components:
+ - type: Transform
+ pos: 44.5,-43.5
+ parent: 2
+ - uid: 1101
+ components:
+ - type: Transform
+ pos: 37.5,-41.5
+ parent: 2
+ - uid: 1102
+ components:
+ - type: Transform
+ pos: 37.5,-40.5
+ parent: 2
+ - uid: 1103
+ components:
+ - type: Transform
+ pos: 35.5,-43.5
+ parent: 2
+ - uid: 1104
+ components:
+ - type: Transform
+ pos: 44.5,-44.5
+ parent: 2
+ - uid: 1105
+ components:
+ - type: Transform
+ pos: 33.5,-45.5
+ parent: 2
+ - uid: 1106
+ components:
+ - type: Transform
+ pos: 44.5,-41.5
+ parent: 2
+ - uid: 1107
+ components:
+ - type: Transform
+ pos: 36.5,-45.5
+ parent: 2
+ - uid: 1108
+ components:
+ - type: Transform
+ pos: 44.5,-40.5
+ parent: 2
+ - uid: 1109
+ components:
+ - type: Transform
+ pos: 33.5,-43.5
+ parent: 2
+ - uid: 1110
+ components:
+ - type: Transform
+ pos: 43.5,-44.5
+ parent: 2
+ - uid: 1111
+ components:
+ - type: Transform
+ pos: 36.5,-42.5
+ parent: 2
+ - uid: 1112
+ components:
+ - type: Transform
+ pos: 43.5,-43.5
+ parent: 2
+ - uid: 1113
+ components:
+ - type: Transform
+ pos: 33.5,-42.5
+ parent: 2
+ - uid: 1114
+ components:
+ - type: Transform
+ pos: 43.5,-42.5
+ parent: 2
+ - uid: 1115
+ components:
+ - type: Transform
+ pos: 36.5,-44.5
+ parent: 2
+ - uid: 1116
+ components:
+ - type: Transform
+ pos: 41.5,-40.5
+ parent: 2
+ - uid: 1117
+ components:
+ - type: Transform
+ pos: 34.5,-45.5
+ parent: 2
+ - uid: 1118
+ components:
+ - type: Transform
+ pos: 42.5,-44.5
+ parent: 2
+ - uid: 1119
+ components:
+ - type: Transform
+ pos: 35.5,-44.5
+ parent: 2
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: 37.5,-42.5
+ parent: 2
+ - uid: 1121
+ components:
+ - type: Transform
+ pos: 33.5,-44.5
+ parent: 2
+ - uid: 1122
+ components:
+ - type: Transform
+ pos: 43.5,-41.5
+ parent: 2
+ - uid: 1123
+ components:
+ - type: Transform
+ pos: 37.5,-43.5
+ parent: 2
+ - uid: 1124
+ components:
+ - type: Transform
+ pos: 35.5,-45.5
+ parent: 2
+ - uid: 1125
+ components:
+ - type: Transform
+ pos: 39.5,-40.5
+ parent: 2
+ - uid: 1126
+ components:
+ - type: Transform
+ pos: 40.5,-40.5
+ parent: 2
+ - uid: 1127
+ components:
+ - type: Transform
+ pos: 39.5,-43.5
+ parent: 2
+ - uid: 1128
+ components:
+ - type: Transform
+ pos: 39.5,-44.5
+ parent: 2
+ - uid: 1129
+ components:
+ - type: Transform
+ pos: 40.5,-42.5
+ parent: 2
+ - uid: 1130
+ components:
+ - type: Transform
+ pos: 39.5,-41.5
+ parent: 2
+ - uid: 1131
+ components:
+ - type: Transform
+ pos: 40.5,-41.5
+ parent: 2
+ - uid: 1132
+ components:
+ - type: Transform
+ pos: 40.5,-43.5
+ parent: 2
+ - uid: 1133
+ components:
+ - type: Transform
+ pos: 41.5,-41.5
+ parent: 2
+ - uid: 1134
+ components:
+ - type: Transform
+ pos: 41.5,-42.5
+ parent: 2
+ - uid: 1135
+ components:
+ - type: Transform
+ pos: 39.5,-42.5
+ parent: 2
+ - uid: 1136
+ components:
+ - type: Transform
+ pos: 40.5,-44.5
+ parent: 2
+ - uid: 1137
+ components:
+ - type: Transform
+ pos: 43.5,-40.5
+ parent: 2
+ - uid: 1138
+ components:
+ - type: Transform
+ pos: 38.5,-44.5
+ parent: 2
+ - uid: 1139
+ components:
+ - type: Transform
+ pos: 41.5,-43.5
+ parent: 2
+ - uid: 1140
+ components:
+ - type: Transform
+ pos: 32.5,-42.5
+ parent: 2
+ - uid: 1141
+ components:
+ - type: Transform
+ pos: 44.5,-42.5
+ parent: 2
+ - uid: 1142
+ components:
+ - type: Transform
+ pos: 42.5,-40.5
+ parent: 2
+ - uid: 1143
+ components:
+ - type: Transform
+ pos: 42.5,-43.5
+ parent: 2
+ - uid: 1144
+ components:
+ - type: Transform
+ pos: 42.5,-42.5
+ parent: 2
+ - uid: 1145
+ components:
+ - type: Transform
+ pos: 36.5,-43.5
+ parent: 2
+ - uid: 1146
+ components:
+ - type: Transform
+ pos: 41.5,-44.5
+ parent: 2
+ - uid: 1147
+ components:
+ - type: Transform
+ pos: 34.5,-42.5
+ parent: 2
+ - uid: 1148
+ components:
+ - type: Transform
+ pos: 42.5,-41.5
+ parent: 2
+ - uid: 1149
+ components:
+ - type: Transform
+ pos: 34.5,-44.5
+ parent: 2
+ - uid: 1150
+ components:
+ - type: Transform
+ pos: 34.5,-43.5
+ parent: 2
+ - uid: 1151
+ components:
+ - type: Transform
+ pos: 37.5,-44.5
+ parent: 2
+ - uid: 1152
+ components:
+ - type: Transform
+ pos: 17.5,-39.5
+ parent: 2
+ - uid: 1153
+ components:
+ - type: Transform
+ pos: 16.5,-39.5
+ parent: 2
+ - uid: 1154
+ components:
+ - type: Transform
+ pos: 15.5,-39.5
+ parent: 2
+ - uid: 1155
+ components:
+ - type: Transform
+ pos: 13.5,-37.5
+ parent: 2
+ - uid: 1156
+ components:
+ - type: Transform
+ pos: 13.5,-36.5
+ parent: 2
+ - uid: 1157
+ components:
+ - type: Transform
+ pos: 14.5,-37.5
+ parent: 2
+ - uid: 1158
+ components:
+ - type: Transform
+ pos: 16.5,-37.5
+ parent: 2
+ - uid: 1159
+ components:
+ - type: Transform
+ pos: 12.5,-37.5
+ parent: 2
+ - uid: 1160
+ components:
+ - type: Transform
+ pos: 14.5,-39.5
+ parent: 2
+ - uid: 1161
+ components:
+ - type: Transform
+ pos: 13.5,-39.5
+ parent: 2
+ - uid: 1162
+ components:
+ - type: Transform
+ pos: 15.5,-38.5
+ parent: 2
+ - uid: 1163
+ components:
+ - type: Transform
+ pos: 14.5,-38.5
+ parent: 2
+ - uid: 1164
+ components:
+ - type: Transform
+ pos: 9.5,-35.5
+ parent: 2
+ - uid: 1165
+ components:
+ - type: Transform
+ pos: 10.5,-38.5
+ parent: 2
+ - uid: 1166
+ components:
+ - type: Transform
+ pos: 9.5,-36.5
+ parent: 2
+ - uid: 1167
+ components:
+ - type: Transform
+ pos: 11.5,-38.5
+ parent: 2
+ - uid: 1168
+ components:
+ - type: Transform
+ pos: 12.5,-38.5
+ parent: 2
+ - uid: 1169
+ components:
+ - type: Transform
+ pos: 13.5,-38.5
+ parent: 2
+ - uid: 1170
+ components:
+ - type: Transform
+ pos: 11.5,-32.5
+ parent: 2
+ - uid: 1171
+ components:
+ - type: Transform
+ pos: 11.5,-33.5
+ parent: 2
+ - uid: 1172
+ components:
+ - type: Transform
+ pos: 9.5,-32.5
+ parent: 2
+ - uid: 1173
+ components:
+ - type: Transform
+ pos: 9.5,-33.5
+ parent: 2
+ - uid: 1174
+ components:
+ - type: Transform
+ pos: 10.5,-32.5
+ parent: 2
+ - uid: 1175
+ components:
+ - type: Transform
+ pos: 5.5,-33.5
+ parent: 2
+ - uid: 1176
+ components:
+ - type: Transform
+ pos: 8.5,-33.5
+ parent: 2
+ - uid: 1177
+ components:
+ - type: Transform
+ pos: 8.5,-34.5
+ parent: 2
+ - uid: 1178
+ components:
+ - type: Transform
+ pos: 8.5,-35.5
+ parent: 2
+ - uid: 1179
+ components:
+ - type: Transform
+ pos: 8.5,-31.5
+ parent: 2
+ - uid: 1180
+ components:
+ - type: Transform
+ pos: 8.5,-30.5
+ parent: 2
+ - uid: 1182
+ components:
+ - type: Transform
+ pos: 9.5,-31.5
+ parent: 2
+ - uid: 1183
+ components:
+ - type: Transform
+ pos: 5.5,-32.5
+ parent: 2
+ - uid: 1184
+ components:
+ - type: Transform
+ pos: 10.5,-33.5
+ parent: 2
+ - uid: 1185
+ components:
+ - type: Transform
+ pos: 4.5,-32.5
+ parent: 2
+ - uid: 1186
+ components:
+ - type: Transform
+ pos: 4.5,-33.5
+ parent: 2
+ - uid: 1187
+ components:
+ - type: Transform
+ pos: 7.5,-36.5
+ parent: 2
+ - uid: 1188
+ components:
+ - type: Transform
+ pos: 5.5,-34.5
+ parent: 2
+ - uid: 1189
+ components:
+ - type: Transform
+ pos: 4.5,-34.5
+ parent: 2
+ - uid: 1190
+ components:
+ - type: Transform
+ pos: 3.5,-33.5
+ parent: 2
+ - uid: 1191
+ components:
+ - type: Transform
+ pos: 6.5,-35.5
+ parent: 2
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: 5.5,-35.5
+ parent: 2
+ - uid: 1193
+ components:
+ - type: Transform
+ pos: 8.5,-36.5
+ parent: 2
+ - uid: 1194
+ components:
+ - type: Transform
+ pos: 8.5,-32.5
+ parent: 2
+ - uid: 1195
+ components:
+ - type: Transform
+ pos: 6.5,-32.5
+ parent: 2
+ - uid: 1196
+ components:
+ - type: Transform
+ pos: 7.5,-32.5
+ parent: 2
+ - uid: 1197
+ components:
+ - type: Transform
+ pos: 7.5,-33.5
+ parent: 2
+ - uid: 1198
+ components:
+ - type: Transform
+ pos: 7.5,-34.5
+ parent: 2
+ - uid: 1199
+ components:
+ - type: Transform
+ pos: 6.5,-34.5
+ parent: 2
+ - uid: 1200
+ components:
+ - type: Transform
+ pos: 7.5,-35.5
+ parent: 2
+ - uid: 1216
+ components:
+ - type: Transform
+ pos: 6.5,-33.5
+ parent: 2
+ - uid: 1223
+ components:
+ - type: Transform
+ pos: -100.5,32.5
+ parent: 2
+ - uid: 1224
+ components:
+ - type: Transform
+ pos: -100.5,30.5
+ parent: 2
+ - uid: 1228
+ components:
+ - type: Transform
+ pos: -100.5,31.5
+ parent: 2
+ - uid: 1231
+ components:
+ - type: Transform
+ pos: -101.5,34.5
+ parent: 2
+ - uid: 1240
+ components:
+ - type: Transform
+ pos: -102.5,32.5
+ parent: 2
+ - uid: 1242
+ components:
+ - type: Transform
+ pos: -102.5,34.5
+ parent: 2
+ - uid: 1243
+ components:
+ - type: Transform
+ pos: -104.5,34.5
+ parent: 2
+ - uid: 1244
+ components:
+ - type: Transform
+ pos: -104.5,33.5
+ parent: 2
+ - uid: 1245
+ components:
+ - type: Transform
+ pos: -104.5,32.5
+ parent: 2
+ - uid: 1246
+ components:
+ - type: Transform
+ pos: -104.5,30.5
+ parent: 2
+ - uid: 1247
+ components:
+ - type: Transform
+ pos: -105.5,34.5
+ parent: 2
+ - uid: 1248
+ components:
+ - type: Transform
+ pos: -103.5,33.5
+ parent: 2
+ - uid: 1249
+ components:
+ - type: Transform
+ pos: -103.5,34.5
+ parent: 2
+ - uid: 1251
+ components:
+ - type: Transform
+ pos: -102.5,31.5
+ parent: 2
+ - uid: 1252
+ components:
+ - type: Transform
+ pos: -102.5,33.5
+ parent: 2
+ - uid: 1253
+ components:
+ - type: Transform
+ pos: -102.5,30.5
+ parent: 2
+ - uid: 1256
+ components:
+ - type: Transform
+ pos: -103.5,32.5
+ parent: 2
+ - uid: 2310
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,101.5
+ parent: 2
+ - uid: 2603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,100.5
+ parent: 2
+ - uid: 2610
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,102.5
+ parent: 2
+ - uid: 2611
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,99.5
+ parent: 2
+ - uid: 2612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,99.5
+ parent: 2
+ - uid: 2613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,99.5
+ parent: 2
+ - uid: 2614
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,99.5
+ parent: 2
+ - uid: 2651
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,94.5
+ parent: 2
+ - uid: 2652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,93.5
+ parent: 2
+ - uid: 2674
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,101.5
+ parent: 2
+ - uid: 2677
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,104.5
+ parent: 2
+ - uid: 2679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,103.5
+ parent: 2
+ - uid: 2693
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,103.5
+ parent: 2
+ - uid: 2699
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,104.5
+ parent: 2
+ - uid: 2706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,102.5
+ parent: 2
+ - uid: 2707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,100.5
+ parent: 2
+ - uid: 2708
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,98.5
+ parent: 2
+ - uid: 2709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,98.5
+ parent: 2
+ - uid: 2710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,103.5
+ parent: 2
+ - uid: 2714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,101.5
+ parent: 2
+ - uid: 2715
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,99.5
+ parent: 2
+ - uid: 2716
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,102.5
+ parent: 2
+ - uid: 2717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,102.5
+ parent: 2
+ - uid: 2720
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,103.5
+ parent: 2
+ - uid: 2721
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,102.5
+ parent: 2
+ - uid: 2722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,100.5
+ parent: 2
+ - uid: 2725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,101.5
+ parent: 2
+ - uid: 2729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,100.5
+ parent: 2
+ - uid: 2730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,101.5
+ parent: 2
+ - uid: 2731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,104.5
+ parent: 2
+ - uid: 2742
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,88.5
+ parent: 2
+ - uid: 2743
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,88.5
+ parent: 2
+ - uid: 2744
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,85.5
+ parent: 2
+ - uid: 2745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,82.5
+ parent: 2
+ - uid: 2753
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,84.5
+ parent: 2
+ - uid: 2754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,83.5
+ parent: 2
+ - uid: 2755
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,87.5
+ parent: 2
+ - uid: 2759
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,92.5
+ parent: 2
+ - uid: 2760
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,90.5
+ parent: 2
+ - uid: 2761
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,91.5
+ parent: 2
+ - uid: 2763
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,93.5
+ parent: 2
+ - uid: 2764
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,84.5
+ parent: 2
+ - uid: 2765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,87.5
+ parent: 2
+ - uid: 2766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,85.5
+ parent: 2
+ - uid: 2767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,86.5
+ parent: 2
+ - uid: 2778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,92.5
+ parent: 2
+ - uid: 2779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,96.5
+ parent: 2
+ - uid: 2780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,91.5
+ parent: 2
+ - uid: 2781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,97.5
+ parent: 2
+ - uid: 2782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,90.5
+ parent: 2
+ - uid: 2783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,96.5
+ parent: 2
+ - uid: 2784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,92.5
+ parent: 2
+ - uid: 2785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,95.5
+ parent: 2
+ - uid: 2786
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,92.5
+ parent: 2
+ - uid: 2787
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,85.5
+ parent: 2
+ - uid: 2788
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,84.5
+ parent: 2
+ - uid: 2789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,83.5
+ parent: 2
+ - uid: 2790
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,87.5
+ parent: 2
+ - uid: 2792
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,94.5
+ parent: 2
+ - uid: 2793
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,97.5
+ parent: 2
+ - uid: 2794
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,95.5
+ parent: 2
+ - uid: 2802
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,96.5
+ parent: 2
+ - uid: 2803
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,96.5
+ parent: 2
+ - uid: 2804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,93.5
+ parent: 2
+ - uid: 2805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,95.5
+ parent: 2
+ - uid: 2806
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,86.5
+ parent: 2
+ - uid: 2807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,97.5
+ parent: 2
+ - uid: 2808
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,94.5
+ parent: 2
+ - uid: 2809
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,99.5
+ parent: 2
+ - uid: 2813
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,98.5
+ parent: 2
+ - uid: 2820
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,86.5
+ parent: 2
+ - uid: 2821
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,86.5
+ parent: 2
+ - uid: 2822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,85.5
+ parent: 2
+ - uid: 2823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,85.5
+ parent: 2
+ - uid: 2824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,84.5
+ parent: 2
+ - uid: 2825
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,94.5
+ parent: 2
+ - uid: 2826
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,93.5
+ parent: 2
+ - uid: 2827
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,90.5
+ parent: 2
+ - uid: 2829
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,97.5
+ parent: 2
+ - uid: 2830
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,99.5
+ parent: 2
+ - uid: 2831
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,95.5
+ parent: 2
+ - uid: 2832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,96.5
+ parent: 2
+ - uid: 2835
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,91.5
+ parent: 2
+ - uid: 2836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,94.5
+ parent: 2
+ - uid: 2837
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,95.5
+ parent: 2
+ - uid: 2859
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,61.5
+ parent: 2
+ - uid: 2862
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,103.5
+ parent: 2
+ - uid: 2863
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,59.5
+ parent: 2
+ - uid: 2864
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,100.5
+ parent: 2
+ - uid: 2865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,98.5
+ parent: 2
+ - uid: 2867
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,96.5
+ parent: 2
+ - uid: 2878
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,61.5
+ parent: 2
+ - uid: 2879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,60.5
+ parent: 2
+ - uid: 2882
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,102.5
+ parent: 2
+ - uid: 2883
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,101.5
+ parent: 2
+ - uid: 2884
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,98.5
+ parent: 2
+ - uid: 2885
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,97.5
+ parent: 2
+ - uid: 2887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,101.5
+ parent: 2
+ - uid: 2888
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,103.5
+ parent: 2
+ - uid: 2889
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,100.5
+ parent: 2
+ - uid: 3056
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,87.5
+ parent: 2
+ - uid: 3060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,87.5
+ parent: 2
+ - uid: 3061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,86.5
+ parent: 2
+ - uid: 3069
+ components:
+ - type: Transform
+ pos: -106.5,34.5
+ parent: 2
+ - uid: 3071
+ components:
+ - type: Transform
+ pos: -103.5,31.5
+ parent: 2
+ - uid: 3072
+ components:
+ - type: Transform
+ pos: -106.5,32.5
+ parent: 2
+ - uid: 3077
+ components:
+ - type: Transform
+ pos: -106.5,36.5
+ parent: 2
+ - uid: 3079
+ components:
+ - type: Transform
+ pos: -106.5,35.5
+ parent: 2
+ - uid: 3083
+ components:
+ - type: Transform
+ pos: -101.5,33.5
+ parent: 2
+ - uid: 3084
+ components:
+ - type: Transform
+ pos: -101.5,32.5
+ parent: 2
+ - uid: 3085
+ components:
+ - type: Transform
+ pos: -101.5,31.5
+ parent: 2
+ - uid: 3086
+ components:
+ - type: Transform
+ pos: -101.5,30.5
+ parent: 2
+ - uid: 3087
+ components:
+ - type: Transform
+ pos: -99.5,34.5
+ parent: 2
+ - uid: 3088
+ components:
+ - type: Transform
+ pos: -99.5,33.5
+ parent: 2
+ - uid: 3089
+ components:
+ - type: Transform
+ pos: -99.5,32.5
+ parent: 2
+ - uid: 3090
+ components:
+ - type: Transform
+ pos: -99.5,31.5
+ parent: 2
+ - uid: 3091
+ components:
+ - type: Transform
+ pos: -99.5,30.5
+ parent: 2
+ - uid: 3092
+ components:
+ - type: Transform
+ pos: -100.5,34.5
+ parent: 2
+ - uid: 3093
+ components:
+ - type: Transform
+ pos: -100.5,33.5
+ parent: 2
+ - uid: 3094
+ components:
+ - type: Transform
+ pos: -105.5,33.5
+ parent: 2
+ - uid: 3095
+ components:
+ - type: Transform
+ pos: -105.5,32.5
+ parent: 2
+ - uid: 3096
+ components:
+ - type: Transform
+ pos: -105.5,31.5
+ parent: 2
+ - uid: 3097
+ components:
+ - type: Transform
+ pos: -105.5,30.5
+ parent: 2
+ - uid: 3106
+ components:
+ - type: Transform
+ pos: -109.5,34.5
+ parent: 2
+ - uid: 3107
+ components:
+ - type: Transform
+ pos: -108.5,36.5
+ parent: 2
+ - uid: 3108
+ components:
+ - type: Transform
+ pos: -108.5,35.5
+ parent: 2
+ - uid: 3109
+ components:
+ - type: Transform
+ pos: -108.5,34.5
+ parent: 2
+ - uid: 3110
+ components:
+ - type: Transform
+ pos: -107.5,36.5
+ parent: 2
+ - uid: 3111
+ components:
+ - type: Transform
+ pos: -107.5,35.5
+ parent: 2
+ - uid: 3112
+ components:
+ - type: Transform
+ pos: -107.5,34.5
+ parent: 2
+ - uid: 3113
+ components:
+ - type: Transform
+ pos: -106.5,33.5
+ parent: 2
+ - uid: 3114
+ components:
+ - type: Transform
+ pos: -107.5,33.5
+ parent: 2
+ - uid: 3115
+ components:
+ - type: Transform
+ pos: -108.5,33.5
+ parent: 2
+ - uid: 3116
+ components:
+ - type: Transform
+ pos: -105.5,35.5
+ parent: 2
+ - uid: 3117
+ components:
+ - type: Transform
+ pos: -104.5,35.5
+ parent: 2
+ - uid: 3118
+ components:
+ - type: Transform
+ pos: -103.5,35.5
+ parent: 2
+ - uid: 3119
+ components:
+ - type: Transform
+ pos: -102.5,35.5
+ parent: 2
+ - uid: 3120
+ components:
+ - type: Transform
+ pos: -103.5,36.5
+ parent: 2
+ - uid: 3121
+ components:
+ - type: Transform
+ pos: -103.5,37.5
+ parent: 2
+ - uid: 3122
+ components:
+ - type: Transform
+ pos: -103.5,38.5
+ parent: 2
+ - uid: 3123
+ components:
+ - type: Transform
+ pos: -104.5,36.5
+ parent: 2
+ - uid: 3124
+ components:
+ - type: Transform
+ pos: -104.5,37.5
+ parent: 2
+ - uid: 3125
+ components:
+ - type: Transform
+ pos: -104.5,38.5
+ parent: 2
+ - uid: 3126
+ components:
+ - type: Transform
+ pos: -102.5,36.5
+ parent: 2
+ - uid: 3127
+ components:
+ - type: Transform
+ pos: -101.5,35.5
+ parent: 2
+ - uid: 3530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,70.5
+ parent: 2
+ - uid: 3531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,69.5
+ parent: 2
+ - uid: 3532
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,68.5
+ parent: 2
+ - uid: 3533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,67.5
+ parent: 2
+ - uid: 3534
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,66.5
+ parent: 2
+ - uid: 3535
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -105.5,68.5
+ parent: 2
+ - uid: 3536
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -105.5,66.5
+ parent: 2
+ - uid: 3537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -105.5,67.5
+ parent: 2
+ - uid: 3538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -104.5,70.5
+ parent: 2
+ - uid: 3539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -104.5,69.5
+ parent: 2
+ - uid: 3540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -104.5,68.5
+ parent: 2
+ - uid: 3541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -104.5,67.5
+ parent: 2
+ - uid: 3542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -104.5,66.5
+ parent: 2
+ - uid: 3543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -106.5,70.5
+ parent: 2
+ - uid: 3544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -106.5,69.5
+ parent: 2
+ - uid: 3545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -106.5,68.5
+ parent: 2
+ - uid: 3546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -106.5,67.5
+ parent: 2
+ - uid: 3547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -106.5,66.5
+ parent: 2
+ - uid: 3548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -105.5,70.5
+ parent: 2
+ - uid: 3549
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -105.5,69.5
+ parent: 2
+ - uid: 3550
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,64.5
+ parent: 2
+ - uid: 3551
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,65.5
+ parent: 2
+ - uid: 3552
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,63.5
+ parent: 2
+ - uid: 3553
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,63.5
+ parent: 2
+ - uid: 3554
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,62.5
+ parent: 2
+ - uid: 3555
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,65.5
+ parent: 2
+ - uid: 3556
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,64.5
+ parent: 2
+ - uid: 3557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,63.5
+ parent: 2
+ - uid: 3558
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,62.5
+ parent: 2
+ - uid: 3559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,65.5
+ parent: 2
+ - uid: 3560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,64.5
+ parent: 2
+ - uid: 3561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,63.5
+ parent: 2
+ - uid: 3562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,62.5
+ parent: 2
+ - uid: 3563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,64.5
+ parent: 2
+ - uid: 3564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,63.5
+ parent: 2
+ - uid: 3565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,62.5
+ parent: 2
+ - uid: 3566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,65.5
+ parent: 2
+ - uid: 3567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,64.5
+ parent: 2
+ - uid: 3568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,62.5
+ parent: 2
+ - uid: 3569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,65.5
+ parent: 2
+ - uid: 3575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -104.5,65.5
+ parent: 2
+ - uid: 3576
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -104.5,64.5
+ parent: 2
+ - uid: 3577
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,64.5
+ parent: 2
+ - uid: 3578
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,65.5
+ parent: 2
+ - uid: 3585
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,60.5
+ parent: 2
+ - uid: 3586
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,61.5
+ parent: 2
+ - uid: 3587
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,62.5
+ parent: 2
+ - uid: 3588
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,60.5
+ parent: 2
+ - uid: 3589
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,63.5
+ parent: 2
+ - uid: 3590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,63.5
+ parent: 2
+ - uid: 3591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,62.5
+ parent: 2
+ - uid: 3592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,61.5
+ parent: 2
+ - uid: 3593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,60.5
+ parent: 2
+ - uid: 3594
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,63.5
+ parent: 2
+ - uid: 3595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,62.5
+ parent: 2
+ - uid: 3596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,61.5
+ parent: 2
+ - uid: 3597
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,62.5
+ parent: 2
+ - uid: 3598
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,63.5
+ parent: 2
+ - uid: 3599
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,61.5
+ parent: 2
+ - uid: 3600
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,62.5
+ parent: 2
+ - uid: 3601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,60.5
+ parent: 2
+ - uid: 3602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,63.5
+ parent: 2
+ - uid: 3603
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,61.5
+ parent: 2
+ - uid: 3604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,60.5
+ parent: 2
+ - uid: 3606
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,57.5
+ parent: 2
+ - uid: 3607
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,56.5
+ parent: 2
+ - uid: 3608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,55.5
+ parent: 2
+ - uid: 3609
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,54.5
+ parent: 2
+ - uid: 3610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,57.5
+ parent: 2
+ - uid: 3611
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,56.5
+ parent: 2
+ - uid: 3612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,54.5
+ parent: 2
+ - uid: 3613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,57.5
+ parent: 2
+ - uid: 3614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,56.5
+ parent: 2
+ - uid: 3615
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,55.5
+ parent: 2
+ - uid: 3616
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,54.5
+ parent: 2
+ - uid: 3617
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,55.5
+ parent: 2
+ - uid: 3619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,58.5
+ parent: 2
+ - uid: 3620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,57.5
+ parent: 2
+ - uid: 3621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,59.5
+ parent: 2
+ - uid: 3622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,58.5
+ parent: 2
+ - uid: 3623
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,59.5
+ parent: 2
+ - uid: 3624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,58.5
+ parent: 2
+ - uid: 3625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,57.5
+ parent: 2
+ - uid: 3626
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,59.5
+ parent: 2
+ - uid: 3627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,58.5
+ parent: 2
+ - uid: 3628
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,57.5
+ parent: 2
+ - uid: 3629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,59.5
+ parent: 2
+ - uid: 3632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,63.5
+ parent: 2
+ - uid: 3633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,62.5
+ parent: 2
+ - uid: 3634
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,61.5
+ parent: 2
+ - uid: 3635
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,67.5
+ parent: 2
+ - uid: 3636
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,66.5
+ parent: 2
+ - uid: 3637
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,65.5
+ parent: 2
+ - uid: 3638
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -94.5,64.5
+ parent: 2
+ - uid: 3639
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,67.5
+ parent: 2
+ - uid: 3640
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,66.5
+ parent: 2
+ - uid: 3641
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,65.5
+ parent: 2
+ - uid: 3642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,64.5
+ parent: 2
+ - uid: 3643
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,64.5
+ parent: 2
+ - uid: 3644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,67.5
+ parent: 2
+ - uid: 3645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,65.5
+ parent: 2
+ - uid: 3646
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,67.5
+ parent: 2
+ - uid: 3647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,66.5
+ parent: 2
+ - uid: 3648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,66.5
+ parent: 2
+ - uid: 3649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,65.5
+ parent: 2
+ - uid: 3650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,64.5
+ parent: 2
+ - uid: 3661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,66.5
+ parent: 2
+ - uid: 3662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,67.5
+ parent: 2
+ - uid: 3663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,66.5
+ parent: 2
+ - uid: 3664
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,67.5
+ parent: 2
+ - uid: 3690
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -107.5,67.5
+ parent: 2
+ - uid: 3691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -107.5,66.5
+ parent: 2
+ - uid: 3692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -107.5,65.5
+ parent: 2
+ - uid: 3693
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,66.5
+ parent: 2
+ - uid: 3694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,65.5
+ parent: 2
+ - uid: 3695
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,67.5
+ parent: 2
+ - uid: 3696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,66.5
+ parent: 2
+ - uid: 3697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,65.5
+ parent: 2
+ - uid: 3698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,67.5
+ parent: 2
+ - uid: 3699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,67.5
+ parent: 2
+ - uid: 3700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,66.5
+ parent: 2
+ - uid: 3701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,65.5
+ parent: 2
+ - uid: 3709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -112.5,62.5
+ parent: 2
+ - uid: 3710
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -111.5,65.5
+ parent: 2
+ - uid: 3711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -111.5,64.5
+ parent: 2
+ - uid: 3712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -111.5,63.5
+ parent: 2
+ - uid: 3713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -111.5,62.5
+ parent: 2
+ - uid: 3714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -112.5,65.5
+ parent: 2
+ - uid: 3715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -112.5,64.5
+ parent: 2
+ - uid: 3716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -112.5,63.5
+ parent: 2
+ - uid: 3718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,64.5
+ parent: 2
+ - uid: 3719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,63.5
+ parent: 2
+ - uid: 3720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,64.5
+ parent: 2
+ - uid: 3721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,63.5
+ parent: 2
+ - uid: 3741
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,60.5
+ parent: 2
+ - uid: 3745
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,59.5
+ parent: 2
+ - uid: 3765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,89.5
+ parent: 2
+ - uid: 3782
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,60.5
+ parent: 2
+ - uid: 3783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,61.5
+ parent: 2
+ - uid: 4692
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,102.5
+ parent: 2
+ - uid: 4694
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,102.5
+ parent: 2
+ - uid: 4991
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,88.5
+ parent: 2
+ - uid: 4992
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,89.5
+ parent: 2
+ - uid: 4993
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,88.5
+ parent: 2
+ - uid: 4994
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,89.5
+ parent: 2
+ - uid: 4995
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,88.5
+ parent: 2
+ - uid: 4996
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,89.5
+ parent: 2
+ - uid: 4997
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,88.5
+ parent: 2
+ - uid: 4999
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,89.5
+ parent: 2
+ - uid: 5525
+ components:
+ - type: Transform
+ pos: -78.5,-39.5
+ parent: 2
+ - uid: 5526
+ components:
+ - type: Transform
+ pos: -77.5,-42.5
+ parent: 2
+ - uid: 5527
+ components:
+ - type: Transform
+ pos: -77.5,-41.5
+ parent: 2
+ - uid: 5528
+ components:
+ - type: Transform
+ pos: -77.5,-40.5
+ parent: 2
+ - uid: 5530
+ components:
+ - type: Transform
+ pos: -81.5,-42.5
+ parent: 2
+ - uid: 5531
+ components:
+ - type: Transform
+ pos: -81.5,-41.5
+ parent: 2
+ - uid: 5532
+ components:
+ - type: Transform
+ pos: -81.5,-40.5
+ parent: 2
+ - uid: 5533
+ components:
+ - type: Transform
+ pos: -81.5,-39.5
+ parent: 2
+ - uid: 5534
+ components:
+ - type: Transform
+ pos: -80.5,-42.5
+ parent: 2
+ - uid: 5535
+ components:
+ - type: Transform
+ pos: -80.5,-41.5
+ parent: 2
+ - uid: 5536
+ components:
+ - type: Transform
+ pos: -80.5,-40.5
+ parent: 2
+ - uid: 5537
+ components:
+ - type: Transform
+ pos: -80.5,-39.5
+ parent: 2
+ - uid: 5538
+ components:
+ - type: Transform
+ pos: -79.5,-42.5
+ parent: 2
+ - uid: 5539
+ components:
+ - type: Transform
+ pos: -79.5,-41.5
+ parent: 2
+ - uid: 5540
+ components:
+ - type: Transform
+ pos: -79.5,-40.5
+ parent: 2
+ - uid: 5541
+ components:
+ - type: Transform
+ pos: -79.5,-39.5
+ parent: 2
+ - uid: 5542
+ components:
+ - type: Transform
+ pos: -78.5,-42.5
+ parent: 2
+ - uid: 5543
+ components:
+ - type: Transform
+ pos: -78.5,-41.5
+ parent: 2
+ - uid: 5544
+ components:
+ - type: Transform
+ pos: -78.5,-40.5
+ parent: 2
+ - uid: 5545
+ components:
+ - type: Transform
+ pos: -78.5,-36.5
+ parent: 2
+ - uid: 5546
+ components:
+ - type: Transform
+ pos: -78.5,-35.5
+ parent: 2
+ - uid: 5547
+ components:
+ - type: Transform
+ pos: -78.5,-34.5
+ parent: 2
+ - uid: 5548
+ components:
+ - type: Transform
+ pos: -78.5,-33.5
+ parent: 2
+ - uid: 5551
+ components:
+ - type: Transform
+ pos: -77.5,-36.5
+ parent: 2
+ - uid: 5552
+ components:
+ - type: Transform
+ pos: -77.5,-35.5
+ parent: 2
+ - uid: 5553
+ components:
+ - type: Transform
+ pos: -79.5,-38.5
+ parent: 2
+ - uid: 5554
+ components:
+ - type: Transform
+ pos: -79.5,-37.5
+ parent: 2
+ - uid: 5555
+ components:
+ - type: Transform
+ pos: -79.5,-35.5
+ parent: 2
+ - uid: 5556
+ components:
+ - type: Transform
+ pos: -79.5,-36.5
+ parent: 2
+ - uid: 5557
+ components:
+ - type: Transform
+ pos: -79.5,-33.5
+ parent: 2
+ - uid: 5558
+ components:
+ - type: Transform
+ pos: -78.5,-38.5
+ parent: 2
+ - uid: 5559
+ components:
+ - type: Transform
+ pos: -78.5,-37.5
+ parent: 2
+ - uid: 5560
+ components:
+ - type: Transform
+ pos: -77.5,-34.5
+ parent: 2
+ - uid: 5561
+ components:
+ - type: Transform
+ pos: -77.5,-33.5
+ parent: 2
+ - uid: 5562
+ components:
+ - type: Transform
+ pos: -79.5,-34.5
+ parent: 2
+ - uid: 5563
+ components:
+ - type: Transform
+ pos: -77.5,-32.5
+ parent: 2
+ - uid: 5564
+ components:
+ - type: Transform
+ pos: -78.5,-32.5
+ parent: 2
+ - uid: 5565
+ components:
+ - type: Transform
+ pos: -80.5,-38.5
+ parent: 2
+ - uid: 5566
+ components:
+ - type: Transform
+ pos: -80.5,-37.5
+ parent: 2
+ - uid: 5567
+ components:
+ - type: Transform
+ pos: -80.5,-36.5
+ parent: 2
+ - uid: 5568
+ components:
+ - type: Transform
+ pos: -80.5,-35.5
+ parent: 2
+ - uid: 5569
+ components:
+ - type: Transform
+ pos: -82.5,-41.5
+ parent: 2
+ - uid: 5570
+ components:
+ - type: Transform
+ pos: -82.5,-40.5
+ parent: 2
+ - uid: 5571
+ components:
+ - type: Transform
+ pos: -82.5,-39.5
+ parent: 2
+ - uid: 5572
+ components:
+ - type: Transform
+ pos: -82.5,-38.5
+ parent: 2
+ - uid: 5573
+ components:
+ - type: Transform
+ pos: -83.5,-38.5
+ parent: 2
+ - uid: 5574
+ components:
+ - type: Transform
+ pos: -83.5,-39.5
+ parent: 2
+ - uid: 5575
+ components:
+ - type: Transform
+ pos: -84.5,-38.5
+ parent: 2
+ - uid: 5576
+ components:
+ - type: Transform
+ pos: -84.5,-39.5
+ parent: 2
+ - uid: 5577
+ components:
+ - type: Transform
+ pos: -83.5,-40.5
+ parent: 2
+ - uid: 5578
+ components:
+ - type: Transform
+ pos: -81.5,-38.5
+ parent: 2
+ - uid: 5579
+ components:
+ - type: Transform
+ pos: -91.5,-34.5
+ parent: 2
+ - uid: 5580
+ components:
+ - type: Transform
+ pos: -90.5,-34.5
+ parent: 2
+ - uid: 5581
+ components:
+ - type: Transform
+ pos: -89.5,-34.5
+ parent: 2
+ - uid: 5582
+ components:
+ - type: Transform
+ pos: -89.5,-35.5
+ parent: 2
+ - uid: 5583
+ components:
+ - type: Transform
+ pos: -88.5,-35.5
+ parent: 2
+ - uid: 5584
+ components:
+ - type: Transform
+ pos: -88.5,-34.5
+ parent: 2
+ - uid: 5585
+ components:
+ - type: Transform
+ pos: -107.5,-17.5
+ parent: 2
+ - uid: 5586
+ components:
+ - type: Transform
+ pos: -107.5,-18.5
+ parent: 2
+ - uid: 5587
+ components:
+ - type: Transform
+ pos: -105.5,-16.5
+ parent: 2
+ - uid: 5590
+ components:
+ - type: Transform
+ pos: -106.5,-16.5
+ parent: 2
+ - uid: 5591
+ components:
+ - type: Transform
+ pos: -106.5,-17.5
+ parent: 2
+ - uid: 5593
+ components:
+ - type: Transform
+ pos: -107.5,-16.5
+ parent: 2
+ - uid: 5594
+ components:
+ - type: Transform
+ pos: -108.5,-17.5
+ parent: 2
+ - uid: 5595
+ components:
+ - type: Transform
+ pos: -108.5,-16.5
+ parent: 2
+ - uid: 5596
+ components:
+ - type: Transform
+ pos: -108.5,-15.5
+ parent: 2
+ - uid: 5597
+ components:
+ - type: Transform
+ pos: -108.5,-13.5
+ parent: 2
+ - uid: 5598
+ components:
+ - type: Transform
+ pos: -109.5,-17.5
+ parent: 2
+ - uid: 5599
+ components:
+ - type: Transform
+ pos: -109.5,-16.5
+ parent: 2
+ - uid: 5600
+ components:
+ - type: Transform
+ pos: -109.5,-15.5
+ parent: 2
+ - uid: 5601
+ components:
+ - type: Transform
+ pos: -109.5,-14.5
+ parent: 2
+ - uid: 5602
+ components:
+ - type: Transform
+ pos: -109.5,-13.5
+ parent: 2
+ - uid: 5603
+ components:
+ - type: Transform
+ pos: -110.5,-17.5
+ parent: 2
+ - uid: 5604
+ components:
+ - type: Transform
+ pos: -110.5,-16.5
+ parent: 2
+ - uid: 5605
+ components:
+ - type: Transform
+ pos: -110.5,-15.5
+ parent: 2
+ - uid: 5606
+ components:
+ - type: Transform
+ pos: -110.5,-14.5
+ parent: 2
+ - uid: 5607
+ components:
+ - type: Transform
+ pos: -110.5,-13.5
+ parent: 2
+ - uid: 5608
+ components:
+ - type: Transform
+ pos: -108.5,-14.5
+ parent: 2
+ - uid: 5609
+ components:
+ - type: Transform
+ pos: -106.5,-14.5
+ parent: 2
+ - uid: 5610
+ components:
+ - type: Transform
+ pos: -106.5,-13.5
+ parent: 2
+ - uid: 5611
+ components:
+ - type: Transform
+ pos: -106.5,-12.5
+ parent: 2
+ - uid: 5612
+ components:
+ - type: Transform
+ pos: -106.5,-11.5
+ parent: 2
+ - uid: 5613
+ components:
+ - type: Transform
+ pos: -106.5,-10.5
+ parent: 2
+ - uid: 5614
+ components:
+ - type: Transform
+ pos: -106.5,-9.5
+ parent: 2
+ - uid: 5615
+ components:
+ - type: Transform
+ pos: -106.5,-15.5
+ parent: 2
+ - uid: 5616
+ components:
+ - type: Transform
+ pos: -107.5,-15.5
+ parent: 2
+ - uid: 5617
+ components:
+ - type: Transform
+ pos: -107.5,-14.5
+ parent: 2
+ - uid: 5618
+ components:
+ - type: Transform
+ pos: -107.5,-13.5
+ parent: 2
+ - uid: 5619
+ components:
+ - type: Transform
+ pos: -107.5,-12.5
+ parent: 2
+ - uid: 5620
+ components:
+ - type: Transform
+ pos: -107.5,-11.5
+ parent: 2
+ - uid: 5621
+ components:
+ - type: Transform
+ pos: -107.5,-10.5
+ parent: 2
+ - uid: 5622
+ components:
+ - type: Transform
+ pos: -107.5,-9.5
+ parent: 2
+ - uid: 5623
+ components:
+ - type: Transform
+ pos: -105.5,-10.5
+ parent: 2
+ - uid: 5624
+ components:
+ - type: Transform
+ pos: -104.5,-7.5
+ parent: 2
+ - uid: 5625
+ components:
+ - type: Transform
+ pos: -104.5,-8.5
+ parent: 2
+ - uid: 5626
+ components:
+ - type: Transform
+ pos: -104.5,-9.5
+ parent: 2
+ - uid: 5627
+ components:
+ - type: Transform
+ pos: -104.5,-10.5
+ parent: 2
+ - uid: 5628
+ components:
+ - type: Transform
+ pos: -105.5,-7.5
+ parent: 2
+ - uid: 5629
+ components:
+ - type: Transform
+ pos: -105.5,-8.5
+ parent: 2
+ - uid: 5630
+ components:
+ - type: Transform
+ pos: -105.5,-9.5
+ parent: 2
+ - uid: 5631
+ components:
+ - type: Transform
+ pos: -108.5,-12.5
+ parent: 2
+ - uid: 5632
+ components:
+ - type: Transform
+ pos: -108.5,-11.5
+ parent: 2
+ - uid: 5633
+ components:
+ - type: Transform
+ pos: -108.5,-10.5
+ parent: 2
+ - uid: 5634
+ components:
+ - type: Transform
+ pos: -109.5,-12.5
+ parent: 2
+ - uid: 5635
+ components:
+ - type: Transform
+ pos: -109.5,-11.5
+ parent: 2
+ - uid: 5636
+ components:
+ - type: Transform
+ pos: -109.5,-10.5
+ parent: 2
+ - uid: 5637
+ components:
+ - type: Transform
+ pos: -110.5,-12.5
+ parent: 2
+ - uid: 5638
+ components:
+ - type: Transform
+ pos: -110.5,-11.5
+ parent: 2
+ - uid: 5639
+ components:
+ - type: Transform
+ pos: -110.5,-10.5
+ parent: 2
+ - uid: 5640
+ components:
+ - type: Transform
+ pos: -108.5,-6.5
+ parent: 2
+ - uid: 5641
+ components:
+ - type: Transform
+ pos: -109.5,-9.5
+ parent: 2
+ - uid: 5642
+ components:
+ - type: Transform
+ pos: -109.5,-8.5
+ parent: 2
+ - uid: 5643
+ components:
+ - type: Transform
+ pos: -109.5,-6.5
+ parent: 2
+ - uid: 5644
+ components:
+ - type: Transform
+ pos: -108.5,-9.5
+ parent: 2
+ - uid: 5645
+ components:
+ - type: Transform
+ pos: -108.5,-8.5
+ parent: 2
+ - uid: 5646
+ components:
+ - type: Transform
+ pos: -109.5,-7.5
+ parent: 2
+ - uid: 5647
+ components:
+ - type: Transform
+ pos: -108.5,-7.5
+ parent: 2
+ - uid: 5648
+ components:
+ - type: Transform
+ pos: -106.5,-8.5
+ parent: 2
+ - uid: 5649
+ components:
+ - type: Transform
+ pos: -106.5,-7.5
+ parent: 2
+ - uid: 5650
+ components:
+ - type: Transform
+ pos: -106.5,-6.5
+ parent: 2
+ - uid: 5651
+ components:
+ - type: Transform
+ pos: -106.5,-5.5
+ parent: 2
+ - uid: 5652
+ components:
+ - type: Transform
+ pos: -107.5,-8.5
+ parent: 2
+ - uid: 5653
+ components:
+ - type: Transform
+ pos: -107.5,-7.5
+ parent: 2
+ - uid: 5654
+ components:
+ - type: Transform
+ pos: -107.5,-6.5
+ parent: 2
+ - uid: 5655
+ components:
+ - type: Transform
+ pos: -107.5,-5.5
+ parent: 2
+ - uid: 5656
+ components:
+ - type: Transform
+ pos: -108.5,-4.5
+ parent: 2
+ - uid: 5657
+ components:
+ - type: Transform
+ pos: -108.5,-3.5
+ parent: 2
+ - uid: 5658
+ components:
+ - type: Transform
+ pos: -108.5,-5.5
+ parent: 2
+ - uid: 5659
+ components:
+ - type: Transform
+ pos: -109.5,-3.5
+ parent: 2
+ - uid: 5660
+ components:
+ - type: Transform
+ pos: -109.5,-2.5
+ parent: 2
+ - uid: 5661
+ components:
+ - type: Transform
+ pos: -107.5,-3.5
+ parent: 2
+ - uid: 5662
+ components:
+ - type: Transform
+ pos: -108.5,-2.5
+ parent: 2
+ - uid: 5663
+ components:
+ - type: Transform
+ pos: -107.5,-4.5
+ parent: 2
+ - uid: 5664
+ components:
+ - type: Transform
+ pos: -111.5,-14.5
+ parent: 2
+ - uid: 5665
+ components:
+ - type: Transform
+ pos: -111.5,-12.5
+ parent: 2
+ - uid: 5666
+ components:
+ - type: Transform
+ pos: -111.5,-11.5
+ parent: 2
+ - uid: 5667
+ components:
+ - type: Transform
+ pos: -111.5,-13.5
+ parent: 2
+ - uid: 9436
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -148.5,52.5
+ parent: 2
+ - uid: 9437
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -148.5,51.5
+ parent: 2
+ - uid: 9442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -152.5,51.5
+ parent: 2
+ - uid: 9445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -150.5,49.5
+ parent: 2
+ - uid: 9446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -151.5,51.5
+ parent: 2
+ - uid: 9450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -151.5,52.5
+ parent: 2
+ - uid: 9451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -152.5,52.5
+ parent: 2
+ - uid: 9452
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -154.5,51.5
+ parent: 2
+ - uid: 9453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -155.5,51.5
+ parent: 2
+ - uid: 9454
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -156.5,51.5
+ parent: 2
+ - uid: 9455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -153.5,51.5
+ parent: 2
+ - uid: 9456
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -154.5,52.5
+ parent: 2
+ - uid: 9457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -153.5,52.5
+ parent: 2
+ - uid: 9458
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -152.5,53.5
+ parent: 2
+ - uid: 9459
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -150.5,53.5
+ parent: 2
+ - uid: 9460
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -149.5,53.5
+ parent: 2
+ - uid: 9461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -151.5,53.5
+ parent: 2
+ - uid: 9462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -150.5,54.5
+ parent: 2
+ - uid: 9463
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -151.5,54.5
+ parent: 2
+ - uid: 9464
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -152.5,48.5
+ parent: 2
+ - uid: 9465
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -148.5,53.5
+ parent: 2
+ - uid: 9466
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -147.5,51.5
+ parent: 2
+ - uid: 9467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -147.5,52.5
+ parent: 2
+ - uid: 9468
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -137.5,70.5
+ parent: 2
+ - uid: 9469
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -137.5,69.5
+ parent: 2
+ - uid: 9470
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -136.5,73.5
+ parent: 2
+ - uid: 9471
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -137.5,73.5
+ parent: 2
+ - uid: 9472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -136.5,71.5
+ parent: 2
+ - uid: 9474
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -136.5,72.5
+ parent: 2
+ - uid: 9475
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -136.5,69.5
+ parent: 2
+ - uid: 9476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -138.5,73.5
+ parent: 2
+ - uid: 9477
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -138.5,72.5
+ parent: 2
+ - uid: 9478
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -138.5,71.5
+ parent: 2
+ - uid: 9479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -138.5,70.5
+ parent: 2
+ - uid: 9480
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -138.5,69.5
+ parent: 2
+ - uid: 9481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -137.5,71.5
+ parent: 2
+ - uid: 9482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -137.5,72.5
+ parent: 2
+ - uid: 9483
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -139.5,73.5
+ parent: 2
+ - uid: 9484
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -139.5,72.5
+ parent: 2
+ - uid: 9485
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -139.5,71.5
+ parent: 2
+ - uid: 9486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -140.5,73.5
+ parent: 2
+ - uid: 9487
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -140.5,72.5
+ parent: 2
+ - uid: 9488
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -140.5,71.5
+ parent: 2
+ - uid: 9489
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -136.5,68.5
+ parent: 2
+ - uid: 9490
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -136.5,67.5
+ parent: 2
+ - uid: 9491
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -135.5,68.5
+ parent: 2
+ - uid: 9492
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -135.5,67.5
+ parent: 2
+ - uid: 9493
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -134.5,68.5
+ parent: 2
+ - uid: 9494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -134.5,67.5
+ parent: 2
+ - uid: 9495
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -134.5,66.5
+ parent: 2
+ - uid: 9496
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -134.5,65.5
+ parent: 2
+ - uid: 9497
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,66.5
+ parent: 2
+ - uid: 9498
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,65.5
+ parent: 2
+ - uid: 9499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,66.5
+ parent: 2
+ - uid: 9500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,65.5
+ parent: 2
+ - uid: 9501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,67.5
+ parent: 2
+ - uid: 9503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -135.5,72.5
+ parent: 2
+ - uid: 9504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -136.5,74.5
+ parent: 2
+ - uid: 9505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -138.5,75.5
+ parent: 2
+ - uid: 9506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -138.5,77.5
+ parent: 2
+ - uid: 9507
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -138.5,76.5
+ parent: 2
+ - uid: 9508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -139.5,78.5
+ parent: 2
+ - uid: 9509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -139.5,77.5
+ parent: 2
+ - uid: 9510
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -139.5,76.5
+ parent: 2
+ - uid: 9511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -136.5,78.5
+ parent: 2
+ - uid: 9512
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -136.5,77.5
+ parent: 2
+ - uid: 9513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -136.5,76.5
+ parent: 2
+ - uid: 9514
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -137.5,78.5
+ parent: 2
+ - uid: 9515
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -137.5,77.5
+ parent: 2
+ - uid: 9516
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -137.5,76.5
+ parent: 2
+ - uid: 9517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -138.5,78.5
+ parent: 2
+ - uid: 9518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -141.5,75.5
+ parent: 2
+ - uid: 9519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -142.5,74.5
+ parent: 2
+ - uid: 9520
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -142.5,75.5
+ parent: 2
+ - uid: 9521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -143.5,75.5
+ parent: 2
+ - uid: 9522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -143.5,74.5
+ parent: 2
+ - uid: 9523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -141.5,74.5
+ parent: 2
+ - uid: 9524
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -143.5,73.5
+ parent: 2
+ - uid: 9525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -144.5,74.5
+ parent: 2
+ - uid: 9526
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -144.5,73.5
+ parent: 2
+ - uid: 9527
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -145.5,74.5
+ parent: 2
+ - uid: 9528
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -145.5,73.5
+ parent: 2
+ - uid: 9529
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -141.5,76.5
+ parent: 2
+ - uid: 9530
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -140.5,76.5
+ parent: 2
+ - uid: 9531
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -140.5,75.5
+ parent: 2
+ - uid: 10327
+ components:
+ - type: Transform
+ pos: 73.5,16.5
+ parent: 2
+ - uid: 10743
+ components:
+ - type: Transform
+ pos: 43.5,-53.5
+ parent: 2
+ - uid: 10744
+ components:
+ - type: Transform
+ pos: 43.5,-54.5
+ parent: 2
+ - uid: 10745
+ components:
+ - type: Transform
+ pos: 40.5,-54.5
+ parent: 2
+ - uid: 10746
+ components:
+ - type: Transform
+ pos: 44.5,-53.5
+ parent: 2
+ - uid: 10747
+ components:
+ - type: Transform
+ pos: 44.5,-54.5
+ parent: 2
+ - uid: 10748
+ components:
+ - type: Transform
+ pos: 39.5,-53.5
+ parent: 2
+ - uid: 10749
+ components:
+ - type: Transform
+ pos: 39.5,-54.5
+ parent: 2
+ - uid: 10750
+ components:
+ - type: Transform
+ pos: 40.5,-53.5
+ parent: 2
+ - uid: 10751
+ components:
+ - type: Transform
+ pos: 41.5,-53.5
+ parent: 2
+ - uid: 10752
+ components:
+ - type: Transform
+ pos: 41.5,-54.5
+ parent: 2
+ - uid: 10753
+ components:
+ - type: Transform
+ pos: 42.5,-53.5
+ parent: 2
+ - uid: 10754
+ components:
+ - type: Transform
+ pos: 42.5,-54.5
+ parent: 2
+ - uid: 10755
+ components:
+ - type: Transform
+ pos: 41.5,-55.5
+ parent: 2
+ - uid: 10756
+ components:
+ - type: Transform
+ pos: 42.5,-55.5
+ parent: 2
+ - uid: 10757
+ components:
+ - type: Transform
+ pos: 43.5,-55.5
+ parent: 2
+ - uid: 10758
+ components:
+ - type: Transform
+ pos: 42.5,-56.5
+ parent: 2
+ - uid: 10759
+ components:
+ - type: Transform
+ pos: 45.5,-45.5
+ parent: 2
+ - uid: 10760
+ components:
+ - type: Transform
+ pos: 42.5,-45.5
+ parent: 2
+ - uid: 10761
+ components:
+ - type: Transform
+ pos: 44.5,-52.5
+ parent: 2
+ - uid: 10762
+ components:
+ - type: Transform
+ pos: 44.5,-51.5
+ parent: 2
+ - uid: 10763
+ components:
+ - type: Transform
+ pos: 44.5,-50.5
+ parent: 2
+ - uid: 10764
+ components:
+ - type: Transform
+ pos: 44.5,-49.5
+ parent: 2
+ - uid: 10765
+ components:
+ - type: Transform
+ pos: 44.5,-48.5
+ parent: 2
+ - uid: 10766
+ components:
+ - type: Transform
+ pos: 44.5,-47.5
+ parent: 2
+ - uid: 10767
+ components:
+ - type: Transform
+ pos: 44.5,-46.5
+ parent: 2
+ - uid: 10768
+ components:
+ - type: Transform
+ pos: 43.5,-52.5
+ parent: 2
+ - uid: 10769
+ components:
+ - type: Transform
+ pos: 43.5,-51.5
+ parent: 2
+ - uid: 10770
+ components:
+ - type: Transform
+ pos: 43.5,-50.5
+ parent: 2
+ - uid: 10771
+ components:
+ - type: Transform
+ pos: 43.5,-49.5
+ parent: 2
+ - uid: 10772
+ components:
+ - type: Transform
+ pos: 43.5,-48.5
+ parent: 2
+ - uid: 10773
+ components:
+ - type: Transform
+ pos: 43.5,-47.5
+ parent: 2
+ - uid: 10774
+ components:
+ - type: Transform
+ pos: 43.5,-46.5
+ parent: 2
+ - uid: 10775
+ components:
+ - type: Transform
+ pos: 43.5,-45.5
+ parent: 2
+ - uid: 10776
+ components:
+ - type: Transform
+ pos: 42.5,-52.5
+ parent: 2
+ - uid: 10777
+ components:
+ - type: Transform
+ pos: 42.5,-51.5
+ parent: 2
+ - uid: 10778
+ components:
+ - type: Transform
+ pos: 42.5,-50.5
+ parent: 2
+ - uid: 10779
+ components:
+ - type: Transform
+ pos: 42.5,-49.5
+ parent: 2
+ - uid: 10780
+ components:
+ - type: Transform
+ pos: 42.5,-48.5
+ parent: 2
+ - uid: 10781
+ components:
+ - type: Transform
+ pos: 42.5,-47.5
+ parent: 2
+ - uid: 10782
+ components:
+ - type: Transform
+ pos: 42.5,-46.5
+ parent: 2
+ - uid: 10783
+ components:
+ - type: Transform
+ pos: 44.5,-45.5
+ parent: 2
+ - uid: 10784
+ components:
+ - type: Transform
+ pos: 45.5,-52.5
+ parent: 2
+ - uid: 10785
+ components:
+ - type: Transform
+ pos: 45.5,-51.5
+ parent: 2
+ - uid: 10786
+ components:
+ - type: Transform
+ pos: 45.5,-50.5
+ parent: 2
+ - uid: 10787
+ components:
+ - type: Transform
+ pos: 45.5,-49.5
+ parent: 2
+ - uid: 10788
+ components:
+ - type: Transform
+ pos: 45.5,-48.5
+ parent: 2
+ - uid: 10789
+ components:
+ - type: Transform
+ pos: 45.5,-47.5
+ parent: 2
+ - uid: 10790
+ components:
+ - type: Transform
+ pos: 45.5,-46.5
+ parent: 2
+ - uid: 10791
+ components:
+ - type: Transform
+ pos: 46.5,-51.5
+ parent: 2
+ - uid: 10792
+ components:
+ - type: Transform
+ pos: 46.5,-48.5
+ parent: 2
+ - uid: 10793
+ components:
+ - type: Transform
+ pos: 46.5,-47.5
+ parent: 2
+ - uid: 10794
+ components:
+ - type: Transform
+ pos: 46.5,-46.5
+ parent: 2
+ - uid: 10795
+ components:
+ - type: Transform
+ pos: 46.5,-45.5
+ parent: 2
+ - uid: 10796
+ components:
+ - type: Transform
+ pos: 46.5,-50.5
+ parent: 2
+ - uid: 10797
+ components:
+ - type: Transform
+ pos: 47.5,-50.5
+ parent: 2
+ - uid: 10798
+ components:
+ - type: Transform
+ pos: 47.5,-49.5
+ parent: 2
+ - uid: 10799
+ components:
+ - type: Transform
+ pos: 47.5,-48.5
+ parent: 2
+ - uid: 10800
+ components:
+ - type: Transform
+ pos: 47.5,-47.5
+ parent: 2
+ - uid: 10801
+ components:
+ - type: Transform
+ pos: 47.5,-46.5
+ parent: 2
+ - uid: 10802
+ components:
+ - type: Transform
+ pos: 47.5,-45.5
+ parent: 2
+ - uid: 10803
+ components:
+ - type: Transform
+ pos: 46.5,-49.5
+ parent: 2
+ - uid: 10804
+ components:
+ - type: Transform
+ pos: 48.5,-47.5
+ parent: 2
+ - uid: 10805
+ components:
+ - type: Transform
+ pos: 48.5,-46.5
+ parent: 2
+ - uid: 10806
+ components:
+ - type: Transform
+ pos: 48.5,-45.5
+ parent: 2
+ - uid: 10807
+ components:
+ - type: Transform
+ pos: 48.5,-48.5
+ parent: 2
+ - uid: 10808
+ components:
+ - type: Transform
+ pos: 49.5,-46.5
+ parent: 2
+ - uid: 10809
+ components:
+ - type: Transform
+ pos: 49.5,-45.5
+ parent: 2
+ - uid: 10810
+ components:
+ - type: Transform
+ pos: 45.5,-40.5
+ parent: 2
+ - uid: 10811
+ components:
+ - type: Transform
+ pos: 50.5,-44.5
+ parent: 2
+ - uid: 10812
+ components:
+ - type: Transform
+ pos: 50.5,-43.5
+ parent: 2
+ - uid: 10813
+ components:
+ - type: Transform
+ pos: 50.5,-42.5
+ parent: 2
+ - uid: 10814
+ components:
+ - type: Transform
+ pos: 50.5,-40.5
+ parent: 2
+ - uid: 10815
+ components:
+ - type: Transform
+ pos: 49.5,-44.5
+ parent: 2
+ - uid: 10816
+ components:
+ - type: Transform
+ pos: 49.5,-43.5
+ parent: 2
+ - uid: 10817
+ components:
+ - type: Transform
+ pos: 49.5,-42.5
+ parent: 2
+ - uid: 10818
+ components:
+ - type: Transform
+ pos: 49.5,-41.5
+ parent: 2
+ - uid: 10819
+ components:
+ - type: Transform
+ pos: 49.5,-40.5
+ parent: 2
+ - uid: 10820
+ components:
+ - type: Transform
+ pos: 48.5,-44.5
+ parent: 2
+ - uid: 10821
+ components:
+ - type: Transform
+ pos: 50.5,-41.5
+ parent: 2
+ - uid: 10822
+ components:
+ - type: Transform
+ pos: 48.5,-43.5
+ parent: 2
+ - uid: 10823
+ components:
+ - type: Transform
+ pos: 48.5,-42.5
+ parent: 2
+ - uid: 10824
+ components:
+ - type: Transform
+ pos: 46.5,-43.5
+ parent: 2
+ - uid: 10825
+ components:
+ - type: Transform
+ pos: 46.5,-42.5
+ parent: 2
+ - uid: 10826
+ components:
+ - type: Transform
+ pos: 46.5,-41.5
+ parent: 2
+ - uid: 10827
+ components:
+ - type: Transform
+ pos: 46.5,-40.5
+ parent: 2
+ - uid: 10828
+ components:
+ - type: Transform
+ pos: 45.5,-44.5
+ parent: 2
+ - uid: 10829
+ components:
+ - type: Transform
+ pos: 45.5,-43.5
+ parent: 2
+ - uid: 10830
+ components:
+ - type: Transform
+ pos: 45.5,-42.5
+ parent: 2
+ - uid: 10831
+ components:
+ - type: Transform
+ pos: 45.5,-41.5
+ parent: 2
+ - uid: 10832
+ components:
+ - type: Transform
+ pos: 48.5,-41.5
+ parent: 2
+ - uid: 10833
+ components:
+ - type: Transform
+ pos: 48.5,-40.5
+ parent: 2
+ - uid: 10834
+ components:
+ - type: Transform
+ pos: 47.5,-44.5
+ parent: 2
+ - uid: 10835
+ components:
+ - type: Transform
+ pos: 47.5,-43.5
+ parent: 2
+ - uid: 10836
+ components:
+ - type: Transform
+ pos: 47.5,-42.5
+ parent: 2
+ - uid: 10837
+ components:
+ - type: Transform
+ pos: 47.5,-41.5
+ parent: 2
+ - uid: 10838
+ components:
+ - type: Transform
+ pos: 47.5,-40.5
+ parent: 2
+ - uid: 10839
+ components:
+ - type: Transform
+ pos: 46.5,-44.5
+ parent: 2
+ - uid: 10840
+ components:
+ - type: Transform
+ pos: 51.5,-43.5
+ parent: 2
+ - uid: 10841
+ components:
+ - type: Transform
+ pos: 51.5,-42.5
+ parent: 2
+ - uid: 10842
+ components:
+ - type: Transform
+ pos: 51.5,-41.5
+ parent: 2
+ - uid: 10843
+ components:
+ - type: Transform
+ pos: 51.5,-40.5
+ parent: 2
+ - uid: 10844
+ components:
+ - type: Transform
+ pos: 52.5,-41.5
+ parent: 2
+ - uid: 10845
+ components:
+ - type: Transform
+ pos: 52.5,-40.5
+ parent: 2
+ - uid: 10846
+ components:
+ - type: Transform
+ pos: 53.5,-39.5
+ parent: 2
+ - uid: 10847
+ components:
+ - type: Transform
+ pos: 53.5,-38.5
+ parent: 2
+ - uid: 10848
+ components:
+ - type: Transform
+ pos: 52.5,-39.5
+ parent: 2
+ - uid: 10849
+ components:
+ - type: Transform
+ pos: 52.5,-38.5
+ parent: 2
+ - uid: 10850
+ components:
+ - type: Transform
+ pos: 51.5,-39.5
+ parent: 2
+ - uid: 10851
+ components:
+ - type: Transform
+ pos: 51.5,-38.5
+ parent: 2
+ - uid: 10852
+ components:
+ - type: Transform
+ pos: 50.5,-38.5
+ parent: 2
+ - uid: 10853
+ components:
+ - type: Transform
+ pos: 46.5,-38.5
+ parent: 2
+ - uid: 10854
+ components:
+ - type: Transform
+ pos: 45.5,-39.5
+ parent: 2
+ - uid: 10855
+ components:
+ - type: Transform
+ pos: 45.5,-38.5
+ parent: 2
+ - uid: 10856
+ components:
+ - type: Transform
+ pos: 44.5,-39.5
+ parent: 2
+ - uid: 10857
+ components:
+ - type: Transform
+ pos: 44.5,-38.5
+ parent: 2
+ - uid: 10858
+ components:
+ - type: Transform
+ pos: 49.5,-39.5
+ parent: 2
+ - uid: 10859
+ components:
+ - type: Transform
+ pos: 49.5,-38.5
+ parent: 2
+ - uid: 10860
+ components:
+ - type: Transform
+ pos: 48.5,-39.5
+ parent: 2
+ - uid: 10861
+ components:
+ - type: Transform
+ pos: 48.5,-38.5
+ parent: 2
+ - uid: 10862
+ components:
+ - type: Transform
+ pos: 47.5,-39.5
+ parent: 2
+ - uid: 10863
+ components:
+ - type: Transform
+ pos: 47.5,-38.5
+ parent: 2
+ - uid: 10864
+ components:
+ - type: Transform
+ pos: 50.5,-39.5
+ parent: 2
+ - uid: 10865
+ components:
+ - type: Transform
+ pos: 46.5,-39.5
+ parent: 2
+ - uid: 10866
+ components:
+ - type: Transform
+ pos: 43.5,-39.5
+ parent: 2
+ - uid: 10867
+ components:
+ - type: Transform
+ pos: 42.5,-39.5
+ parent: 2
+ - uid: 10868
+ components:
+ - type: Transform
+ pos: 41.5,-39.5
+ parent: 2
+ - uid: 10869
+ components:
+ - type: Transform
+ pos: 38.5,-38.5
+ parent: 2
+ - uid: 10870
+ components:
+ - type: Transform
+ pos: 38.5,-37.5
+ parent: 2
+ - uid: 10871
+ components:
+ - type: Transform
+ pos: 38.5,-36.5
+ parent: 2
+ - uid: 10872
+ components:
+ - type: Transform
+ pos: 39.5,-38.5
+ parent: 2
+ - uid: 10873
+ components:
+ - type: Transform
+ pos: 39.5,-37.5
+ parent: 2
+ - uid: 10874
+ components:
+ - type: Transform
+ pos: 39.5,-36.5
+ parent: 2
+ - uid: 10875
+ components:
+ - type: Transform
+ pos: 37.5,-37.5
+ parent: 2
+ - uid: 10876
+ components:
+ - type: Transform
+ pos: 42.5,-35.5
+ parent: 2
+ - uid: 10877
+ components:
+ - type: Transform
+ pos: 42.5,-34.5
+ parent: 2
+ - uid: 10878
+ components:
+ - type: Transform
+ pos: 43.5,-36.5
+ parent: 2
+ - uid: 10879
+ components:
+ - type: Transform
+ pos: 43.5,-35.5
+ parent: 2
+ - uid: 10880
+ components:
+ - type: Transform
+ pos: 43.5,-34.5
+ parent: 2
+ - uid: 10881
+ components:
+ - type: Transform
+ pos: 44.5,-36.5
+ parent: 2
+ - uid: 10882
+ components:
+ - type: Transform
+ pos: 44.5,-35.5
+ parent: 2
+ - uid: 10883
+ components:
+ - type: Transform
+ pos: 44.5,-34.5
+ parent: 2
+ - uid: 10884
+ components:
+ - type: Transform
+ pos: 40.5,-36.5
+ parent: 2
+ - uid: 10885
+ components:
+ - type: Transform
+ pos: 40.5,-35.5
+ parent: 2
+ - uid: 10886
+ components:
+ - type: Transform
+ pos: 40.5,-34.5
+ parent: 2
+ - uid: 10887
+ components:
+ - type: Transform
+ pos: 41.5,-36.5
+ parent: 2
+ - uid: 10888
+ components:
+ - type: Transform
+ pos: 41.5,-35.5
+ parent: 2
+ - uid: 10889
+ components:
+ - type: Transform
+ pos: 41.5,-34.5
+ parent: 2
+ - uid: 10890
+ components:
+ - type: Transform
+ pos: 42.5,-36.5
+ parent: 2
+ - uid: 10891
+ components:
+ - type: Transform
+ pos: 39.5,-35.5
+ parent: 2
+ - uid: 10892
+ components:
+ - type: Transform
+ pos: 39.5,-34.5
+ parent: 2
+ - uid: 10893
+ components:
+ - type: Transform
+ pos: 39.5,-33.5
+ parent: 2
+ - uid: 10894
+ components:
+ - type: Transform
+ pos: 44.5,-33.5
+ parent: 2
+ - uid: 10895
+ components:
+ - type: Transform
+ pos: 45.5,-35.5
+ parent: 2
+ - uid: 10896
+ components:
+ - type: Transform
+ pos: 45.5,-29.5
+ parent: 2
+ - uid: 10897
+ components:
+ - type: Transform
+ pos: 45.5,-28.5
+ parent: 2
+ - uid: 10898
+ components:
+ - type: Transform
+ pos: 45.5,-27.5
+ parent: 2
+ - uid: 10900
+ components:
+ - type: Transform
+ pos: 47.5,-26.5
+ parent: 2
+ - uid: 10901
+ components:
+ - type: Transform
+ pos: 46.5,-34.5
+ parent: 2
+ - uid: 10902
+ components:
+ - type: Transform
+ pos: 46.5,-33.5
+ parent: 2
+ - uid: 10903
+ components:
+ - type: Transform
+ pos: 46.5,-32.5
+ parent: 2
+ - uid: 10904
+ components:
+ - type: Transform
+ pos: 46.5,-31.5
+ parent: 2
+ - uid: 10905
+ components:
+ - type: Transform
+ pos: 47.5,-28.5
+ parent: 2
+ - uid: 10906
+ components:
+ - type: Transform
+ pos: 46.5,-30.5
+ parent: 2
+ - uid: 10907
+ components:
+ - type: Transform
+ pos: 46.5,-29.5
+ parent: 2
+ - uid: 10908
+ components:
+ - type: Transform
+ pos: 47.5,-34.5
+ parent: 2
+ - uid: 10909
+ components:
+ - type: Transform
+ pos: 47.5,-33.5
+ parent: 2
+ - uid: 10910
+ components:
+ - type: Transform
+ pos: 47.5,-32.5
+ parent: 2
+ - uid: 10911
+ components:
+ - type: Transform
+ pos: 47.5,-31.5
+ parent: 2
+ - uid: 10912
+ components:
+ - type: Transform
+ pos: 47.5,-30.5
+ parent: 2
+ - uid: 10913
+ components:
+ - type: Transform
+ pos: 47.5,-29.5
+ parent: 2
+ - uid: 10914
+ components:
+ - type: Transform
+ pos: 47.5,-27.5
+ parent: 2
+ - uid: 10915
+ components:
+ - type: Transform
+ pos: 46.5,-28.5
+ parent: 2
+ - uid: 10916
+ components:
+ - type: Transform
+ pos: 46.5,-27.5
+ parent: 2
+ - uid: 10917
+ components:
+ - type: Transform
+ pos: 46.5,-26.5
+ parent: 2
+ - uid: 10918
+ components:
+ - type: Transform
+ pos: 45.5,-34.5
+ parent: 2
+ - uid: 10919
+ components:
+ - type: Transform
+ pos: 45.5,-33.5
+ parent: 2
+ - uid: 10920
+ components:
+ - type: Transform
+ pos: 45.5,-32.5
+ parent: 2
+ - uid: 10921
+ components:
+ - type: Transform
+ pos: 45.5,-31.5
+ parent: 2
+ - uid: 10922
+ components:
+ - type: Transform
+ pos: 45.5,-30.5
+ parent: 2
+ - uid: 10924
+ components:
+ - type: Transform
+ pos: 48.5,-26.5
+ parent: 2
+ - uid: 10925
+ components:
+ - type: Transform
+ pos: 48.5,-33.5
+ parent: 2
+ - uid: 10926
+ components:
+ - type: Transform
+ pos: 48.5,-32.5
+ parent: 2
+ - uid: 10927
+ components:
+ - type: Transform
+ pos: 48.5,-31.5
+ parent: 2
+ - uid: 10928
+ components:
+ - type: Transform
+ pos: 48.5,-30.5
+ parent: 2
+ - uid: 10929
+ components:
+ - type: Transform
+ pos: 48.5,-29.5
+ parent: 2
+ - uid: 10930
+ components:
+ - type: Transform
+ pos: 48.5,-28.5
+ parent: 2
+ - uid: 10931
+ components:
+ - type: Transform
+ pos: 48.5,-27.5
+ parent: 2
+ - uid: 10932
+ components:
+ - type: Transform
+ pos: 49.5,-30.5
+ parent: 2
+ - uid: 10933
+ components:
+ - type: Transform
+ pos: 49.5,-29.5
+ parent: 2
+ - uid: 10934
+ components:
+ - type: Transform
+ pos: 49.5,-28.5
+ parent: 2
+ - uid: 10935
+ components:
+ - type: Transform
+ pos: 49.5,-27.5
+ parent: 2
+ - uid: 10936
+ components:
+ - type: Transform
+ pos: 49.5,-26.5
+ parent: 2
+ - uid: 10937
+ components:
+ - type: Transform
+ pos: 50.5,-28.5
+ parent: 2
+ - uid: 10938
+ components:
+ - type: Transform
+ pos: 50.5,-27.5
+ parent: 2
+ - uid: 10939
+ components:
+ - type: Transform
+ pos: 50.5,-26.5
+ parent: 2
+ - uid: 10940
+ components:
+ - type: Transform
+ pos: 54.5,-37.5
+ parent: 2
+ - uid: 10941
+ components:
+ - type: Transform
+ pos: 54.5,-36.5
+ parent: 2
+ - uid: 10942
+ components:
+ - type: Transform
+ pos: 54.5,-35.5
+ parent: 2
+ - uid: 10943
+ components:
+ - type: Transform
+ pos: 54.5,-34.5
+ parent: 2
+ - uid: 10944
+ components:
+ - type: Transform
+ pos: 54.5,-33.5
+ parent: 2
+ - uid: 10945
+ components:
+ - type: Transform
+ pos: 53.5,-36.5
+ parent: 2
+ - uid: 10946
+ components:
+ - type: Transform
+ pos: 53.5,-35.5
+ parent: 2
+ - uid: 10947
+ components:
+ - type: Transform
+ pos: 53.5,-34.5
+ parent: 2
+ - uid: 10948
+ components:
+ - type: Transform
+ pos: 53.5,-33.5
+ parent: 2
+ - uid: 10949
+ components:
+ - type: Transform
+ pos: 52.5,-37.5
+ parent: 2
+ - uid: 10950
+ components:
+ - type: Transform
+ pos: 52.5,-36.5
+ parent: 2
+ - uid: 10951
+ components:
+ - type: Transform
+ pos: 52.5,-35.5
+ parent: 2
+ - uid: 10952
+ components:
+ - type: Transform
+ pos: 52.5,-34.5
+ parent: 2
+ - uid: 10953
+ components:
+ - type: Transform
+ pos: 52.5,-33.5
+ parent: 2
+ - uid: 10954
+ components:
+ - type: Transform
+ pos: 51.5,-37.5
+ parent: 2
+ - uid: 10955
+ components:
+ - type: Transform
+ pos: 50.5,-35.5
+ parent: 2
+ - uid: 10956
+ components:
+ - type: Transform
+ pos: 50.5,-33.5
+ parent: 2
+ - uid: 10957
+ components:
+ - type: Transform
+ pos: 53.5,-37.5
+ parent: 2
+ - uid: 10958
+ components:
+ - type: Transform
+ pos: 51.5,-36.5
+ parent: 2
+ - uid: 10959
+ components:
+ - type: Transform
+ pos: 51.5,-34.5
+ parent: 2
+ - uid: 10960
+ components:
+ - type: Transform
+ pos: 51.5,-35.5
+ parent: 2
+ - uid: 10961
+ components:
+ - type: Transform
+ pos: 51.5,-33.5
+ parent: 2
+ - uid: 10962
+ components:
+ - type: Transform
+ pos: 50.5,-37.5
+ parent: 2
+ - uid: 10963
+ components:
+ - type: Transform
+ pos: 50.5,-36.5
+ parent: 2
+ - uid: 10964
+ components:
+ - type: Transform
+ pos: 50.5,-34.5
+ parent: 2
+ - uid: 10965
+ components:
+ - type: Transform
+ pos: 49.5,-37.5
+ parent: 2
+ - uid: 10966
+ components:
+ - type: Transform
+ pos: 49.5,-36.5
+ parent: 2
+ - uid: 10967
+ components:
+ - type: Transform
+ pos: 48.5,-37.5
+ parent: 2
+ - uid: 10968
+ components:
+ - type: Transform
+ pos: 48.5,-36.5
+ parent: 2
+ - uid: 10969
+ components:
+ - type: Transform
+ pos: 49.5,-35.5
+ parent: 2
+ - uid: 10970
+ components:
+ - type: Transform
+ pos: 47.5,-37.5
+ parent: 2
+ - uid: 10971
+ components:
+ - type: Transform
+ pos: 55.5,-36.5
+ parent: 2
+ - uid: 10972
+ components:
+ - type: Transform
+ pos: 55.5,-35.5
+ parent: 2
+ - uid: 10973
+ components:
+ - type: Transform
+ pos: 55.5,-34.5
+ parent: 2
+ - uid: 10974
+ components:
+ - type: Transform
+ pos: 55.5,-33.5
+ parent: 2
+ - uid: 10975
+ components:
+ - type: Transform
+ pos: 56.5,-33.5
+ parent: 2
+ - uid: 10976
+ components:
+ - type: Transform
+ pos: 52.5,-32.5
+ parent: 2
+ - uid: 10977
+ components:
+ - type: Transform
+ pos: 52.5,-31.5
+ parent: 2
+ - uid: 10978
+ components:
+ - type: Transform
+ pos: 51.5,-32.5
+ parent: 2
+ - uid: 10979
+ components:
+ - type: Transform
+ pos: 51.5,-31.5
+ parent: 2
+ - uid: 10980
+ components:
+ - type: Transform
+ pos: 53.5,-31.5
+ parent: 2
+ - uid: 10981
+ components:
+ - type: Transform
+ pos: 56.5,-32.5
+ parent: 2
+ - uid: 10982
+ components:
+ - type: Transform
+ pos: 56.5,-31.5
+ parent: 2
+ - uid: 10983
+ components:
+ - type: Transform
+ pos: 55.5,-32.5
+ parent: 2
+ - uid: 10984
+ components:
+ - type: Transform
+ pos: 55.5,-31.5
+ parent: 2
+ - uid: 10985
+ components:
+ - type: Transform
+ pos: 54.5,-32.5
+ parent: 2
+ - uid: 10986
+ components:
+ - type: Transform
+ pos: 54.5,-31.5
+ parent: 2
+ - uid: 10987
+ components:
+ - type: Transform
+ pos: 53.5,-32.5
+ parent: 2
+ - uid: 10988
+ components:
+ - type: Transform
+ pos: 57.5,-31.5
+ parent: 2
+ - uid: 10989
+ components:
+ - type: Transform
+ pos: 57.5,-30.5
+ parent: 2
+ - uid: 10990
+ components:
+ - type: Transform
+ pos: 56.5,-30.5
+ parent: 2
+ - uid: 10991
+ components:
+ - type: Transform
+ pos: 55.5,-30.5
+ parent: 2
+ - uid: 10992
+ components:
+ - type: Transform
+ pos: 54.5,-30.5
+ parent: 2
+ - uid: 10993
+ components:
+ - type: Transform
+ pos: 53.5,-30.5
+ parent: 2
+ - uid: 10994
+ components:
+ - type: Transform
+ pos: 52.5,-30.5
+ parent: 2
+ - uid: 10995
+ components:
+ - type: Transform
+ pos: 58.5,-29.5
+ parent: 2
+ - uid: 10996
+ components:
+ - type: Transform
+ pos: 57.5,-29.5
+ parent: 2
+ - uid: 10997
+ components:
+ - type: Transform
+ pos: 56.5,-29.5
+ parent: 2
+ - uid: 10998
+ components:
+ - type: Transform
+ pos: 55.5,-29.5
+ parent: 2
+ - uid: 10999
+ components:
+ - type: Transform
+ pos: 54.5,-29.5
+ parent: 2
+ - uid: 11000
+ components:
+ - type: Transform
+ pos: 53.5,-29.5
+ parent: 2
+ - uid: 11001
+ components:
+ - type: Transform
+ pos: 58.5,-28.5
+ parent: 2
+ - uid: 11002
+ components:
+ - type: Transform
+ pos: 57.5,-28.5
+ parent: 2
+ - uid: 11003
+ components:
+ - type: Transform
+ pos: 56.5,-28.5
+ parent: 2
+ - uid: 11004
+ components:
+ - type: Transform
+ pos: 55.5,-28.5
+ parent: 2
+ - uid: 11005
+ components:
+ - type: Transform
+ pos: 54.5,-28.5
+ parent: 2
+ - uid: 11006
+ components:
+ - type: Transform
+ pos: 59.5,-27.5
+ parent: 2
+ - uid: 11007
+ components:
+ - type: Transform
+ pos: 58.5,-27.5
+ parent: 2
+ - uid: 11008
+ components:
+ - type: Transform
+ pos: 57.5,-27.5
+ parent: 2
+ - uid: 11009
+ components:
+ - type: Transform
+ pos: 56.5,-27.5
+ parent: 2
+ - uid: 11010
+ components:
+ - type: Transform
+ pos: 55.5,-27.5
+ parent: 2
+ - uid: 11011
+ components:
+ - type: Transform
+ pos: 54.5,-27.5
+ parent: 2
+ - uid: 11012
+ components:
+ - type: Transform
+ pos: 51.5,-26.5
+ parent: 2
+ - uid: 11013
+ components:
+ - type: Transform
+ pos: 53.5,-26.5
+ parent: 2
+ - uid: 11014
+ components:
+ - type: Transform
+ pos: 59.5,-26.5
+ parent: 2
+ - uid: 11015
+ components:
+ - type: Transform
+ pos: 58.5,-26.5
+ parent: 2
+ - uid: 11016
+ components:
+ - type: Transform
+ pos: 57.5,-26.5
+ parent: 2
+ - uid: 11017
+ components:
+ - type: Transform
+ pos: 56.5,-26.5
+ parent: 2
+ - uid: 11018
+ components:
+ - type: Transform
+ pos: 55.5,-26.5
+ parent: 2
+ - uid: 11019
+ components:
+ - type: Transform
+ pos: 54.5,-26.5
+ parent: 2
+ - uid: 11020
+ components:
+ - type: Transform
+ pos: 52.5,-26.5
+ parent: 2
+ - uid: 11021
+ components:
+ - type: Transform
+ pos: 51.5,-27.5
+ parent: 2
+ - uid: 11022
+ components:
+ - type: Transform
+ pos: 49.5,-24.5
+ parent: 2
+ - uid: 11023
+ components:
+ - type: Transform
+ pos: 48.5,-25.5
+ parent: 2
+ - uid: 11024
+ components:
+ - type: Transform
+ pos: 48.5,-24.5
+ parent: 2
+ - uid: 11025
+ components:
+ - type: Transform
+ pos: 47.5,-25.5
+ parent: 2
+ - uid: 11027
+ components:
+ - type: Transform
+ pos: 60.5,-25.5
+ parent: 2
+ - uid: 11028
+ components:
+ - type: Transform
+ pos: 60.5,-24.5
+ parent: 2
+ - uid: 11029
+ components:
+ - type: Transform
+ pos: 59.5,-25.5
+ parent: 2
+ - uid: 11030
+ components:
+ - type: Transform
+ pos: 59.5,-24.5
+ parent: 2
+ - uid: 11031
+ components:
+ - type: Transform
+ pos: 58.5,-25.5
+ parent: 2
+ - uid: 11032
+ components:
+ - type: Transform
+ pos: 58.5,-24.5
+ parent: 2
+ - uid: 11033
+ components:
+ - type: Transform
+ pos: 57.5,-25.5
+ parent: 2
+ - uid: 11034
+ components:
+ - type: Transform
+ pos: 53.5,-24.5
+ parent: 2
+ - uid: 11035
+ components:
+ - type: Transform
+ pos: 52.5,-25.5
+ parent: 2
+ - uid: 11036
+ components:
+ - type: Transform
+ pos: 52.5,-24.5
+ parent: 2
+ - uid: 11037
+ components:
+ - type: Transform
+ pos: 51.5,-25.5
+ parent: 2
+ - uid: 11038
+ components:
+ - type: Transform
+ pos: 51.5,-24.5
+ parent: 2
+ - uid: 11039
+ components:
+ - type: Transform
+ pos: 50.5,-25.5
+ parent: 2
+ - uid: 11040
+ components:
+ - type: Transform
+ pos: 50.5,-24.5
+ parent: 2
+ - uid: 11041
+ components:
+ - type: Transform
+ pos: 49.5,-25.5
+ parent: 2
+ - uid: 11042
+ components:
+ - type: Transform
+ pos: 57.5,-24.5
+ parent: 2
+ - uid: 11043
+ components:
+ - type: Transform
+ pos: 56.5,-25.5
+ parent: 2
+ - uid: 11044
+ components:
+ - type: Transform
+ pos: 56.5,-24.5
+ parent: 2
+ - uid: 11045
+ components:
+ - type: Transform
+ pos: 55.5,-25.5
+ parent: 2
+ - uid: 11046
+ components:
+ - type: Transform
+ pos: 55.5,-24.5
+ parent: 2
+ - uid: 11047
+ components:
+ - type: Transform
+ pos: 54.5,-25.5
+ parent: 2
+ - uid: 11048
+ components:
+ - type: Transform
+ pos: 54.5,-24.5
+ parent: 2
+ - uid: 11049
+ components:
+ - type: Transform
+ pos: 53.5,-25.5
+ parent: 2
+ - uid: 11051
+ components:
+ - type: Transform
+ pos: 56.5,-23.5
+ parent: 2
+ - uid: 11052
+ components:
+ - type: Transform
+ pos: 50.5,-23.5
+ parent: 2
+ - uid: 11053
+ components:
+ - type: Transform
+ pos: 57.5,-23.5
+ parent: 2
+ - uid: 11054
+ components:
+ - type: Transform
+ pos: 58.5,-23.5
+ parent: 2
+ - uid: 11055
+ components:
+ - type: Transform
+ pos: 59.5,-23.5
+ parent: 2
+ - uid: 11056
+ components:
+ - type: Transform
+ pos: 60.5,-23.5
+ parent: 2
+ - uid: 11057
+ components:
+ - type: Transform
+ pos: 61.5,-23.5
+ parent: 2
+ - uid: 11059
+ components:
+ - type: Transform
+ pos: 49.5,-23.5
+ parent: 2
+ - uid: 11060
+ components:
+ - type: Transform
+ pos: 51.5,-23.5
+ parent: 2
+ - uid: 11061
+ components:
+ - type: Transform
+ pos: 52.5,-23.5
+ parent: 2
+ - uid: 11062
+ components:
+ - type: Transform
+ pos: 53.5,-23.5
+ parent: 2
+ - uid: 11063
+ components:
+ - type: Transform
+ pos: 54.5,-23.5
+ parent: 2
+ - uid: 11064
+ components:
+ - type: Transform
+ pos: 55.5,-23.5
+ parent: 2
+ - uid: 11065
+ components:
+ - type: Transform
+ pos: 53.5,-22.5
+ parent: 2
+ - uid: 11066
+ components:
+ - type: Transform
+ pos: 52.5,-22.5
+ parent: 2
+ - uid: 11067
+ components:
+ - type: Transform
+ pos: 51.5,-22.5
+ parent: 2
+ - uid: 11068
+ components:
+ - type: Transform
+ pos: 58.5,-22.5
+ parent: 2
+ - uid: 11069
+ components:
+ - type: Transform
+ pos: 50.5,-22.5
+ parent: 2
+ - uid: 11071
+ components:
+ - type: Transform
+ pos: 61.5,-22.5
+ parent: 2
+ - uid: 11072
+ components:
+ - type: Transform
+ pos: 60.5,-22.5
+ parent: 2
+ - uid: 11073
+ components:
+ - type: Transform
+ pos: 59.5,-22.5
+ parent: 2
+ - uid: 11074
+ components:
+ - type: Transform
+ pos: 57.5,-22.5
+ parent: 2
+ - uid: 11075
+ components:
+ - type: Transform
+ pos: 56.5,-22.5
+ parent: 2
+ - uid: 11076
+ components:
+ - type: Transform
+ pos: 55.5,-22.5
+ parent: 2
+ - uid: 11077
+ components:
+ - type: Transform
+ pos: 54.5,-22.5
+ parent: 2
+ - uid: 11078
+ components:
+ - type: Transform
+ pos: 53.5,-21.5
+ parent: 2
+ - uid: 11079
+ components:
+ - type: Transform
+ pos: 52.5,-21.5
+ parent: 2
+ - uid: 11080
+ components:
+ - type: Transform
+ pos: 51.5,-21.5
+ parent: 2
+ - uid: 11081
+ components:
+ - type: Transform
+ pos: 58.5,-21.5
+ parent: 2
+ - uid: 11083
+ components:
+ - type: Transform
+ pos: 61.5,-21.5
+ parent: 2
+ - uid: 11084
+ components:
+ - type: Transform
+ pos: 60.5,-21.5
+ parent: 2
+ - uid: 11085
+ components:
+ - type: Transform
+ pos: 59.5,-21.5
+ parent: 2
+ - uid: 11086
+ components:
+ - type: Transform
+ pos: 57.5,-21.5
+ parent: 2
+ - uid: 11087
+ components:
+ - type: Transform
+ pos: 56.5,-21.5
+ parent: 2
+ - uid: 11088
+ components:
+ - type: Transform
+ pos: 55.5,-21.5
+ parent: 2
+ - uid: 11089
+ components:
+ - type: Transform
+ pos: 54.5,-21.5
+ parent: 2
+ - uid: 11090
+ components:
+ - type: Transform
+ pos: 62.5,-12.5
+ parent: 2
+ - uid: 11091
+ components:
+ - type: Transform
+ pos: 62.5,-11.5
+ parent: 2
+ - uid: 11092
+ components:
+ - type: Transform
+ pos: 62.5,-10.5
+ parent: 2
+ - uid: 11093
+ components:
+ - type: Transform
+ pos: 62.5,-9.5
+ parent: 2
+ - uid: 11094
+ components:
+ - type: Transform
+ pos: 62.5,-8.5
+ parent: 2
+ - uid: 11095
+ components:
+ - type: Transform
+ pos: 61.5,-20.5
+ parent: 2
+ - uid: 11096
+ components:
+ - type: Transform
+ pos: 62.5,-14.5
+ parent: 2
+ - uid: 11097
+ components:
+ - type: Transform
+ pos: 61.5,-19.5
+ parent: 2
+ - uid: 11098
+ components:
+ - type: Transform
+ pos: 58.5,-8.5
+ parent: 2
+ - uid: 11099
+ components:
+ - type: Transform
+ pos: 58.5,-16.5
+ parent: 2
+ - uid: 11100
+ components:
+ - type: Transform
+ pos: 58.5,-15.5
+ parent: 2
+ - uid: 11101
+ components:
+ - type: Transform
+ pos: 58.5,-14.5
+ parent: 2
+ - uid: 11102
+ components:
+ - type: Transform
+ pos: 58.5,-13.5
+ parent: 2
+ - uid: 11103
+ components:
+ - type: Transform
+ pos: 58.5,-12.5
+ parent: 2
+ - uid: 11104
+ components:
+ - type: Transform
+ pos: 58.5,-11.5
+ parent: 2
+ - uid: 11105
+ components:
+ - type: Transform
+ pos: 58.5,-10.5
+ parent: 2
+ - uid: 11106
+ components:
+ - type: Transform
+ pos: 58.5,-9.5
+ parent: 2
+ - uid: 11107
+ components:
+ - type: Transform
+ pos: 59.5,-10.5
+ parent: 2
+ - uid: 11108
+ components:
+ - type: Transform
+ pos: 59.5,-9.5
+ parent: 2
+ - uid: 11109
+ components:
+ - type: Transform
+ pos: 59.5,-8.5
+ parent: 2
+ - uid: 11110
+ components:
+ - type: Transform
+ pos: 58.5,-20.5
+ parent: 2
+ - uid: 11111
+ components:
+ - type: Transform
+ pos: 58.5,-19.5
+ parent: 2
+ - uid: 11112
+ components:
+ - type: Transform
+ pos: 58.5,-18.5
+ parent: 2
+ - uid: 11113
+ components:
+ - type: Transform
+ pos: 59.5,-17.5
+ parent: 2
+ - uid: 11114
+ components:
+ - type: Transform
+ pos: 58.5,-17.5
+ parent: 2
+ - uid: 11115
+ components:
+ - type: Transform
+ pos: 59.5,-19.5
+ parent: 2
+ - uid: 11116
+ components:
+ - type: Transform
+ pos: 59.5,-18.5
+ parent: 2
+ - uid: 11117
+ components:
+ - type: Transform
+ pos: 59.5,-16.5
+ parent: 2
+ - uid: 11118
+ components:
+ - type: Transform
+ pos: 59.5,-15.5
+ parent: 2
+ - uid: 11119
+ components:
+ - type: Transform
+ pos: 59.5,-14.5
+ parent: 2
+ - uid: 11120
+ components:
+ - type: Transform
+ pos: 59.5,-13.5
+ parent: 2
+ - uid: 11121
+ components:
+ - type: Transform
+ pos: 59.5,-12.5
+ parent: 2
+ - uid: 11122
+ components:
+ - type: Transform
+ pos: 59.5,-11.5
+ parent: 2
+ - uid: 11123
+ components:
+ - type: Transform
+ pos: 60.5,-15.5
+ parent: 2
+ - uid: 11124
+ components:
+ - type: Transform
+ pos: 60.5,-14.5
+ parent: 2
+ - uid: 11125
+ components:
+ - type: Transform
+ pos: 60.5,-13.5
+ parent: 2
+ - uid: 11126
+ components:
+ - type: Transform
+ pos: 60.5,-11.5
+ parent: 2
+ - uid: 11127
+ components:
+ - type: Transform
+ pos: 60.5,-10.5
+ parent: 2
+ - uid: 11128
+ components:
+ - type: Transform
+ pos: 60.5,-9.5
+ parent: 2
+ - uid: 11129
+ components:
+ - type: Transform
+ pos: 60.5,-8.5
+ parent: 2
+ - uid: 11130
+ components:
+ - type: Transform
+ pos: 59.5,-20.5
+ parent: 2
+ - uid: 11131
+ components:
+ - type: Transform
+ pos: 61.5,-10.5
+ parent: 2
+ - uid: 11132
+ components:
+ - type: Transform
+ pos: 61.5,-9.5
+ parent: 2
+ - uid: 11133
+ components:
+ - type: Transform
+ pos: 61.5,-8.5
+ parent: 2
+ - uid: 11134
+ components:
+ - type: Transform
+ pos: 60.5,-20.5
+ parent: 2
+ - uid: 11135
+ components:
+ - type: Transform
+ pos: 60.5,-19.5
+ parent: 2
+ - uid: 11136
+ components:
+ - type: Transform
+ pos: 60.5,-18.5
+ parent: 2
+ - uid: 11137
+ components:
+ - type: Transform
+ pos: 60.5,-17.5
+ parent: 2
+ - uid: 11138
+ components:
+ - type: Transform
+ pos: 60.5,-16.5
+ parent: 2
+ - uid: 11139
+ components:
+ - type: Transform
+ pos: 61.5,-18.5
+ parent: 2
+ - uid: 11140
+ components:
+ - type: Transform
+ pos: 61.5,-17.5
+ parent: 2
+ - uid: 11141
+ components:
+ - type: Transform
+ pos: 61.5,-16.5
+ parent: 2
+ - uid: 11142
+ components:
+ - type: Transform
+ pos: 61.5,-15.5
+ parent: 2
+ - uid: 11143
+ components:
+ - type: Transform
+ pos: 61.5,-14.5
+ parent: 2
+ - uid: 11144
+ components:
+ - type: Transform
+ pos: 61.5,-13.5
+ parent: 2
+ - uid: 11145
+ components:
+ - type: Transform
+ pos: 61.5,-12.5
+ parent: 2
+ - uid: 11146
+ components:
+ - type: Transform
+ pos: 61.5,-11.5
+ parent: 2
+ - uid: 11147
+ components:
+ - type: Transform
+ pos: 62.5,-13.5
+ parent: 2
+ - uid: 11148
+ components:
+ - type: Transform
+ pos: 62.5,-15.5
+ parent: 2
+ - uid: 11149
+ components:
+ - type: Transform
+ pos: 62.5,-16.5
+ parent: 2
+ - uid: 11150
+ components:
+ - type: Transform
+ pos: 62.5,-17.5
+ parent: 2
+ - uid: 11151
+ components:
+ - type: Transform
+ pos: 62.5,-18.5
+ parent: 2
+ - uid: 11152
+ components:
+ - type: Transform
+ pos: 62.5,-19.5
+ parent: 2
+ - uid: 11153
+ components:
+ - type: Transform
+ pos: 62.5,-20.5
+ parent: 2
+ - uid: 11154
+ components:
+ - type: Transform
+ pos: 55.5,-14.5
+ parent: 2
+ - uid: 11155
+ components:
+ - type: Transform
+ pos: 55.5,-13.5
+ parent: 2
+ - uid: 11156
+ components:
+ - type: Transform
+ pos: 55.5,-12.5
+ parent: 2
+ - uid: 11157
+ components:
+ - type: Transform
+ pos: 55.5,-11.5
+ parent: 2
+ - uid: 11158
+ components:
+ - type: Transform
+ pos: 55.5,-10.5
+ parent: 2
+ - uid: 11161
+ components:
+ - type: Transform
+ pos: 60.5,-12.5
+ parent: 2
+ - uid: 11162
+ components:
+ - type: Transform
+ pos: 57.5,-12.5
+ parent: 2
+ - uid: 11163
+ components:
+ - type: Transform
+ pos: 57.5,-11.5
+ parent: 2
+ - uid: 11164
+ components:
+ - type: Transform
+ pos: 57.5,-10.5
+ parent: 2
+ - uid: 11165
+ components:
+ - type: Transform
+ pos: 57.5,-9.5
+ parent: 2
+ - uid: 11166
+ components:
+ - type: Transform
+ pos: 57.5,-8.5
+ parent: 2
+ - uid: 11167
+ components:
+ - type: Transform
+ pos: 56.5,-20.5
+ parent: 2
+ - uid: 11168
+ components:
+ - type: Transform
+ pos: 56.5,-19.5
+ parent: 2
+ - uid: 11169
+ components:
+ - type: Transform
+ pos: 56.5,-18.5
+ parent: 2
+ - uid: 11170
+ components:
+ - type: Transform
+ pos: 57.5,-20.5
+ parent: 2
+ - uid: 11171
+ components:
+ - type: Transform
+ pos: 57.5,-19.5
+ parent: 2
+ - uid: 11172
+ components:
+ - type: Transform
+ pos: 57.5,-18.5
+ parent: 2
+ - uid: 11173
+ components:
+ - type: Transform
+ pos: 57.5,-17.5
+ parent: 2
+ - uid: 11174
+ components:
+ - type: Transform
+ pos: 57.5,-16.5
+ parent: 2
+ - uid: 11175
+ components:
+ - type: Transform
+ pos: 57.5,-15.5
+ parent: 2
+ - uid: 11176
+ components:
+ - type: Transform
+ pos: 57.5,-14.5
+ parent: 2
+ - uid: 11177
+ components:
+ - type: Transform
+ pos: 57.5,-13.5
+ parent: 2
+ - uid: 11178
+ components:
+ - type: Transform
+ pos: 56.5,-17.5
+ parent: 2
+ - uid: 11179
+ components:
+ - type: Transform
+ pos: 56.5,-16.5
+ parent: 2
+ - uid: 11180
+ components:
+ - type: Transform
+ pos: 56.5,-15.5
+ parent: 2
+ - uid: 11181
+ components:
+ - type: Transform
+ pos: 56.5,-14.5
+ parent: 2
+ - uid: 11182
+ components:
+ - type: Transform
+ pos: 56.5,-13.5
+ parent: 2
+ - uid: 11183
+ components:
+ - type: Transform
+ pos: 56.5,-12.5
+ parent: 2
+ - uid: 11184
+ components:
+ - type: Transform
+ pos: 56.5,-11.5
+ parent: 2
+ - uid: 11185
+ components:
+ - type: Transform
+ pos: 56.5,-10.5
+ parent: 2
+ - uid: 11186
+ components:
+ - type: Transform
+ pos: 56.5,-9.5
+ parent: 2
+ - uid: 11188
+ components:
+ - type: Transform
+ pos: 55.5,-20.5
+ parent: 2
+ - uid: 11189
+ components:
+ - type: Transform
+ pos: 55.5,-19.5
+ parent: 2
+ - uid: 11190
+ components:
+ - type: Transform
+ pos: 55.5,-18.5
+ parent: 2
+ - uid: 11191
+ components:
+ - type: Transform
+ pos: 55.5,-17.5
+ parent: 2
+ - uid: 11192
+ components:
+ - type: Transform
+ pos: 55.5,-16.5
+ parent: 2
+ - uid: 11193
+ components:
+ - type: Transform
+ pos: 55.5,-15.5
+ parent: 2
+ - uid: 11196
+ components:
+ - type: Transform
+ pos: 54.5,-20.5
+ parent: 2
+ - uid: 11197
+ components:
+ - type: Transform
+ pos: 54.5,-19.5
+ parent: 2
+ - uid: 11198
+ components:
+ - type: Transform
+ pos: 53.5,-20.5
+ parent: 2
+ - uid: 11199
+ components:
+ - type: Transform
+ pos: 53.5,-19.5
+ parent: 2
+ - uid: 11200
+ components:
+ - type: Transform
+ pos: 52.5,-20.5
+ parent: 2
+ - uid: 11202
+ components:
+ - type: Transform
+ pos: 54.5,-18.5
+ parent: 2
+ - uid: 11206
+ components:
+ - type: Transform
+ pos: 63.5,-19.5
+ parent: 2
+ - uid: 11207
+ components:
+ - type: Transform
+ pos: 65.5,-16.5
+ parent: 2
+ - uid: 11208
+ components:
+ - type: Transform
+ pos: 64.5,-16.5
+ parent: 2
+ - uid: 11209
+ components:
+ - type: Transform
+ pos: 63.5,-16.5
+ parent: 2
+ - uid: 11210
+ components:
+ - type: Transform
+ pos: 64.5,-17.5
+ parent: 2
+ - uid: 11211
+ components:
+ - type: Transform
+ pos: 64.5,-18.5
+ parent: 2
+ - uid: 11212
+ components:
+ - type: Transform
+ pos: 63.5,-18.5
+ parent: 2
+ - uid: 11213
+ components:
+ - type: Transform
+ pos: 63.5,-17.5
+ parent: 2
+ - uid: 11214
+ components:
+ - type: Transform
+ pos: 65.5,-15.5
+ parent: 2
+ - uid: 11215
+ components:
+ - type: Transform
+ pos: 65.5,-14.5
+ parent: 2
+ - uid: 11216
+ components:
+ - type: Transform
+ pos: 65.5,-13.5
+ parent: 2
+ - uid: 11217
+ components:
+ - type: Transform
+ pos: 65.5,-12.5
+ parent: 2
+ - uid: 11218
+ components:
+ - type: Transform
+ pos: 65.5,-11.5
+ parent: 2
+ - uid: 11219
+ components:
+ - type: Transform
+ pos: 65.5,-10.5
+ parent: 2
+ - uid: 11220
+ components:
+ - type: Transform
+ pos: 65.5,-9.5
+ parent: 2
+ - uid: 11221
+ components:
+ - type: Transform
+ pos: 65.5,-8.5
+ parent: 2
+ - uid: 11222
+ components:
+ - type: Transform
+ pos: 65.5,-7.5
+ parent: 2
+ - uid: 11223
+ components:
+ - type: Transform
+ pos: 65.5,-6.5
+ parent: 2
+ - uid: 11224
+ components:
+ - type: Transform
+ pos: 65.5,-5.5
+ parent: 2
+ - uid: 11225
+ components:
+ - type: Transform
+ pos: 65.5,-3.5
+ parent: 2
+ - uid: 11226
+ components:
+ - type: Transform
+ pos: 65.5,-2.5
+ parent: 2
+ - uid: 11227
+ components:
+ - type: Transform
+ pos: 65.5,-1.5
+ parent: 2
+ - uid: 11228
+ components:
+ - type: Transform
+ pos: 65.5,-0.5
+ parent: 2
+ - uid: 11229
+ components:
+ - type: Transform
+ pos: 65.5,0.5
+ parent: 2
+ - uid: 11230
+ components:
+ - type: Transform
+ pos: 65.5,1.5
+ parent: 2
+ - uid: 11231
+ components:
+ - type: Transform
+ pos: 65.5,2.5
+ parent: 2
+ - uid: 11232
+ components:
+ - type: Transform
+ pos: 65.5,3.5
+ parent: 2
+ - uid: 11233
+ components:
+ - type: Transform
+ pos: 65.5,4.5
+ parent: 2
+ - uid: 11234
+ components:
+ - type: Transform
+ pos: 65.5,5.5
+ parent: 2
+ - uid: 11235
+ components:
+ - type: Transform
+ pos: 65.5,-4.5
+ parent: 2
+ - uid: 11236
+ components:
+ - type: Transform
+ pos: 65.5,6.5
+ parent: 2
+ - uid: 11237
+ components:
+ - type: Transform
+ pos: 63.5,-6.5
+ parent: 2
+ - uid: 11238
+ components:
+ - type: Transform
+ pos: 64.5,10.5
+ parent: 2
+ - uid: 11239
+ components:
+ - type: Transform
+ pos: 63.5,-12.5
+ parent: 2
+ - uid: 11240
+ components:
+ - type: Transform
+ pos: 63.5,-13.5
+ parent: 2
+ - uid: 11241
+ components:
+ - type: Transform
+ pos: 63.5,-11.5
+ parent: 2
+ - uid: 11242
+ components:
+ - type: Transform
+ pos: 63.5,-10.5
+ parent: 2
+ - uid: 11243
+ components:
+ - type: Transform
+ pos: 63.5,-9.5
+ parent: 2
+ - uid: 11244
+ components:
+ - type: Transform
+ pos: 63.5,-8.5
+ parent: 2
+ - uid: 11245
+ components:
+ - type: Transform
+ pos: 63.5,-7.5
+ parent: 2
+ - uid: 11246
+ components:
+ - type: Transform
+ pos: 64.5,5.5
+ parent: 2
+ - uid: 11247
+ components:
+ - type: Transform
+ pos: 64.5,6.5
+ parent: 2
+ - uid: 11248
+ components:
+ - type: Transform
+ pos: 64.5,7.5
+ parent: 2
+ - uid: 11249
+ components:
+ - type: Transform
+ pos: 64.5,8.5
+ parent: 2
+ - uid: 11250
+ components:
+ - type: Transform
+ pos: 64.5,9.5
+ parent: 2
+ - uid: 11251
+ components:
+ - type: Transform
+ pos: 63.5,-15.5
+ parent: 2
+ - uid: 11252
+ components:
+ - type: Transform
+ pos: 64.5,-1.5
+ parent: 2
+ - uid: 11253
+ components:
+ - type: Transform
+ pos: 63.5,-14.5
+ parent: 2
+ - uid: 11254
+ components:
+ - type: Transform
+ pos: 64.5,-2.5
+ parent: 2
+ - uid: 11255
+ components:
+ - type: Transform
+ pos: 64.5,-3.5
+ parent: 2
+ - uid: 11256
+ components:
+ - type: Transform
+ pos: 64.5,-0.5
+ parent: 2
+ - uid: 11257
+ components:
+ - type: Transform
+ pos: 64.5,0.5
+ parent: 2
+ - uid: 11258
+ components:
+ - type: Transform
+ pos: 64.5,1.5
+ parent: 2
+ - uid: 11259
+ components:
+ - type: Transform
+ pos: 64.5,2.5
+ parent: 2
+ - uid: 11260
+ components:
+ - type: Transform
+ pos: 64.5,3.5
+ parent: 2
+ - uid: 11261
+ components:
+ - type: Transform
+ pos: 64.5,4.5
+ parent: 2
+ - uid: 11262
+ components:
+ - type: Transform
+ pos: 64.5,-11.5
+ parent: 2
+ - uid: 11263
+ components:
+ - type: Transform
+ pos: 64.5,-10.5
+ parent: 2
+ - uid: 11264
+ components:
+ - type: Transform
+ pos: 64.5,-9.5
+ parent: 2
+ - uid: 11265
+ components:
+ - type: Transform
+ pos: 64.5,-8.5
+ parent: 2
+ - uid: 11266
+ components:
+ - type: Transform
+ pos: 64.5,-7.5
+ parent: 2
+ - uid: 11267
+ components:
+ - type: Transform
+ pos: 64.5,-6.5
+ parent: 2
+ - uid: 11268
+ components:
+ - type: Transform
+ pos: 64.5,-5.5
+ parent: 2
+ - uid: 11269
+ components:
+ - type: Transform
+ pos: 64.5,-4.5
+ parent: 2
+ - uid: 11270
+ components:
+ - type: Transform
+ pos: 65.5,7.5
+ parent: 2
+ - uid: 11271
+ components:
+ - type: Transform
+ pos: 65.5,8.5
+ parent: 2
+ - uid: 11272
+ components:
+ - type: Transform
+ pos: 65.5,9.5
+ parent: 2
+ - uid: 11273
+ components:
+ - type: Transform
+ pos: 65.5,10.5
+ parent: 2
+ - uid: 11274
+ components:
+ - type: Transform
+ pos: 64.5,-15.5
+ parent: 2
+ - uid: 11275
+ components:
+ - type: Transform
+ pos: 64.5,-14.5
+ parent: 2
+ - uid: 11276
+ components:
+ - type: Transform
+ pos: 64.5,-13.5
+ parent: 2
+ - uid: 11277
+ components:
+ - type: Transform
+ pos: 64.5,-12.5
+ parent: 2
+ - uid: 11278
+ components:
+ - type: Transform
+ pos: 63.5,10.5
+ parent: 2
+ - uid: 11279
+ components:
+ - type: Transform
+ pos: 63.5,3.5
+ parent: 2
+ - uid: 11280
+ components:
+ - type: Transform
+ pos: 63.5,-3.5
+ parent: 2
+ - uid: 11281
+ components:
+ - type: Transform
+ pos: 63.5,4.5
+ parent: 2
+ - uid: 11282
+ components:
+ - type: Transform
+ pos: 63.5,5.5
+ parent: 2
+ - uid: 11283
+ components:
+ - type: Transform
+ pos: 63.5,6.5
+ parent: 2
+ - uid: 11284
+ components:
+ - type: Transform
+ pos: 63.5,7.5
+ parent: 2
+ - uid: 11285
+ components:
+ - type: Transform
+ pos: 63.5,8.5
+ parent: 2
+ - uid: 11286
+ components:
+ - type: Transform
+ pos: 63.5,9.5
+ parent: 2
+ - uid: 11287
+ components:
+ - type: Transform
+ pos: 63.5,-5.5
+ parent: 2
+ - uid: 11288
+ components:
+ - type: Transform
+ pos: 63.5,-4.5
+ parent: 2
+ - uid: 11289
+ components:
+ - type: Transform
+ pos: 63.5,-2.5
+ parent: 2
+ - uid: 11290
+ components:
+ - type: Transform
+ pos: 63.5,-1.5
+ parent: 2
+ - uid: 11291
+ components:
+ - type: Transform
+ pos: 63.5,-0.5
+ parent: 2
+ - uid: 11292
+ components:
+ - type: Transform
+ pos: 63.5,0.5
+ parent: 2
+ - uid: 11293
+ components:
+ - type: Transform
+ pos: 63.5,1.5
+ parent: 2
+ - uid: 11294
+ components:
+ - type: Transform
+ pos: 63.5,2.5
+ parent: 2
+ - uid: 11295
+ components:
+ - type: Transform
+ pos: 60.5,2.5
+ parent: 2
+ - uid: 11296
+ components:
+ - type: Transform
+ pos: 60.5,1.5
+ parent: 2
+ - uid: 11297
+ components:
+ - type: Transform
+ pos: 60.5,0.5
+ parent: 2
+ - uid: 11298
+ components:
+ - type: Transform
+ pos: 60.5,-0.5
+ parent: 2
+ - uid: 11299
+ components:
+ - type: Transform
+ pos: 60.5,-1.5
+ parent: 2
+ - uid: 11300
+ components:
+ - type: Transform
+ pos: 60.5,-2.5
+ parent: 2
+ - uid: 11301
+ components:
+ - type: Transform
+ pos: 60.5,-3.5
+ parent: 2
+ - uid: 11302
+ components:
+ - type: Transform
+ pos: 60.5,-4.5
+ parent: 2
+ - uid: 11303
+ components:
+ - type: Transform
+ pos: 61.5,-5.5
+ parent: 2
+ - uid: 11304
+ components:
+ - type: Transform
+ pos: 61.5,-6.5
+ parent: 2
+ - uid: 11305
+ components:
+ - type: Transform
+ pos: 61.5,-7.5
+ parent: 2
+ - uid: 11308
+ components:
+ - type: Transform
+ pos: 60.5,6.5
+ parent: 2
+ - uid: 11309
+ components:
+ - type: Transform
+ pos: 60.5,3.5
+ parent: 2
+ - uid: 11310
+ components:
+ - type: Transform
+ pos: 60.5,4.5
+ parent: 2
+ - uid: 11311
+ components:
+ - type: Transform
+ pos: 61.5,1.5
+ parent: 2
+ - uid: 11312
+ components:
+ - type: Transform
+ pos: 61.5,0.5
+ parent: 2
+ - uid: 11313
+ components:
+ - type: Transform
+ pos: 61.5,2.5
+ parent: 2
+ - uid: 11314
+ components:
+ - type: Transform
+ pos: 61.5,-0.5
+ parent: 2
+ - uid: 11315
+ components:
+ - type: Transform
+ pos: 61.5,-1.5
+ parent: 2
+ - uid: 11316
+ components:
+ - type: Transform
+ pos: 61.5,-2.5
+ parent: 2
+ - uid: 11317
+ components:
+ - type: Transform
+ pos: 61.5,-3.5
+ parent: 2
+ - uid: 11318
+ components:
+ - type: Transform
+ pos: 61.5,-4.5
+ parent: 2
+ - uid: 11319
+ components:
+ - type: Transform
+ pos: 62.5,-6.5
+ parent: 2
+ - uid: 11320
+ components:
+ - type: Transform
+ pos: 62.5,-7.5
+ parent: 2
+ - uid: 11322
+ components:
+ - type: Transform
+ pos: 61.5,7.5
+ parent: 2
+ - uid: 11323
+ components:
+ - type: Transform
+ pos: 61.5,6.5
+ parent: 2
+ - uid: 11324
+ components:
+ - type: Transform
+ pos: 61.5,5.5
+ parent: 2
+ - uid: 11325
+ components:
+ - type: Transform
+ pos: 61.5,4.5
+ parent: 2
+ - uid: 11326
+ components:
+ - type: Transform
+ pos: 61.5,3.5
+ parent: 2
+ - uid: 11327
+ components:
+ - type: Transform
+ pos: 62.5,0.5
+ parent: 2
+ - uid: 11328
+ components:
+ - type: Transform
+ pos: 62.5,-0.5
+ parent: 2
+ - uid: 11329
+ components:
+ - type: Transform
+ pos: 62.5,-1.5
+ parent: 2
+ - uid: 11330
+ components:
+ - type: Transform
+ pos: 62.5,-2.5
+ parent: 2
+ - uid: 11331
+ components:
+ - type: Transform
+ pos: 62.5,-3.5
+ parent: 2
+ - uid: 11332
+ components:
+ - type: Transform
+ pos: 62.5,3.5
+ parent: 2
+ - uid: 11333
+ components:
+ - type: Transform
+ pos: 62.5,-4.5
+ parent: 2
+ - uid: 11334
+ components:
+ - type: Transform
+ pos: 62.5,-5.5
+ parent: 2
+ - uid: 11335
+ components:
+ - type: Transform
+ pos: 62.5,8.5
+ parent: 2
+ - uid: 11336
+ components:
+ - type: Transform
+ pos: 62.5,7.5
+ parent: 2
+ - uid: 11337
+ components:
+ - type: Transform
+ pos: 62.5,6.5
+ parent: 2
+ - uid: 11338
+ components:
+ - type: Transform
+ pos: 62.5,5.5
+ parent: 2
+ - uid: 11339
+ components:
+ - type: Transform
+ pos: 62.5,4.5
+ parent: 2
+ - uid: 11340
+ components:
+ - type: Transform
+ pos: 62.5,1.5
+ parent: 2
+ - uid: 11341
+ components:
+ - type: Transform
+ pos: 62.5,2.5
+ parent: 2
+ - uid: 11342
+ components:
+ - type: Transform
+ pos: 60.5,-5.5
+ parent: 2
+ - uid: 11343
+ components:
+ - type: Transform
+ pos: 60.5,-6.5
+ parent: 2
+ - uid: 11344
+ components:
+ - type: Transform
+ pos: 60.5,-7.5
+ parent: 2
+ - uid: 11345
+ components:
+ - type: Transform
+ pos: 60.5,5.5
+ parent: 2
+ - uid: 11346
+ components:
+ - type: Transform
+ pos: 59.5,-4.5
+ parent: 2
+ - uid: 11347
+ components:
+ - type: Transform
+ pos: 59.5,-5.5
+ parent: 2
+ - uid: 11348
+ components:
+ - type: Transform
+ pos: 59.5,-6.5
+ parent: 2
+ - uid: 11349
+ components:
+ - type: Transform
+ pos: 59.5,-7.5
+ parent: 2
+ - uid: 11350
+ components:
+ - type: Transform
+ pos: 58.5,-6.5
+ parent: 2
+ - uid: 11351
+ components:
+ - type: Transform
+ pos: 58.5,-7.5
+ parent: 2
+ - uid: 11352
+ components:
+ - type: Transform
+ pos: 57.5,-7.5
+ parent: 2
+ - uid: 11354
+ components:
+ - type: Transform
+ pos: 59.5,1.5
+ parent: 2
+ - uid: 11355
+ components:
+ - type: Transform
+ pos: 59.5,2.5
+ parent: 2
+ - uid: 11356
+ components:
+ - type: Transform
+ pos: 59.5,3.5
+ parent: 2
+ - uid: 11357
+ components:
+ - type: Transform
+ pos: 59.5,4.5
+ parent: 2
+ - uid: 11366
+ components:
+ - type: Transform
+ pos: 62.5,9.5
+ parent: 2
+ - uid: 11367
+ components:
+ - type: Transform
+ pos: 67.5,9.5
+ parent: 2
+ - uid: 11368
+ components:
+ - type: Transform
+ pos: 68.5,-9.5
+ parent: 2
+ - uid: 11369
+ components:
+ - type: Transform
+ pos: 68.5,-8.5
+ parent: 2
+ - uid: 11370
+ components:
+ - type: Transform
+ pos: 68.5,-7.5
+ parent: 2
+ - uid: 11371
+ components:
+ - type: Transform
+ pos: 68.5,-6.5
+ parent: 2
+ - uid: 11372
+ components:
+ - type: Transform
+ pos: 68.5,-5.5
+ parent: 2
+ - uid: 11373
+ components:
+ - type: Transform
+ pos: 68.5,-4.5
+ parent: 2
+ - uid: 11374
+ components:
+ - type: Transform
+ pos: 68.5,-2.5
+ parent: 2
+ - uid: 11375
+ components:
+ - type: Transform
+ pos: 67.5,0.5
+ parent: 2
+ - uid: 11376
+ components:
+ - type: Transform
+ pos: 67.5,1.5
+ parent: 2
+ - uid: 11377
+ components:
+ - type: Transform
+ pos: 67.5,2.5
+ parent: 2
+ - uid: 11378
+ components:
+ - type: Transform
+ pos: 67.5,4.5
+ parent: 2
+ - uid: 11379
+ components:
+ - type: Transform
+ pos: 67.5,5.5
+ parent: 2
+ - uid: 11380
+ components:
+ - type: Transform
+ pos: 67.5,3.5
+ parent: 2
+ - uid: 11381
+ components:
+ - type: Transform
+ pos: 67.5,6.5
+ parent: 2
+ - uid: 11382
+ components:
+ - type: Transform
+ pos: 67.5,8.5
+ parent: 2
+ - uid: 11383
+ components:
+ - type: Transform
+ pos: 67.5,-6.5
+ parent: 2
+ - uid: 11384
+ components:
+ - type: Transform
+ pos: 67.5,-5.5
+ parent: 2
+ - uid: 11385
+ components:
+ - type: Transform
+ pos: 67.5,-4.5
+ parent: 2
+ - uid: 11386
+ components:
+ - type: Transform
+ pos: 68.5,30.5
+ parent: 2
+ - uid: 11387
+ components:
+ - type: Transform
+ pos: 67.5,-3.5
+ parent: 2
+ - uid: 11388
+ components:
+ - type: Transform
+ pos: 67.5,-2.5
+ parent: 2
+ - uid: 11389
+ components:
+ - type: Transform
+ pos: 67.5,-1.5
+ parent: 2
+ - uid: 11390
+ components:
+ - type: Transform
+ pos: 67.5,-0.5
+ parent: 2
+ - uid: 11391
+ components:
+ - type: Transform
+ pos: 68.5,31.5
+ parent: 2
+ - uid: 11392
+ components:
+ - type: Transform
+ pos: 68.5,28.5
+ parent: 2
+ - uid: 11393
+ components:
+ - type: Transform
+ pos: 68.5,32.5
+ parent: 2
+ - uid: 11394
+ components:
+ - type: Transform
+ pos: 68.5,33.5
+ parent: 2
+ - uid: 11395
+ components:
+ - type: Transform
+ pos: 68.5,34.5
+ parent: 2
+ - uid: 11396
+ components:
+ - type: Transform
+ pos: 67.5,-9.5
+ parent: 2
+ - uid: 11397
+ components:
+ - type: Transform
+ pos: 67.5,-8.5
+ parent: 2
+ - uid: 11398
+ components:
+ - type: Transform
+ pos: 67.5,-7.5
+ parent: 2
+ - uid: 11399
+ components:
+ - type: Transform
+ pos: 68.5,21.5
+ parent: 2
+ - uid: 11400
+ components:
+ - type: Transform
+ pos: 68.5,22.5
+ parent: 2
+ - uid: 11401
+ components:
+ - type: Transform
+ pos: 68.5,23.5
+ parent: 2
+ - uid: 11402
+ components:
+ - type: Transform
+ pos: 68.5,24.5
+ parent: 2
+ - uid: 11403
+ components:
+ - type: Transform
+ pos: 68.5,25.5
+ parent: 2
+ - uid: 11404
+ components:
+ - type: Transform
+ pos: 68.5,26.5
+ parent: 2
+ - uid: 11405
+ components:
+ - type: Transform
+ pos: 68.5,27.5
+ parent: 2
+ - uid: 11406
+ components:
+ - type: Transform
+ pos: 68.5,29.5
+ parent: 2
+ - uid: 11407
+ components:
+ - type: Transform
+ pos: 68.5,13.5
+ parent: 2
+ - uid: 11408
+ components:
+ - type: Transform
+ pos: 68.5,14.5
+ parent: 2
+ - uid: 11409
+ components:
+ - type: Transform
+ pos: 68.5,15.5
+ parent: 2
+ - uid: 11410
+ components:
+ - type: Transform
+ pos: 68.5,16.5
+ parent: 2
+ - uid: 11411
+ components:
+ - type: Transform
+ pos: 68.5,17.5
+ parent: 2
+ - uid: 11412
+ components:
+ - type: Transform
+ pos: 68.5,19.5
+ parent: 2
+ - uid: 11413
+ components:
+ - type: Transform
+ pos: 68.5,18.5
+ parent: 2
+ - uid: 11414
+ components:
+ - type: Transform
+ pos: 68.5,20.5
+ parent: 2
+ - uid: 11415
+ components:
+ - type: Transform
+ pos: 68.5,4.5
+ parent: 2
+ - uid: 11416
+ components:
+ - type: Transform
+ pos: 68.5,6.5
+ parent: 2
+ - uid: 11417
+ components:
+ - type: Transform
+ pos: 68.5,7.5
+ parent: 2
+ - uid: 11418
+ components:
+ - type: Transform
+ pos: 68.5,8.5
+ parent: 2
+ - uid: 11419
+ components:
+ - type: Transform
+ pos: 68.5,9.5
+ parent: 2
+ - uid: 11420
+ components:
+ - type: Transform
+ pos: 68.5,10.5
+ parent: 2
+ - uid: 11421
+ components:
+ - type: Transform
+ pos: 68.5,11.5
+ parent: 2
+ - uid: 11422
+ components:
+ - type: Transform
+ pos: 68.5,12.5
+ parent: 2
+ - uid: 11423
+ components:
+ - type: Transform
+ pos: 68.5,-1.5
+ parent: 2
+ - uid: 11424
+ components:
+ - type: Transform
+ pos: 68.5,-0.5
+ parent: 2
+ - uid: 11425
+ components:
+ - type: Transform
+ pos: 68.5,0.5
+ parent: 2
+ - uid: 11426
+ components:
+ - type: Transform
+ pos: 68.5,1.5
+ parent: 2
+ - uid: 11427
+ components:
+ - type: Transform
+ pos: 68.5,2.5
+ parent: 2
+ - uid: 11428
+ components:
+ - type: Transform
+ pos: 68.5,3.5
+ parent: 2
+ - uid: 11429
+ components:
+ - type: Transform
+ pos: 68.5,-3.5
+ parent: 2
+ - uid: 11430
+ components:
+ - type: Transform
+ pos: 68.5,5.5
+ parent: 2
+ - uid: 11431
+ components:
+ - type: Transform
+ pos: 66.5,22.5
+ parent: 2
+ - uid: 11432
+ components:
+ - type: Transform
+ pos: 66.5,23.5
+ parent: 2
+ - uid: 11433
+ components:
+ - type: Transform
+ pos: 66.5,24.5
+ parent: 2
+ - uid: 11434
+ components:
+ - type: Transform
+ pos: 66.5,25.5
+ parent: 2
+ - uid: 11435
+ components:
+ - type: Transform
+ pos: 66.5,26.5
+ parent: 2
+ - uid: 11436
+ components:
+ - type: Transform
+ pos: 66.5,27.5
+ parent: 2
+ - uid: 11437
+ components:
+ - type: Transform
+ pos: 66.5,28.5
+ parent: 2
+ - uid: 11438
+ components:
+ - type: Transform
+ pos: 66.5,14.5
+ parent: 2
+ - uid: 11439
+ components:
+ - type: Transform
+ pos: 66.5,15.5
+ parent: 2
+ - uid: 11440
+ components:
+ - type: Transform
+ pos: 66.5,16.5
+ parent: 2
+ - uid: 11441
+ components:
+ - type: Transform
+ pos: 66.5,17.5
+ parent: 2
+ - uid: 11442
+ components:
+ - type: Transform
+ pos: 66.5,18.5
+ parent: 2
+ - uid: 11443
+ components:
+ - type: Transform
+ pos: 66.5,19.5
+ parent: 2
+ - uid: 11444
+ components:
+ - type: Transform
+ pos: 66.5,20.5
+ parent: 2
+ - uid: 11445
+ components:
+ - type: Transform
+ pos: 66.5,21.5
+ parent: 2
+ - uid: 11446
+ components:
+ - type: Transform
+ pos: 66.5,6.5
+ parent: 2
+ - uid: 11447
+ components:
+ - type: Transform
+ pos: 66.5,7.5
+ parent: 2
+ - uid: 11448
+ components:
+ - type: Transform
+ pos: 66.5,8.5
+ parent: 2
+ - uid: 11449
+ components:
+ - type: Transform
+ pos: 66.5,9.5
+ parent: 2
+ - uid: 11450
+ components:
+ - type: Transform
+ pos: 66.5,10.5
+ parent: 2
+ - uid: 11451
+ components:
+ - type: Transform
+ pos: 66.5,11.5
+ parent: 2
+ - uid: 11452
+ components:
+ - type: Transform
+ pos: 66.5,12.5
+ parent: 2
+ - uid: 11453
+ components:
+ - type: Transform
+ pos: 66.5,13.5
+ parent: 2
+ - uid: 11454
+ components:
+ - type: Transform
+ pos: 66.5,-1.5
+ parent: 2
+ - uid: 11455
+ components:
+ - type: Transform
+ pos: 66.5,-0.5
+ parent: 2
+ - uid: 11456
+ components:
+ - type: Transform
+ pos: 66.5,0.5
+ parent: 2
+ - uid: 11457
+ components:
+ - type: Transform
+ pos: 66.5,1.5
+ parent: 2
+ - uid: 11458
+ components:
+ - type: Transform
+ pos: 66.5,2.5
+ parent: 2
+ - uid: 11459
+ components:
+ - type: Transform
+ pos: 66.5,3.5
+ parent: 2
+ - uid: 11460
+ components:
+ - type: Transform
+ pos: 66.5,4.5
+ parent: 2
+ - uid: 11461
+ components:
+ - type: Transform
+ pos: 66.5,5.5
+ parent: 2
+ - uid: 11462
+ components:
+ - type: Transform
+ pos: 66.5,-9.5
+ parent: 2
+ - uid: 11463
+ components:
+ - type: Transform
+ pos: 66.5,-8.5
+ parent: 2
+ - uid: 11464
+ components:
+ - type: Transform
+ pos: 66.5,-7.5
+ parent: 2
+ - uid: 11465
+ components:
+ - type: Transform
+ pos: 66.5,-6.5
+ parent: 2
+ - uid: 11466
+ components:
+ - type: Transform
+ pos: 66.5,-5.5
+ parent: 2
+ - uid: 11467
+ components:
+ - type: Transform
+ pos: 66.5,-4.5
+ parent: 2
+ - uid: 11468
+ components:
+ - type: Transform
+ pos: 66.5,-3.5
+ parent: 2
+ - uid: 11469
+ components:
+ - type: Transform
+ pos: 66.5,-2.5
+ parent: 2
+ - uid: 11470
+ components:
+ - type: Transform
+ pos: 67.5,27.5
+ parent: 2
+ - uid: 11471
+ components:
+ - type: Transform
+ pos: 67.5,28.5
+ parent: 2
+ - uid: 11472
+ components:
+ - type: Transform
+ pos: 67.5,29.5
+ parent: 2
+ - uid: 11473
+ components:
+ - type: Transform
+ pos: 67.5,30.5
+ parent: 2
+ - uid: 11474
+ components:
+ - type: Transform
+ pos: 67.5,31.5
+ parent: 2
+ - uid: 11475
+ components:
+ - type: Transform
+ pos: 67.5,32.5
+ parent: 2
+ - uid: 11476
+ components:
+ - type: Transform
+ pos: 67.5,33.5
+ parent: 2
+ - uid: 11477
+ components:
+ - type: Transform
+ pos: 67.5,34.5
+ parent: 2
+ - uid: 11478
+ components:
+ - type: Transform
+ pos: 67.5,19.5
+ parent: 2
+ - uid: 11479
+ components:
+ - type: Transform
+ pos: 67.5,20.5
+ parent: 2
+ - uid: 11480
+ components:
+ - type: Transform
+ pos: 67.5,21.5
+ parent: 2
+ - uid: 11481
+ components:
+ - type: Transform
+ pos: 67.5,22.5
+ parent: 2
+ - uid: 11482
+ components:
+ - type: Transform
+ pos: 67.5,23.5
+ parent: 2
+ - uid: 11483
+ components:
+ - type: Transform
+ pos: 67.5,24.5
+ parent: 2
+ - uid: 11484
+ components:
+ - type: Transform
+ pos: 67.5,25.5
+ parent: 2
+ - uid: 11485
+ components:
+ - type: Transform
+ pos: 67.5,26.5
+ parent: 2
+ - uid: 11486
+ components:
+ - type: Transform
+ pos: 67.5,11.5
+ parent: 2
+ - uid: 11487
+ components:
+ - type: Transform
+ pos: 67.5,12.5
+ parent: 2
+ - uid: 11488
+ components:
+ - type: Transform
+ pos: 67.5,13.5
+ parent: 2
+ - uid: 11489
+ components:
+ - type: Transform
+ pos: 67.5,14.5
+ parent: 2
+ - uid: 11490
+ components:
+ - type: Transform
+ pos: 67.5,15.5
+ parent: 2
+ - uid: 11491
+ components:
+ - type: Transform
+ pos: 67.5,16.5
+ parent: 2
+ - uid: 11492
+ components:
+ - type: Transform
+ pos: 67.5,17.5
+ parent: 2
+ - uid: 11493
+ components:
+ - type: Transform
+ pos: 67.5,18.5
+ parent: 2
+ - uid: 11494
+ components:
+ - type: Transform
+ pos: 67.5,10.5
+ parent: 2
+ - uid: 11495
+ components:
+ - type: Transform
+ pos: 66.5,30.5
+ parent: 2
+ - uid: 11496
+ components:
+ - type: Transform
+ pos: 66.5,31.5
+ parent: 2
+ - uid: 11497
+ components:
+ - type: Transform
+ pos: 66.5,32.5
+ parent: 2
+ - uid: 11498
+ components:
+ - type: Transform
+ pos: 66.5,33.5
+ parent: 2
+ - uid: 11499
+ components:
+ - type: Transform
+ pos: 67.5,7.5
+ parent: 2
+ - uid: 11500
+ components:
+ - type: Transform
+ pos: 66.5,34.5
+ parent: 2
+ - uid: 11501
+ components:
+ - type: Transform
+ pos: 66.5,29.5
+ parent: 2
+ - uid: 11502
+ components:
+ - type: Transform
+ pos: 65.5,26.5
+ parent: 2
+ - uid: 11503
+ components:
+ - type: Transform
+ pos: 65.5,27.5
+ parent: 2
+ - uid: 11504
+ components:
+ - type: Transform
+ pos: 65.5,28.5
+ parent: 2
+ - uid: 11505
+ components:
+ - type: Transform
+ pos: 65.5,29.5
+ parent: 2
+ - uid: 11506
+ components:
+ - type: Transform
+ pos: 65.5,30.5
+ parent: 2
+ - uid: 11507
+ components:
+ - type: Transform
+ pos: 65.5,31.5
+ parent: 2
+ - uid: 11508
+ components:
+ - type: Transform
+ pos: 65.5,32.5
+ parent: 2
+ - uid: 11509
+ components:
+ - type: Transform
+ pos: 65.5,33.5
+ parent: 2
+ - uid: 11510
+ components:
+ - type: Transform
+ pos: 65.5,11.5
+ parent: 2
+ - uid: 11511
+ components:
+ - type: Transform
+ pos: 65.5,12.5
+ parent: 2
+ - uid: 11512
+ components:
+ - type: Transform
+ pos: 65.5,13.5
+ parent: 2
+ - uid: 11513
+ components:
+ - type: Transform
+ pos: 65.5,14.5
+ parent: 2
+ - uid: 11514
+ components:
+ - type: Transform
+ pos: 65.5,15.5
+ parent: 2
+ - uid: 11515
+ components:
+ - type: Transform
+ pos: 65.5,16.5
+ parent: 2
+ - uid: 11516
+ components:
+ - type: Transform
+ pos: 65.5,17.5
+ parent: 2
+ - uid: 11517
+ components:
+ - type: Transform
+ pos: 65.5,19.5
+ parent: 2
+ - uid: 11518
+ components:
+ - type: Transform
+ pos: 65.5,20.5
+ parent: 2
+ - uid: 11519
+ components:
+ - type: Transform
+ pos: 65.5,21.5
+ parent: 2
+ - uid: 11520
+ components:
+ - type: Transform
+ pos: 65.5,22.5
+ parent: 2
+ - uid: 11521
+ components:
+ - type: Transform
+ pos: 65.5,23.5
+ parent: 2
+ - uid: 11522
+ components:
+ - type: Transform
+ pos: 65.5,24.5
+ parent: 2
+ - uid: 11523
+ components:
+ - type: Transform
+ pos: 65.5,25.5
+ parent: 2
+ - uid: 11524
+ components:
+ - type: Transform
+ pos: 65.5,18.5
+ parent: 2
+ - uid: 11525
+ components:
+ - type: Transform
+ pos: 64.5,27.5
+ parent: 2
+ - uid: 11526
+ components:
+ - type: Transform
+ pos: 64.5,28.5
+ parent: 2
+ - uid: 11527
+ components:
+ - type: Transform
+ pos: 64.5,29.5
+ parent: 2
+ - uid: 11528
+ components:
+ - type: Transform
+ pos: 64.5,30.5
+ parent: 2
+ - uid: 11529
+ components:
+ - type: Transform
+ pos: 64.5,31.5
+ parent: 2
+ - uid: 11530
+ components:
+ - type: Transform
+ pos: 64.5,24.5
+ parent: 2
+ - uid: 11531
+ components:
+ - type: Transform
+ pos: 64.5,32.5
+ parent: 2
+ - uid: 11532
+ components:
+ - type: Transform
+ pos: 64.5,19.5
+ parent: 2
+ - uid: 11533
+ components:
+ - type: Transform
+ pos: 64.5,20.5
+ parent: 2
+ - uid: 11534
+ components:
+ - type: Transform
+ pos: 64.5,21.5
+ parent: 2
+ - uid: 11535
+ components:
+ - type: Transform
+ pos: 64.5,22.5
+ parent: 2
+ - uid: 11536
+ components:
+ - type: Transform
+ pos: 64.5,23.5
+ parent: 2
+ - uid: 11537
+ components:
+ - type: Transform
+ pos: 64.5,25.5
+ parent: 2
+ - uid: 11538
+ components:
+ - type: Transform
+ pos: 64.5,26.5
+ parent: 2
+ - uid: 11539
+ components:
+ - type: Transform
+ pos: 63.5,30.5
+ parent: 2
+ - uid: 11540
+ components:
+ - type: Transform
+ pos: 63.5,31.5
+ parent: 2
+ - uid: 11541
+ components:
+ - type: Transform
+ pos: 63.5,32.5
+ parent: 2
+ - uid: 11542
+ components:
+ - type: Transform
+ pos: 63.5,23.5
+ parent: 2
+ - uid: 11543
+ components:
+ - type: Transform
+ pos: 63.5,24.5
+ parent: 2
+ - uid: 11544
+ components:
+ - type: Transform
+ pos: 63.5,25.5
+ parent: 2
+ - uid: 11545
+ components:
+ - type: Transform
+ pos: 63.5,26.5
+ parent: 2
+ - uid: 11546
+ components:
+ - type: Transform
+ pos: 63.5,27.5
+ parent: 2
+ - uid: 11547
+ components:
+ - type: Transform
+ pos: 63.5,28.5
+ parent: 2
+ - uid: 11548
+ components:
+ - type: Transform
+ pos: 63.5,29.5
+ parent: 2
+ - uid: 11549
+ components:
+ - type: Transform
+ pos: 62.5,31.5
+ parent: 2
+ - uid: 11550
+ components:
+ - type: Transform
+ pos: 62.5,32.5
+ parent: 2
+ - uid: 11551
+ components:
+ - type: Transform
+ pos: 61.5,31.5
+ parent: 2
+ - uid: 11552
+ components:
+ - type: Transform
+ pos: 61.5,32.5
+ parent: 2
+ - uid: 11553
+ components:
+ - type: Transform
+ pos: 62.5,30.5
+ parent: 2
+ - uid: 11554
+ components:
+ - type: Transform
+ pos: 64.5,13.5
+ parent: 2
+ - uid: 11555
+ components:
+ - type: Transform
+ pos: 64.5,12.5
+ parent: 2
+ - uid: 11556
+ components:
+ - type: Transform
+ pos: 64.5,11.5
+ parent: 2
+ - uid: 11557
+ components:
+ - type: Transform
+ pos: 67.5,-12.5
+ parent: 2
+ - uid: 11558
+ components:
+ - type: Transform
+ pos: 67.5,-11.5
+ parent: 2
+ - uid: 11559
+ components:
+ - type: Transform
+ pos: 67.5,-10.5
+ parent: 2
+ - uid: 11560
+ components:
+ - type: Transform
+ pos: 66.5,-12.5
+ parent: 2
+ - uid: 11561
+ components:
+ - type: Transform
+ pos: 66.5,-11.5
+ parent: 2
+ - uid: 11562
+ components:
+ - type: Transform
+ pos: 66.5,-10.5
+ parent: 2
+ - uid: 11563
+ components:
+ - type: Transform
+ pos: 66.5,-14.5
+ parent: 2
+ - uid: 11564
+ components:
+ - type: Transform
+ pos: 66.5,-13.5
+ parent: 2
+ - uid: 11565
+ components:
+ - type: Transform
+ pos: 72.5,5.5
+ parent: 2
+ - uid: 11566
+ components:
+ - type: Transform
+ pos: 72.5,6.5
+ parent: 2
+ - uid: 11567
+ components:
+ - type: Transform
+ pos: 72.5,7.5
+ parent: 2
+ - uid: 11569
+ components:
+ - type: Transform
+ pos: 72.5,9.5
+ parent: 2
+ - uid: 11570
+ components:
+ - type: Transform
+ pos: 72.5,10.5
+ parent: 2
+ - uid: 11571
+ components:
+ - type: Transform
+ pos: 72.5,11.5
+ parent: 2
+ - uid: 11572
+ components:
+ - type: Transform
+ pos: 72.5,12.5
+ parent: 2
+ - uid: 11573
+ components:
+ - type: Transform
+ pos: 72.5,19.5
+ parent: 2
+ - uid: 11574
+ components:
+ - type: Transform
+ pos: 73.5,36.5
+ parent: 2
+ - uid: 11575
+ components:
+ - type: Transform
+ pos: 72.5,-1.5
+ parent: 2
+ - uid: 11576
+ components:
+ - type: Transform
+ pos: 72.5,-0.5
+ parent: 2
+ - uid: 11577
+ components:
+ - type: Transform
+ pos: 72.5,0.5
+ parent: 2
+ - uid: 11578
+ components:
+ - type: Transform
+ pos: 72.5,1.5
+ parent: 2
+ - uid: 11579
+ components:
+ - type: Transform
+ pos: 72.5,2.5
+ parent: 2
+ - uid: 11580
+ components:
+ - type: Transform
+ pos: 72.5,3.5
+ parent: 2
+ - uid: 11581
+ components:
+ - type: Transform
+ pos: 72.5,4.5
+ parent: 2
+ - uid: 11582
+ components:
+ - type: Transform
+ pos: 73.5,28.5
+ parent: 2
+ - uid: 11583
+ components:
+ - type: Transform
+ pos: 73.5,29.5
+ parent: 2
+ - uid: 11584
+ components:
+ - type: Transform
+ pos: 73.5,30.5
+ parent: 2
+ - uid: 11585
+ components:
+ - type: Transform
+ pos: 73.5,31.5
+ parent: 2
+ - uid: 11586
+ components:
+ - type: Transform
+ pos: 73.5,32.5
+ parent: 2
+ - uid: 11587
+ components:
+ - type: Transform
+ pos: 73.5,33.5
+ parent: 2
+ - uid: 11588
+ components:
+ - type: Transform
+ pos: 73.5,34.5
+ parent: 2
+ - uid: 11589
+ components:
+ - type: Transform
+ pos: 73.5,35.5
+ parent: 2
+ - uid: 11590
+ components:
+ - type: Transform
+ pos: 73.5,20.5
+ parent: 2
+ - uid: 11591
+ components:
+ - type: Transform
+ pos: 73.5,21.5
+ parent: 2
+ - uid: 11592
+ components:
+ - type: Transform
+ pos: 73.5,22.5
+ parent: 2
+ - uid: 11593
+ components:
+ - type: Transform
+ pos: 73.5,24.5
+ parent: 2
+ - uid: 11594
+ components:
+ - type: Transform
+ pos: 73.5,23.5
+ parent: 2
+ - uid: 11595
+ components:
+ - type: Transform
+ pos: 73.5,25.5
+ parent: 2
+ - uid: 11596
+ components:
+ - type: Transform
+ pos: 73.5,26.5
+ parent: 2
+ - uid: 11597
+ components:
+ - type: Transform
+ pos: 73.5,27.5
+ parent: 2
+ - uid: 11598
+ components:
+ - type: Transform
+ pos: 73.5,13.5
+ parent: 2
+ - uid: 11599
+ components:
+ - type: Transform
+ pos: 73.5,5.5
+ parent: 2
+ - uid: 11600
+ components:
+ - type: Transform
+ pos: 73.5,14.5
+ parent: 2
+ - uid: 11601
+ components:
+ - type: Transform
+ pos: 73.5,15.5
+ parent: 2
+ - uid: 11603
+ components:
+ - type: Transform
+ pos: 73.5,17.5
+ parent: 2
+ - uid: 11604
+ components:
+ - type: Transform
+ pos: 73.5,18.5
+ parent: 2
+ - uid: 11605
+ components:
+ - type: Transform
+ pos: 73.5,19.5
+ parent: 2
+ - uid: 11606
+ components:
+ - type: Transform
+ pos: 73.5,4.5
+ parent: 2
+ - uid: 11607
+ components:
+ - type: Transform
+ pos: 73.5,6.5
+ parent: 2
+ - uid: 11608
+ components:
+ - type: Transform
+ pos: 73.5,7.5
+ parent: 2
+ - uid: 11609
+ components:
+ - type: Transform
+ pos: 73.5,8.5
+ parent: 2
+ - uid: 11610
+ components:
+ - type: Transform
+ pos: 73.5,9.5
+ parent: 2
+ - uid: 11611
+ components:
+ - type: Transform
+ pos: 73.5,10.5
+ parent: 2
+ - uid: 11612
+ components:
+ - type: Transform
+ pos: 73.5,11.5
+ parent: 2
+ - uid: 11613
+ components:
+ - type: Transform
+ pos: 73.5,12.5
+ parent: 2
+ - uid: 11614
+ components:
+ - type: Transform
+ pos: 73.5,-2.5
+ parent: 2
+ - uid: 11615
+ components:
+ - type: Transform
+ pos: 73.5,-1.5
+ parent: 2
+ - uid: 11616
+ components:
+ - type: Transform
+ pos: 73.5,-0.5
+ parent: 2
+ - uid: 11617
+ components:
+ - type: Transform
+ pos: 73.5,0.5
+ parent: 2
+ - uid: 11618
+ components:
+ - type: Transform
+ pos: 73.5,1.5
+ parent: 2
+ - uid: 11619
+ components:
+ - type: Transform
+ pos: 73.5,2.5
+ parent: 2
+ - uid: 11620
+ components:
+ - type: Transform
+ pos: 73.5,3.5
+ parent: 2
+ - uid: 11621
+ components:
+ - type: Transform
+ pos: 72.5,-2.5
+ parent: 2
+ - uid: 11622
+ components:
+ - type: Transform
+ pos: 72.5,14.5
+ parent: 2
+ - uid: 11623
+ components:
+ - type: Transform
+ pos: 72.5,13.5
+ parent: 2
+ - uid: 11624
+ components:
+ - type: Transform
+ pos: 72.5,16.5
+ parent: 2
+ - uid: 11625
+ components:
+ - type: Transform
+ pos: 72.5,17.5
+ parent: 2
+ - uid: 11626
+ components:
+ - type: Transform
+ pos: 72.5,18.5
+ parent: 2
+ - uid: 11627
+ components:
+ - type: Transform
+ pos: 72.5,15.5
+ parent: 2
+ - uid: 11628
+ components:
+ - type: Transform
+ pos: 72.5,20.5
+ parent: 2
+ - uid: 11629
+ components:
+ - type: Transform
+ pos: 70.5,-0.5
+ parent: 2
+ - uid: 11630
+ components:
+ - type: Transform
+ pos: 70.5,0.5
+ parent: 2
+ - uid: 11631
+ components:
+ - type: Transform
+ pos: 70.5,1.5
+ parent: 2
+ - uid: 11632
+ components:
+ - type: Transform
+ pos: 70.5,2.5
+ parent: 2
+ - uid: 11633
+ components:
+ - type: Transform
+ pos: 70.5,3.5
+ parent: 2
+ - uid: 11634
+ components:
+ - type: Transform
+ pos: 70.5,4.5
+ parent: 2
+ - uid: 11635
+ components:
+ - type: Transform
+ pos: 70.5,5.5
+ parent: 2
+ - uid: 11636
+ components:
+ - type: Transform
+ pos: 71.5,31.5
+ parent: 2
+ - uid: 11637
+ components:
+ - type: Transform
+ pos: 71.5,32.5
+ parent: 2
+ - uid: 11638
+ components:
+ - type: Transform
+ pos: 71.5,33.5
+ parent: 2
+ - uid: 11639
+ components:
+ - type: Transform
+ pos: 71.5,34.5
+ parent: 2
+ - uid: 11640
+ components:
+ - type: Transform
+ pos: 71.5,35.5
+ parent: 2
+ - uid: 11641
+ components:
+ - type: Transform
+ pos: 71.5,36.5
+ parent: 2
+ - uid: 11642
+ components:
+ - type: Transform
+ pos: 70.5,-2.5
+ parent: 2
+ - uid: 11643
+ components:
+ - type: Transform
+ pos: 70.5,-1.5
+ parent: 2
+ - uid: 11644
+ components:
+ - type: Transform
+ pos: 71.5,23.5
+ parent: 2
+ - uid: 11645
+ components:
+ - type: Transform
+ pos: 71.5,24.5
+ parent: 2
+ - uid: 11646
+ components:
+ - type: Transform
+ pos: 71.5,25.5
+ parent: 2
+ - uid: 11647
+ components:
+ - type: Transform
+ pos: 71.5,26.5
+ parent: 2
+ - uid: 11648
+ components:
+ - type: Transform
+ pos: 71.5,27.5
+ parent: 2
+ - uid: 11649
+ components:
+ - type: Transform
+ pos: 71.5,28.5
+ parent: 2
+ - uid: 11650
+ components:
+ - type: Transform
+ pos: 71.5,29.5
+ parent: 2
+ - uid: 11651
+ components:
+ - type: Transform
+ pos: 71.5,30.5
+ parent: 2
+ - uid: 11652
+ components:
+ - type: Transform
+ pos: 71.5,15.5
+ parent: 2
+ - uid: 11653
+ components:
+ - type: Transform
+ pos: 71.5,16.5
+ parent: 2
+ - uid: 11654
+ components:
+ - type: Transform
+ pos: 71.5,17.5
+ parent: 2
+ - uid: 11655
+ components:
+ - type: Transform
+ pos: 71.5,18.5
+ parent: 2
+ - uid: 11656
+ components:
+ - type: Transform
+ pos: 71.5,19.5
+ parent: 2
+ - uid: 11657
+ components:
+ - type: Transform
+ pos: 71.5,20.5
+ parent: 2
+ - uid: 11658
+ components:
+ - type: Transform
+ pos: 71.5,21.5
+ parent: 2
+ - uid: 11659
+ components:
+ - type: Transform
+ pos: 71.5,22.5
+ parent: 2
+ - uid: 11660
+ components:
+ - type: Transform
+ pos: 71.5,8.5
+ parent: 2
+ - uid: 11661
+ components:
+ - type: Transform
+ pos: 71.5,9.5
+ parent: 2
+ - uid: 11662
+ components:
+ - type: Transform
+ pos: 71.5,10.5
+ parent: 2
+ - uid: 11663
+ components:
+ - type: Transform
+ pos: 71.5,6.5
+ parent: 2
+ - uid: 11664
+ components:
+ - type: Transform
+ pos: 71.5,11.5
+ parent: 2
+ - uid: 11665
+ components:
+ - type: Transform
+ pos: 71.5,12.5
+ parent: 2
+ - uid: 11666
+ components:
+ - type: Transform
+ pos: 71.5,13.5
+ parent: 2
+ - uid: 11667
+ components:
+ - type: Transform
+ pos: 71.5,14.5
+ parent: 2
+ - uid: 11668
+ components:
+ - type: Transform
+ pos: 71.5,-0.5
+ parent: 2
+ - uid: 11669
+ components:
+ - type: Transform
+ pos: 71.5,0.5
+ parent: 2
+ - uid: 11670
+ components:
+ - type: Transform
+ pos: 71.5,1.5
+ parent: 2
+ - uid: 11671
+ components:
+ - type: Transform
+ pos: 71.5,2.5
+ parent: 2
+ - uid: 11672
+ components:
+ - type: Transform
+ pos: 71.5,3.5
+ parent: 2
+ - uid: 11673
+ components:
+ - type: Transform
+ pos: 71.5,4.5
+ parent: 2
+ - uid: 11674
+ components:
+ - type: Transform
+ pos: 71.5,5.5
+ parent: 2
+ - uid: 11675
+ components:
+ - type: Transform
+ pos: 71.5,7.5
+ parent: 2
+ - uid: 11676
+ components:
+ - type: Transform
+ pos: 72.5,30.5
+ parent: 2
+ - uid: 11677
+ components:
+ - type: Transform
+ pos: 72.5,33.5
+ parent: 2
+ - uid: 11678
+ components:
+ - type: Transform
+ pos: 72.5,34.5
+ parent: 2
+ - uid: 11679
+ components:
+ - type: Transform
+ pos: 72.5,36.5
+ parent: 2
+ - uid: 11680
+ components:
+ - type: Transform
+ pos: 72.5,31.5
+ parent: 2
+ - uid: 11681
+ components:
+ - type: Transform
+ pos: 72.5,35.5
+ parent: 2
+ - uid: 11682
+ components:
+ - type: Transform
+ pos: 71.5,-2.5
+ parent: 2
+ - uid: 11683
+ components:
+ - type: Transform
+ pos: 71.5,-1.5
+ parent: 2
+ - uid: 11684
+ components:
+ - type: Transform
+ pos: 72.5,23.5
+ parent: 2
+ - uid: 11685
+ components:
+ - type: Transform
+ pos: 72.5,22.5
+ parent: 2
+ - uid: 11686
+ components:
+ - type: Transform
+ pos: 72.5,24.5
+ parent: 2
+ - uid: 11687
+ components:
+ - type: Transform
+ pos: 72.5,25.5
+ parent: 2
+ - uid: 11688
+ components:
+ - type: Transform
+ pos: 72.5,26.5
+ parent: 2
+ - uid: 11689
+ components:
+ - type: Transform
+ pos: 72.5,27.5
+ parent: 2
+ - uid: 11691
+ components:
+ - type: Transform
+ pos: 72.5,29.5
+ parent: 2
+ - uid: 11692
+ components:
+ - type: Transform
+ pos: 72.5,21.5
+ parent: 2
+ - uid: 11693
+ components:
+ - type: Transform
+ pos: 69.5,29.5
+ parent: 2
+ - uid: 11694
+ components:
+ - type: Transform
+ pos: 69.5,21.5
+ parent: 2
+ - uid: 11695
+ components:
+ - type: Transform
+ pos: 69.5,22.5
+ parent: 2
+ - uid: 11696
+ components:
+ - type: Transform
+ pos: 69.5,23.5
+ parent: 2
+ - uid: 11697
+ components:
+ - type: Transform
+ pos: 69.5,24.5
+ parent: 2
+ - uid: 11698
+ components:
+ - type: Transform
+ pos: 69.5,25.5
+ parent: 2
+ - uid: 11699
+ components:
+ - type: Transform
+ pos: 69.5,26.5
+ parent: 2
+ - uid: 11700
+ components:
+ - type: Transform
+ pos: 69.5,27.5
+ parent: 2
+ - uid: 11701
+ components:
+ - type: Transform
+ pos: 69.5,28.5
+ parent: 2
+ - uid: 11702
+ components:
+ - type: Transform
+ pos: 69.5,13.5
+ parent: 2
+ - uid: 11703
+ components:
+ - type: Transform
+ pos: 69.5,14.5
+ parent: 2
+ - uid: 11704
+ components:
+ - type: Transform
+ pos: 69.5,15.5
+ parent: 2
+ - uid: 11705
+ components:
+ - type: Transform
+ pos: 69.5,16.5
+ parent: 2
+ - uid: 11706
+ components:
+ - type: Transform
+ pos: 69.5,18.5
+ parent: 2
+ - uid: 11707
+ components:
+ - type: Transform
+ pos: 69.5,19.5
+ parent: 2
+ - uid: 11708
+ components:
+ - type: Transform
+ pos: 69.5,17.5
+ parent: 2
+ - uid: 11709
+ components:
+ - type: Transform
+ pos: 69.5,20.5
+ parent: 2
+ - uid: 11710
+ components:
+ - type: Transform
+ pos: 69.5,5.5
+ parent: 2
+ - uid: 11711
+ components:
+ - type: Transform
+ pos: 69.5,6.5
+ parent: 2
+ - uid: 11712
+ components:
+ - type: Transform
+ pos: 69.5,7.5
+ parent: 2
+ - uid: 11713
+ components:
+ - type: Transform
+ pos: 69.5,8.5
+ parent: 2
+ - uid: 11714
+ components:
+ - type: Transform
+ pos: 69.5,9.5
+ parent: 2
+ - uid: 11715
+ components:
+ - type: Transform
+ pos: 69.5,10.5
+ parent: 2
+ - uid: 11716
+ components:
+ - type: Transform
+ pos: 69.5,11.5
+ parent: 2
+ - uid: 11717
+ components:
+ - type: Transform
+ pos: 69.5,12.5
+ parent: 2
+ - uid: 11718
+ components:
+ - type: Transform
+ pos: 69.5,-2.5
+ parent: 2
+ - uid: 11719
+ components:
+ - type: Transform
+ pos: 69.5,-1.5
+ parent: 2
+ - uid: 11720
+ components:
+ - type: Transform
+ pos: 69.5,-0.5
+ parent: 2
+ - uid: 11721
+ components:
+ - type: Transform
+ pos: 69.5,0.5
+ parent: 2
+ - uid: 11722
+ components:
+ - type: Transform
+ pos: 69.5,1.5
+ parent: 2
+ - uid: 11723
+ components:
+ - type: Transform
+ pos: 69.5,2.5
+ parent: 2
+ - uid: 11724
+ components:
+ - type: Transform
+ pos: 69.5,3.5
+ parent: 2
+ - uid: 11725
+ components:
+ - type: Transform
+ pos: 69.5,4.5
+ parent: 2
+ - uid: 11726
+ components:
+ - type: Transform
+ pos: 70.5,29.5
+ parent: 2
+ - uid: 11727
+ components:
+ - type: Transform
+ pos: 70.5,30.5
+ parent: 2
+ - uid: 11728
+ components:
+ - type: Transform
+ pos: 70.5,31.5
+ parent: 2
+ - uid: 11729
+ components:
+ - type: Transform
+ pos: 70.5,32.5
+ parent: 2
+ - uid: 11730
+ components:
+ - type: Transform
+ pos: 70.5,33.5
+ parent: 2
+ - uid: 11731
+ components:
+ - type: Transform
+ pos: 70.5,34.5
+ parent: 2
+ - uid: 11732
+ components:
+ - type: Transform
+ pos: 70.5,35.5
+ parent: 2
+ - uid: 11733
+ components:
+ - type: Transform
+ pos: 70.5,36.5
+ parent: 2
+ - uid: 11734
+ components:
+ - type: Transform
+ pos: 70.5,21.5
+ parent: 2
+ - uid: 11735
+ components:
+ - type: Transform
+ pos: 70.5,22.5
+ parent: 2
+ - uid: 11736
+ components:
+ - type: Transform
+ pos: 70.5,23.5
+ parent: 2
+ - uid: 11737
+ components:
+ - type: Transform
+ pos: 70.5,24.5
+ parent: 2
+ - uid: 11738
+ components:
+ - type: Transform
+ pos: 70.5,25.5
+ parent: 2
+ - uid: 11739
+ components:
+ - type: Transform
+ pos: 70.5,26.5
+ parent: 2
+ - uid: 11740
+ components:
+ - type: Transform
+ pos: 70.5,27.5
+ parent: 2
+ - uid: 11741
+ components:
+ - type: Transform
+ pos: 70.5,28.5
+ parent: 2
+ - uid: 11742
+ components:
+ - type: Transform
+ pos: 70.5,13.5
+ parent: 2
+ - uid: 11743
+ components:
+ - type: Transform
+ pos: 70.5,14.5
+ parent: 2
+ - uid: 11744
+ components:
+ - type: Transform
+ pos: 70.5,15.5
+ parent: 2
+ - uid: 11745
+ components:
+ - type: Transform
+ pos: 70.5,16.5
+ parent: 2
+ - uid: 11746
+ components:
+ - type: Transform
+ pos: 70.5,17.5
+ parent: 2
+ - uid: 11747
+ components:
+ - type: Transform
+ pos: 70.5,18.5
+ parent: 2
+ - uid: 11748
+ components:
+ - type: Transform
+ pos: 70.5,19.5
+ parent: 2
+ - uid: 11749
+ components:
+ - type: Transform
+ pos: 70.5,20.5
+ parent: 2
+ - uid: 11750
+ components:
+ - type: Transform
+ pos: 70.5,6.5
+ parent: 2
+ - uid: 11751
+ components:
+ - type: Transform
+ pos: 70.5,7.5
+ parent: 2
+ - uid: 11752
+ components:
+ - type: Transform
+ pos: 74.5,7.5
+ parent: 2
+ - uid: 11753
+ components:
+ - type: Transform
+ pos: 70.5,9.5
+ parent: 2
+ - uid: 11754
+ components:
+ - type: Transform
+ pos: 70.5,10.5
+ parent: 2
+ - uid: 11755
+ components:
+ - type: Transform
+ pos: 70.5,11.5
+ parent: 2
+ - uid: 11756
+ components:
+ - type: Transform
+ pos: 70.5,12.5
+ parent: 2
+ - uid: 11757
+ components:
+ - type: Transform
+ pos: 69.5,31.5
+ parent: 2
+ - uid: 11758
+ components:
+ - type: Transform
+ pos: 69.5,32.5
+ parent: 2
+ - uid: 11759
+ components:
+ - type: Transform
+ pos: 69.5,33.5
+ parent: 2
+ - uid: 11760
+ components:
+ - type: Transform
+ pos: 69.5,34.5
+ parent: 2
+ - uid: 11761
+ components:
+ - type: Transform
+ pos: 69.5,35.5
+ parent: 2
+ - uid: 11762
+ components:
+ - type: Transform
+ pos: 69.5,36.5
+ parent: 2
+ - uid: 11763
+ components:
+ - type: Transform
+ pos: 72.5,32.5
+ parent: 2
+ - uid: 11764
+ components:
+ - type: Transform
+ pos: 68.5,35.5
+ parent: 2
+ - uid: 11765
+ components:
+ - type: Transform
+ pos: 69.5,30.5
+ parent: 2
+ - uid: 11766
+ components:
+ - type: Transform
+ pos: 68.5,36.5
+ parent: 2
+ - uid: 11767
+ components:
+ - type: Transform
+ pos: 74.5,-1.5
+ parent: 2
+ - uid: 11768
+ components:
+ - type: Transform
+ pos: 74.5,-0.5
+ parent: 2
+ - uid: 11769
+ components:
+ - type: Transform
+ pos: 71.5,-3.5
+ parent: 2
+ - uid: 11770
+ components:
+ - type: Transform
+ pos: 70.5,-5.5
+ parent: 2
+ - uid: 11771
+ components:
+ - type: Transform
+ pos: 70.5,-4.5
+ parent: 2
+ - uid: 11772
+ components:
+ - type: Transform
+ pos: 70.5,-3.5
+ parent: 2
+ - uid: 11773
+ components:
+ - type: Transform
+ pos: 69.5,-5.5
+ parent: 2
+ - uid: 11774
+ components:
+ - type: Transform
+ pos: 69.5,-4.5
+ parent: 2
+ - uid: 11775
+ components:
+ - type: Transform
+ pos: 69.5,-3.5
+ parent: 2
+ - uid: 11776
+ components:
+ - type: Transform
+ pos: 69.5,-7.5
+ parent: 2
+ - uid: 11777
+ components:
+ - type: Transform
+ pos: 69.5,-6.5
+ parent: 2
+ - uid: 11778
+ components:
+ - type: Transform
+ pos: 76.5,29.5
+ parent: 2
+ - uid: 11779
+ components:
+ - type: Transform
+ pos: 76.5,30.5
+ parent: 2
+ - uid: 11780
+ components:
+ - type: Transform
+ pos: 76.5,31.5
+ parent: 2
+ - uid: 11781
+ components:
+ - type: Transform
+ pos: 76.5,32.5
+ parent: 2
+ - uid: 11782
+ components:
+ - type: Transform
+ pos: 76.5,33.5
+ parent: 2
+ - uid: 11783
+ components:
+ - type: Transform
+ pos: 76.5,34.5
+ parent: 2
+ - uid: 11784
+ components:
+ - type: Transform
+ pos: 76.5,35.5
+ parent: 2
+ - uid: 11785
+ components:
+ - type: Transform
+ pos: 76.5,37.5
+ parent: 2
+ - uid: 11786
+ components:
+ - type: Transform
+ pos: 76.5,36.5
+ parent: 2
+ - uid: 11788
+ components:
+ - type: Transform
+ pos: 72.5,8.5
+ parent: 2
+ - uid: 11789
+ components:
+ - type: Transform
+ pos: 70.5,8.5
+ parent: 2
+ - uid: 11790
+ components:
+ - type: Transform
+ pos: 77.5,10.5
+ parent: 2
+ - uid: 11791
+ components:
+ - type: Transform
+ pos: 77.5,11.5
+ parent: 2
+ - uid: 11792
+ components:
+ - type: Transform
+ pos: 77.5,12.5
+ parent: 2
+ - uid: 11793
+ components:
+ - type: Transform
+ pos: 77.5,13.5
+ parent: 2
+ - uid: 11794
+ components:
+ - type: Transform
+ pos: 77.5,15.5
+ parent: 2
+ - uid: 11795
+ components:
+ - type: Transform
+ pos: 77.5,16.5
+ parent: 2
+ - uid: 11796
+ components:
+ - type: Transform
+ pos: 77.5,17.5
+ parent: 2
+ - uid: 11797
+ components:
+ - type: Transform
+ pos: 77.5,18.5
+ parent: 2
+ - uid: 11798
+ components:
+ - type: Transform
+ pos: 77.5,19.5
+ parent: 2
+ - uid: 11799
+ components:
+ - type: Transform
+ pos: 77.5,20.5
+ parent: 2
+ - uid: 11800
+ components:
+ - type: Transform
+ pos: 77.5,21.5
+ parent: 2
+ - uid: 11801
+ components:
+ - type: Transform
+ pos: 77.5,14.5
+ parent: 2
+ - uid: 11802
+ components:
+ - type: Transform
+ pos: 76.5,22.5
+ parent: 2
+ - uid: 11803
+ components:
+ - type: Transform
+ pos: 76.5,23.5
+ parent: 2
+ - uid: 11804
+ components:
+ - type: Transform
+ pos: 76.5,21.5
+ parent: 2
+ - uid: 11805
+ components:
+ - type: Transform
+ pos: 76.5,24.5
+ parent: 2
+ - uid: 11806
+ components:
+ - type: Transform
+ pos: 76.5,25.5
+ parent: 2
+ - uid: 11807
+ components:
+ - type: Transform
+ pos: 76.5,26.5
+ parent: 2
+ - uid: 11808
+ components:
+ - type: Transform
+ pos: 76.5,27.5
+ parent: 2
+ - uid: 11809
+ components:
+ - type: Transform
+ pos: 76.5,28.5
+ parent: 2
+ - uid: 11810
+ components:
+ - type: Transform
+ pos: 76.5,13.5
+ parent: 2
+ - uid: 11811
+ components:
+ - type: Transform
+ pos: 76.5,14.5
+ parent: 2
+ - uid: 11812
+ components:
+ - type: Transform
+ pos: 76.5,15.5
+ parent: 2
+ - uid: 11813
+ components:
+ - type: Transform
+ pos: 76.5,16.5
+ parent: 2
+ - uid: 11814
+ components:
+ - type: Transform
+ pos: 76.5,17.5
+ parent: 2
+ - uid: 11815
+ components:
+ - type: Transform
+ pos: 76.5,18.5
+ parent: 2
+ - uid: 11816
+ components:
+ - type: Transform
+ pos: 76.5,19.5
+ parent: 2
+ - uid: 11817
+ components:
+ - type: Transform
+ pos: 76.5,20.5
+ parent: 2
+ - uid: 11818
+ components:
+ - type: Transform
+ pos: 77.5,39.5
+ parent: 2
+ - uid: 11820
+ components:
+ - type: Transform
+ pos: 77.5,37.5
+ parent: 2
+ - uid: 11821
+ components:
+ - type: Transform
+ pos: 75.5,8.5
+ parent: 2
+ - uid: 11823
+ components:
+ - type: Transform
+ pos: 76.5,10.5
+ parent: 2
+ - uid: 11824
+ components:
+ - type: Transform
+ pos: 76.5,11.5
+ parent: 2
+ - uid: 11825
+ components:
+ - type: Transform
+ pos: 76.5,12.5
+ parent: 2
+ - uid: 11826
+ components:
+ - type: Transform
+ pos: 77.5,30.5
+ parent: 2
+ - uid: 11827
+ components:
+ - type: Transform
+ pos: 77.5,31.5
+ parent: 2
+ - uid: 11828
+ components:
+ - type: Transform
+ pos: 77.5,32.5
+ parent: 2
+ - uid: 11829
+ components:
+ - type: Transform
+ pos: 77.5,33.5
+ parent: 2
+ - uid: 11830
+ components:
+ - type: Transform
+ pos: 77.5,34.5
+ parent: 2
+ - uid: 11831
+ components:
+ - type: Transform
+ pos: 77.5,35.5
+ parent: 2
+ - uid: 11832
+ components:
+ - type: Transform
+ pos: 74.5,8.5
+ parent: 2
+ - uid: 11833
+ components:
+ - type: Transform
+ pos: 77.5,38.5
+ parent: 2
+ - uid: 11834
+ components:
+ - type: Transform
+ pos: 77.5,22.5
+ parent: 2
+ - uid: 11835
+ components:
+ - type: Transform
+ pos: 77.5,24.5
+ parent: 2
+ - uid: 11836
+ components:
+ - type: Transform
+ pos: 77.5,23.5
+ parent: 2
+ - uid: 11837
+ components:
+ - type: Transform
+ pos: 77.5,25.5
+ parent: 2
+ - uid: 11838
+ components:
+ - type: Transform
+ pos: 77.5,26.5
+ parent: 2
+ - uid: 11839
+ components:
+ - type: Transform
+ pos: 77.5,27.5
+ parent: 2
+ - uid: 11840
+ components:
+ - type: Transform
+ pos: 77.5,28.5
+ parent: 2
+ - uid: 11841
+ components:
+ - type: Transform
+ pos: 77.5,29.5
+ parent: 2
+ - uid: 11842
+ components:
+ - type: Transform
+ pos: 74.5,29.5
+ parent: 2
+ - uid: 11843
+ components:
+ - type: Transform
+ pos: 74.5,30.5
+ parent: 2
+ - uid: 11844
+ components:
+ - type: Transform
+ pos: 74.5,31.5
+ parent: 2
+ - uid: 11845
+ components:
+ - type: Transform
+ pos: 74.5,32.5
+ parent: 2
+ - uid: 11846
+ components:
+ - type: Transform
+ pos: 74.5,33.5
+ parent: 2
+ - uid: 11847
+ components:
+ - type: Transform
+ pos: 74.5,34.5
+ parent: 2
+ - uid: 11848
+ components:
+ - type: Transform
+ pos: 74.5,35.5
+ parent: 2
+ - uid: 11849
+ components:
+ - type: Transform
+ pos: 74.5,21.5
+ parent: 2
+ - uid: 11850
+ components:
+ - type: Transform
+ pos: 74.5,22.5
+ parent: 2
+ - uid: 11851
+ components:
+ - type: Transform
+ pos: 74.5,23.5
+ parent: 2
+ - uid: 11852
+ components:
+ - type: Transform
+ pos: 74.5,24.5
+ parent: 2
+ - uid: 11853
+ components:
+ - type: Transform
+ pos: 74.5,25.5
+ parent: 2
+ - uid: 11854
+ components:
+ - type: Transform
+ pos: 74.5,26.5
+ parent: 2
+ - uid: 11855
+ components:
+ - type: Transform
+ pos: 74.5,27.5
+ parent: 2
+ - uid: 11856
+ components:
+ - type: Transform
+ pos: 74.5,28.5
+ parent: 2
+ - uid: 11857
+ components:
+ - type: Transform
+ pos: 74.5,13.5
+ parent: 2
+ - uid: 11858
+ components:
+ - type: Transform
+ pos: 74.5,14.5
+ parent: 2
+ - uid: 11859
+ components:
+ - type: Transform
+ pos: 74.5,15.5
+ parent: 2
+ - uid: 11860
+ components:
+ - type: Transform
+ pos: 74.5,16.5
+ parent: 2
+ - uid: 11861
+ components:
+ - type: Transform
+ pos: 74.5,17.5
+ parent: 2
+ - uid: 11862
+ components:
+ - type: Transform
+ pos: 74.5,18.5
+ parent: 2
+ - uid: 11863
+ components:
+ - type: Transform
+ pos: 74.5,19.5
+ parent: 2
+ - uid: 11864
+ components:
+ - type: Transform
+ pos: 74.5,20.5
+ parent: 2
+ - uid: 11865
+ components:
+ - type: Transform
+ pos: 75.5,38.5
+ parent: 2
+ - uid: 11867
+ components:
+ - type: Transform
+ pos: 77.5,36.5
+ parent: 2
+ - uid: 11868
+ components:
+ - type: Transform
+ pos: 74.5,9.5
+ parent: 2
+ - uid: 11869
+ components:
+ - type: Transform
+ pos: 74.5,10.5
+ parent: 2
+ - uid: 11870
+ components:
+ - type: Transform
+ pos: 75.5,39.5
+ parent: 2
+ - uid: 11871
+ components:
+ - type: Transform
+ pos: 74.5,11.5
+ parent: 2
+ - uid: 11872
+ components:
+ - type: Transform
+ pos: 74.5,12.5
+ parent: 2
+ - uid: 11873
+ components:
+ - type: Transform
+ pos: 75.5,30.5
+ parent: 2
+ - uid: 11874
+ components:
+ - type: Transform
+ pos: 75.5,31.5
+ parent: 2
+ - uid: 11875
+ components:
+ - type: Transform
+ pos: 75.5,32.5
+ parent: 2
+ - uid: 11876
+ components:
+ - type: Transform
+ pos: 75.5,33.5
+ parent: 2
+ - uid: 11877
+ components:
+ - type: Transform
+ pos: 75.5,34.5
+ parent: 2
+ - uid: 11878
+ components:
+ - type: Transform
+ pos: 75.5,35.5
+ parent: 2
+ - uid: 11879
+ components:
+ - type: Transform
+ pos: 75.5,36.5
+ parent: 2
+ - uid: 11880
+ components:
+ - type: Transform
+ pos: 75.5,37.5
+ parent: 2
+ - uid: 11881
+ components:
+ - type: Transform
+ pos: 75.5,22.5
+ parent: 2
+ - uid: 11882
+ components:
+ - type: Transform
+ pos: 75.5,23.5
+ parent: 2
+ - uid: 11883
+ components:
+ - type: Transform
+ pos: 75.5,24.5
+ parent: 2
+ - uid: 11884
+ components:
+ - type: Transform
+ pos: 75.5,25.5
+ parent: 2
+ - uid: 11885
+ components:
+ - type: Transform
+ pos: 75.5,26.5
+ parent: 2
+ - uid: 11886
+ components:
+ - type: Transform
+ pos: 75.5,27.5
+ parent: 2
+ - uid: 11887
+ components:
+ - type: Transform
+ pos: 75.5,28.5
+ parent: 2
+ - uid: 11888
+ components:
+ - type: Transform
+ pos: 75.5,29.5
+ parent: 2
+ - uid: 11889
+ components:
+ - type: Transform
+ pos: 75.5,14.5
+ parent: 2
+ - uid: 11890
+ components:
+ - type: Transform
+ pos: 75.5,15.5
+ parent: 2
+ - uid: 11891
+ components:
+ - type: Transform
+ pos: 75.5,16.5
+ parent: 2
+ - uid: 11892
+ components:
+ - type: Transform
+ pos: 75.5,17.5
+ parent: 2
+ - uid: 11893
+ components:
+ - type: Transform
+ pos: 75.5,18.5
+ parent: 2
+ - uid: 11894
+ components:
+ - type: Transform
+ pos: 75.5,19.5
+ parent: 2
+ - uid: 11895
+ components:
+ - type: Transform
+ pos: 75.5,20.5
+ parent: 2
+ - uid: 11896
+ components:
+ - type: Transform
+ pos: 75.5,21.5
+ parent: 2
+ - uid: 11897
+ components:
+ - type: Transform
+ pos: 76.5,39.5
+ parent: 2
+ - uid: 11898
+ components:
+ - type: Transform
+ pos: 72.5,28.5
+ parent: 2
+ - uid: 11900
+ components:
+ - type: Transform
+ pos: 75.5,9.5
+ parent: 2
+ - uid: 11901
+ components:
+ - type: Transform
+ pos: 75.5,10.5
+ parent: 2
+ - uid: 11902
+ components:
+ - type: Transform
+ pos: 75.5,11.5
+ parent: 2
+ - uid: 11903
+ components:
+ - type: Transform
+ pos: 75.5,12.5
+ parent: 2
+ - uid: 11904
+ components:
+ - type: Transform
+ pos: 75.5,13.5
+ parent: 2
+ - uid: 11905
+ components:
+ - type: Transform
+ pos: 76.5,38.5
+ parent: 2
+ - uid: 11906
+ components:
+ - type: Transform
+ pos: 74.5,36.5
+ parent: 2
+ - uid: 11907
+ components:
+ - type: Transform
+ pos: 74.5,37.5
+ parent: 2
+ - uid: 11908
+ components:
+ - type: Transform
+ pos: 74.5,38.5
+ parent: 2
+ - uid: 11909
+ components:
+ - type: Transform
+ pos: 74.5,39.5
+ parent: 2
+ - uid: 11910
+ components:
+ - type: Transform
+ pos: 73.5,37.5
+ parent: 2
+ - uid: 11911
+ components:
+ - type: Transform
+ pos: 72.5,37.5
+ parent: 2
+ - uid: 11912
+ components:
+ - type: Transform
+ pos: 71.5,37.5
+ parent: 2
+ - uid: 11913
+ components:
+ - type: Transform
+ pos: 73.5,38.5
+ parent: 2
+ - uid: 11914
+ components:
+ - type: Transform
+ pos: 76.5,9.5
+ parent: 2
+ - uid: 11916
+ components:
+ - type: Transform
+ pos: 84.5,43.5
+ parent: 2
+ - uid: 11918
+ components:
+ - type: Transform
+ pos: 78.5,28.5
+ parent: 2
+ - uid: 11919
+ components:
+ - type: Transform
+ pos: 79.5,39.5
+ parent: 2
+ - uid: 11920
+ components:
+ - type: Transform
+ pos: 79.5,41.5
+ parent: 2
+ - uid: 11921
+ components:
+ - type: Transform
+ pos: 79.5,40.5
+ parent: 2
+ - uid: 11922
+ components:
+ - type: Transform
+ pos: 79.5,42.5
+ parent: 2
+ - uid: 11923
+ components:
+ - type: Transform
+ pos: 79.5,44.5
+ parent: 2
+ - uid: 11924
+ components:
+ - type: Transform
+ pos: 79.5,45.5
+ parent: 2
+ - uid: 11925
+ components:
+ - type: Transform
+ pos: 79.5,47.5
+ parent: 2
+ - uid: 11926
+ components:
+ - type: Transform
+ pos: 79.5,46.5
+ parent: 2
+ - uid: 11927
+ components:
+ - type: Transform
+ pos: 79.5,32.5
+ parent: 2
+ - uid: 11928
+ components:
+ - type: Transform
+ pos: 79.5,33.5
+ parent: 2
+ - uid: 11929
+ components:
+ - type: Transform
+ pos: 79.5,34.5
+ parent: 2
+ - uid: 11930
+ components:
+ - type: Transform
+ pos: 79.5,35.5
+ parent: 2
+ - uid: 11931
+ components:
+ - type: Transform
+ pos: 79.5,22.5
+ parent: 2
+ - uid: 11932
+ components:
+ - type: Transform
+ pos: 79.5,36.5
+ parent: 2
+ - uid: 11933
+ components:
+ - type: Transform
+ pos: 79.5,37.5
+ parent: 2
+ - uid: 11934
+ components:
+ - type: Transform
+ pos: 79.5,38.5
+ parent: 2
+ - uid: 11935
+ components:
+ - type: Transform
+ pos: 79.5,25.5
+ parent: 2
+ - uid: 11936
+ components:
+ - type: Transform
+ pos: 79.5,23.5
+ parent: 2
+ - uid: 11937
+ components:
+ - type: Transform
+ pos: 79.5,26.5
+ parent: 2
+ - uid: 11938
+ components:
+ - type: Transform
+ pos: 79.5,27.5
+ parent: 2
+ - uid: 11939
+ components:
+ - type: Transform
+ pos: 79.5,28.5
+ parent: 2
+ - uid: 11940
+ components:
+ - type: Transform
+ pos: 79.5,29.5
+ parent: 2
+ - uid: 11941
+ components:
+ - type: Transform
+ pos: 79.5,30.5
+ parent: 2
+ - uid: 11942
+ components:
+ - type: Transform
+ pos: 79.5,31.5
+ parent: 2
+ - uid: 11943
+ components:
+ - type: Transform
+ pos: 80.5,44.5
+ parent: 2
+ - uid: 11944
+ components:
+ - type: Transform
+ pos: 80.5,45.5
+ parent: 2
+ - uid: 11945
+ components:
+ - type: Transform
+ pos: 80.5,46.5
+ parent: 2
+ - uid: 11946
+ components:
+ - type: Transform
+ pos: 80.5,39.5
+ parent: 2
+ - uid: 11947
+ components:
+ - type: Transform
+ pos: 80.5,47.5
+ parent: 2
+ - uid: 11948
+ components:
+ - type: Transform
+ pos: 79.5,20.5
+ parent: 2
+ - uid: 11949
+ components:
+ - type: Transform
+ pos: 79.5,21.5
+ parent: 2
+ - uid: 11950
+ components:
+ - type: Transform
+ pos: 79.5,24.5
+ parent: 2
+ - uid: 11951
+ components:
+ - type: Transform
+ pos: 80.5,35.5
+ parent: 2
+ - uid: 11952
+ components:
+ - type: Transform
+ pos: 80.5,36.5
+ parent: 2
+ - uid: 11953
+ components:
+ - type: Transform
+ pos: 80.5,37.5
+ parent: 2
+ - uid: 11954
+ components:
+ - type: Transform
+ pos: 80.5,38.5
+ parent: 2
+ - uid: 11955
+ components:
+ - type: Transform
+ pos: 80.5,40.5
+ parent: 2
+ - uid: 11956
+ components:
+ - type: Transform
+ pos: 80.5,41.5
+ parent: 2
+ - uid: 11957
+ components:
+ - type: Transform
+ pos: 80.5,42.5
+ parent: 2
+ - uid: 11958
+ components:
+ - type: Transform
+ pos: 80.5,43.5
+ parent: 2
+ - uid: 11959
+ components:
+ - type: Transform
+ pos: 80.5,27.5
+ parent: 2
+ - uid: 11960
+ components:
+ - type: Transform
+ pos: 80.5,28.5
+ parent: 2
+ - uid: 11961
+ components:
+ - type: Transform
+ pos: 80.5,29.5
+ parent: 2
+ - uid: 11962
+ components:
+ - type: Transform
+ pos: 80.5,30.5
+ parent: 2
+ - uid: 11963
+ components:
+ - type: Transform
+ pos: 80.5,31.5
+ parent: 2
+ - uid: 11964
+ components:
+ - type: Transform
+ pos: 80.5,32.5
+ parent: 2
+ - uid: 11965
+ components:
+ - type: Transform
+ pos: 80.5,33.5
+ parent: 2
+ - uid: 11966
+ components:
+ - type: Transform
+ pos: 80.5,34.5
+ parent: 2
+ - uid: 11967
+ components:
+ - type: Transform
+ pos: 80.5,20.5
+ parent: 2
+ - uid: 11968
+ components:
+ - type: Transform
+ pos: 80.5,21.5
+ parent: 2
+ - uid: 11969
+ components:
+ - type: Transform
+ pos: 80.5,22.5
+ parent: 2
+ - uid: 11970
+ components:
+ - type: Transform
+ pos: 80.5,23.5
+ parent: 2
+ - uid: 11971
+ components:
+ - type: Transform
+ pos: 80.5,24.5
+ parent: 2
+ - uid: 11972
+ components:
+ - type: Transform
+ pos: 80.5,25.5
+ parent: 2
+ - uid: 11973
+ components:
+ - type: Transform
+ pos: 80.5,26.5
+ parent: 2
+ - uid: 11974
+ components:
+ - type: Transform
+ pos: 78.5,45.5
+ parent: 2
+ - uid: 11975
+ components:
+ - type: Transform
+ pos: 78.5,46.5
+ parent: 2
+ - uid: 11976
+ components:
+ - type: Transform
+ pos: 78.5,47.5
+ parent: 2
+ - uid: 11977
+ components:
+ - type: Transform
+ pos: 78.5,31.5
+ parent: 2
+ - uid: 11978
+ components:
+ - type: Transform
+ pos: 78.5,29.5
+ parent: 2
+ - uid: 11979
+ components:
+ - type: Transform
+ pos: 78.5,30.5
+ parent: 2
+ - uid: 11980
+ components:
+ - type: Transform
+ pos: 78.5,32.5
+ parent: 2
+ - uid: 11981
+ components:
+ - type: Transform
+ pos: 78.5,33.5
+ parent: 2
+ - uid: 11982
+ components:
+ - type: Transform
+ pos: 78.5,34.5
+ parent: 2
+ - uid: 11983
+ components:
+ - type: Transform
+ pos: 78.5,36.5
+ parent: 2
+ - uid: 11984
+ components:
+ - type: Transform
+ pos: 78.5,35.5
+ parent: 2
+ - uid: 11985
+ components:
+ - type: Transform
+ pos: 79.5,43.5
+ parent: 2
+ - uid: 11986
+ components:
+ - type: Transform
+ pos: 78.5,27.5
+ parent: 2
+ - uid: 11987
+ components:
+ - type: Transform
+ pos: 78.5,26.5
+ parent: 2
+ - uid: 11988
+ components:
+ - type: Transform
+ pos: 78.5,25.5
+ parent: 2
+ - uid: 11989
+ components:
+ - type: Transform
+ pos: 78.5,24.5
+ parent: 2
+ - uid: 11990
+ components:
+ - type: Transform
+ pos: 78.5,23.5
+ parent: 2
+ - uid: 11991
+ components:
+ - type: Transform
+ pos: 78.5,22.5
+ parent: 2
+ - uid: 11992
+ components:
+ - type: Transform
+ pos: 78.5,21.5
+ parent: 2
+ - uid: 11993
+ components:
+ - type: Transform
+ pos: 78.5,20.5
+ parent: 2
+ - uid: 11994
+ components:
+ - type: Transform
+ pos: 78.5,37.5
+ parent: 2
+ - uid: 11995
+ components:
+ - type: Transform
+ pos: 78.5,38.5
+ parent: 2
+ - uid: 11996
+ components:
+ - type: Transform
+ pos: 78.5,39.5
+ parent: 2
+ - uid: 11997
+ components:
+ - type: Transform
+ pos: 78.5,40.5
+ parent: 2
+ - uid: 11998
+ components:
+ - type: Transform
+ pos: 78.5,41.5
+ parent: 2
+ - uid: 11999
+ components:
+ - type: Transform
+ pos: 78.5,42.5
+ parent: 2
+ - uid: 12000
+ components:
+ - type: Transform
+ pos: 78.5,43.5
+ parent: 2
+ - uid: 12001
+ components:
+ - type: Transform
+ pos: 78.5,44.5
+ parent: 2
+ - uid: 12002
+ components:
+ - type: Transform
+ pos: 75.5,47.5
+ parent: 2
+ - uid: 12003
+ components:
+ - type: Transform
+ pos: 76.5,47.5
+ parent: 2
+ - uid: 12004
+ components:
+ - type: Transform
+ pos: 75.5,40.5
+ parent: 2
+ - uid: 12005
+ components:
+ - type: Transform
+ pos: 75.5,41.5
+ parent: 2
+ - uid: 12006
+ components:
+ - type: Transform
+ pos: 75.5,42.5
+ parent: 2
+ - uid: 12007
+ components:
+ - type: Transform
+ pos: 75.5,43.5
+ parent: 2
+ - uid: 12008
+ components:
+ - type: Transform
+ pos: 75.5,44.5
+ parent: 2
+ - uid: 12009
+ components:
+ - type: Transform
+ pos: 75.5,45.5
+ parent: 2
+ - uid: 12010
+ components:
+ - type: Transform
+ pos: 75.5,46.5
+ parent: 2
+ - uid: 12011
+ components:
+ - type: Transform
+ pos: 76.5,40.5
+ parent: 2
+ - uid: 12012
+ components:
+ - type: Transform
+ pos: 76.5,41.5
+ parent: 2
+ - uid: 12013
+ components:
+ - type: Transform
+ pos: 76.5,42.5
+ parent: 2
+ - uid: 12014
+ components:
+ - type: Transform
+ pos: 76.5,43.5
+ parent: 2
+ - uid: 12015
+ components:
+ - type: Transform
+ pos: 76.5,44.5
+ parent: 2
+ - uid: 12016
+ components:
+ - type: Transform
+ pos: 76.5,45.5
+ parent: 2
+ - uid: 12017
+ components:
+ - type: Transform
+ pos: 77.5,46.5
+ parent: 2
+ - uid: 12018
+ components:
+ - type: Transform
+ pos: 76.5,46.5
+ parent: 2
+ - uid: 12019
+ components:
+ - type: Transform
+ pos: 77.5,40.5
+ parent: 2
+ - uid: 12020
+ components:
+ - type: Transform
+ pos: 77.5,41.5
+ parent: 2
+ - uid: 12021
+ components:
+ - type: Transform
+ pos: 77.5,42.5
+ parent: 2
+ - uid: 12022
+ components:
+ - type: Transform
+ pos: 77.5,43.5
+ parent: 2
+ - uid: 12023
+ components:
+ - type: Transform
+ pos: 77.5,44.5
+ parent: 2
+ - uid: 12024
+ components:
+ - type: Transform
+ pos: 77.5,45.5
+ parent: 2
+ - uid: 12025
+ components:
+ - type: Transform
+ pos: 77.5,47.5
+ parent: 2
+ - uid: 12026
+ components:
+ - type: Transform
+ pos: 74.5,44.5
+ parent: 2
+ - uid: 12027
+ components:
+ - type: Transform
+ pos: 74.5,45.5
+ parent: 2
+ - uid: 12028
+ components:
+ - type: Transform
+ pos: 74.5,46.5
+ parent: 2
+ - uid: 12029
+ components:
+ - type: Transform
+ pos: 74.5,47.5
+ parent: 2
+ - uid: 12030
+ components:
+ - type: Transform
+ pos: 73.5,46.5
+ parent: 2
+ - uid: 12031
+ components:
+ - type: Transform
+ pos: 73.5,47.5
+ parent: 2
+ - uid: 12032
+ components:
+ - type: Transform
+ pos: 79.5,48.5
+ parent: 2
+ - uid: 12033
+ components:
+ - type: Transform
+ pos: 80.5,48.5
+ parent: 2
+ - uid: 12034
+ components:
+ - type: Transform
+ pos: 81.5,48.5
+ parent: 2
+ - uid: 12035
+ components:
+ - type: Transform
+ pos: 81.5,47.5
+ parent: 2
+ - uid: 12036
+ components:
+ - type: Transform
+ pos: 81.5,46.5
+ parent: 2
+ - uid: 12037
+ components:
+ - type: Transform
+ pos: 81.5,45.5
+ parent: 2
+ - uid: 12038
+ components:
+ - type: Transform
+ pos: 81.5,44.5
+ parent: 2
+ - uid: 12039
+ components:
+ - type: Transform
+ pos: 81.5,43.5
+ parent: 2
+ - uid: 12040
+ components:
+ - type: Transform
+ pos: 81.5,41.5
+ parent: 2
+ - uid: 12041
+ components:
+ - type: Transform
+ pos: 81.5,40.5
+ parent: 2
+ - uid: 12042
+ components:
+ - type: Transform
+ pos: 81.5,39.5
+ parent: 2
+ - uid: 12043
+ components:
+ - type: Transform
+ pos: 81.5,38.5
+ parent: 2
+ - uid: 12044
+ components:
+ - type: Transform
+ pos: 81.5,37.5
+ parent: 2
+ - uid: 12045
+ components:
+ - type: Transform
+ pos: 81.5,36.5
+ parent: 2
+ - uid: 12046
+ components:
+ - type: Transform
+ pos: 81.5,35.5
+ parent: 2
+ - uid: 12047
+ components:
+ - type: Transform
+ pos: 81.5,34.5
+ parent: 2
+ - uid: 12048
+ components:
+ - type: Transform
+ pos: 81.5,42.5
+ parent: 2
+ - uid: 12049
+ components:
+ - type: Transform
+ pos: 83.5,30.5
+ parent: 2
+ - uid: 12050
+ components:
+ - type: Transform
+ pos: 83.5,32.5
+ parent: 2
+ - uid: 12051
+ components:
+ - type: Transform
+ pos: 83.5,38.5
+ parent: 2
+ - uid: 12052
+ components:
+ - type: Transform
+ pos: 83.5,37.5
+ parent: 2
+ - uid: 12053
+ components:
+ - type: Transform
+ pos: 83.5,36.5
+ parent: 2
+ - uid: 12054
+ components:
+ - type: Transform
+ pos: 83.5,35.5
+ parent: 2
+ - uid: 12055
+ components:
+ - type: Transform
+ pos: 83.5,34.5
+ parent: 2
+ - uid: 12056
+ components:
+ - type: Transform
+ pos: 83.5,33.5
+ parent: 2
+ - uid: 12057
+ components:
+ - type: Transform
+ pos: 83.5,48.5
+ parent: 2
+ - uid: 12058
+ components:
+ - type: Transform
+ pos: 83.5,31.5
+ parent: 2
+ - uid: 12059
+ components:
+ - type: Transform
+ pos: 83.5,46.5
+ parent: 2
+ - uid: 12060
+ components:
+ - type: Transform
+ pos: 83.5,45.5
+ parent: 2
+ - uid: 12061
+ components:
+ - type: Transform
+ pos: 83.5,44.5
+ parent: 2
+ - uid: 12062
+ components:
+ - type: Transform
+ pos: 83.5,43.5
+ parent: 2
+ - uid: 12063
+ components:
+ - type: Transform
+ pos: 83.5,42.5
+ parent: 2
+ - uid: 12064
+ components:
+ - type: Transform
+ pos: 83.5,41.5
+ parent: 2
+ - uid: 12065
+ components:
+ - type: Transform
+ pos: 83.5,40.5
+ parent: 2
+ - uid: 12066
+ components:
+ - type: Transform
+ pos: 83.5,39.5
+ parent: 2
+ - uid: 12067
+ components:
+ - type: Transform
+ pos: 82.5,36.5
+ parent: 2
+ - uid: 12068
+ components:
+ - type: Transform
+ pos: 82.5,35.5
+ parent: 2
+ - uid: 12069
+ components:
+ - type: Transform
+ pos: 82.5,34.5
+ parent: 2
+ - uid: 12070
+ components:
+ - type: Transform
+ pos: 82.5,33.5
+ parent: 2
+ - uid: 12071
+ components:
+ - type: Transform
+ pos: 82.5,32.5
+ parent: 2
+ - uid: 12072
+ components:
+ - type: Transform
+ pos: 82.5,31.5
+ parent: 2
+ - uid: 12073
+ components:
+ - type: Transform
+ pos: 82.5,30.5
+ parent: 2
+ - uid: 12074
+ components:
+ - type: Transform
+ pos: 83.5,47.5
+ parent: 2
+ - uid: 12075
+ components:
+ - type: Transform
+ pos: 82.5,44.5
+ parent: 2
+ - uid: 12076
+ components:
+ - type: Transform
+ pos: 82.5,43.5
+ parent: 2
+ - uid: 12077
+ components:
+ - type: Transform
+ pos: 82.5,42.5
+ parent: 2
+ - uid: 12078
+ components:
+ - type: Transform
+ pos: 82.5,41.5
+ parent: 2
+ - uid: 12079
+ components:
+ - type: Transform
+ pos: 82.5,40.5
+ parent: 2
+ - uid: 12080
+ components:
+ - type: Transform
+ pos: 82.5,39.5
+ parent: 2
+ - uid: 12081
+ components:
+ - type: Transform
+ pos: 82.5,38.5
+ parent: 2
+ - uid: 12082
+ components:
+ - type: Transform
+ pos: 82.5,37.5
+ parent: 2
+ - uid: 12083
+ components:
+ - type: Transform
+ pos: 81.5,33.5
+ parent: 2
+ - uid: 12084
+ components:
+ - type: Transform
+ pos: 81.5,32.5
+ parent: 2
+ - uid: 12085
+ components:
+ - type: Transform
+ pos: 81.5,31.5
+ parent: 2
+ - uid: 12086
+ components:
+ - type: Transform
+ pos: 81.5,30.5
+ parent: 2
+ - uid: 12087
+ components:
+ - type: Transform
+ pos: 82.5,48.5
+ parent: 2
+ - uid: 12088
+ components:
+ - type: Transform
+ pos: 82.5,47.5
+ parent: 2
+ - uid: 12089
+ components:
+ - type: Transform
+ pos: 82.5,46.5
+ parent: 2
+ - uid: 12090
+ components:
+ - type: Transform
+ pos: 82.5,45.5
+ parent: 2
+ - uid: 12091
+ components:
+ - type: Transform
+ pos: 82.5,29.5
+ parent: 2
+ - uid: 12092
+ components:
+ - type: Transform
+ pos: 81.5,29.5
+ parent: 2
+ - uid: 12093
+ components:
+ - type: Transform
+ pos: 81.5,28.5
+ parent: 2
+ - uid: 12094
+ components:
+ - type: Transform
+ pos: 81.5,27.5
+ parent: 2
+ - uid: 12095
+ components:
+ - type: Transform
+ pos: 81.5,26.5
+ parent: 2
+ - uid: 12096
+ components:
+ - type: Transform
+ pos: 79.5,19.5
+ parent: 2
+ - uid: 12097
+ components:
+ - type: Transform
+ pos: 79.5,18.5
+ parent: 2
+ - uid: 12098
+ components:
+ - type: Transform
+ pos: 78.5,19.5
+ parent: 2
+ - uid: 12099
+ components:
+ - type: Transform
+ pos: 78.5,18.5
+ parent: 2
+ - uid: 12100
+ components:
+ - type: Transform
+ pos: 78.5,16.5
+ parent: 2
+ - uid: 12101
+ components:
+ - type: Transform
+ pos: 78.5,17.5
+ parent: 2
+ - uid: 12102
+ components:
+ - type: Transform
+ pos: 84.5,44.5
+ parent: 2
+ - uid: 12103
+ components:
+ - type: Transform
+ pos: 84.5,45.5
+ parent: 2
+ - uid: 12104
+ components:
+ - type: Transform
+ pos: 84.5,46.5
+ parent: 2
+ - uid: 12105
+ components:
+ - type: Transform
+ pos: 84.5,47.5
+ parent: 2
+ - uid: 12106
+ components:
+ - type: Transform
+ pos: 84.5,48.5
+ parent: 2
+ - uid: 12107
+ components:
+ - type: Transform
+ pos: 84.5,49.5
+ parent: 2
+ - uid: 12108
+ components:
+ - type: Transform
+ pos: 84.5,36.5
+ parent: 2
+ - uid: 12109
+ components:
+ - type: Transform
+ pos: 86.5,32.5
+ parent: 2
+ - uid: 12110
+ components:
+ - type: Transform
+ pos: 86.5,33.5
+ parent: 2
+ - uid: 12111
+ components:
+ - type: Transform
+ pos: 86.5,34.5
+ parent: 2
+ - uid: 12112
+ components:
+ - type: Transform
+ pos: 86.5,35.5
+ parent: 2
+ - uid: 12113
+ components:
+ - type: Transform
+ pos: 86.5,36.5
+ parent: 2
+ - uid: 12114
+ components:
+ - type: Transform
+ pos: 86.5,37.5
+ parent: 2
+ - uid: 12115
+ components:
+ - type: Transform
+ pos: 86.5,38.5
+ parent: 2
+ - uid: 12116
+ components:
+ - type: Transform
+ pos: 86.5,40.5
+ parent: 2
+ - uid: 12117
+ components:
+ - type: Transform
+ pos: 86.5,41.5
+ parent: 2
+ - uid: 12118
+ components:
+ - type: Transform
+ pos: 86.5,42.5
+ parent: 2
+ - uid: 12119
+ components:
+ - type: Transform
+ pos: 86.5,43.5
+ parent: 2
+ - uid: 12120
+ components:
+ - type: Transform
+ pos: 86.5,44.5
+ parent: 2
+ - uid: 12121
+ components:
+ - type: Transform
+ pos: 86.5,45.5
+ parent: 2
+ - uid: 12122
+ components:
+ - type: Transform
+ pos: 86.5,46.5
+ parent: 2
+ - uid: 12123
+ components:
+ - type: Transform
+ pos: 86.5,39.5
+ parent: 2
+ - uid: 12124
+ components:
+ - type: Transform
+ pos: 84.5,35.5
+ parent: 2
+ - uid: 12125
+ components:
+ - type: Transform
+ pos: 84.5,37.5
+ parent: 2
+ - uid: 12126
+ components:
+ - type: Transform
+ pos: 84.5,38.5
+ parent: 2
+ - uid: 12127
+ components:
+ - type: Transform
+ pos: 84.5,39.5
+ parent: 2
+ - uid: 12128
+ components:
+ - type: Transform
+ pos: 84.5,40.5
+ parent: 2
+ - uid: 12129
+ components:
+ - type: Transform
+ pos: 84.5,41.5
+ parent: 2
+ - uid: 12130
+ components:
+ - type: Transform
+ pos: 84.5,42.5
+ parent: 2
+ - uid: 12132
+ components:
+ - type: Transform
+ pos: 85.5,45.5
+ parent: 2
+ - uid: 12133
+ components:
+ - type: Transform
+ pos: 85.5,46.5
+ parent: 2
+ - uid: 12134
+ components:
+ - type: Transform
+ pos: 85.5,47.5
+ parent: 2
+ - uid: 12135
+ components:
+ - type: Transform
+ pos: 85.5,48.5
+ parent: 2
+ - uid: 12136
+ components:
+ - type: Transform
+ pos: 85.5,49.5
+ parent: 2
+ - uid: 12137
+ components:
+ - type: Transform
+ pos: 84.5,32.5
+ parent: 2
+ - uid: 12138
+ components:
+ - type: Transform
+ pos: 84.5,33.5
+ parent: 2
+ - uid: 12139
+ components:
+ - type: Transform
+ pos: 84.5,34.5
+ parent: 2
+ - uid: 12140
+ components:
+ - type: Transform
+ pos: 85.5,37.5
+ parent: 2
+ - uid: 12141
+ components:
+ - type: Transform
+ pos: 85.5,38.5
+ parent: 2
+ - uid: 12142
+ components:
+ - type: Transform
+ pos: 85.5,39.5
+ parent: 2
+ - uid: 12143
+ components:
+ - type: Transform
+ pos: 85.5,40.5
+ parent: 2
+ - uid: 12144
+ components:
+ - type: Transform
+ pos: 85.5,41.5
+ parent: 2
+ - uid: 12145
+ components:
+ - type: Transform
+ pos: 85.5,42.5
+ parent: 2
+ - uid: 12146
+ components:
+ - type: Transform
+ pos: 85.5,43.5
+ parent: 2
+ - uid: 12147
+ components:
+ - type: Transform
+ pos: 85.5,44.5
+ parent: 2
+ - uid: 12148
+ components:
+ - type: Transform
+ pos: 86.5,48.5
+ parent: 2
+ - uid: 12149
+ components:
+ - type: Transform
+ pos: 86.5,47.5
+ parent: 2
+ - uid: 12150
+ components:
+ - type: Transform
+ pos: 86.5,49.5
+ parent: 2
+ - uid: 12151
+ components:
+ - type: Transform
+ pos: 85.5,32.5
+ parent: 2
+ - uid: 12152
+ components:
+ - type: Transform
+ pos: 85.5,33.5
+ parent: 2
+ - uid: 12153
+ components:
+ - type: Transform
+ pos: 85.5,34.5
+ parent: 2
+ - uid: 12154
+ components:
+ - type: Transform
+ pos: 85.5,35.5
+ parent: 2
+ - uid: 12155
+ components:
+ - type: Transform
+ pos: 85.5,36.5
+ parent: 2
+ - uid: 12156
+ components:
+ - type: Transform
+ pos: 84.5,31.5
+ parent: 2
+ - uid: 12157
+ components:
+ - type: Transform
+ pos: 87.5,40.5
+ parent: 2
+ - uid: 12158
+ components:
+ - type: Transform
+ pos: 87.5,41.5
+ parent: 2
+ - uid: 12159
+ components:
+ - type: Transform
+ pos: 87.5,44.5
+ parent: 2
+ - uid: 12160
+ components:
+ - type: Transform
+ pos: 87.5,45.5
+ parent: 2
+ - uid: 12161
+ components:
+ - type: Transform
+ pos: 87.5,46.5
+ parent: 2
+ - uid: 12162
+ components:
+ - type: Transform
+ pos: 87.5,47.5
+ parent: 2
+ - uid: 12163
+ components:
+ - type: Transform
+ pos: 87.5,48.5
+ parent: 2
+ - uid: 12164
+ components:
+ - type: Transform
+ pos: 87.5,49.5
+ parent: 2
+ - uid: 12165
+ components:
+ - type: Transform
+ pos: 88.5,44.5
+ parent: 2
+ - uid: 12166
+ components:
+ - type: Transform
+ pos: 88.5,45.5
+ parent: 2
+ - uid: 12167
+ components:
+ - type: Transform
+ pos: 88.5,46.5
+ parent: 2
+ - uid: 12168
+ components:
+ - type: Transform
+ pos: 89.5,45.5
+ parent: 2
+ - uid: 12169
+ components:
+ - type: Transform
+ pos: 88.5,47.5
+ parent: 2
+ - uid: 12170
+ components:
+ - type: Transform
+ pos: 88.5,48.5
+ parent: 2
+ - uid: 12171
+ components:
+ - type: Transform
+ pos: 88.5,49.5
+ parent: 2
+ - uid: 12172
+ components:
+ - type: Transform
+ pos: 87.5,43.5
+ parent: 2
+ - uid: 12173
+ components:
+ - type: Transform
+ pos: 89.5,46.5
+ parent: 2
+ - uid: 12174
+ components:
+ - type: Transform
+ pos: 89.5,48.5
+ parent: 2
+ - uid: 12175
+ components:
+ - type: Transform
+ pos: 89.5,47.5
+ parent: 2
+ - uid: 12176
+ components:
+ - type: Transform
+ pos: 88.5,40.5
+ parent: 2
+ - uid: 12177
+ components:
+ - type: Transform
+ pos: 88.5,41.5
+ parent: 2
+ - uid: 12178
+ components:
+ - type: Transform
+ pos: 89.5,49.5
+ parent: 2
+ - uid: 12179
+ components:
+ - type: Transform
+ pos: 88.5,42.5
+ parent: 2
+ - uid: 12180
+ components:
+ - type: Transform
+ pos: 88.5,43.5
+ parent: 2
+ - uid: 12181
+ components:
+ - type: Transform
+ pos: 90.5,48.5
+ parent: 2
+ - uid: 12182
+ components:
+ - type: Transform
+ pos: 90.5,49.5
+ parent: 2
+ - uid: 12183
+ components:
+ - type: Transform
+ pos: 89.5,40.5
+ parent: 2
+ - uid: 12184
+ components:
+ - type: Transform
+ pos: 89.5,41.5
+ parent: 2
+ - uid: 12185
+ components:
+ - type: Transform
+ pos: 90.5,40.5
+ parent: 2
+ - uid: 12186
+ components:
+ - type: Transform
+ pos: 89.5,43.5
+ parent: 2
+ - uid: 12187
+ components:
+ - type: Transform
+ pos: 89.5,42.5
+ parent: 2
+ - uid: 12188
+ components:
+ - type: Transform
+ pos: 89.5,44.5
+ parent: 2
+ - uid: 12189
+ components:
+ - type: Transform
+ pos: 90.5,41.5
+ parent: 2
+ - uid: 12190
+ components:
+ - type: Transform
+ pos: 90.5,42.5
+ parent: 2
+ - uid: 12191
+ components:
+ - type: Transform
+ pos: 90.5,43.5
+ parent: 2
+ - uid: 12192
+ components:
+ - type: Transform
+ pos: 90.5,44.5
+ parent: 2
+ - uid: 12193
+ components:
+ - type: Transform
+ pos: 90.5,45.5
+ parent: 2
+ - uid: 12194
+ components:
+ - type: Transform
+ pos: 90.5,46.5
+ parent: 2
+ - uid: 12195
+ components:
+ - type: Transform
+ pos: 90.5,47.5
+ parent: 2
+ - uid: 12196
+ components:
+ - type: Transform
+ pos: 87.5,42.5
+ parent: 2
+ - uid: 12197
+ components:
+ - type: Transform
+ pos: 87.5,39.5
+ parent: 2
+ - uid: 12198
+ components:
+ - type: Transform
+ pos: 87.5,38.5
+ parent: 2
+ - uid: 12199
+ components:
+ - type: Transform
+ pos: 88.5,39.5
+ parent: 2
+ - uid: 12200
+ components:
+ - type: Transform
+ pos: 91.5,48.5
+ parent: 2
+ - uid: 12201
+ components:
+ - type: Transform
+ pos: 91.5,53.5
+ parent: 2
+ - uid: 12202
+ components:
+ - type: Transform
+ pos: 91.5,54.5
+ parent: 2
+ - uid: 12203
+ components:
+ - type: Transform
+ pos: 91.5,56.5
+ parent: 2
+ - uid: 12204
+ components:
+ - type: Transform
+ pos: 91.5,55.5
+ parent: 2
+ - uid: 12205
+ components:
+ - type: Transform
+ pos: 91.5,57.5
+ parent: 2
+ - uid: 12206
+ components:
+ - type: Transform
+ pos: 91.5,45.5
+ parent: 2
+ - uid: 12207
+ components:
+ - type: Transform
+ pos: 91.5,46.5
+ parent: 2
+ - uid: 12208
+ components:
+ - type: Transform
+ pos: 91.5,47.5
+ parent: 2
+ - uid: 12209
+ components:
+ - type: Transform
+ pos: 91.5,49.5
+ parent: 2
+ - uid: 12210
+ components:
+ - type: Transform
+ pos: 91.5,50.5
+ parent: 2
+ - uid: 12211
+ components:
+ - type: Transform
+ pos: 91.5,51.5
+ parent: 2
+ - uid: 12212
+ components:
+ - type: Transform
+ pos: 91.5,52.5
+ parent: 2
+ - uid: 12213
+ components:
+ - type: Transform
+ pos: 92.5,54.5
+ parent: 2
+ - uid: 12214
+ components:
+ - type: Transform
+ pos: 92.5,55.5
+ parent: 2
+ - uid: 12215
+ components:
+ - type: Transform
+ pos: 92.5,56.5
+ parent: 2
+ - uid: 12216
+ components:
+ - type: Transform
+ pos: 92.5,57.5
+ parent: 2
+ - uid: 12217
+ components:
+ - type: Transform
+ pos: 92.5,47.5
+ parent: 2
+ - uid: 12218
+ components:
+ - type: Transform
+ pos: 92.5,49.5
+ parent: 2
+ - uid: 12219
+ components:
+ - type: Transform
+ pos: 92.5,50.5
+ parent: 2
+ - uid: 12220
+ components:
+ - type: Transform
+ pos: 92.5,51.5
+ parent: 2
+ - uid: 12221
+ components:
+ - type: Transform
+ pos: 92.5,52.5
+ parent: 2
+ - uid: 12222
+ components:
+ - type: Transform
+ pos: 92.5,53.5
+ parent: 2
+ - uid: 12223
+ components:
+ - type: Transform
+ pos: 92.5,48.5
+ parent: 2
+ - uid: 12224
+ components:
+ - type: Transform
+ pos: 93.5,48.5
+ parent: 2
+ - uid: 12225
+ components:
+ - type: Transform
+ pos: 94.5,49.5
+ parent: 2
+ - uid: 12226
+ components:
+ - type: Transform
+ pos: 94.5,50.5
+ parent: 2
+ - uid: 12227
+ components:
+ - type: Transform
+ pos: 94.5,51.5
+ parent: 2
+ - uid: 12228
+ components:
+ - type: Transform
+ pos: 94.5,52.5
+ parent: 2
+ - uid: 12229
+ components:
+ - type: Transform
+ pos: 94.5,53.5
+ parent: 2
+ - uid: 12230
+ components:
+ - type: Transform
+ pos: 94.5,54.5
+ parent: 2
+ - uid: 12231
+ components:
+ - type: Transform
+ pos: 94.5,56.5
+ parent: 2
+ - uid: 12232
+ components:
+ - type: Transform
+ pos: 93.5,49.5
+ parent: 2
+ - uid: 12233
+ components:
+ - type: Transform
+ pos: 93.5,50.5
+ parent: 2
+ - uid: 12234
+ components:
+ - type: Transform
+ pos: 93.5,51.5
+ parent: 2
+ - uid: 12235
+ components:
+ - type: Transform
+ pos: 93.5,52.5
+ parent: 2
+ - uid: 12236
+ components:
+ - type: Transform
+ pos: 93.5,53.5
+ parent: 2
+ - uid: 12237
+ components:
+ - type: Transform
+ pos: 93.5,54.5
+ parent: 2
+ - uid: 12238
+ components:
+ - type: Transform
+ pos: 94.5,55.5
+ parent: 2
+ - uid: 12239
+ components:
+ - type: Transform
+ pos: 93.5,55.5
+ parent: 2
+ - uid: 12240
+ components:
+ - type: Transform
+ pos: 93.5,56.5
+ parent: 2
+ - uid: 12241
+ components:
+ - type: Transform
+ pos: 90.5,51.5
+ parent: 2
+ - uid: 12242
+ components:
+ - type: Transform
+ pos: 90.5,50.5
+ parent: 2
+ - uid: 12243
+ components:
+ - type: Transform
+ pos: 89.5,50.5
+ parent: 2
+ - uid: 12244
+ components:
+ - type: Transform
+ pos: 88.5,50.5
+ parent: 2
+ - uid: 12245
+ components:
+ - type: Transform
+ pos: 95.5,50.5
+ parent: 2
+ - uid: 12246
+ components:
+ - type: Transform
+ pos: 95.5,53.5
+ parent: 2
+ - uid: 12247
+ components:
+ - type: Transform
+ pos: 95.5,55.5
+ parent: 2
+ - uid: 12248
+ components:
+ - type: Transform
+ pos: 95.5,56.5
+ parent: 2
+ - uid: 12249
+ components:
+ - type: Transform
+ pos: 97.5,51.5
+ parent: 2
+ - uid: 12250
+ components:
+ - type: Transform
+ pos: 97.5,52.5
+ parent: 2
+ - uid: 12251
+ components:
+ - type: Transform
+ pos: 97.5,53.5
+ parent: 2
+ - uid: 12252
+ components:
+ - type: Transform
+ pos: 97.5,54.5
+ parent: 2
+ - uid: 12253
+ components:
+ - type: Transform
+ pos: 97.5,55.5
+ parent: 2
+ - uid: 12255
+ components:
+ - type: Transform
+ pos: 96.5,52.5
+ parent: 2
+ - uid: 12256
+ components:
+ - type: Transform
+ pos: 96.5,53.5
+ parent: 2
+ - uid: 12257
+ components:
+ - type: Transform
+ pos: 96.5,54.5
+ parent: 2
+ - uid: 12258
+ components:
+ - type: Transform
+ pos: 96.5,55.5
+ parent: 2
+ - uid: 12259
+ components:
+ - type: Transform
+ pos: 96.5,56.5
+ parent: 2
+ - uid: 12260
+ components:
+ - type: Transform
+ pos: 95.5,51.5
+ parent: 2
+ - uid: 12261
+ components:
+ - type: Transform
+ pos: 95.5,52.5
+ parent: 2
+ - uid: 12262
+ components:
+ - type: Transform
+ pos: 96.5,51.5
+ parent: 2
+ - uid: 12263
+ components:
+ - type: Transform
+ pos: 95.5,54.5
+ parent: 2
+ - uid: 12272
+ components:
+ - type: Transform
+ pos: 98.5,54.5
+ parent: 2
+ - uid: 12273
+ components:
+ - type: Transform
+ pos: 98.5,53.5
+ parent: 2
+ - uid: 12276
+ components:
+ - type: Transform
+ pos: 99.5,54.5
+ parent: 2
+ - uid: 12277
+ components:
+ - type: Transform
+ pos: 99.5,53.5
+ parent: 2
+ - uid: 12281
+ components:
+ - type: Transform
+ pos: 100.5,54.5
+ parent: 2
+ - uid: 12283
+ components:
+ - type: Transform
+ pos: 100.5,53.5
+ parent: 2
+ - uid: 12284
+ components:
+ - type: Transform
+ pos: 99.5,52.5
+ parent: 2
+ - uid: 12285
+ components:
+ - type: Transform
+ pos: 98.5,52.5
+ parent: 2
+ - uid: 12288
+ components:
+ - type: Transform
+ pos: 101.5,54.5
+ parent: 2
+ - uid: 12289
+ components:
+ - type: Transform
+ pos: 101.5,53.5
+ parent: 2
+ - uid: 12291
+ components:
+ - type: Transform
+ pos: 102.5,55.5
+ parent: 2
+ - uid: 12292
+ components:
+ - type: Transform
+ pos: 102.5,54.5
+ parent: 2
+ - uid: 12293
+ components:
+ - type: Transform
+ pos: 102.5,53.5
+ parent: 2
+ - uid: 12294
+ components:
+ - type: Transform
+ pos: 108.5,54.5
+ parent: 2
+ - uid: 12295
+ components:
+ - type: Transform
+ pos: 108.5,56.5
+ parent: 2
+ - uid: 12296
+ components:
+ - type: Transform
+ pos: 108.5,55.5
+ parent: 2
+ - uid: 12297
+ components:
+ - type: Transform
+ pos: 103.5,54.5
+ parent: 2
+ - uid: 12298
+ components:
+ - type: Transform
+ pos: 103.5,55.5
+ parent: 2
+ - uid: 12300
+ components:
+ - type: Transform
+ pos: 104.5,54.5
+ parent: 2
+ - uid: 12301
+ components:
+ - type: Transform
+ pos: 104.5,55.5
+ parent: 2
+ - uid: 12302
+ components:
+ - type: Transform
+ pos: 105.5,54.5
+ parent: 2
+ - uid: 12303
+ components:
+ - type: Transform
+ pos: 105.5,55.5
+ parent: 2
+ - uid: 12304
+ components:
+ - type: Transform
+ pos: 105.5,56.5
+ parent: 2
+ - uid: 12305
+ components:
+ - type: Transform
+ pos: 106.5,54.5
+ parent: 2
+ - uid: 12306
+ components:
+ - type: Transform
+ pos: 106.5,55.5
+ parent: 2
+ - uid: 12307
+ components:
+ - type: Transform
+ pos: 104.5,56.5
+ parent: 2
+ - uid: 12308
+ components:
+ - type: Transform
+ pos: 107.5,54.5
+ parent: 2
+ - uid: 12309
+ components:
+ - type: Transform
+ pos: 106.5,56.5
+ parent: 2
+ - uid: 12310
+ components:
+ - type: Transform
+ pos: 107.5,55.5
+ parent: 2
+ - uid: 12311
+ components:
+ - type: Transform
+ pos: 107.5,56.5
+ parent: 2
+ - uid: 12312
+ components:
+ - type: Transform
+ pos: 108.5,57.5
+ parent: 2
+ - uid: 12313
+ components:
+ - type: Transform
+ pos: 108.5,58.5
+ parent: 2
+ - uid: 12314
+ components:
+ - type: Transform
+ pos: 107.5,57.5
+ parent: 2
+ - uid: 12315
+ components:
+ - type: Transform
+ pos: 107.5,58.5
+ parent: 2
+ - uid: 12316
+ components:
+ - type: Transform
+ pos: 106.5,58.5
+ parent: 2
+ - uid: 12317
+ components:
+ - type: Transform
+ pos: 106.5,57.5
+ parent: 2
+ - uid: 12318
+ components:
+ - type: Transform
+ pos: 105.5,57.5
+ parent: 2
+ - uid: 12319
+ components:
+ - type: Transform
+ pos: 108.5,59.5
+ parent: 2
+ - uid: 12320
+ components:
+ - type: Transform
+ pos: 107.5,59.5
+ parent: 2
+- proto: CP14BiomeSpawnerCaveEmpty
+ entities:
+ - uid: 465
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,57.5
+ parent: 2
+ - uid: 955
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,59.5
+ parent: 2
+ - uid: 2378
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,68.5
+ parent: 2
+ - uid: 2424
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,68.5
+ parent: 2
+ - uid: 2425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,72.5
+ parent: 2
+ - uid: 2427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,72.5
+ parent: 2
+ - uid: 2579
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -105.5,72.5
+ parent: 2
+ - uid: 2580
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -106.5,72.5
+ parent: 2
+ - uid: 2581
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -107.5,72.5
+ parent: 2
+ - uid: 2583
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,57.5
+ parent: 2
+ - uid: 2585
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -104.5,71.5
+ parent: 2
+ - uid: 2586
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,66.5
+ parent: 2
+ - uid: 2644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -111.5,70.5
+ parent: 2
+ - uid: 2645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -111.5,69.5
+ parent: 2
+ - uid: 2724
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,71.5
+ parent: 2
+ - uid: 2771
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -105.5,71.5
+ parent: 2
+ - uid: 2774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -106.5,71.5
+ parent: 2
+ - uid: 2849
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,69.5
+ parent: 2
+ - uid: 2850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,66.5
+ parent: 2
+ - uid: 2851
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,68.5
+ parent: 2
+ - uid: 2854
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,69.5
+ parent: 2
+ - uid: 2855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,70.5
+ parent: 2
+ - uid: 2856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,71.5
+ parent: 2
+ - uid: 2857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,67.5
+ parent: 2
+ - uid: 2858
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -101.5,70.5
+ parent: 2
+ - uid: 2860
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -113.5,36.5
+ parent: 2
+ - uid: 2861
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -112.5,36.5
+ parent: 2
+ - uid: 2915
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,102.5
+ parent: 2
+ - uid: 2916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,108.5
+ parent: 2
+ - uid: 2917
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,102.5
+ parent: 2
+ - uid: 2918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,99.5
+ parent: 2
+ - uid: 2970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,103.5
+ parent: 2
+ - uid: 2972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,106.5
+ parent: 2
+ - uid: 2973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,105.5
+ parent: 2
+ - uid: 2974
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,101.5
+ parent: 2
+ - uid: 2975
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,106.5
+ parent: 2
+ - uid: 2976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,101.5
+ parent: 2
+ - uid: 2978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,104.5
+ parent: 2
+ - uid: 2979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,105.5
+ parent: 2
+ - uid: 2990
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,104.5
+ parent: 2
+ - uid: 2991
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,107.5
+ parent: 2
+ - uid: 2993
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,105.5
+ parent: 2
+ - uid: 2999
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,103.5
+ parent: 2
+ - uid: 3000
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,102.5
+ parent: 2
+ - uid: 3001
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,105.5
+ parent: 2
+ - uid: 3002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,104.5
+ parent: 2
+ - uid: 3003
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,100.5
+ parent: 2
+ - uid: 3004
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,100.5
+ parent: 2
+ - uid: 3005
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,103.5
+ parent: 2
+ - uid: 3006
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,101.5
+ parent: 2
+ - uid: 3007
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,102.5
+ parent: 2
+ - uid: 3008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,104.5
+ parent: 2
+ - uid: 3009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,107.5
+ parent: 2
+ - uid: 3010
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,108.5
+ parent: 2
+ - uid: 3012
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,108.5
+ parent: 2
+ - uid: 3013
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,103.5
+ parent: 2
+ - uid: 3014
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,101.5
+ parent: 2
+ - uid: 3015
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,107.5
+ parent: 2
+ - uid: 3016
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,106.5
+ parent: 2
+ - uid: 3073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -111.5,36.5
+ parent: 2
+ - uid: 3074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -111.5,35.5
+ parent: 2
+ - uid: 3098
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -111.5,34.5
+ parent: 2
+ - uid: 3099
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -110.5,36.5
+ parent: 2
+ - uid: 3100
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -110.5,35.5
+ parent: 2
+ - uid: 3101
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -110.5,34.5
+ parent: 2
+ - uid: 3102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -109.5,36.5
+ parent: 2
+ - uid: 3103
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -109.5,35.5
+ parent: 2
+ - uid: 3104
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,57.5
+ parent: 2
+ - uid: 3105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,58.5
+ parent: 2
+ - uid: 3143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,106.5
+ parent: 2
+ - uid: 3145
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,107.5
+ parent: 2
+ - uid: 3740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,58.5
+ parent: 2
+ - uid: 3742
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,59.5
+ parent: 2
+ - uid: 3743
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,58.5
+ parent: 2
+ - uid: 3744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,57.5
+ parent: 2
+ - uid: 3746
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -107.5,68.5
+ parent: 2
+ - uid: 3747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -107.5,69.5
+ parent: 2
+ - uid: 3748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -107.5,70.5
+ parent: 2
+ - uid: 3749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -107.5,71.5
+ parent: 2
+ - uid: 3750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,68.5
+ parent: 2
+ - uid: 3751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,69.5
+ parent: 2
+ - uid: 3752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,70.5
+ parent: 2
+ - uid: 3753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,71.5
+ parent: 2
+ - uid: 3754
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,68.5
+ parent: 2
+ - uid: 3755
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,69.5
+ parent: 2
+ - uid: 3756
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,70.5
+ parent: 2
+ - uid: 3757
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -109.5,71.5
+ parent: 2
+ - uid: 3758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,68.5
+ parent: 2
+ - uid: 3759
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,69.5
+ parent: 2
+ - uid: 3760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,70.5
+ parent: 2
+ - uid: 3761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,71.5
+ parent: 2
+ - uid: 3762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,66.5
+ parent: 2
+ - uid: 3763
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -99.5,67.5
+ parent: 2
+ - uid: 3775
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,56.5
+ parent: 2
+ - uid: 3776
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,56.5
+ parent: 2
+ - uid: 3778
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,71.5
+ parent: 2
+ - uid: 3780
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,71.5
+ parent: 2
+ - uid: 3824
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,73.5
+ parent: 2
+ - uid: 3825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,72.5
+ parent: 2
+ - uid: 3826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,71.5
+ parent: 2
+ - uid: 3827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,73.5
+ parent: 2
+ - uid: 3828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,72.5
+ parent: 2
+ - uid: 3829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,72.5
+ parent: 2
+ - uid: 3830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,73.5
+ parent: 2
+ - uid: 3831
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,71.5
+ parent: 2
+ - uid: 3832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,73.5
+ parent: 2
+ - uid: 3833
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,72.5
+ parent: 2
+ - uid: 5588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,-17.5
+ parent: 2
+ - uid: 5589
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,-18.5
+ parent: 2
+ - uid: 5592
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -106.5,-18.5
+ parent: 2
+ - uid: 8860
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -80.5,-46.5
+ parent: 2
+ - uid: 8875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -80.5,-45.5
+ parent: 2
+ - uid: 8882
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,-47.5
+ parent: 2
+ - uid: 8883
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -82.5,-45.5
+ parent: 2
+ - uid: 8884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-42.5
+ parent: 2
+ - uid: 8885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-41.5
+ parent: 2
+ - uid: 8886
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-40.5
+ parent: 2
+ - uid: 8887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-39.5
+ parent: 2
+ - uid: 8888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,-38.5
+ parent: 2
+ - uid: 8889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,-37.5
+ parent: 2
+ - uid: 8890
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-37.5
+ parent: 2
+ - uid: 8891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-38.5
+ parent: 2
+ - uid: 8892
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,-35.5
+ parent: 2
+ - uid: 8893
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -82.5,-35.5
+ parent: 2
+ - uid: 8894
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,-35.5
+ parent: 2
+ - uid: 8895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,-36.5
+ parent: 2
+ - uid: 8896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -84.5,-35.5
+ parent: 2
+ - uid: 8897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -84.5,-34.5
+ parent: 2
+ - uid: 8898
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,-35.5
+ parent: 2
+ - uid: 8899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,-34.5
+ parent: 2
+ - uid: 8900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -86.5,-18.5
+ parent: 2
+ - uid: 8901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -86.5,-17.5
+ parent: 2
+ - uid: 8902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -86.5,-16.5
+ parent: 2
+ - uid: 8903
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -87.5,-17.5
+ parent: 2
+ - uid: 8904
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -87.5,-16.5
+ parent: 2
+ - uid: 8905
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -87.5,-15.5
+ parent: 2
+ - uid: 8906
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -88.5,-17.5
+ parent: 2
+ - uid: 8907
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,-16.5
+ parent: 2
+ - uid: 8908
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,-15.5
+ parent: 2
+ - uid: 8909
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -84.5,-14.5
+ parent: 2
+ - uid: 8910
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -84.5,-15.5
+ parent: 2
+ - uid: 8911
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,-17.5
+ parent: 2
+ - uid: 8912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,-18.5
+ parent: 2
+ - uid: 8913
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,43.5
+ parent: 2
+ - uid: 8914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,47.5
+ parent: 2
+ - uid: 8915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,48.5
+ parent: 2
+ - uid: 8916
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,43.5
+ parent: 2
+ - uid: 8917
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,44.5
+ parent: 2
+ - uid: 9438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -149.5,52.5
+ parent: 2
+ - uid: 9439
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -149.5,51.5
+ parent: 2
+ - uid: 9440
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -150.5,52.5
+ parent: 2
+ - uid: 9441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -150.5,51.5
+ parent: 2
+ - uid: 9443
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -152.5,49.5
+ parent: 2
+ - uid: 9444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -150.5,50.5
+ parent: 2
+ - uid: 9447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -151.5,50.5
+ parent: 2
+ - uid: 9448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -151.5,49.5
+ parent: 2
+ - uid: 9449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -152.5,50.5
+ parent: 2
+ - uid: 9473
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -136.5,70.5
+ parent: 2
+ - uid: 9502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -135.5,70.5
+ parent: 2
+ - uid: 9532
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -141.5,73.5
+ parent: 2
+ - uid: 9533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -141.5,72.5
+ parent: 2
+ - uid: 9534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -142.5,73.5
+ parent: 2
+ - uid: 9535
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -143.5,72.5
+ parent: 2
+ - uid: 9536
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -140.5,70.5
+ parent: 2
+ - uid: 9537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -140.5,69.5
+ parent: 2
+ - uid: 9538
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -139.5,70.5
+ parent: 2
+ - uid: 9539
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -139.5,69.5
+ parent: 2
+ - uid: 9540
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -141.5,71.5
+ parent: 2
+ - uid: 9541
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -137.5,68.5
+ parent: 2
+ - uid: 9542
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -137.5,67.5
+ parent: 2
+ - uid: 9543
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -134.5,69.5
+ parent: 2
+ - uid: 9544
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,69.5
+ parent: 2
+ - uid: 9545
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -135.5,71.5
+ parent: 2
+ - uid: 9546
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -134.5,70.5
+ parent: 2
+ - uid: 9547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -135.5,69.5
+ parent: 2
+ - uid: 9548
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -135.5,66.5
+ parent: 2
+ - uid: 9549
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -137.5,74.5
+ parent: 2
+ - uid: 9550
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -138.5,74.5
+ parent: 2
+ - uid: 9551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -139.5,74.5
+ parent: 2
+ - uid: 9552
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -140.5,74.5
+ parent: 2
+ - uid: 9553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -139.5,75.5
+ parent: 2
+ - uid: 9554
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -137.5,75.5
+ parent: 2
+ - uid: 9555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -136.5,75.5
+ parent: 2
+ - uid: 9556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -135.5,77.5
+ parent: 2
+ - uid: 9557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -135.5,78.5
+ parent: 2
+ - uid: 9558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -134.5,77.5
+ parent: 2
+ - uid: 9559
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -134.5,78.5
+ parent: 2
+ - uid: 9560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -136.5,79.5
+ parent: 2
+ - uid: 9561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -137.5,79.5
+ parent: 2
+ - uid: 9562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -138.5,79.5
+ parent: 2
+ - uid: 9563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -139.5,79.5
+ parent: 2
+ - uid: 9564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -140.5,79.5
+ parent: 2
+ - uid: 9565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -140.5,78.5
+ parent: 2
+ - uid: 9566
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -140.5,77.5
+ parent: 2
+ - uid: 9567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -141.5,78.5
+ parent: 2
+ - uid: 9568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -142.5,78.5
+ parent: 2
+ - uid: 9569
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -142.5,77.5
+ parent: 2
+ - uid: 9570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -141.5,77.5
+ parent: 2
+ - uid: 9571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -142.5,76.5
+ parent: 2
+ - uid: 9572
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -144.5,76.5
+ parent: 2
+ - uid: 9573
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -143.5,76.5
+ parent: 2
+ - uid: 9574
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -143.5,77.5
+ parent: 2
+ - uid: 9575
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -144.5,75.5
+ parent: 2
+ - uid: 9576
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -145.5,75.5
+ parent: 2
+ - uid: 9577
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-36.5
+ parent: 2
+ - uid: 9578
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-37.5
+ parent: 2
+ - uid: 9579
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-36.5
+ parent: 2
+ - uid: 9580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-37.5
+ parent: 2
+ - uid: 9581
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-37.5
+ parent: 2
+ - uid: 9582
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-38.5
+ parent: 2
+ - uid: 9583
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-40.5
+ parent: 2
+ - uid: 9584
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-39.5
+ parent: 2
+ - uid: 9585
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-41.5
+ parent: 2
+ - uid: 9586
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,-39.5
+ parent: 2
+ - uid: 9587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,-40.5
+ parent: 2
+ - uid: 9588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,-39.5
+ parent: 2
+ - uid: 9589
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,-40.5
+ parent: 2
+ - uid: 9590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,-41.5
+ parent: 2
+ - uid: 9591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,-39.5
+ parent: 2
+ - uid: 9592
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-42.5
+ parent: 2
+ - uid: 9593
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-41.5
+ parent: 2
+ - uid: 9594
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-41.5
+ parent: 2
+ - uid: 9595
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-39.5
+ parent: 2
+ - uid: 9596
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-38.5
+ parent: 2
+ - uid: 9597
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-40.5
+ parent: 2
+ - uid: 9598
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,-39.5
+ parent: 2
+ - uid: 9599
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,-39.5
+ parent: 2
+ - uid: 9600
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,-39.5
+ parent: 2
+ - uid: 9601
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,-39.5
+ parent: 2
+ - uid: 9602
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,-37.5
+ parent: 2
+ - uid: 9603
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,-38.5
+ parent: 2
+ - uid: 9604
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,-37.5
+ parent: 2
+ - uid: 9605
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,-38.5
+ parent: 2
+ - uid: 9606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,-37.5
+ parent: 2
+ - uid: 9607
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,-38.5
+ parent: 2
+ - uid: 9608
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,-37.5
+ parent: 2
+ - uid: 9609
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,-38.5
+ parent: 2
+ - uid: 9610
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-50.5
+ parent: 2
+ - uid: 9611
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-51.5
+ parent: 2
+ - uid: 9612
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,-47.5
+ parent: 2
+ - uid: 9613
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,-48.5
+ parent: 2
+ - uid: 9614
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,-49.5
+ parent: 2
+ - uid: 9615
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,-45.5
+ parent: 2
+ - uid: 9616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,-46.5
+ parent: 2
+ - uid: 9617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,-46.5
+ parent: 2
+ - uid: 9618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-52.5
+ parent: 2
+ - uid: 9929
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,-40.5
+ parent: 2
+ - uid: 9930
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,-40.5
+ parent: 2
+ - uid: 9931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,-39.5
+ parent: 2
+ - uid: 9951
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-39.5
+ parent: 2
+ - uid: 10717
+ components:
+ - type: Transform
+ pos: 44.5,-37.5
+ parent: 2
+ - uid: 10718
+ components:
+ - type: Transform
+ pos: 45.5,-37.5
+ parent: 2
+ - uid: 10719
+ components:
+ - type: Transform
+ pos: 45.5,-36.5
+ parent: 2
+ - uid: 10720
+ components:
+ - type: Transform
+ pos: 46.5,-36.5
+ parent: 2
+ - uid: 10721
+ components:
+ - type: Transform
+ pos: 46.5,-37.5
+ parent: 2
+ - uid: 10722
+ components:
+ - type: Transform
+ pos: 46.5,-35.5
+ parent: 2
+ - uid: 10723
+ components:
+ - type: Transform
+ pos: 47.5,-35.5
+ parent: 2
+ - uid: 10724
+ components:
+ - type: Transform
+ pos: 47.5,-36.5
+ parent: 2
+ - uid: 10725
+ components:
+ - type: Transform
+ pos: 48.5,-35.5
+ parent: 2
+ - uid: 10726
+ components:
+ - type: Transform
+ pos: 48.5,-34.5
+ parent: 2
+ - uid: 10727
+ components:
+ - type: Transform
+ pos: 49.5,-33.5
+ parent: 2
+ - uid: 10728
+ components:
+ - type: Transform
+ pos: 49.5,-34.5
+ parent: 2
+ - uid: 10729
+ components:
+ - type: Transform
+ pos: 50.5,-32.5
+ parent: 2
+ - uid: 10730
+ components:
+ - type: Transform
+ pos: 50.5,-31.5
+ parent: 2
+ - uid: 10731
+ components:
+ - type: Transform
+ pos: 49.5,-31.5
+ parent: 2
+ - uid: 10732
+ components:
+ - type: Transform
+ pos: 49.5,-32.5
+ parent: 2
+ - uid: 10733
+ components:
+ - type: Transform
+ pos: 51.5,-29.5
+ parent: 2
+ - uid: 10734
+ components:
+ - type: Transform
+ pos: 50.5,-30.5
+ parent: 2
+ - uid: 10735
+ components:
+ - type: Transform
+ pos: 50.5,-29.5
+ parent: 2
+ - uid: 10736
+ components:
+ - type: Transform
+ pos: 51.5,-30.5
+ parent: 2
+ - uid: 10737
+ components:
+ - type: Transform
+ pos: 52.5,-28.5
+ parent: 2
+ - uid: 10738
+ components:
+ - type: Transform
+ pos: 53.5,-27.5
+ parent: 2
+ - uid: 10739
+ components:
+ - type: Transform
+ pos: 52.5,-27.5
+ parent: 2
+ - uid: 10740
+ components:
+ - type: Transform
+ pos: 51.5,-28.5
+ parent: 2
+ - uid: 10741
+ components:
+ - type: Transform
+ pos: 52.5,-29.5
+ parent: 2
+ - uid: 10742
+ components:
+ - type: Transform
+ pos: 53.5,-28.5
+ parent: 2
+- proto: CP14BiomeSpawnerForest
+ entities:
+ - uid: 725
+ components:
+ - type: Transform
+ pos: 48.5,-1.5
+ parent: 2
+ - uid: 1673
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,128.5
+ parent: 2
+ - uid: 1769
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,127.5
+ parent: 2
+ - uid: 1770
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,125.5
+ parent: 2
+ - uid: 1771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,128.5
+ parent: 2
+ - uid: 1772
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,126.5
+ parent: 2
+ - uid: 1773
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,128.5
+ parent: 2
+ - uid: 1774
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,129.5
+ parent: 2
+ - uid: 1775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,129.5
+ parent: 2
+ - uid: 1776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,129.5
+ parent: 2
+ - uid: 1780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,128.5
+ parent: 2
+ - uid: 1781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,129.5
+ parent: 2
+ - uid: 1782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,128.5
+ parent: 2
+ - uid: 1783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,129.5
+ parent: 2
+ - uid: 1784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,128.5
+ parent: 2
+ - uid: 1785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,129.5
+ parent: 2
+ - uid: 1786
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,128.5
+ parent: 2
+ - uid: 1787
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,128.5
+ parent: 2
+ - uid: 1788
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,129.5
+ parent: 2
+ - uid: 1789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,128.5
+ parent: 2
+ - uid: 1790
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,129.5
+ parent: 2
+ - uid: 1791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,129.5
+ parent: 2
+ - uid: 1793
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,131.5
+ parent: 2
+ - uid: 1794
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,132.5
+ parent: 2
+ - uid: 1795
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,130.5
+ parent: 2
+ - uid: 1796
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,131.5
+ parent: 2
+ - uid: 1797
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,131.5
+ parent: 2
+ - uid: 1798
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,132.5
+ parent: 2
+ - uid: 1799
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,131.5
+ parent: 2
+ - uid: 1800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,132.5
+ parent: 2
+ - uid: 1801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,130.5
+ parent: 2
+ - uid: 1802
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,132.5
+ parent: 2
+ - uid: 1803
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,130.5
+ parent: 2
+ - uid: 1804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,131.5
+ parent: 2
+ - uid: 1805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,132.5
+ parent: 2
+ - uid: 1806
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,130.5
+ parent: 2
+ - uid: 1807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,130.5
+ parent: 2
+ - uid: 1808
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,131.5
+ parent: 2
+ - uid: 1809
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,132.5
+ parent: 2
+ - uid: 1810
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,130.5
+ parent: 2
+ - uid: 1811
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,131.5
+ parent: 2
+ - uid: 1812
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,132.5
+ parent: 2
+ - uid: 1813
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,130.5
+ parent: 2
+ - uid: 1823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,135.5
+ parent: 2
+ - uid: 1824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,134.5
+ parent: 2
+ - uid: 1825
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,134.5
+ parent: 2
+ - uid: 1826
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,133.5
+ parent: 2
+ - uid: 1827
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,134.5
+ parent: 2
+ - uid: 1828
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,135.5
+ parent: 2
+ - uid: 1829
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,133.5
+ parent: 2
+ - uid: 1830
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,134.5
+ parent: 2
+ - uid: 1831
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,133.5
+ parent: 2
+ - uid: 1832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,134.5
+ parent: 2
+ - uid: 1833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,133.5
+ parent: 2
+ - uid: 1834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,134.5
+ parent: 2
+ - uid: 1835
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,135.5
+ parent: 2
+ - uid: 1836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,133.5
+ parent: 2
+ - uid: 1837
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,134.5
+ parent: 2
+ - uid: 1838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,135.5
+ parent: 2
+ - uid: 1839
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,133.5
+ parent: 2
+ - uid: 1840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,134.5
+ parent: 2
+ - uid: 1841
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,133.5
+ parent: 2
+ - uid: 1842
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,135.5
+ parent: 2
+ - uid: 1843
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,133.5
+ parent: 2
+ - uid: 1844
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,134.5
+ parent: 2
+ - uid: 1845
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,135.5
+ parent: 2
+ - uid: 1846
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,133.5
+ parent: 2
+ - uid: 1847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,134.5
+ parent: 2
+ - uid: 1848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,135.5
+ parent: 2
+ - uid: 1849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,135.5
+ parent: 2
+ - uid: 1850
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,134.5
+ parent: 2
+ - uid: 1851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,135.5
+ parent: 2
+ - uid: 1852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,133.5
+ parent: 2
+ - uid: 1853
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,133.5
+ parent: 2
+ - uid: 1854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,135.5
+ parent: 2
+ - uid: 1855
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,134.5
+ parent: 2
+ - uid: 1856
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,135.5
+ parent: 2
+ - uid: 1857
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,135.5
+ parent: 2
+ - uid: 1858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,133.5
+ parent: 2
+ - uid: 1859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,134.5
+ parent: 2
+ - uid: 1860
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,135.5
+ parent: 2
+ - uid: 1861
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,133.5
+ parent: 2
+ - uid: 1862
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,134.5
+ parent: 2
+ - uid: 1863
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,135.5
+ parent: 2
+ - uid: 1864
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,133.5
+ parent: 2
+ - uid: 1871
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,132.5
+ parent: 2
+ - uid: 1872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,132.5
+ parent: 2
+ - uid: 1873
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,132.5
+ parent: 2
+ - uid: 1874
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,131.5
+ parent: 2
+ - uid: 1875
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,132.5
+ parent: 2
+ - uid: 1876
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,131.5
+ parent: 2
+ - uid: 1877
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,132.5
+ parent: 2
+ - uid: 1878
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,131.5
+ parent: 2
+ - uid: 1879
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,132.5
+ parent: 2
+ - uid: 1880
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,131.5
+ parent: 2
+ - uid: 1881
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,132.5
+ parent: 2
+ - uid: 1882
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,131.5
+ parent: 2
+ - uid: 1883
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,132.5
+ parent: 2
+ - uid: 1884
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,131.5
+ parent: 2
+ - uid: 1885
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,132.5
+ parent: 2
+ - uid: 1886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,131.5
+ parent: 2
+ - uid: 1887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,132.5
+ parent: 2
+ - uid: 1888
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,131.5
+ parent: 2
+ - uid: 1889
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,131.5
+ parent: 2
+ - uid: 1890
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,130.5
+ parent: 2
+ - uid: 1891
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,131.5
+ parent: 2
+ - uid: 1892
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,130.5
+ parent: 2
+ - uid: 1893
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,128.5
+ parent: 2
+ - uid: 1894
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,130.5
+ parent: 2
+ - uid: 1895
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,129.5
+ parent: 2
+ - uid: 1896
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,128.5
+ parent: 2
+ - uid: 1897
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,130.5
+ parent: 2
+ - uid: 1898
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,129.5
+ parent: 2
+ - uid: 1899
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,128.5
+ parent: 2
+ - uid: 1900
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,129.5
+ parent: 2
+ - uid: 1901
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,128.5
+ parent: 2
+ - uid: 1902
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,130.5
+ parent: 2
+ - uid: 1903
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,129.5
+ parent: 2
+ - uid: 1904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,128.5
+ parent: 2
+ - uid: 1905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,130.5
+ parent: 2
+ - uid: 1906
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,129.5
+ parent: 2
+ - uid: 1907
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,130.5
+ parent: 2
+ - uid: 1908
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,128.5
+ parent: 2
+ - uid: 1909
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,130.5
+ parent: 2
+ - uid: 1910
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,129.5
+ parent: 2
+ - uid: 1911
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,128.5
+ parent: 2
+ - uid: 1912
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,130.5
+ parent: 2
+ - uid: 1913
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,129.5
+ parent: 2
+ - uid: 1914
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,128.5
+ parent: 2
+ - uid: 1915
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,130.5
+ parent: 2
+ - uid: 1916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,129.5
+ parent: 2
+ - uid: 1917
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,133.5
+ parent: 2
+ - uid: 1918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,134.5
+ parent: 2
+ - uid: 1919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,133.5
+ parent: 2
+ - uid: 1920
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,134.5
+ parent: 2
+ - uid: 1921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,132.5
+ parent: 2
+ - uid: 1922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,133.5
+ parent: 2
+ - uid: 1923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,132.5
+ parent: 2
+ - uid: 1924
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,131.5
+ parent: 2
+ - uid: 1925
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,130.5
+ parent: 2
+ - uid: 1926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,133.5
+ parent: 2
+ - uid: 1927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,130.5
+ parent: 2
+ - uid: 1928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,131.5
+ parent: 2
+ - uid: 1929
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,130.5
+ parent: 2
+ - uid: 1930
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,131.5
+ parent: 2
+ - uid: 1931
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,130.5
+ parent: 2
+ - uid: 1932
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,131.5
+ parent: 2
+ - uid: 1933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,127.5
+ parent: 2
+ - uid: 1934
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,126.5
+ parent: 2
+ - uid: 1935
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,125.5
+ parent: 2
+ - uid: 1936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,121.5
+ parent: 2
+ - uid: 1937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,122.5
+ parent: 2
+ - uid: 1938
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,122.5
+ parent: 2
+ - uid: 1939
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,123.5
+ parent: 2
+ - uid: 1940
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,121.5
+ parent: 2
+ - uid: 1941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,123.5
+ parent: 2
+ - uid: 1942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,124.5
+ parent: 2
+ - uid: 1943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,125.5
+ parent: 2
+ - uid: 1944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,124.5
+ parent: 2
+ - uid: 1945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,125.5
+ parent: 2
+ - uid: 1946
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,125.5
+ parent: 2
+ - uid: 1947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,126.5
+ parent: 2
+ - uid: 1948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,127.5
+ parent: 2
+ - uid: 1949
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,126.5
+ parent: 2
+ - uid: 1950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,129.5
+ parent: 2
+ - uid: 1951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,128.5
+ parent: 2
+ - uid: 1952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,127.5
+ parent: 2
+ - uid: 1953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,127.5
+ parent: 2
+ - uid: 1954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,127.5
+ parent: 2
+ - uid: 1955
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,126.5
+ parent: 2
+ - uid: 1956
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,124.5
+ parent: 2
+ - uid: 1957
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,130.5
+ parent: 2
+ - uid: 1958
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,129.5
+ parent: 2
+ - uid: 1959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,128.5
+ parent: 2
+ - uid: 1960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,127.5
+ parent: 2
+ - uid: 1961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,127.5
+ parent: 2
+ - uid: 1962
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,127.5
+ parent: 2
+ - uid: 1963
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,127.5
+ parent: 2
+ - uid: 1964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,127.5
+ parent: 2
+ - uid: 1969
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,136.5
+ parent: 2
+ - uid: 1970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,136.5
+ parent: 2
+ - uid: 1971
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,136.5
+ parent: 2
+ - uid: 1972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,136.5
+ parent: 2
+ - uid: 1973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,136.5
+ parent: 2
+ - uid: 1974
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,136.5
+ parent: 2
+ - uid: 1975
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,136.5
+ parent: 2
+ - uid: 1976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,136.5
+ parent: 2
+ - uid: 1977
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,136.5
+ parent: 2
+ - uid: 1978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,136.5
+ parent: 2
+ - uid: 1979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,136.5
+ parent: 2
+ - uid: 1980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,136.5
+ parent: 2
+ - uid: 1981
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,136.5
+ parent: 2
+ - uid: 1982
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,137.5
+ parent: 2
+ - uid: 1983
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,137.5
+ parent: 2
+ - uid: 1984
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,137.5
+ parent: 2
+ - uid: 1985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,137.5
+ parent: 2
+ - uid: 1986
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,137.5
+ parent: 2
+ - uid: 1987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,137.5
+ parent: 2
+ - uid: 1988
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,137.5
+ parent: 2
+ - uid: 1989
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,137.5
+ parent: 2
+ - uid: 1990
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,137.5
+ parent: 2
+ - uid: 1991
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,137.5
+ parent: 2
+ - uid: 2060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,138.5
+ parent: 2
+ - uid: 2061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,138.5
+ parent: 2
+ - uid: 2062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,138.5
+ parent: 2
+ - uid: 2063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,138.5
+ parent: 2
+ - uid: 2064
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,138.5
+ parent: 2
+ - uid: 2065
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,138.5
+ parent: 2
+ - uid: 2066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,138.5
+ parent: 2
+ - uid: 2067
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,138.5
+ parent: 2
+ - uid: 2078
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,136.5
+ parent: 2
+ - uid: 2079
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,133.5
+ parent: 2
+ - uid: 2080
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,136.5
+ parent: 2
+ - uid: 2081
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,135.5
+ parent: 2
+ - uid: 2082
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,134.5
+ parent: 2
+ - uid: 2083
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,133.5
+ parent: 2
+ - uid: 2084
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,135.5
+ parent: 2
+ - uid: 2085
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,134.5
+ parent: 2
+ - uid: 2086
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,133.5
+ parent: 2
+ - uid: 2087
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,136.5
+ parent: 2
+ - uid: 2088
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,135.5
+ parent: 2
+ - uid: 2089
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,134.5
+ parent: 2
+ - uid: 2090
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,133.5
+ parent: 2
+ - uid: 2091
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,136.5
+ parent: 2
+ - uid: 2092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,135.5
+ parent: 2
+ - uid: 2093
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,134.5
+ parent: 2
+ - uid: 2094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,135.5
+ parent: 2
+ - uid: 2095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,134.5
+ parent: 2
+ - uid: 2096
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,133.5
+ parent: 2
+ - uid: 2097
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,132.5
+ parent: 2
+ - uid: 2098
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,131.5
+ parent: 2
+ - uid: 2099
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,130.5
+ parent: 2
+ - uid: 2100
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,129.5
+ parent: 2
+ - uid: 2101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,128.5
+ parent: 2
+ - uid: 2102
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,130.5
+ parent: 2
+ - uid: 2103
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,131.5
+ parent: 2
+ - uid: 2104
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,132.5
+ parent: 2
+ - uid: 2105
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,128.5
+ parent: 2
+ - uid: 2106
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,129.5
+ parent: 2
+ - uid: 2107
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,130.5
+ parent: 2
+ - uid: 2108
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,131.5
+ parent: 2
+ - uid: 2109
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,132.5
+ parent: 2
+ - uid: 2110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,128.5
+ parent: 2
+ - uid: 2111
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,129.5
+ parent: 2
+ - uid: 2112
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,131.5
+ parent: 2
+ - uid: 2113
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,132.5
+ parent: 2
+ - uid: 2114
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,134.5
+ parent: 2
+ - uid: 2115
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,133.5
+ parent: 2
+ - uid: 2116
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,132.5
+ parent: 2
+ - uid: 2117
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,131.5
+ parent: 2
+ - uid: 2118
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,130.5
+ parent: 2
+ - uid: 2119
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,128.5
+ parent: 2
+ - uid: 2120
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,134.5
+ parent: 2
+ - uid: 2121
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,133.5
+ parent: 2
+ - uid: 2122
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,132.5
+ parent: 2
+ - uid: 2123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,131.5
+ parent: 2
+ - uid: 2124
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,130.5
+ parent: 2
+ - uid: 2125
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,129.5
+ parent: 2
+ - uid: 2126
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,129.5
+ parent: 2
+ - uid: 2127
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,128.5
+ parent: 2
+ - uid: 2128
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,130.5
+ parent: 2
+ - uid: 2129
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,129.5
+ parent: 2
+ - uid: 2130
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,128.5
+ parent: 2
+ - uid: 2132
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,131.5
+ parent: 2
+ - uid: 2133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,130.5
+ parent: 2
+ - uid: 2134
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,129.5
+ parent: 2
+ - uid: 2135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,128.5
+ parent: 2
+ - uid: 2138
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,130.5
+ parent: 2
+ - uid: 2139
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,129.5
+ parent: 2
+ - uid: 2140
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,128.5
+ parent: 2
+ - uid: 2141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,132.5
+ parent: 2
+ - uid: 2142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,131.5
+ parent: 2
+ - uid: 2143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,130.5
+ parent: 2
+ - uid: 2144
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,129.5
+ parent: 2
+ - uid: 2145
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,128.5
+ parent: 2
+ - uid: 2146
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,132.5
+ parent: 2
+ - uid: 2147
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,131.5
+ parent: 2
+ - uid: 2153
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,127.5
+ parent: 2
+ - uid: 2154
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,127.5
+ parent: 2
+ - uid: 2155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,127.5
+ parent: 2
+ - uid: 2156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,126.5
+ parent: 2
+ - uid: 2157
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,127.5
+ parent: 2
+ - uid: 2158
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,126.5
+ parent: 2
+ - uid: 2159
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,127.5
+ parent: 2
+ - uid: 2160
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,126.5
+ parent: 2
+ - uid: 2161
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,127.5
+ parent: 2
+ - uid: 2162
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,126.5
+ parent: 2
+ - uid: 2163
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,127.5
+ parent: 2
+ - uid: 2164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,126.5
+ parent: 2
+ - uid: 2165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,126.5
+ parent: 2
+ - uid: 2166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,127.5
+ parent: 2
+ - uid: 2167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,126.5
+ parent: 2
+ - uid: 2168
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,127.5
+ parent: 2
+ - uid: 2169
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,126.5
+ parent: 2
+ - uid: 2170
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,127.5
+ parent: 2
+ - uid: 2171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,126.5
+ parent: 2
+ - uid: 2172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,127.5
+ parent: 2
+ - uid: 2173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,126.5
+ parent: 2
+ - uid: 2174
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,127.5
+ parent: 2
+ - uid: 2175
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,126.5
+ parent: 2
+ - uid: 2176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,127.5
+ parent: 2
+ - uid: 2177
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,126.5
+ parent: 2
+ - uid: 2178
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,125.5
+ parent: 2
+ - uid: 2179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,127.5
+ parent: 2
+ - uid: 2180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,126.5
+ parent: 2
+ - uid: 2181
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,125.5
+ parent: 2
+ - uid: 2182
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,127.5
+ parent: 2
+ - uid: 2183
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,126.5
+ parent: 2
+ - uid: 2184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,125.5
+ parent: 2
+ - uid: 2185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,126.5
+ parent: 2
+ - uid: 2186
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,125.5
+ parent: 2
+ - uid: 2187
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,125.5
+ parent: 2
+ - uid: 2188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,124.5
+ parent: 2
+ - uid: 2189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,125.5
+ parent: 2
+ - uid: 2190
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,124.5
+ parent: 2
+ - uid: 2191
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,125.5
+ parent: 2
+ - uid: 2192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,124.5
+ parent: 2
+ - uid: 2193
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,124.5
+ parent: 2
+ - uid: 2194
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,125.5
+ parent: 2
+ - uid: 2195
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,124.5
+ parent: 2
+ - uid: 2196
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,125.5
+ parent: 2
+ - uid: 2197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,124.5
+ parent: 2
+ - uid: 2198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,125.5
+ parent: 2
+ - uid: 2199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,124.5
+ parent: 2
+ - uid: 2200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,125.5
+ parent: 2
+ - uid: 2201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,124.5
+ parent: 2
+ - uid: 2202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,125.5
+ parent: 2
+ - uid: 2203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,122.5
+ parent: 2
+ - uid: 2204
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,121.5
+ parent: 2
+ - uid: 2205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,121.5
+ parent: 2
+ - uid: 2206
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,123.5
+ parent: 2
+ - uid: 2207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,122.5
+ parent: 2
+ - uid: 2208
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,121.5
+ parent: 2
+ - uid: 2209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,123.5
+ parent: 2
+ - uid: 2210
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,122.5
+ parent: 2
+ - uid: 2211
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,121.5
+ parent: 2
+ - uid: 2212
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,123.5
+ parent: 2
+ - uid: 2213
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,122.5
+ parent: 2
+ - uid: 2214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,121.5
+ parent: 2
+ - uid: 2215
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,123.5
+ parent: 2
+ - uid: 2216
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,122.5
+ parent: 2
+ - uid: 2217
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,121.5
+ parent: 2
+ - uid: 2218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,123.5
+ parent: 2
+ - uid: 2219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,122.5
+ parent: 2
+ - uid: 2220
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,123.5
+ parent: 2
+ - uid: 2221
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,122.5
+ parent: 2
+ - uid: 2222
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,121.5
+ parent: 2
+ - uid: 2223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,123.5
+ parent: 2
+ - uid: 2224
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,118.5
+ parent: 2
+ - uid: 2225
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,119.5
+ parent: 2
+ - uid: 2226
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,116.5
+ parent: 2
+ - uid: 2227
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,117.5
+ parent: 2
+ - uid: 2228
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,120.5
+ parent: 2
+ - uid: 2229
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,119.5
+ parent: 2
+ - uid: 2230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,118.5
+ parent: 2
+ - uid: 2231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,116.5
+ parent: 2
+ - uid: 2232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,117.5
+ parent: 2
+ - uid: 2233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,118.5
+ parent: 2
+ - uid: 2234
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,119.5
+ parent: 2
+ - uid: 2235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,120.5
+ parent: 2
+ - uid: 2236
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,116.5
+ parent: 2
+ - uid: 2237
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,117.5
+ parent: 2
+ - uid: 2238
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,116.5
+ parent: 2
+ - uid: 2239
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,117.5
+ parent: 2
+ - uid: 2240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,118.5
+ parent: 2
+ - uid: 2241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,119.5
+ parent: 2
+ - uid: 2242
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,120.5
+ parent: 2
+ - uid: 2243
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,117.5
+ parent: 2
+ - uid: 2244
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,118.5
+ parent: 2
+ - uid: 2245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,119.5
+ parent: 2
+ - uid: 2246
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,120.5
+ parent: 2
+ - uid: 2247
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,116.5
+ parent: 2
+ - uid: 2248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,117.5
+ parent: 2
+ - uid: 2249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,118.5
+ parent: 2
+ - uid: 2250
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,119.5
+ parent: 2
+ - uid: 2251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,120.5
+ parent: 2
+ - uid: 2252
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,119.5
+ parent: 2
+ - uid: 2254
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,120.5
+ parent: 2
+ - uid: 2255
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,117.5
+ parent: 2
+ - uid: 2256
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,118.5
+ parent: 2
+ - uid: 2257
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,119.5
+ parent: 2
+ - uid: 2258
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,120.5
+ parent: 2
+ - uid: 2260
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,117.5
+ parent: 2
+ - uid: 2261
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,118.5
+ parent: 2
+ - uid: 2262
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,119.5
+ parent: 2
+ - uid: 2263
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,120.5
+ parent: 2
+ - uid: 2266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,118.5
+ parent: 2
+ - uid: 2267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,117.5
+ parent: 2
+ - uid: 2268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,118.5
+ parent: 2
+ - uid: 2269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,119.5
+ parent: 2
+ - uid: 2270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,120.5
+ parent: 2
+ - uid: 2271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,117.5
+ parent: 2
+ - uid: 2272
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,118.5
+ parent: 2
+ - uid: 2273
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,119.5
+ parent: 2
+ - uid: 2274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,120.5
+ parent: 2
+ - uid: 2276
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,121.5
+ parent: 2
+ - uid: 2277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,123.5
+ parent: 2
+ - uid: 2278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,124.5
+ parent: 2
+ - uid: 2279
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,121.5
+ parent: 2
+ - uid: 2280
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,122.5
+ parent: 2
+ - uid: 2281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,123.5
+ parent: 2
+ - uid: 2282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,124.5
+ parent: 2
+ - uid: 2283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,122.5
+ parent: 2
+ - uid: 2284
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,124.5
+ parent: 2
+ - uid: 2285
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,125.5
+ parent: 2
+ - uid: 2286
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,128.5
+ parent: 2
+ - uid: 3834
+ components:
+ - type: Transform
+ pos: 95.5,77.5
+ parent: 2
+ - uid: 4737
+ components:
+ - type: Transform
+ pos: 95.5,76.5
+ parent: 2
+ - uid: 4740
+ components:
+ - type: Transform
+ pos: 96.5,76.5
+ parent: 2
+ - uid: 4743
+ components:
+ - type: Transform
+ pos: 96.5,75.5
+ parent: 2
+ - uid: 4755
+ components:
+ - type: Transform
+ pos: 97.5,75.5
+ parent: 2
+ - uid: 4760
+ components:
+ - type: Transform
+ pos: 95.5,75.5
+ parent: 2
+ - uid: 4764
+ components:
+ - type: Transform
+ pos: 95.5,74.5
+ parent: 2
+ - uid: 4829
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,76.5
+ parent: 2
+ - uid: 4830
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,77.5
+ parent: 2
+ - uid: 4835
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,76.5
+ parent: 2
+ - uid: 4887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,76.5
+ parent: 2
+ - uid: 4888
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,77.5
+ parent: 2
+ - uid: 4889
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,76.5
+ parent: 2
+ - uid: 4890
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,77.5
+ parent: 2
+ - uid: 4891
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,76.5
+ parent: 2
+ - uid: 4892
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,77.5
+ parent: 2
+ - uid: 4893
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,76.5
+ parent: 2
+ - uid: 4894
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,77.5
+ parent: 2
+ - uid: 4895
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,76.5
+ parent: 2
+ - uid: 4896
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,77.5
+ parent: 2
+ - uid: 4897
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,77.5
+ parent: 2
+ - uid: 4898
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,76.5
+ parent: 2
+ - uid: 4899
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,77.5
+ parent: 2
+ - uid: 4900
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,76.5
+ parent: 2
+ - uid: 4901
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,77.5
+ parent: 2
+ - uid: 4902
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,76.5
+ parent: 2
+ - uid: 4903
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,77.5
+ parent: 2
+ - uid: 4904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,76.5
+ parent: 2
+ - uid: 4905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,77.5
+ parent: 2
+ - uid: 4906
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,76.5
+ parent: 2
+ - uid: 4907
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,77.5
+ parent: 2
+ - uid: 4908
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,76.5
+ parent: 2
+ - uid: 4909
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,77.5
+ parent: 2
+ - uid: 4910
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,75.5
+ parent: 2
+ - uid: 4911
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,75.5
+ parent: 2
+ - uid: 4912
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,75.5
+ parent: 2
+ - uid: 4916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,75.5
+ parent: 2
+ - uid: 4917
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,75.5
+ parent: 2
+ - uid: 4918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,75.5
+ parent: 2
+ - uid: 4919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,75.5
+ parent: 2
+ - uid: 4924
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,74.5
+ parent: 2
+ - uid: 4926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,74.5
+ parent: 2
+ - uid: 4927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,74.5
+ parent: 2
+ - uid: 4928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,74.5
+ parent: 2
+ - uid: 4929
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,74.5
+ parent: 2
+ - uid: 4930
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,74.5
+ parent: 2
+ - uid: 4931
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,74.5
+ parent: 2
+ - uid: 4932
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,74.5
+ parent: 2
+ - uid: 4933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,71.5
+ parent: 2
+ - uid: 4934
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,71.5
+ parent: 2
+ - uid: 4935
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,73.5
+ parent: 2
+ - uid: 4936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,72.5
+ parent: 2
+ - uid: 4937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,71.5
+ parent: 2
+ - uid: 4938
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,73.5
+ parent: 2
+ - uid: 4939
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,72.5
+ parent: 2
+ - uid: 4940
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,73.5
+ parent: 2
+ - uid: 4941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,72.5
+ parent: 2
+ - uid: 4942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,71.5
+ parent: 2
+ - uid: 4943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,71.5
+ parent: 2
+ - uid: 4944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,72.5
+ parent: 2
+ - uid: 4945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,73.5
+ parent: 2
+ - uid: 4946
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,71.5
+ parent: 2
+ - uid: 4947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,72.5
+ parent: 2
+ - uid: 4948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,73.5
+ parent: 2
+ - uid: 4949
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,72.5
+ parent: 2
+ - uid: 4950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,71.5
+ parent: 2
+ - uid: 4951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,73.5
+ parent: 2
+ - uid: 4952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,72.5
+ parent: 2
+ - uid: 4953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,71.5
+ parent: 2
+ - uid: 4954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,73.5
+ parent: 2
+ - uid: 4955
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,71.5
+ parent: 2
+ - uid: 4956
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,72.5
+ parent: 2
+ - uid: 4957
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,73.5
+ parent: 2
+ - uid: 4958
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,74.5
+ parent: 2
+ - uid: 4959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,75.5
+ parent: 2
+ - uid: 4960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,72.5
+ parent: 2
+ - uid: 4961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,73.5
+ parent: 2
+ - uid: 4962
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,74.5
+ parent: 2
+ - uid: 4963
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,75.5
+ parent: 2
+ - uid: 4964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,75.5
+ parent: 2
+ - uid: 4965
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,72.5
+ parent: 2
+ - uid: 4966
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,73.5
+ parent: 2
+ - uid: 4967
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,74.5
+ parent: 2
+ - uid: 4968
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,75.5
+ parent: 2
+ - uid: 4969
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,72.5
+ parent: 2
+ - uid: 4970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,73.5
+ parent: 2
+ - uid: 4971
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,74.5
+ parent: 2
+ - uid: 4972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,75.5
+ parent: 2
+ - uid: 4973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,76.5
+ parent: 2
+ - uid: 4974
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,77.5
+ parent: 2
+ - uid: 4975
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,73.5
+ parent: 2
+ - uid: 4976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,74.5
+ parent: 2
+ - uid: 4977
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,75.5
+ parent: 2
+ - uid: 4978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,76.5
+ parent: 2
+ - uid: 4979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,77.5
+ parent: 2
+ - uid: 4980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,73.5
+ parent: 2
+ - uid: 4981
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,74.5
+ parent: 2
+ - uid: 4982
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,75.5
+ parent: 2
+ - uid: 4983
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,76.5
+ parent: 2
+ - uid: 4984
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,77.5
+ parent: 2
+ - uid: 4985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,73.5
+ parent: 2
+ - uid: 4986
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,74.5
+ parent: 2
+ - uid: 6362
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,-23.5
+ parent: 2
+ - uid: 6376
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -72.5,-21.5
+ parent: 2
+ - uid: 6384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -66.5,-19.5
+ parent: 2
+ - uid: 6434
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -64.5,-27.5
+ parent: 2
+ - uid: 6457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-28.5
+ parent: 2
+ - uid: 6469
+ components:
+ - type: Transform
+ pos: -60.5,-17.5
+ parent: 2
+ - uid: 6470
+ components:
+ - type: Transform
+ pos: -60.5,-16.5
+ parent: 2
+ - uid: 6471
+ components:
+ - type: Transform
+ pos: -60.5,-15.5
+ parent: 2
+ - uid: 6476
+ components:
+ - type: Transform
+ pos: -61.5,-16.5
+ parent: 2
+ - uid: 6477
+ components:
+ - type: Transform
+ pos: -61.5,-15.5
+ parent: 2
+ - uid: 6484
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -62.5,-15.5
+ parent: 2
+ - uid: 6494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -62.5,-21.5
+ parent: 2
+ - uid: 6548
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -66.5,-14.5
+ parent: 2
+ - uid: 6574
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -62.5,-7.5
+ parent: 2
+ - uid: 6658
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -62.5,-25.5
+ parent: 2
+ - uid: 6664
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,-24.5
+ parent: 2
+ - uid: 6675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,3.5
+ parent: 2
+ - uid: 6725
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -69.5,-2.5
+ parent: 2
+ - uid: 6727
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -68.5,-1.5
+ parent: 2
+ - uid: 6729
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -72.5,1.5
+ parent: 2
+ - uid: 6768
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -84.5,18.5
+ parent: 2
+ - uid: 6784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -63.5,5.5
+ parent: 2
+ - uid: 7097
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -48.5,38.5
+ parent: 2
+ - uid: 7135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -54.5,47.5
+ parent: 2
+ - uid: 7166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,45.5
+ parent: 2
+ - uid: 7205
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -48.5,52.5
+ parent: 2
+ - uid: 7226
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,52.5
+ parent: 2
+ - uid: 7295
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -30.5,62.5
+ parent: 2
+ - uid: 7308
+ components:
+ - type: Transform
+ pos: -40.5,56.5
+ parent: 2
+ - uid: 7309
+ components:
+ - type: Transform
+ pos: -40.5,55.5
+ parent: 2
+ - uid: 7310
+ components:
+ - type: Transform
+ pos: -42.5,57.5
+ parent: 2
+ - uid: 7311
+ components:
+ - type: Transform
+ pos: -42.5,56.5
+ parent: 2
+ - uid: 7312
+ components:
+ - type: Transform
+ pos: -42.5,55.5
+ parent: 2
+ - uid: 7313
+ components:
+ - type: Transform
+ pos: -41.5,57.5
+ parent: 2
+ - uid: 7314
+ components:
+ - type: Transform
+ pos: -41.5,56.5
+ parent: 2
+ - uid: 7315
+ components:
+ - type: Transform
+ pos: -41.5,55.5
+ parent: 2
+ - uid: 7316
+ components:
+ - type: Transform
+ pos: -40.5,57.5
+ parent: 2
+ - uid: 7317
+ components:
+ - type: Transform
+ pos: -40.5,54.5
+ parent: 2
+ - uid: 7318
+ components:
+ - type: Transform
+ pos: -39.5,55.5
+ parent: 2
+ - uid: 7319
+ components:
+ - type: Transform
+ pos: -39.5,54.5
+ parent: 2
+ - uid: 7320
+ components:
+ - type: Transform
+ pos: -37.5,55.5
+ parent: 2
+ - uid: 7321
+ components:
+ - type: Transform
+ pos: -38.5,54.5
+ parent: 2
+ - uid: 7322
+ components:
+ - type: Transform
+ pos: -37.5,54.5
+ parent: 2
+ - uid: 7323
+ components:
+ - type: Transform
+ pos: -38.5,55.5
+ parent: 2
+ - uid: 7324
+ components:
+ - type: Transform
+ pos: -31.5,52.5
+ parent: 2
+ - uid: 7325
+ components:
+ - type: Transform
+ pos: -31.5,51.5
+ parent: 2
+ - uid: 7326
+ components:
+ - type: Transform
+ pos: -33.5,53.5
+ parent: 2
+ - uid: 7327
+ components:
+ - type: Transform
+ pos: -33.5,52.5
+ parent: 2
+ - uid: 7328
+ components:
+ - type: Transform
+ pos: -33.5,51.5
+ parent: 2
+ - uid: 7329
+ components:
+ - type: Transform
+ pos: -32.5,53.5
+ parent: 2
+ - uid: 7330
+ components:
+ - type: Transform
+ pos: -32.5,52.5
+ parent: 2
+ - uid: 7331
+ components:
+ - type: Transform
+ pos: -32.5,51.5
+ parent: 2
+ - uid: 7332
+ components:
+ - type: Transform
+ pos: -31.5,53.5
+ parent: 2
+ - uid: 7333
+ components:
+ - type: Transform
+ pos: -31.5,50.5
+ parent: 2
+ - uid: 7334
+ components:
+ - type: Transform
+ pos: -32.5,50.5
+ parent: 2
+ - uid: 7335
+ components:
+ - type: Transform
+ pos: -33.5,50.5
+ parent: 2
+ - uid: 7336
+ components:
+ - type: Transform
+ pos: -34.5,51.5
+ parent: 2
+ - uid: 7337
+ components:
+ - type: Transform
+ pos: -34.5,50.5
+ parent: 2
+ - uid: 7338
+ components:
+ - type: Transform
+ pos: -34.5,53.5
+ parent: 2
+ - uid: 7339
+ components:
+ - type: Transform
+ pos: -33.5,57.5
+ parent: 2
+ - uid: 7340
+ components:
+ - type: Transform
+ pos: -33.5,58.5
+ parent: 2
+ - uid: 7341
+ components:
+ - type: Transform
+ pos: -34.5,57.5
+ parent: 2
+ - uid: 7342
+ components:
+ - type: Transform
+ pos: -34.5,58.5
+ parent: 2
+ - uid: 7343
+ components:
+ - type: Transform
+ pos: -35.5,57.5
+ parent: 2
+ - uid: 7344
+ components:
+ - type: Transform
+ pos: -35.5,58.5
+ parent: 2
+ - uid: 7345
+ components:
+ - type: Transform
+ pos: -36.5,59.5
+ parent: 2
+ - uid: 7346
+ components:
+ - type: Transform
+ pos: -36.5,60.5
+ parent: 2
+ - uid: 7347
+ components:
+ - type: Transform
+ pos: -37.5,59.5
+ parent: 2
+ - uid: 7348
+ components:
+ - type: Transform
+ pos: -37.5,60.5
+ parent: 2
+ - uid: 7349
+ components:
+ - type: Transform
+ pos: -38.5,59.5
+ parent: 2
+ - uid: 7350
+ components:
+ - type: Transform
+ pos: -38.5,60.5
+ parent: 2
+ - uid: 7351
+ components:
+ - type: Transform
+ pos: -38.5,58.5
+ parent: 2
+ - uid: 7352
+ components:
+ - type: Transform
+ pos: -38.5,57.5
+ parent: 2
+ - uid: 7353
+ components:
+ - type: Transform
+ pos: -31.5,55.5
+ parent: 2
+ - uid: 7354
+ components:
+ - type: Transform
+ pos: -31.5,56.5
+ parent: 2
+ - uid: 7355
+ components:
+ - type: Transform
+ pos: -31.5,57.5
+ parent: 2
+ - uid: 7356
+ components:
+ - type: Transform
+ pos: -31.5,58.5
+ parent: 2
+ - uid: 7357
+ components:
+ - type: Transform
+ pos: -31.5,59.5
+ parent: 2
+ - uid: 7358
+ components:
+ - type: Transform
+ pos: -30.5,55.5
+ parent: 2
+ - uid: 7359
+ components:
+ - type: Transform
+ pos: -30.5,56.5
+ parent: 2
+ - uid: 7360
+ components:
+ - type: Transform
+ pos: -30.5,57.5
+ parent: 2
+ - uid: 7361
+ components:
+ - type: Transform
+ pos: -30.5,58.5
+ parent: 2
+ - uid: 7362
+ components:
+ - type: Transform
+ pos: -30.5,59.5
+ parent: 2
+ - uid: 7363
+ components:
+ - type: Transform
+ pos: -29.5,59.5
+ parent: 2
+ - uid: 7364
+ components:
+ - type: Transform
+ pos: -29.5,60.5
+ parent: 2
+ - uid: 7365
+ components:
+ - type: Transform
+ pos: -28.5,59.5
+ parent: 2
+ - uid: 7366
+ components:
+ - type: Transform
+ pos: -28.5,60.5
+ parent: 2
+ - uid: 7367
+ components:
+ - type: Transform
+ pos: -28.5,61.5
+ parent: 2
+ - uid: 7368
+ components:
+ - type: Transform
+ pos: -28.5,62.5
+ parent: 2
+ - uid: 7369
+ components:
+ - type: Transform
+ pos: -27.5,60.5
+ parent: 2
+ - uid: 7370
+ components:
+ - type: Transform
+ pos: -27.5,61.5
+ parent: 2
+ - uid: 7371
+ components:
+ - type: Transform
+ pos: -27.5,62.5
+ parent: 2
+ - uid: 7372
+ components:
+ - type: Transform
+ pos: -27.5,63.5
+ parent: 2
+ - uid: 7373
+ components:
+ - type: Transform
+ pos: -26.5,62.5
+ parent: 2
+ - uid: 7374
+ components:
+ - type: Transform
+ pos: -26.5,63.5
+ parent: 2
+ - uid: 7375
+ components:
+ - type: Transform
+ pos: -25.5,66.5
+ parent: 2
+ - uid: 7376
+ components:
+ - type: Transform
+ pos: -25.5,65.5
+ parent: 2
+ - uid: 7377
+ components:
+ - type: Transform
+ pos: -26.5,66.5
+ parent: 2
+ - uid: 7378
+ components:
+ - type: Transform
+ pos: -26.5,65.5
+ parent: 2
+ - uid: 7379
+ components:
+ - type: Transform
+ pos: -26.5,64.5
+ parent: 2
+ - uid: 7380
+ components:
+ - type: Transform
+ pos: -27.5,65.5
+ parent: 2
+ - uid: 7381
+ components:
+ - type: Transform
+ pos: -27.5,64.5
+ parent: 2
+ - uid: 7382
+ components:
+ - type: Transform
+ pos: -24.5,63.5
+ parent: 2
+ - uid: 7383
+ components:
+ - type: Transform
+ pos: -25.5,64.5
+ parent: 2
+ - uid: 7384
+ components:
+ - type: Transform
+ pos: -25.5,63.5
+ parent: 2
+ - uid: 7385
+ components:
+ - type: Transform
+ pos: -24.5,64.5
+ parent: 2
+ - uid: 7386
+ components:
+ - type: Transform
+ pos: -20.5,60.5
+ parent: 2
+ - uid: 7387
+ components:
+ - type: Transform
+ pos: -20.5,61.5
+ parent: 2
+ - uid: 7388
+ components:
+ - type: Transform
+ pos: -19.5,60.5
+ parent: 2
+ - uid: 7389
+ components:
+ - type: Transform
+ pos: -19.5,61.5
+ parent: 2
+ - uid: 7390
+ components:
+ - type: Transform
+ pos: -18.5,60.5
+ parent: 2
+ - uid: 7391
+ components:
+ - type: Transform
+ pos: -18.5,61.5
+ parent: 2
+ - uid: 7392
+ components:
+ - type: Transform
+ pos: -17.5,61.5
+ parent: 2
+ - uid: 7393
+ components:
+ - type: Transform
+ pos: -22.5,59.5
+ parent: 2
+ - uid: 7394
+ components:
+ - type: Transform
+ pos: -22.5,58.5
+ parent: 2
+ - uid: 7395
+ components:
+ - type: Transform
+ pos: -23.5,59.5
+ parent: 2
+ - uid: 7396
+ components:
+ - type: Transform
+ pos: -23.5,58.5
+ parent: 2
+ - uid: 7397
+ components:
+ - type: Transform
+ pos: -24.5,59.5
+ parent: 2
+ - uid: 7398
+ components:
+ - type: Transform
+ pos: -24.5,58.5
+ parent: 2
+ - uid: 7399
+ components:
+ - type: Transform
+ pos: -33.5,56.5
+ parent: 2
+ - uid: 7400
+ components:
+ - type: Transform
+ pos: -33.5,55.5
+ parent: 2
+ - uid: 7401
+ components:
+ - type: Transform
+ pos: -34.5,56.5
+ parent: 2
+ - uid: 7402
+ components:
+ - type: Transform
+ pos: -34.5,55.5
+ parent: 2
+ - uid: 7403
+ components:
+ - type: Transform
+ pos: -35.5,56.5
+ parent: 2
+ - uid: 7404
+ components:
+ - type: Transform
+ pos: -35.5,55.5
+ parent: 2
+ - uid: 7405
+ components:
+ - type: Transform
+ pos: -36.5,56.5
+ parent: 2
+ - uid: 7406
+ components:
+ - type: Transform
+ pos: -36.5,55.5
+ parent: 2
+ - uid: 7407
+ components:
+ - type: Transform
+ pos: -32.5,56.5
+ parent: 2
+ - uid: 7408
+ components:
+ - type: Transform
+ pos: -32.5,58.5
+ parent: 2
+ - uid: 7409
+ components:
+ - type: Transform
+ pos: -35.5,59.5
+ parent: 2
+ - uid: 7410
+ components:
+ - type: Transform
+ pos: -34.5,60.5
+ parent: 2
+ - uid: 7411
+ components:
+ - type: Transform
+ pos: -33.5,59.5
+ parent: 2
+ - uid: 7412
+ components:
+ - type: Transform
+ pos: -34.5,59.5
+ parent: 2
+ - uid: 7413
+ components:
+ - type: Transform
+ pos: -79.5,-18.5
+ parent: 2
+ - uid: 7414
+ components:
+ - type: Transform
+ pos: -78.5,-21.5
+ parent: 2
+ - uid: 7415
+ components:
+ - type: Transform
+ pos: -78.5,-20.5
+ parent: 2
+ - uid: 7416
+ components:
+ - type: Transform
+ pos: -78.5,-19.5
+ parent: 2
+ - uid: 7417
+ components:
+ - type: Transform
+ pos: -78.5,-18.5
+ parent: 2
+ - uid: 7418
+ components:
+ - type: Transform
+ pos: -79.5,-19.5
+ parent: 2
+ - uid: 7419
+ components:
+ - type: Transform
+ pos: -79.5,-20.5
+ parent: 2
+ - uid: 7420
+ components:
+ - type: Transform
+ pos: -79.5,-21.5
+ parent: 2
+ - uid: 7421
+ components:
+ - type: Transform
+ pos: -80.5,-18.5
+ parent: 2
+ - uid: 7422
+ components:
+ - type: Transform
+ pos: -80.5,-19.5
+ parent: 2
+ - uid: 7423
+ components:
+ - type: Transform
+ pos: -80.5,-20.5
+ parent: 2
+ - uid: 7424
+ components:
+ - type: Transform
+ pos: -80.5,-21.5
+ parent: 2
+ - uid: 7425
+ components:
+ - type: Transform
+ pos: -76.5,-17.5
+ parent: 2
+ - uid: 7426
+ components:
+ - type: Transform
+ pos: -76.5,-16.5
+ parent: 2
+ - uid: 7427
+ components:
+ - type: Transform
+ pos: -76.5,-15.5
+ parent: 2
+ - uid: 7428
+ components:
+ - type: Transform
+ pos: -75.5,-19.5
+ parent: 2
+ - uid: 7429
+ components:
+ - type: Transform
+ pos: -75.5,-18.5
+ parent: 2
+ - uid: 7430
+ components:
+ - type: Transform
+ pos: -75.5,-16.5
+ parent: 2
+ - uid: 7431
+ components:
+ - type: Transform
+ pos: -75.5,-15.5
+ parent: 2
+ - uid: 7432
+ components:
+ - type: Transform
+ pos: -75.5,-17.5
+ parent: 2
+ - uid: 7433
+ components:
+ - type: Transform
+ pos: -77.5,-19.5
+ parent: 2
+ - uid: 7434
+ components:
+ - type: Transform
+ pos: -77.5,-18.5
+ parent: 2
+ - uid: 7435
+ components:
+ - type: Transform
+ pos: -77.5,-17.5
+ parent: 2
+ - uid: 7436
+ components:
+ - type: Transform
+ pos: -77.5,-16.5
+ parent: 2
+ - uid: 7437
+ components:
+ - type: Transform
+ pos: -77.5,-15.5
+ parent: 2
+ - uid: 7438
+ components:
+ - type: Transform
+ pos: -76.5,-19.5
+ parent: 2
+ - uid: 7439
+ components:
+ - type: Transform
+ pos: -76.5,-18.5
+ parent: 2
+ - uid: 7440
+ components:
+ - type: Transform
+ pos: -74.5,-16.5
+ parent: 2
+ - uid: 7441
+ components:
+ - type: Transform
+ pos: -74.5,-15.5
+ parent: 2
+ - uid: 7442
+ components:
+ - type: Transform
+ pos: -74.5,-14.5
+ parent: 2
+ - uid: 7443
+ components:
+ - type: Transform
+ pos: -74.5,-13.5
+ parent: 2
+ - uid: 7444
+ components:
+ - type: Transform
+ pos: -74.5,-12.5
+ parent: 2
+ - uid: 7445
+ components:
+ - type: Transform
+ pos: -74.5,-11.5
+ parent: 2
+ - uid: 7446
+ components:
+ - type: Transform
+ pos: -74.5,-10.5
+ parent: 2
+ - uid: 7447
+ components:
+ - type: Transform
+ pos: -74.5,-9.5
+ parent: 2
+ - uid: 7448
+ components:
+ - type: Transform
+ pos: -75.5,-14.5
+ parent: 2
+ - uid: 7449
+ components:
+ - type: Transform
+ pos: -80.5,-13.5
+ parent: 2
+ - uid: 7450
+ components:
+ - type: Transform
+ pos: -80.5,-12.5
+ parent: 2
+ - uid: 7451
+ components:
+ - type: Transform
+ pos: -80.5,-11.5
+ parent: 2
+ - uid: 7452
+ components:
+ - type: Transform
+ pos: -80.5,-10.5
+ parent: 2
+ - uid: 7453
+ components:
+ - type: Transform
+ pos: -80.5,-9.5
+ parent: 2
+ - uid: 7454
+ components:
+ - type: Transform
+ pos: -78.5,-9.5
+ parent: 2
+ - uid: 7455
+ components:
+ - type: Transform
+ pos: -79.5,-14.5
+ parent: 2
+ - uid: 7456
+ components:
+ - type: Transform
+ pos: -79.5,-13.5
+ parent: 2
+ - uid: 7457
+ components:
+ - type: Transform
+ pos: -79.5,-12.5
+ parent: 2
+ - uid: 7458
+ components:
+ - type: Transform
+ pos: -79.5,-11.5
+ parent: 2
+ - uid: 7459
+ components:
+ - type: Transform
+ pos: -79.5,-10.5
+ parent: 2
+ - uid: 7460
+ components:
+ - type: Transform
+ pos: -79.5,-9.5
+ parent: 2
+ - uid: 7461
+ components:
+ - type: Transform
+ pos: -80.5,-14.5
+ parent: 2
+ - uid: 7462
+ components:
+ - type: Transform
+ pos: -77.5,-11.5
+ parent: 2
+ - uid: 7463
+ components:
+ - type: Transform
+ pos: -77.5,-10.5
+ parent: 2
+ - uid: 7464
+ components:
+ - type: Transform
+ pos: -77.5,-9.5
+ parent: 2
+ - uid: 7465
+ components:
+ - type: Transform
+ pos: -78.5,-14.5
+ parent: 2
+ - uid: 7466
+ components:
+ - type: Transform
+ pos: -78.5,-13.5
+ parent: 2
+ - uid: 7467
+ components:
+ - type: Transform
+ pos: -78.5,-12.5
+ parent: 2
+ - uid: 7468
+ components:
+ - type: Transform
+ pos: -78.5,-11.5
+ parent: 2
+ - uid: 7469
+ components:
+ - type: Transform
+ pos: -78.5,-10.5
+ parent: 2
+ - uid: 7470
+ components:
+ - type: Transform
+ pos: -76.5,-13.5
+ parent: 2
+ - uid: 7471
+ components:
+ - type: Transform
+ pos: -76.5,-12.5
+ parent: 2
+ - uid: 7472
+ components:
+ - type: Transform
+ pos: -76.5,-11.5
+ parent: 2
+ - uid: 7473
+ components:
+ - type: Transform
+ pos: -76.5,-10.5
+ parent: 2
+ - uid: 7474
+ components:
+ - type: Transform
+ pos: -76.5,-9.5
+ parent: 2
+ - uid: 7475
+ components:
+ - type: Transform
+ pos: -77.5,-14.5
+ parent: 2
+ - uid: 7476
+ components:
+ - type: Transform
+ pos: -77.5,-13.5
+ parent: 2
+ - uid: 7477
+ components:
+ - type: Transform
+ pos: -77.5,-12.5
+ parent: 2
+ - uid: 7478
+ components:
+ - type: Transform
+ pos: -75.5,-13.5
+ parent: 2
+ - uid: 7479
+ components:
+ - type: Transform
+ pos: -75.5,-12.5
+ parent: 2
+ - uid: 7480
+ components:
+ - type: Transform
+ pos: -75.5,-11.5
+ parent: 2
+ - uid: 7481
+ components:
+ - type: Transform
+ pos: -75.5,-10.5
+ parent: 2
+ - uid: 7482
+ components:
+ - type: Transform
+ pos: -76.5,-14.5
+ parent: 2
+ - uid: 7483
+ components:
+ - type: Transform
+ pos: -75.5,-9.5
+ parent: 2
+ - uid: 7484
+ components:
+ - type: Transform
+ pos: -81.5,-11.5
+ parent: 2
+ - uid: 7485
+ components:
+ - type: Transform
+ pos: -81.5,-10.5
+ parent: 2
+ - uid: 7486
+ components:
+ - type: Transform
+ pos: -82.5,-11.5
+ parent: 2
+ - uid: 7487
+ components:
+ - type: Transform
+ pos: -82.5,-10.5
+ parent: 2
+ - uid: 7488
+ components:
+ - type: Transform
+ pos: -80.5,-8.5
+ parent: 2
+ - uid: 7489
+ components:
+ - type: Transform
+ pos: -80.5,-7.5
+ parent: 2
+ - uid: 7490
+ components:
+ - type: Transform
+ pos: -80.5,-6.5
+ parent: 2
+ - uid: 7491
+ components:
+ - type: Transform
+ pos: -80.5,-5.5
+ parent: 2
+ - uid: 7492
+ components:
+ - type: Transform
+ pos: -79.5,-8.5
+ parent: 2
+ - uid: 7493
+ components:
+ - type: Transform
+ pos: -79.5,-7.5
+ parent: 2
+ - uid: 7494
+ components:
+ - type: Transform
+ pos: -79.5,-6.5
+ parent: 2
+ - uid: 7495
+ components:
+ - type: Transform
+ pos: -73.5,-5.5
+ parent: 2
+ - uid: 7496
+ components:
+ - type: Transform
+ pos: -75.5,-5.5
+ parent: 2
+ - uid: 7497
+ components:
+ - type: Transform
+ pos: -74.5,-8.5
+ parent: 2
+ - uid: 7498
+ components:
+ - type: Transform
+ pos: -74.5,-7.5
+ parent: 2
+ - uid: 7499
+ components:
+ - type: Transform
+ pos: -74.5,-6.5
+ parent: 2
+ - uid: 7500
+ components:
+ - type: Transform
+ pos: -74.5,-5.5
+ parent: 2
+ - uid: 7501
+ components:
+ - type: Transform
+ pos: -73.5,-8.5
+ parent: 2
+ - uid: 7502
+ components:
+ - type: Transform
+ pos: -73.5,-7.5
+ parent: 2
+ - uid: 7503
+ components:
+ - type: Transform
+ pos: -73.5,-6.5
+ parent: 2
+ - uid: 7504
+ components:
+ - type: Transform
+ pos: -77.5,-5.5
+ parent: 2
+ - uid: 7505
+ components:
+ - type: Transform
+ pos: -76.5,-8.5
+ parent: 2
+ - uid: 7506
+ components:
+ - type: Transform
+ pos: -76.5,-7.5
+ parent: 2
+ - uid: 7507
+ components:
+ - type: Transform
+ pos: -76.5,-6.5
+ parent: 2
+ - uid: 7508
+ components:
+ - type: Transform
+ pos: -76.5,-5.5
+ parent: 2
+ - uid: 7509
+ components:
+ - type: Transform
+ pos: -75.5,-8.5
+ parent: 2
+ - uid: 7510
+ components:
+ - type: Transform
+ pos: -75.5,-7.5
+ parent: 2
+ - uid: 7511
+ components:
+ - type: Transform
+ pos: -75.5,-6.5
+ parent: 2
+ - uid: 7512
+ components:
+ - type: Transform
+ pos: -79.5,-5.5
+ parent: 2
+ - uid: 7513
+ components:
+ - type: Transform
+ pos: -78.5,-8.5
+ parent: 2
+ - uid: 7514
+ components:
+ - type: Transform
+ pos: -78.5,-7.5
+ parent: 2
+ - uid: 7515
+ components:
+ - type: Transform
+ pos: -78.5,-6.5
+ parent: 2
+ - uid: 7516
+ components:
+ - type: Transform
+ pos: -78.5,-5.5
+ parent: 2
+ - uid: 7517
+ components:
+ - type: Transform
+ pos: -77.5,-8.5
+ parent: 2
+ - uid: 7518
+ components:
+ - type: Transform
+ pos: -77.5,-7.5
+ parent: 2
+ - uid: 7519
+ components:
+ - type: Transform
+ pos: -77.5,-6.5
+ parent: 2
+ - uid: 7520
+ components:
+ - type: Transform
+ pos: -73.5,-1.5
+ parent: 2
+ - uid: 7521
+ components:
+ - type: Transform
+ pos: -73.5,-0.5
+ parent: 2
+ - uid: 7522
+ components:
+ - type: Transform
+ pos: -73.5,0.5
+ parent: 2
+ - uid: 7523
+ components:
+ - type: Transform
+ pos: -79.5,-4.5
+ parent: 2
+ - uid: 7524
+ components:
+ - type: Transform
+ pos: -79.5,-3.5
+ parent: 2
+ - uid: 7525
+ components:
+ - type: Transform
+ pos: -79.5,-2.5
+ parent: 2
+ - uid: 7526
+ components:
+ - type: Transform
+ pos: -79.5,-1.5
+ parent: 2
+ - uid: 7527
+ components:
+ - type: Transform
+ pos: -79.5,-0.5
+ parent: 2
+ - uid: 7528
+ components:
+ - type: Transform
+ pos: -79.5,0.5
+ parent: 2
+ - uid: 7529
+ components:
+ - type: Transform
+ pos: -78.5,-4.5
+ parent: 2
+ - uid: 7530
+ components:
+ - type: Transform
+ pos: -74.5,-3.5
+ parent: 2
+ - uid: 7531
+ components:
+ - type: Transform
+ pos: -74.5,-2.5
+ parent: 2
+ - uid: 7532
+ components:
+ - type: Transform
+ pos: -74.5,-1.5
+ parent: 2
+ - uid: 7533
+ components:
+ - type: Transform
+ pos: -74.5,-0.5
+ parent: 2
+ - uid: 7534
+ components:
+ - type: Transform
+ pos: -74.5,0.5
+ parent: 2
+ - uid: 7535
+ components:
+ - type: Transform
+ pos: -73.5,-4.5
+ parent: 2
+ - uid: 7536
+ components:
+ - type: Transform
+ pos: -73.5,-3.5
+ parent: 2
+ - uid: 7537
+ components:
+ - type: Transform
+ pos: -73.5,-2.5
+ parent: 2
+ - uid: 7538
+ components:
+ - type: Transform
+ pos: -76.5,0.5
+ parent: 2
+ - uid: 7539
+ components:
+ - type: Transform
+ pos: -75.5,-4.5
+ parent: 2
+ - uid: 7540
+ components:
+ - type: Transform
+ pos: -75.5,-3.5
+ parent: 2
+ - uid: 7541
+ components:
+ - type: Transform
+ pos: -75.5,-2.5
+ parent: 2
+ - uid: 7542
+ components:
+ - type: Transform
+ pos: -75.5,-1.5
+ parent: 2
+ - uid: 7543
+ components:
+ - type: Transform
+ pos: -75.5,-0.5
+ parent: 2
+ - uid: 7544
+ components:
+ - type: Transform
+ pos: -75.5,0.5
+ parent: 2
+ - uid: 7545
+ components:
+ - type: Transform
+ pos: -74.5,-4.5
+ parent: 2
+ - uid: 7546
+ components:
+ - type: Transform
+ pos: -77.5,-1.5
+ parent: 2
+ - uid: 7547
+ components:
+ - type: Transform
+ pos: -77.5,-0.5
+ parent: 2
+ - uid: 7548
+ components:
+ - type: Transform
+ pos: -77.5,0.5
+ parent: 2
+ - uid: 7549
+ components:
+ - type: Transform
+ pos: -76.5,-4.5
+ parent: 2
+ - uid: 7550
+ components:
+ - type: Transform
+ pos: -76.5,-3.5
+ parent: 2
+ - uid: 7551
+ components:
+ - type: Transform
+ pos: -76.5,-2.5
+ parent: 2
+ - uid: 7552
+ components:
+ - type: Transform
+ pos: -76.5,-1.5
+ parent: 2
+ - uid: 7553
+ components:
+ - type: Transform
+ pos: -76.5,-0.5
+ parent: 2
+ - uid: 7554
+ components:
+ - type: Transform
+ pos: -78.5,-3.5
+ parent: 2
+ - uid: 7555
+ components:
+ - type: Transform
+ pos: -78.5,-2.5
+ parent: 2
+ - uid: 7556
+ components:
+ - type: Transform
+ pos: -78.5,-1.5
+ parent: 2
+ - uid: 7557
+ components:
+ - type: Transform
+ pos: -78.5,-0.5
+ parent: 2
+ - uid: 7558
+ components:
+ - type: Transform
+ pos: -78.5,0.5
+ parent: 2
+ - uid: 7559
+ components:
+ - type: Transform
+ pos: -77.5,-4.5
+ parent: 2
+ - uid: 7560
+ components:
+ - type: Transform
+ pos: -77.5,-3.5
+ parent: 2
+ - uid: 7561
+ components:
+ - type: Transform
+ pos: -77.5,-2.5
+ parent: 2
+ - uid: 7562
+ components:
+ - type: Transform
+ pos: -72.5,-3.5
+ parent: 2
+ - uid: 7563
+ components:
+ - type: Transform
+ pos: -72.5,-4.5
+ parent: 2
+ - uid: 7564
+ components:
+ - type: Transform
+ pos: -72.5,-5.5
+ parent: 2
+ - uid: 7565
+ components:
+ - type: Transform
+ pos: -72.5,-6.5
+ parent: 2
+ - uid: 7566
+ components:
+ - type: Transform
+ pos: -72.5,-7.5
+ parent: 2
+ - uid: 7567
+ components:
+ - type: Transform
+ pos: -72.5,-8.5
+ parent: 2
+ - uid: 7568
+ components:
+ - type: Transform
+ pos: -73.5,-11.5
+ parent: 2
+ - uid: 7569
+ components:
+ - type: Transform
+ pos: -73.5,-12.5
+ parent: 2
+ - uid: 7570
+ components:
+ - type: Transform
+ pos: -73.5,-13.5
+ parent: 2
+ - uid: 7571
+ components:
+ - type: Transform
+ pos: -73.5,-14.5
+ parent: 2
+ - uid: 7572
+ components:
+ - type: Transform
+ pos: -72.5,-14.5
+ parent: 2
+ - uid: 7573
+ components:
+ - type: Transform
+ pos: -72.5,-9.5
+ parent: 2
+ - uid: 7574
+ components:
+ - type: Transform
+ pos: -72.5,-10.5
+ parent: 2
+ - uid: 7575
+ components:
+ - type: Transform
+ pos: -72.5,-11.5
+ parent: 2
+ - uid: 7576
+ components:
+ - type: Transform
+ pos: -72.5,-12.5
+ parent: 2
+ - uid: 7577
+ components:
+ - type: Transform
+ pos: -72.5,-13.5
+ parent: 2
+ - uid: 7578
+ components:
+ - type: Transform
+ pos: -73.5,-10.5
+ parent: 2
+ - uid: 7579
+ components:
+ - type: Transform
+ pos: -73.5,-9.5
+ parent: 2
+ - uid: 7580
+ components:
+ - type: Transform
+ pos: -78.5,-15.5
+ parent: 2
+ - uid: 7581
+ components:
+ - type: Transform
+ pos: -78.5,-16.5
+ parent: 2
+ - uid: 7582
+ components:
+ - type: Transform
+ pos: -78.5,-17.5
+ parent: 2
+ - uid: 7583
+ components:
+ - type: Transform
+ pos: -79.5,-15.5
+ parent: 2
+ - uid: 7584
+ components:
+ - type: Transform
+ pos: -80.5,-15.5
+ parent: 2
+ - uid: 7585
+ components:
+ - type: Transform
+ pos: -79.5,-17.5
+ parent: 2
+ - uid: 7586
+ components:
+ - type: Transform
+ pos: -79.5,-16.5
+ parent: 2
+ - uid: 7587
+ components:
+ - type: Transform
+ pos: -80.5,-16.5
+ parent: 2
+ - uid: 7588
+ components:
+ - type: Transform
+ pos: -72.5,-30.5
+ parent: 2
+ - uid: 7589
+ components:
+ - type: Transform
+ pos: -72.5,-29.5
+ parent: 2
+ - uid: 7590
+ components:
+ - type: Transform
+ pos: -71.5,-29.5
+ parent: 2
+ - uid: 7591
+ components:
+ - type: Transform
+ pos: -70.5,-30.5
+ parent: 2
+ - uid: 7592
+ components:
+ - type: Transform
+ pos: -71.5,-30.5
+ parent: 2
+ - uid: 7593
+ components:
+ - type: Transform
+ pos: -70.5,-29.5
+ parent: 2
+ - uid: 7594
+ components:
+ - type: Transform
+ pos: -70.5,-28.5
+ parent: 2
+ - uid: 7595
+ components:
+ - type: Transform
+ pos: -70.5,-27.5
+ parent: 2
+ - uid: 7596
+ components:
+ - type: Transform
+ pos: -70.5,-26.5
+ parent: 2
+ - uid: 7597
+ components:
+ - type: Transform
+ pos: -69.5,-28.5
+ parent: 2
+ - uid: 7598
+ components:
+ - type: Transform
+ pos: -69.5,-27.5
+ parent: 2
+ - uid: 7599
+ components:
+ - type: Transform
+ pos: -69.5,-26.5
+ parent: 2
+ - uid: 7600
+ components:
+ - type: Transform
+ pos: -72.5,-27.5
+ parent: 2
+ - uid: 7601
+ components:
+ - type: Transform
+ pos: -72.5,-28.5
+ parent: 2
+ - uid: 7602
+ components:
+ - type: Transform
+ pos: -71.5,-26.5
+ parent: 2
+ - uid: 7603
+ components:
+ - type: Transform
+ pos: -71.5,-27.5
+ parent: 2
+ - uid: 7604
+ components:
+ - type: Transform
+ pos: -71.5,-28.5
+ parent: 2
+ - uid: 7605
+ components:
+ - type: Transform
+ pos: -72.5,-26.5
+ parent: 2
+ - uid: 7606
+ components:
+ - type: Transform
+ pos: -72.5,-25.5
+ parent: 2
+ - uid: 7607
+ components:
+ - type: Transform
+ pos: -73.5,-25.5
+ parent: 2
+ - uid: 7608
+ components:
+ - type: Transform
+ pos: -73.5,-26.5
+ parent: 2
+ - uid: 7609
+ components:
+ - type: Transform
+ pos: -74.5,-25.5
+ parent: 2
+ - uid: 7610
+ components:
+ - type: Transform
+ pos: -74.5,-26.5
+ parent: 2
+ - uid: 7611
+ components:
+ - type: Transform
+ pos: -75.5,-25.5
+ parent: 2
+ - uid: 7612
+ components:
+ - type: Transform
+ pos: -75.5,-26.5
+ parent: 2
+ - uid: 7613
+ components:
+ - type: Transform
+ pos: -76.5,-25.5
+ parent: 2
+ - uid: 7614
+ components:
+ - type: Transform
+ pos: -76.5,-26.5
+ parent: 2
+ - uid: 7615
+ components:
+ - type: Transform
+ pos: -71.5,-25.5
+ parent: 2
+ - uid: 7616
+ components:
+ - type: Transform
+ pos: -70.5,-25.5
+ parent: 2
+ - uid: 7617
+ components:
+ - type: Transform
+ pos: -89.5,2.5
+ parent: 2
+ - uid: 7618
+ components:
+ - type: Transform
+ pos: -89.5,3.5
+ parent: 2
+ - uid: 7619
+ components:
+ - type: Transform
+ pos: -89.5,5.5
+ parent: 2
+ - uid: 7620
+ components:
+ - type: Transform
+ pos: -89.5,4.5
+ parent: 2
+ - uid: 7621
+ components:
+ - type: Transform
+ pos: -88.5,3.5
+ parent: 2
+ - uid: 7622
+ components:
+ - type: Transform
+ pos: -87.5,3.5
+ parent: 2
+ - uid: 7623
+ components:
+ - type: Transform
+ pos: -86.5,3.5
+ parent: 2
+ - uid: 7624
+ components:
+ - type: Transform
+ pos: -85.5,3.5
+ parent: 2
+ - uid: 7625
+ components:
+ - type: Transform
+ pos: -89.5,6.5
+ parent: 2
+ - uid: 7626
+ components:
+ - type: Transform
+ pos: -88.5,5.5
+ parent: 2
+ - uid: 7627
+ components:
+ - type: Transform
+ pos: -88.5,4.5
+ parent: 2
+ - uid: 7628
+ components:
+ - type: Transform
+ pos: -87.5,5.5
+ parent: 2
+ - uid: 7629
+ components:
+ - type: Transform
+ pos: -87.5,4.5
+ parent: 2
+ - uid: 7630
+ components:
+ - type: Transform
+ pos: -82.5,2.5
+ parent: 2
+ - uid: 7631
+ components:
+ - type: Transform
+ pos: -81.5,3.5
+ parent: 2
+ - uid: 7632
+ components:
+ - type: Transform
+ pos: -81.5,2.5
+ parent: 2
+ - uid: 7633
+ components:
+ - type: Transform
+ pos: -80.5,3.5
+ parent: 2
+ - uid: 7634
+ components:
+ - type: Transform
+ pos: -80.5,2.5
+ parent: 2
+ - uid: 7635
+ components:
+ - type: Transform
+ pos: -85.5,2.5
+ parent: 2
+ - uid: 7636
+ components:
+ - type: Transform
+ pos: -84.5,3.5
+ parent: 2
+ - uid: 7637
+ components:
+ - type: Transform
+ pos: -84.5,2.5
+ parent: 2
+ - uid: 7638
+ components:
+ - type: Transform
+ pos: -83.5,3.5
+ parent: 2
+ - uid: 7639
+ components:
+ - type: Transform
+ pos: -83.5,2.5
+ parent: 2
+ - uid: 7640
+ components:
+ - type: Transform
+ pos: -82.5,3.5
+ parent: 2
+ - uid: 7641
+ components:
+ - type: Transform
+ pos: -78.5,2.5
+ parent: 2
+ - uid: 7642
+ components:
+ - type: Transform
+ pos: -85.5,5.5
+ parent: 2
+ - uid: 7643
+ components:
+ - type: Transform
+ pos: -85.5,4.5
+ parent: 2
+ - uid: 7644
+ components:
+ - type: Transform
+ pos: -84.5,5.5
+ parent: 2
+ - uid: 7645
+ components:
+ - type: Transform
+ pos: -84.5,4.5
+ parent: 2
+ - uid: 7646
+ components:
+ - type: Transform
+ pos: -79.5,5.5
+ parent: 2
+ - uid: 7647
+ components:
+ - type: Transform
+ pos: -79.5,4.5
+ parent: 2
+ - uid: 7648
+ components:
+ - type: Transform
+ pos: -79.5,3.5
+ parent: 2
+ - uid: 7649
+ components:
+ - type: Transform
+ pos: -79.5,2.5
+ parent: 2
+ - uid: 7650
+ components:
+ - type: Transform
+ pos: -78.5,5.5
+ parent: 2
+ - uid: 7651
+ components:
+ - type: Transform
+ pos: -78.5,4.5
+ parent: 2
+ - uid: 7652
+ components:
+ - type: Transform
+ pos: -78.5,3.5
+ parent: 2
+ - uid: 7653
+ components:
+ - type: Transform
+ pos: -81.5,5.5
+ parent: 2
+ - uid: 7654
+ components:
+ - type: Transform
+ pos: -81.5,4.5
+ parent: 2
+ - uid: 7655
+ components:
+ - type: Transform
+ pos: -80.5,5.5
+ parent: 2
+ - uid: 7656
+ components:
+ - type: Transform
+ pos: -80.5,4.5
+ parent: 2
+ - uid: 7657
+ components:
+ - type: Transform
+ pos: -83.5,5.5
+ parent: 2
+ - uid: 7658
+ components:
+ - type: Transform
+ pos: -83.5,4.5
+ parent: 2
+ - uid: 7659
+ components:
+ - type: Transform
+ pos: -82.5,5.5
+ parent: 2
+ - uid: 7660
+ components:
+ - type: Transform
+ pos: -82.5,4.5
+ parent: 2
+ - uid: 7661
+ components:
+ - type: Transform
+ pos: -80.5,-0.5
+ parent: 2
+ - uid: 7662
+ components:
+ - type: Transform
+ pos: -79.5,1.5
+ parent: 2
+ - uid: 7663
+ components:
+ - type: Transform
+ pos: -82.5,-0.5
+ parent: 2
+ - uid: 7664
+ components:
+ - type: Transform
+ pos: -81.5,1.5
+ parent: 2
+ - uid: 7665
+ components:
+ - type: Transform
+ pos: -81.5,0.5
+ parent: 2
+ - uid: 7666
+ components:
+ - type: Transform
+ pos: -81.5,-0.5
+ parent: 2
+ - uid: 7667
+ components:
+ - type: Transform
+ pos: -80.5,1.5
+ parent: 2
+ - uid: 7668
+ components:
+ - type: Transform
+ pos: -80.5,0.5
+ parent: 2
+ - uid: 7669
+ components:
+ - type: Transform
+ pos: -83.5,1.5
+ parent: 2
+ - uid: 7670
+ components:
+ - type: Transform
+ pos: -83.5,0.5
+ parent: 2
+ - uid: 7671
+ components:
+ - type: Transform
+ pos: -83.5,-0.5
+ parent: 2
+ - uid: 7672
+ components:
+ - type: Transform
+ pos: -82.5,1.5
+ parent: 2
+ - uid: 7673
+ components:
+ - type: Transform
+ pos: -82.5,0.5
+ parent: 2
+ - uid: 7674
+ components:
+ - type: Transform
+ pos: -77.5,3.5
+ parent: 2
+ - uid: 7675
+ components:
+ - type: Transform
+ pos: -77.5,1.5
+ parent: 2
+ - uid: 7676
+ components:
+ - type: Transform
+ pos: -77.5,2.5
+ parent: 2
+ - uid: 7677
+ components:
+ - type: Transform
+ pos: -78.5,1.5
+ parent: 2
+ - uid: 7678
+ components:
+ - type: Transform
+ pos: -80.5,-1.5
+ parent: 2
+ - uid: 7679
+ components:
+ - type: Transform
+ pos: -81.5,-1.5
+ parent: 2
+ - uid: 7680
+ components:
+ - type: Transform
+ pos: -83.5,-1.5
+ parent: 2
+ - uid: 7681
+ components:
+ - type: Transform
+ pos: -82.5,-1.5
+ parent: 2
+ - uid: 7682
+ components:
+ - type: Transform
+ pos: -84.5,-1.5
+ parent: 2
+ - uid: 7683
+ components:
+ - type: Transform
+ pos: -84.5,-0.5
+ parent: 2
+ - uid: 7684
+ components:
+ - type: Transform
+ pos: -84.5,0.5
+ parent: 2
+ - uid: 7685
+ components:
+ - type: Transform
+ pos: -84.5,1.5
+ parent: 2
+ - uid: 7686
+ components:
+ - type: Transform
+ pos: -81.5,-2.5
+ parent: 2
+ - uid: 7687
+ components:
+ - type: Transform
+ pos: -80.5,-2.5
+ parent: 2
+ - uid: 7688
+ components:
+ - type: Transform
+ pos: -75.5,1.5
+ parent: 2
+ - uid: 7689
+ components:
+ - type: Transform
+ pos: -76.5,1.5
+ parent: 2
+ - uid: 7690
+ components:
+ - type: Transform
+ pos: -85.5,1.5
+ parent: 2
+ - uid: 7691
+ components:
+ - type: Transform
+ pos: -86.5,2.5
+ parent: 2
+ - uid: 7692
+ components:
+ - type: Transform
+ pos: -87.5,2.5
+ parent: 2
+ - uid: 7693
+ components:
+ - type: Transform
+ pos: -90.5,1.5
+ parent: 2
+ - uid: 7694
+ components:
+ - type: Transform
+ pos: -90.5,2.5
+ parent: 2
+ - uid: 7695
+ components:
+ - type: Transform
+ pos: -90.5,3.5
+ parent: 2
+ - uid: 7696
+ components:
+ - type: Transform
+ pos: -90.5,4.5
+ parent: 2
+ - uid: 7697
+ components:
+ - type: Transform
+ pos: -90.5,5.5
+ parent: 2
+ - uid: 7698
+ components:
+ - type: Transform
+ pos: -90.5,6.5
+ parent: 2
+ - uid: 7699
+ components:
+ - type: Transform
+ pos: -90.5,7.5
+ parent: 2
+ - uid: 7700
+ components:
+ - type: Transform
+ pos: -90.5,17.5
+ parent: 2
+ - uid: 7701
+ components:
+ - type: Transform
+ pos: -89.5,8.5
+ parent: 2
+ - uid: 7702
+ components:
+ - type: Transform
+ pos: -89.5,7.5
+ parent: 2
+ - uid: 7703
+ components:
+ - type: Transform
+ pos: -88.5,7.5
+ parent: 2
+ - uid: 7704
+ components:
+ - type: Transform
+ pos: -87.5,7.5
+ parent: 2
+ - uid: 7705
+ components:
+ - type: Transform
+ pos: -90.5,18.5
+ parent: 2
+ - uid: 7706
+ components:
+ - type: Transform
+ pos: -90.5,19.5
+ parent: 2
+ - uid: 7707
+ components:
+ - type: Transform
+ pos: -90.5,20.5
+ parent: 2
+ - uid: 7708
+ components:
+ - type: Transform
+ pos: -90.5,21.5
+ parent: 2
+ - uid: 7709
+ components:
+ - type: Transform
+ pos: -90.5,22.5
+ parent: 2
+ - uid: 7710
+ components:
+ - type: Transform
+ pos: -89.5,19.5
+ parent: 2
+ - uid: 7711
+ components:
+ - type: Transform
+ pos: -89.5,20.5
+ parent: 2
+ - uid: 7712
+ components:
+ - type: Transform
+ pos: -89.5,21.5
+ parent: 2
+ - uid: 7713
+ components:
+ - type: Transform
+ pos: -89.5,22.5
+ parent: 2
+ - uid: 7714
+ components:
+ - type: Transform
+ pos: -89.5,23.5
+ parent: 2
+ - uid: 7715
+ components:
+ - type: Transform
+ pos: -89.5,24.5
+ parent: 2
+ - uid: 7716
+ components:
+ - type: Transform
+ pos: -89.5,25.5
+ parent: 2
+ - uid: 7717
+ components:
+ - type: Transform
+ pos: -91.5,21.5
+ parent: 2
+ - uid: 7718
+ components:
+ - type: Transform
+ pos: -91.5,22.5
+ parent: 2
+ - uid: 7719
+ components:
+ - type: Transform
+ pos: -91.5,23.5
+ parent: 2
+ - uid: 7720
+ components:
+ - type: Transform
+ pos: -91.5,24.5
+ parent: 2
+ - uid: 7721
+ components:
+ - type: Transform
+ pos: -91.5,25.5
+ parent: 2
+ - uid: 7722
+ components:
+ - type: Transform
+ pos: -91.5,26.5
+ parent: 2
+ - uid: 7723
+ components:
+ - type: Transform
+ pos: -87.5,25.5
+ parent: 2
+ - uid: 7724
+ components:
+ - type: Transform
+ pos: -87.5,26.5
+ parent: 2
+ - uid: 7725
+ components:
+ - type: Transform
+ pos: -87.5,27.5
+ parent: 2
+ - uid: 7726
+ components:
+ - type: Transform
+ pos: -90.5,26.5
+ parent: 2
+ - uid: 7727
+ components:
+ - type: Transform
+ pos: -90.5,27.5
+ parent: 2
+ - uid: 7728
+ components:
+ - type: Transform
+ pos: -89.5,26.5
+ parent: 2
+ - uid: 7729
+ components:
+ - type: Transform
+ pos: -89.5,27.5
+ parent: 2
+ - uid: 7730
+ components:
+ - type: Transform
+ pos: -88.5,25.5
+ parent: 2
+ - uid: 7731
+ components:
+ - type: Transform
+ pos: -88.5,26.5
+ parent: 2
+ - uid: 7732
+ components:
+ - type: Transform
+ pos: -88.5,27.5
+ parent: 2
+ - uid: 7733
+ components:
+ - type: Transform
+ pos: -92.5,25.5
+ parent: 2
+ - uid: 7734
+ components:
+ - type: Transform
+ pos: -92.5,26.5
+ parent: 2
+ - uid: 7735
+ components:
+ - type: Transform
+ pos: -92.5,27.5
+ parent: 2
+ - uid: 7736
+ components:
+ - type: Transform
+ pos: -91.5,27.5
+ parent: 2
+ - uid: 7737
+ components:
+ - type: Transform
+ pos: -90.5,25.5
+ parent: 2
+ - uid: 7738
+ components:
+ - type: Transform
+ pos: -84.5,28.5
+ parent: 2
+ - uid: 7739
+ components:
+ - type: Transform
+ pos: -84.5,27.5
+ parent: 2
+ - uid: 7740
+ components:
+ - type: Transform
+ pos: -84.5,26.5
+ parent: 2
+ - uid: 7741
+ components:
+ - type: Transform
+ pos: -88.5,28.5
+ parent: 2
+ - uid: 7742
+ components:
+ - type: Transform
+ pos: -89.5,28.5
+ parent: 2
+ - uid: 7743
+ components:
+ - type: Transform
+ pos: -86.5,28.5
+ parent: 2
+ - uid: 7744
+ components:
+ - type: Transform
+ pos: -87.5,28.5
+ parent: 2
+ - uid: 7745
+ components:
+ - type: Transform
+ pos: -86.5,27.5
+ parent: 2
+ - uid: 7746
+ components:
+ - type: Transform
+ pos: -86.5,26.5
+ parent: 2
+ - uid: 7747
+ components:
+ - type: Transform
+ pos: -85.5,28.5
+ parent: 2
+ - uid: 7748
+ components:
+ - type: Transform
+ pos: -85.5,27.5
+ parent: 2
+ - uid: 7749
+ components:
+ - type: Transform
+ pos: -85.5,26.5
+ parent: 2
+ - uid: 7750
+ components:
+ - type: Transform
+ pos: -84.5,24.5
+ parent: 2
+ - uid: 7751
+ components:
+ - type: Transform
+ pos: -84.5,25.5
+ parent: 2
+ - uid: 7752
+ components:
+ - type: Transform
+ pos: -85.5,24.5
+ parent: 2
+ - uid: 7753
+ components:
+ - type: Transform
+ pos: -85.5,25.5
+ parent: 2
+ - uid: 7754
+ components:
+ - type: Transform
+ pos: -90.5,23.5
+ parent: 2
+ - uid: 7755
+ components:
+ - type: Transform
+ pos: -90.5,24.5
+ parent: 2
+ - uid: 7756
+ components:
+ - type: Transform
+ pos: -73.5,20.5
+ parent: 2
+ - uid: 7757
+ components:
+ - type: Transform
+ pos: -75.5,22.5
+ parent: 2
+ - uid: 7758
+ components:
+ - type: Transform
+ pos: -75.5,21.5
+ parent: 2
+ - uid: 7759
+ components:
+ - type: Transform
+ pos: -75.5,20.5
+ parent: 2
+ - uid: 7760
+ components:
+ - type: Transform
+ pos: -74.5,22.5
+ parent: 2
+ - uid: 7761
+ components:
+ - type: Transform
+ pos: -74.5,21.5
+ parent: 2
+ - uid: 7762
+ components:
+ - type: Transform
+ pos: -74.5,20.5
+ parent: 2
+ - uid: 7763
+ components:
+ - type: Transform
+ pos: -73.5,22.5
+ parent: 2
+ - uid: 7764
+ components:
+ - type: Transform
+ pos: -73.5,21.5
+ parent: 2
+ - uid: 7765
+ components:
+ - type: Transform
+ pos: -80.5,22.5
+ parent: 2
+ - uid: 7766
+ components:
+ - type: Transform
+ pos: -80.5,21.5
+ parent: 2
+ - uid: 7767
+ components:
+ - type: Transform
+ pos: -80.5,20.5
+ parent: 2
+ - uid: 7768
+ components:
+ - type: Transform
+ pos: -79.5,22.5
+ parent: 2
+ - uid: 7769
+ components:
+ - type: Transform
+ pos: -79.5,21.5
+ parent: 2
+ - uid: 7770
+ components:
+ - type: Transform
+ pos: -79.5,20.5
+ parent: 2
+ - uid: 7771
+ components:
+ - type: Transform
+ pos: -78.5,22.5
+ parent: 2
+ - uid: 7772
+ components:
+ - type: Transform
+ pos: -78.5,21.5
+ parent: 2
+ - uid: 7773
+ components:
+ - type: Transform
+ pos: -78.5,20.5
+ parent: 2
+ - uid: 7774
+ components:
+ - type: Transform
+ pos: -77.5,22.5
+ parent: 2
+ - uid: 7775
+ components:
+ - type: Transform
+ pos: -77.5,21.5
+ parent: 2
+ - uid: 7776
+ components:
+ - type: Transform
+ pos: -77.5,20.5
+ parent: 2
+ - uid: 7777
+ components:
+ - type: Transform
+ pos: -76.5,22.5
+ parent: 2
+ - uid: 7778
+ components:
+ - type: Transform
+ pos: -76.5,21.5
+ parent: 2
+ - uid: 7779
+ components:
+ - type: Transform
+ pos: -76.5,20.5
+ parent: 2
+ - uid: 7780
+ components:
+ - type: Transform
+ pos: -81.5,23.5
+ parent: 2
+ - uid: 7781
+ components:
+ - type: Transform
+ pos: -82.5,22.5
+ parent: 2
+ - uid: 7782
+ components:
+ - type: Transform
+ pos: -82.5,23.5
+ parent: 2
+ - uid: 7783
+ components:
+ - type: Transform
+ pos: -81.5,22.5
+ parent: 2
+ - uid: 7784
+ components:
+ - type: Transform
+ pos: -80.5,23.5
+ parent: 2
+ - uid: 7785
+ components:
+ - type: Transform
+ pos: -79.5,23.5
+ parent: 2
+ - uid: 7786
+ components:
+ - type: Transform
+ pos: -83.5,28.5
+ parent: 2
+ - uid: 7787
+ components:
+ - type: Transform
+ pos: -83.5,27.5
+ parent: 2
+ - uid: 7788
+ components:
+ - type: Transform
+ pos: -82.5,28.5
+ parent: 2
+ - uid: 7789
+ components:
+ - type: Transform
+ pos: -82.5,27.5
+ parent: 2
+ - uid: 7790
+ components:
+ - type: Transform
+ pos: -82.5,26.5
+ parent: 2
+ - uid: 7791
+ components:
+ - type: Transform
+ pos: -81.5,28.5
+ parent: 2
+ - uid: 7792
+ components:
+ - type: Transform
+ pos: -81.5,27.5
+ parent: 2
+ - uid: 7793
+ components:
+ - type: Transform
+ pos: -81.5,26.5
+ parent: 2
+ - uid: 7794
+ components:
+ - type: Transform
+ pos: -83.5,26.5
+ parent: 2
+ - uid: 7795
+ components:
+ - type: Transform
+ pos: -80.5,28.5
+ parent: 2
+ - uid: 7796
+ components:
+ - type: Transform
+ pos: -80.5,27.5
+ parent: 2
+ - uid: 7797
+ components:
+ - type: Transform
+ pos: -80.5,26.5
+ parent: 2
+ - uid: 7798
+ components:
+ - type: Transform
+ pos: -80.5,25.5
+ parent: 2
+ - uid: 7799
+ components:
+ - type: Transform
+ pos: -80.5,24.5
+ parent: 2
+ - uid: 7800
+ components:
+ - type: Transform
+ pos: -77.5,24.5
+ parent: 2
+ - uid: 7801
+ components:
+ - type: Transform
+ pos: -78.5,26.5
+ parent: 2
+ - uid: 7802
+ components:
+ - type: Transform
+ pos: -78.5,25.5
+ parent: 2
+ - uid: 7803
+ components:
+ - type: Transform
+ pos: -78.5,24.5
+ parent: 2
+ - uid: 7804
+ components:
+ - type: Transform
+ pos: -79.5,26.5
+ parent: 2
+ - uid: 7805
+ components:
+ - type: Transform
+ pos: -77.5,25.5
+ parent: 2
+ - uid: 7806
+ components:
+ - type: Transform
+ pos: -79.5,25.5
+ parent: 2
+ - uid: 7807
+ components:
+ - type: Transform
+ pos: -79.5,24.5
+ parent: 2
+ - uid: 7808
+ components:
+ - type: Transform
+ pos: -75.5,26.5
+ parent: 2
+ - uid: 7809
+ components:
+ - type: Transform
+ pos: -75.5,25.5
+ parent: 2
+ - uid: 7810
+ components:
+ - type: Transform
+ pos: -75.5,24.5
+ parent: 2
+ - uid: 7811
+ components:
+ - type: Transform
+ pos: -76.5,26.5
+ parent: 2
+ - uid: 7812
+ components:
+ - type: Transform
+ pos: -76.5,25.5
+ parent: 2
+ - uid: 7813
+ components:
+ - type: Transform
+ pos: -76.5,24.5
+ parent: 2
+ - uid: 7814
+ components:
+ - type: Transform
+ pos: -77.5,26.5
+ parent: 2
+ - uid: 7815
+ components:
+ - type: Transform
+ pos: -81.5,25.5
+ parent: 2
+ - uid: 7816
+ components:
+ - type: Transform
+ pos: -75.5,16.5
+ parent: 2
+ - uid: 7817
+ components:
+ - type: Transform
+ pos: -73.5,14.5
+ parent: 2
+ - uid: 7818
+ components:
+ - type: Transform
+ pos: -73.5,15.5
+ parent: 2
+ - uid: 7819
+ components:
+ - type: Transform
+ pos: -73.5,16.5
+ parent: 2
+ - uid: 7820
+ components:
+ - type: Transform
+ pos: -73.5,17.5
+ parent: 2
+ - uid: 7821
+ components:
+ - type: Transform
+ pos: -81.5,14.5
+ parent: 2
+ - uid: 7822
+ components:
+ - type: Transform
+ pos: -81.5,16.5
+ parent: 2
+ - uid: 7823
+ components:
+ - type: Transform
+ pos: -81.5,17.5
+ parent: 2
+ - uid: 7824
+ components:
+ - type: Transform
+ pos: -80.5,14.5
+ parent: 2
+ - uid: 7825
+ components:
+ - type: Transform
+ pos: -80.5,15.5
+ parent: 2
+ - uid: 7826
+ components:
+ - type: Transform
+ pos: -80.5,16.5
+ parent: 2
+ - uid: 7827
+ components:
+ - type: Transform
+ pos: -80.5,17.5
+ parent: 2
+ - uid: 7828
+ components:
+ - type: Transform
+ pos: -81.5,15.5
+ parent: 2
+ - uid: 7829
+ components:
+ - type: Transform
+ pos: -79.5,14.5
+ parent: 2
+ - uid: 7830
+ components:
+ - type: Transform
+ pos: -79.5,16.5
+ parent: 2
+ - uid: 7831
+ components:
+ - type: Transform
+ pos: -79.5,17.5
+ parent: 2
+ - uid: 7832
+ components:
+ - type: Transform
+ pos: -79.5,15.5
+ parent: 2
+ - uid: 7833
+ components:
+ - type: Transform
+ pos: -78.5,14.5
+ parent: 2
+ - uid: 7834
+ components:
+ - type: Transform
+ pos: -78.5,15.5
+ parent: 2
+ - uid: 7835
+ components:
+ - type: Transform
+ pos: -78.5,16.5
+ parent: 2
+ - uid: 7836
+ components:
+ - type: Transform
+ pos: -76.5,17.5
+ parent: 2
+ - uid: 7837
+ components:
+ - type: Transform
+ pos: -75.5,14.5
+ parent: 2
+ - uid: 7838
+ components:
+ - type: Transform
+ pos: -75.5,15.5
+ parent: 2
+ - uid: 7839
+ components:
+ - type: Transform
+ pos: -74.5,14.5
+ parent: 2
+ - uid: 7840
+ components:
+ - type: Transform
+ pos: -75.5,17.5
+ parent: 2
+ - uid: 7841
+ components:
+ - type: Transform
+ pos: -74.5,15.5
+ parent: 2
+ - uid: 7842
+ components:
+ - type: Transform
+ pos: -74.5,16.5
+ parent: 2
+ - uid: 7843
+ components:
+ - type: Transform
+ pos: -74.5,17.5
+ parent: 2
+ - uid: 7844
+ components:
+ - type: Transform
+ pos: -78.5,17.5
+ parent: 2
+ - uid: 7845
+ components:
+ - type: Transform
+ pos: -77.5,15.5
+ parent: 2
+ - uid: 7846
+ components:
+ - type: Transform
+ pos: -77.5,14.5
+ parent: 2
+ - uid: 7847
+ components:
+ - type: Transform
+ pos: -77.5,17.5
+ parent: 2
+ - uid: 7848
+ components:
+ - type: Transform
+ pos: -77.5,16.5
+ parent: 2
+ - uid: 7849
+ components:
+ - type: Transform
+ pos: -76.5,14.5
+ parent: 2
+ - uid: 7850
+ components:
+ - type: Transform
+ pos: -76.5,15.5
+ parent: 2
+ - uid: 7851
+ components:
+ - type: Transform
+ pos: -76.5,16.5
+ parent: 2
+ - uid: 7852
+ components:
+ - type: Transform
+ pos: -73.5,19.5
+ parent: 2
+ - uid: 7853
+ components:
+ - type: Transform
+ pos: -72.5,18.5
+ parent: 2
+ - uid: 7854
+ components:
+ - type: Transform
+ pos: -72.5,19.5
+ parent: 2
+ - uid: 7855
+ components:
+ - type: Transform
+ pos: -71.5,18.5
+ parent: 2
+ - uid: 7856
+ components:
+ - type: Transform
+ pos: -71.5,19.5
+ parent: 2
+ - uid: 7857
+ components:
+ - type: Transform
+ pos: -80.5,18.5
+ parent: 2
+ - uid: 7858
+ components:
+ - type: Transform
+ pos: -80.5,19.5
+ parent: 2
+ - uid: 7859
+ components:
+ - type: Transform
+ pos: -79.5,18.5
+ parent: 2
+ - uid: 7860
+ components:
+ - type: Transform
+ pos: -79.5,19.5
+ parent: 2
+ - uid: 7861
+ components:
+ - type: Transform
+ pos: -78.5,18.5
+ parent: 2
+ - uid: 7862
+ components:
+ - type: Transform
+ pos: -77.5,18.5
+ parent: 2
+ - uid: 7863
+ components:
+ - type: Transform
+ pos: -78.5,19.5
+ parent: 2
+ - uid: 7864
+ components:
+ - type: Transform
+ pos: -77.5,19.5
+ parent: 2
+ - uid: 7865
+ components:
+ - type: Transform
+ pos: -76.5,18.5
+ parent: 2
+ - uid: 7866
+ components:
+ - type: Transform
+ pos: -75.5,18.5
+ parent: 2
+ - uid: 7867
+ components:
+ - type: Transform
+ pos: -75.5,19.5
+ parent: 2
+ - uid: 7868
+ components:
+ - type: Transform
+ pos: -76.5,19.5
+ parent: 2
+ - uid: 7869
+ components:
+ - type: Transform
+ pos: -74.5,18.5
+ parent: 2
+ - uid: 7870
+ components:
+ - type: Transform
+ pos: -74.5,19.5
+ parent: 2
+ - uid: 7871
+ components:
+ - type: Transform
+ pos: -73.5,18.5
+ parent: 2
+ - uid: 7872
+ components:
+ - type: Transform
+ pos: -72.5,15.5
+ parent: 2
+ - uid: 7873
+ components:
+ - type: Transform
+ pos: -72.5,16.5
+ parent: 2
+ - uid: 7874
+ components:
+ - type: Transform
+ pos: -72.5,17.5
+ parent: 2
+ - uid: 7875
+ components:
+ - type: Transform
+ pos: -71.5,15.5
+ parent: 2
+ - uid: 7876
+ components:
+ - type: Transform
+ pos: -71.5,16.5
+ parent: 2
+ - uid: 7877
+ components:
+ - type: Transform
+ pos: -71.5,17.5
+ parent: 2
+ - uid: 7878
+ components:
+ - type: Transform
+ pos: -70.5,15.5
+ parent: 2
+ - uid: 7879
+ components:
+ - type: Transform
+ pos: -70.5,16.5
+ parent: 2
+ - uid: 7880
+ components:
+ - type: Transform
+ pos: -70.5,17.5
+ parent: 2
+ - uid: 7881
+ components:
+ - type: Transform
+ pos: -70.5,18.5
+ parent: 2
+ - uid: 7882
+ components:
+ - type: Transform
+ pos: -69.5,19.5
+ parent: 2
+ - uid: 7883
+ components:
+ - type: Transform
+ pos: -68.5,19.5
+ parent: 2
+ - uid: 7884
+ components:
+ - type: Transform
+ pos: -69.5,20.5
+ parent: 2
+ - uid: 7885
+ components:
+ - type: Transform
+ pos: -70.5,19.5
+ parent: 2
+ - uid: 7886
+ components:
+ - type: Transform
+ pos: -70.5,20.5
+ parent: 2
+ - uid: 7887
+ components:
+ - type: Transform
+ pos: -68.5,16.5
+ parent: 2
+ - uid: 7888
+ components:
+ - type: Transform
+ pos: -68.5,17.5
+ parent: 2
+ - uid: 7889
+ components:
+ - type: Transform
+ pos: -68.5,18.5
+ parent: 2
+ - uid: 7890
+ components:
+ - type: Transform
+ pos: -68.5,20.5
+ parent: 2
+ - uid: 7891
+ components:
+ - type: Transform
+ pos: -69.5,16.5
+ parent: 2
+ - uid: 7892
+ components:
+ - type: Transform
+ pos: -69.5,17.5
+ parent: 2
+ - uid: 7893
+ components:
+ - type: Transform
+ pos: -69.5,18.5
+ parent: 2
+ - uid: 7894
+ components:
+ - type: Transform
+ pos: -71.5,20.5
+ parent: 2
+ - uid: 7895
+ components:
+ - type: Transform
+ pos: -69.5,7.5
+ parent: 2
+ - uid: 7896
+ components:
+ - type: Transform
+ pos: -72.5,8.5
+ parent: 2
+ - uid: 7897
+ components:
+ - type: Transform
+ pos: -72.5,7.5
+ parent: 2
+ - uid: 7898
+ components:
+ - type: Transform
+ pos: -71.5,8.5
+ parent: 2
+ - uid: 7899
+ components:
+ - type: Transform
+ pos: -71.5,7.5
+ parent: 2
+ - uid: 7900
+ components:
+ - type: Transform
+ pos: -70.5,8.5
+ parent: 2
+ - uid: 7901
+ components:
+ - type: Transform
+ pos: -70.5,7.5
+ parent: 2
+ - uid: 7902
+ components:
+ - type: Transform
+ pos: -69.5,8.5
+ parent: 2
+ - uid: 7903
+ components:
+ - type: Transform
+ pos: -68.5,9.5
+ parent: 2
+ - uid: 7904
+ components:
+ - type: Transform
+ pos: -68.5,8.5
+ parent: 2
+ - uid: 7905
+ components:
+ - type: Transform
+ pos: -67.5,9.5
+ parent: 2
+ - uid: 7906
+ components:
+ - type: Transform
+ pos: -67.5,8.5
+ parent: 2
+ - uid: 7907
+ components:
+ - type: Transform
+ pos: -56.5,15.5
+ parent: 2
+ - uid: 7908
+ components:
+ - type: Transform
+ pos: -55.5,16.5
+ parent: 2
+ - uid: 7909
+ components:
+ - type: Transform
+ pos: -54.5,17.5
+ parent: 2
+ - uid: 7910
+ components:
+ - type: Transform
+ pos: -54.5,16.5
+ parent: 2
+ - uid: 7911
+ components:
+ - type: Transform
+ pos: -54.5,15.5
+ parent: 2
+ - uid: 7912
+ components:
+ - type: Transform
+ pos: -55.5,17.5
+ parent: 2
+ - uid: 7913
+ components:
+ - type: Transform
+ pos: -55.5,15.5
+ parent: 2
+ - uid: 7914
+ components:
+ - type: Transform
+ pos: -56.5,17.5
+ parent: 2
+ - uid: 7915
+ components:
+ - type: Transform
+ pos: -56.5,16.5
+ parent: 2
+ - uid: 7916
+ components:
+ - type: Transform
+ pos: -58.5,15.5
+ parent: 2
+ - uid: 7917
+ components:
+ - type: Transform
+ pos: -58.5,14.5
+ parent: 2
+ - uid: 7918
+ components:
+ - type: Transform
+ pos: -56.5,14.5
+ parent: 2
+ - uid: 7919
+ components:
+ - type: Transform
+ pos: -57.5,16.5
+ parent: 2
+ - uid: 7920
+ components:
+ - type: Transform
+ pos: -57.5,15.5
+ parent: 2
+ - uid: 7921
+ components:
+ - type: Transform
+ pos: -57.5,14.5
+ parent: 2
+ - uid: 7922
+ components:
+ - type: Transform
+ pos: -58.5,16.5
+ parent: 2
+ - uid: 7923
+ components:
+ - type: Transform
+ pos: -59.5,14.5
+ parent: 2
+ - uid: 7924
+ components:
+ - type: Transform
+ pos: -60.5,13.5
+ parent: 2
+ - uid: 7925
+ components:
+ - type: Transform
+ pos: -59.5,13.5
+ parent: 2
+ - uid: 7926
+ components:
+ - type: Transform
+ pos: -58.5,13.5
+ parent: 2
+ - uid: 7927
+ components:
+ - type: Transform
+ pos: -67.5,10.5
+ parent: 2
+ - uid: 7928
+ components:
+ - type: Transform
+ pos: -66.5,10.5
+ parent: 2
+ - uid: 7929
+ components:
+ - type: Transform
+ pos: -65.5,10.5
+ parent: 2
+ - uid: 7930
+ components:
+ - type: Transform
+ pos: -64.5,10.5
+ parent: 2
+ - uid: 7931
+ components:
+ - type: Transform
+ pos: -66.5,9.5
+ parent: 2
+ - uid: 7932
+ components:
+ - type: Transform
+ pos: -65.5,9.5
+ parent: 2
+ - uid: 7933
+ components:
+ - type: Transform
+ pos: -64.5,9.5
+ parent: 2
+ - uid: 7934
+ components:
+ - type: Transform
+ pos: -69.5,9.5
+ parent: 2
+ - uid: 7935
+ components:
+ - type: Transform
+ pos: -66.5,8.5
+ parent: 2
+ - uid: 7936
+ components:
+ - type: Transform
+ pos: -44.5,18.5
+ parent: 2
+ - uid: 7937
+ components:
+ - type: Transform
+ pos: -44.5,17.5
+ parent: 2
+ - uid: 7938
+ components:
+ - type: Transform
+ pos: -45.5,18.5
+ parent: 2
+ - uid: 7939
+ components:
+ - type: Transform
+ pos: -45.5,17.5
+ parent: 2
+ - uid: 7940
+ components:
+ - type: Transform
+ pos: -45.5,16.5
+ parent: 2
+ - uid: 7941
+ components:
+ - type: Transform
+ pos: -46.5,16.5
+ parent: 2
+ - uid: 7942
+ components:
+ - type: Transform
+ pos: -46.5,17.5
+ parent: 2
+ - uid: 7943
+ components:
+ - type: Transform
+ pos: -47.5,16.5
+ parent: 2
+ - uid: 7944
+ components:
+ - type: Transform
+ pos: -47.5,17.5
+ parent: 2
+ - uid: 7945
+ components:
+ - type: Transform
+ pos: -48.5,17.5
+ parent: 2
+ - uid: 7946
+ components:
+ - type: Transform
+ pos: -49.5,17.5
+ parent: 2
+ - uid: 7947
+ components:
+ - type: Transform
+ pos: -52.5,17.5
+ parent: 2
+ - uid: 7948
+ components:
+ - type: Transform
+ pos: -49.5,18.5
+ parent: 2
+ - uid: 7949
+ components:
+ - type: Transform
+ pos: -50.5,18.5
+ parent: 2
+ - uid: 7950
+ components:
+ - type: Transform
+ pos: -50.5,17.5
+ parent: 2
+ - uid: 7951
+ components:
+ - type: Transform
+ pos: -51.5,18.5
+ parent: 2
+ - uid: 7952
+ components:
+ - type: Transform
+ pos: -51.5,17.5
+ parent: 2
+ - uid: 7953
+ components:
+ - type: Transform
+ pos: -52.5,18.5
+ parent: 2
+ - uid: 7954
+ components:
+ - type: Transform
+ pos: -43.5,16.5
+ parent: 2
+ - uid: 7955
+ components:
+ - type: Transform
+ pos: -42.5,16.5
+ parent: 2
+ - uid: 7956
+ components:
+ - type: Transform
+ pos: -44.5,16.5
+ parent: 2
+ - uid: 7957
+ components:
+ - type: Transform
+ pos: -41.5,16.5
+ parent: 2
+ - uid: 7958
+ components:
+ - type: Transform
+ pos: -41.5,15.5
+ parent: 2
+ - uid: 7959
+ components:
+ - type: Transform
+ pos: -41.5,14.5
+ parent: 2
+ - uid: 7960
+ components:
+ - type: Transform
+ pos: -42.5,15.5
+ parent: 2
+ - uid: 7961
+ components:
+ - type: Transform
+ pos: -42.5,14.5
+ parent: 2
+ - uid: 7962
+ components:
+ - type: Transform
+ pos: -43.5,17.5
+ parent: 2
+ - uid: 7963
+ components:
+ - type: Transform
+ pos: -62.5,23.5
+ parent: 2
+ - uid: 7964
+ components:
+ - type: Transform
+ pos: -62.5,22.5
+ parent: 2
+ - uid: 7965
+ components:
+ - type: Transform
+ pos: -63.5,23.5
+ parent: 2
+ - uid: 7966
+ components:
+ - type: Transform
+ pos: -63.5,22.5
+ parent: 2
+ - uid: 7967
+ components:
+ - type: Transform
+ pos: -64.5,23.5
+ parent: 2
+ - uid: 7968
+ components:
+ - type: Transform
+ pos: -64.5,22.5
+ parent: 2
+ - uid: 7969
+ components:
+ - type: Transform
+ pos: -64.5,21.5
+ parent: 2
+ - uid: 7970
+ components:
+ - type: Transform
+ pos: -65.5,22.5
+ parent: 2
+ - uid: 7971
+ components:
+ - type: Transform
+ pos: -65.5,21.5
+ parent: 2
+ - uid: 7972
+ components:
+ - type: Transform
+ pos: -66.5,22.5
+ parent: 2
+ - uid: 7973
+ components:
+ - type: Transform
+ pos: -66.5,21.5
+ parent: 2
+ - uid: 7974
+ components:
+ - type: Transform
+ pos: -72.5,20.5
+ parent: 2
+ - uid: 7975
+ components:
+ - type: Transform
+ pos: -72.5,21.5
+ parent: 2
+ - uid: 7976
+ components:
+ - type: Transform
+ pos: -72.5,22.5
+ parent: 2
+ - uid: 7977
+ components:
+ - type: Transform
+ pos: -72.5,23.5
+ parent: 2
+ - uid: 7978
+ components:
+ - type: Transform
+ pos: -66.5,19.5
+ parent: 2
+ - uid: 7979
+ components:
+ - type: Transform
+ pos: -66.5,20.5
+ parent: 2
+ - uid: 7980
+ components:
+ - type: Transform
+ pos: -66.5,23.5
+ parent: 2
+ - uid: 7981
+ components:
+ - type: Transform
+ pos: -67.5,19.5
+ parent: 2
+ - uid: 7982
+ components:
+ - type: Transform
+ pos: -67.5,20.5
+ parent: 2
+ - uid: 7983
+ components:
+ - type: Transform
+ pos: -70.5,22.5
+ parent: 2
+ - uid: 7984
+ components:
+ - type: Transform
+ pos: -70.5,23.5
+ parent: 2
+ - uid: 7985
+ components:
+ - type: Transform
+ pos: -71.5,21.5
+ parent: 2
+ - uid: 7986
+ components:
+ - type: Transform
+ pos: -71.5,22.5
+ parent: 2
+ - uid: 7987
+ components:
+ - type: Transform
+ pos: -71.5,23.5
+ parent: 2
+ - uid: 7988
+ components:
+ - type: Transform
+ pos: -69.5,21.5
+ parent: 2
+ - uid: 7989
+ components:
+ - type: Transform
+ pos: -69.5,22.5
+ parent: 2
+ - uid: 7990
+ components:
+ - type: Transform
+ pos: -69.5,23.5
+ parent: 2
+ - uid: 7991
+ components:
+ - type: Transform
+ pos: -70.5,21.5
+ parent: 2
+ - uid: 7992
+ components:
+ - type: Transform
+ pos: -67.5,21.5
+ parent: 2
+ - uid: 7993
+ components:
+ - type: Transform
+ pos: -67.5,22.5
+ parent: 2
+ - uid: 7994
+ components:
+ - type: Transform
+ pos: -67.5,23.5
+ parent: 2
+ - uid: 7995
+ components:
+ - type: Transform
+ pos: -68.5,21.5
+ parent: 2
+ - uid: 7996
+ components:
+ - type: Transform
+ pos: -68.5,22.5
+ parent: 2
+ - uid: 7997
+ components:
+ - type: Transform
+ pos: -68.5,23.5
+ parent: 2
+ - uid: 7998
+ components:
+ - type: Transform
+ pos: -67.5,18.5
+ parent: 2
+ - uid: 7999
+ components:
+ - type: Transform
+ pos: -57.5,25.5
+ parent: 2
+ - uid: 8000
+ components:
+ - type: Transform
+ pos: -57.5,24.5
+ parent: 2
+ - uid: 8001
+ components:
+ - type: Transform
+ pos: -58.5,25.5
+ parent: 2
+ - uid: 8002
+ components:
+ - type: Transform
+ pos: -58.5,24.5
+ parent: 2
+ - uid: 8003
+ components:
+ - type: Transform
+ pos: -58.5,23.5
+ parent: 2
+ - uid: 8004
+ components:
+ - type: Transform
+ pos: -59.5,24.5
+ parent: 2
+ - uid: 8005
+ components:
+ - type: Transform
+ pos: -59.5,23.5
+ parent: 2
+ - uid: 8006
+ components:
+ - type: Transform
+ pos: -48.5,30.5
+ parent: 2
+ - uid: 8007
+ components:
+ - type: Transform
+ pos: -48.5,29.5
+ parent: 2
+ - uid: 8008
+ components:
+ - type: Transform
+ pos: -49.5,30.5
+ parent: 2
+ - uid: 8009
+ components:
+ - type: Transform
+ pos: -49.5,29.5
+ parent: 2
+ - uid: 8010
+ components:
+ - type: Transform
+ pos: -49.5,28.5
+ parent: 2
+ - uid: 8011
+ components:
+ - type: Transform
+ pos: -50.5,29.5
+ parent: 2
+ - uid: 8012
+ components:
+ - type: Transform
+ pos: -50.5,28.5
+ parent: 2
+ - uid: 8013
+ components:
+ - type: Transform
+ pos: -48.5,31.5
+ parent: 2
+ - uid: 8014
+ components:
+ - type: Transform
+ pos: -48.5,32.5
+ parent: 2
+ - uid: 8015
+ components:
+ - type: Transform
+ pos: -48.5,33.5
+ parent: 2
+ - uid: 8016
+ components:
+ - type: Transform
+ pos: -48.5,34.5
+ parent: 2
+ - uid: 8017
+ components:
+ - type: Transform
+ pos: -49.5,32.5
+ parent: 2
+ - uid: 8018
+ components:
+ - type: Transform
+ pos: -50.5,32.5
+ parent: 2
+ - uid: 8019
+ components:
+ - type: Transform
+ pos: -49.5,31.5
+ parent: 2
+ - uid: 8020
+ components:
+ - type: Transform
+ pos: -81.5,32.5
+ parent: 2
+ - uid: 8021
+ components:
+ - type: Transform
+ pos: -81.5,33.5
+ parent: 2
+ - uid: 8022
+ components:
+ - type: Transform
+ pos: -81.5,34.5
+ parent: 2
+ - uid: 8023
+ components:
+ - type: Transform
+ pos: -81.5,35.5
+ parent: 2
+ - uid: 8024
+ components:
+ - type: Transform
+ pos: -80.5,32.5
+ parent: 2
+ - uid: 8025
+ components:
+ - type: Transform
+ pos: -80.5,33.5
+ parent: 2
+ - uid: 8026
+ components:
+ - type: Transform
+ pos: -80.5,34.5
+ parent: 2
+ - uid: 8027
+ components:
+ - type: Transform
+ pos: -80.5,35.5
+ parent: 2
+ - uid: 8028
+ components:
+ - type: Transform
+ pos: -79.5,32.5
+ parent: 2
+ - uid: 8029
+ components:
+ - type: Transform
+ pos: -79.5,33.5
+ parent: 2
+ - uid: 8030
+ components:
+ - type: Transform
+ pos: -79.5,34.5
+ parent: 2
+ - uid: 8031
+ components:
+ - type: Transform
+ pos: -79.5,35.5
+ parent: 2
+ - uid: 8032
+ components:
+ - type: Transform
+ pos: -78.5,32.5
+ parent: 2
+ - uid: 8033
+ components:
+ - type: Transform
+ pos: -78.5,33.5
+ parent: 2
+ - uid: 8034
+ components:
+ - type: Transform
+ pos: -78.5,34.5
+ parent: 2
+ - uid: 8035
+ components:
+ - type: Transform
+ pos: -78.5,35.5
+ parent: 2
+ - uid: 8036
+ components:
+ - type: Transform
+ pos: -77.5,32.5
+ parent: 2
+ - uid: 8037
+ components:
+ - type: Transform
+ pos: -77.5,33.5
+ parent: 2
+ - uid: 8038
+ components:
+ - type: Transform
+ pos: -77.5,34.5
+ parent: 2
+ - uid: 8039
+ components:
+ - type: Transform
+ pos: -77.5,35.5
+ parent: 2
+ - uid: 8040
+ components:
+ - type: Transform
+ pos: -76.5,32.5
+ parent: 2
+ - uid: 8041
+ components:
+ - type: Transform
+ pos: -76.5,33.5
+ parent: 2
+ - uid: 8042
+ components:
+ - type: Transform
+ pos: -76.5,34.5
+ parent: 2
+ - uid: 8043
+ components:
+ - type: Transform
+ pos: -76.5,35.5
+ parent: 2
+ - uid: 8044
+ components:
+ - type: Transform
+ pos: -74.5,34.5
+ parent: 2
+ - uid: 8045
+ components:
+ - type: Transform
+ pos: -74.5,33.5
+ parent: 2
+ - uid: 8046
+ components:
+ - type: Transform
+ pos: -73.5,35.5
+ parent: 2
+ - uid: 8047
+ components:
+ - type: Transform
+ pos: -73.5,34.5
+ parent: 2
+ - uid: 8048
+ components:
+ - type: Transform
+ pos: -73.5,33.5
+ parent: 2
+ - uid: 8049
+ components:
+ - type: Transform
+ pos: -75.5,35.5
+ parent: 2
+ - uid: 8050
+ components:
+ - type: Transform
+ pos: -75.5,34.5
+ parent: 2
+ - uid: 8051
+ components:
+ - type: Transform
+ pos: -75.5,33.5
+ parent: 2
+ - uid: 8052
+ components:
+ - type: Transform
+ pos: -74.5,35.5
+ parent: 2
+ - uid: 8053
+ components:
+ - type: Transform
+ pos: -71.5,32.5
+ parent: 2
+ - uid: 8054
+ components:
+ - type: Transform
+ pos: -71.5,31.5
+ parent: 2
+ - uid: 8055
+ components:
+ - type: Transform
+ pos: -73.5,32.5
+ parent: 2
+ - uid: 8056
+ components:
+ - type: Transform
+ pos: -73.5,31.5
+ parent: 2
+ - uid: 8057
+ components:
+ - type: Transform
+ pos: -72.5,33.5
+ parent: 2
+ - uid: 8058
+ components:
+ - type: Transform
+ pos: -72.5,32.5
+ parent: 2
+ - uid: 8059
+ components:
+ - type: Transform
+ pos: -72.5,31.5
+ parent: 2
+ - uid: 8060
+ components:
+ - type: Transform
+ pos: -71.5,33.5
+ parent: 2
+ - uid: 8061
+ components:
+ - type: Transform
+ pos: -72.5,24.5
+ parent: 2
+ - uid: 8062
+ components:
+ - type: Transform
+ pos: -67.5,24.5
+ parent: 2
+ - uid: 8063
+ components:
+ - type: Transform
+ pos: -68.5,24.5
+ parent: 2
+ - uid: 8064
+ components:
+ - type: Transform
+ pos: -69.5,24.5
+ parent: 2
+ - uid: 8065
+ components:
+ - type: Transform
+ pos: -70.5,24.5
+ parent: 2
+ - uid: 8066
+ components:
+ - type: Transform
+ pos: -71.5,24.5
+ parent: 2
+ - uid: 8067
+ components:
+ - type: Transform
+ pos: -64.5,24.5
+ parent: 2
+ - uid: 8068
+ components:
+ - type: Transform
+ pos: -65.5,24.5
+ parent: 2
+ - uid: 8069
+ components:
+ - type: Transform
+ pos: -65.5,23.5
+ parent: 2
+ - uid: 8070
+ components:
+ - type: Transform
+ pos: -66.5,24.5
+ parent: 2
+ - uid: 8071
+ components:
+ - type: Transform
+ pos: -72.5,25.5
+ parent: 2
+ - uid: 8072
+ components:
+ - type: Transform
+ pos: -72.5,26.5
+ parent: 2
+ - uid: 8073
+ components:
+ - type: Transform
+ pos: -72.5,27.5
+ parent: 2
+ - uid: 8074
+ components:
+ - type: Transform
+ pos: -72.5,28.5
+ parent: 2
+ - uid: 8075
+ components:
+ - type: Transform
+ pos: -72.5,29.5
+ parent: 2
+ - uid: 8076
+ components:
+ - type: Transform
+ pos: -71.5,30.5
+ parent: 2
+ - uid: 8077
+ components:
+ - type: Transform
+ pos: -71.5,29.5
+ parent: 2
+ - uid: 8078
+ components:
+ - type: Transform
+ pos: -72.5,30.5
+ parent: 2
+ - uid: 8079
+ components:
+ - type: Transform
+ pos: -68.5,26.5
+ parent: 2
+ - uid: 8080
+ components:
+ - type: Transform
+ pos: -68.5,25.5
+ parent: 2
+ - uid: 8081
+ components:
+ - type: Transform
+ pos: -71.5,28.5
+ parent: 2
+ - uid: 8082
+ components:
+ - type: Transform
+ pos: -71.5,27.5
+ parent: 2
+ - uid: 8083
+ components:
+ - type: Transform
+ pos: -71.5,26.5
+ parent: 2
+ - uid: 8084
+ components:
+ - type: Transform
+ pos: -71.5,25.5
+ parent: 2
+ - uid: 8085
+ components:
+ - type: Transform
+ pos: -70.5,29.5
+ parent: 2
+ - uid: 8086
+ components:
+ - type: Transform
+ pos: -70.5,28.5
+ parent: 2
+ - uid: 8087
+ components:
+ - type: Transform
+ pos: -70.5,27.5
+ parent: 2
+ - uid: 8088
+ components:
+ - type: Transform
+ pos: -70.5,26.5
+ parent: 2
+ - uid: 8089
+ components:
+ - type: Transform
+ pos: -70.5,25.5
+ parent: 2
+ - uid: 8090
+ components:
+ - type: Transform
+ pos: -69.5,29.5
+ parent: 2
+ - uid: 8091
+ components:
+ - type: Transform
+ pos: -69.5,28.5
+ parent: 2
+ - uid: 8092
+ components:
+ - type: Transform
+ pos: -69.5,27.5
+ parent: 2
+ - uid: 8093
+ components:
+ - type: Transform
+ pos: -69.5,26.5
+ parent: 2
+ - uid: 8094
+ components:
+ - type: Transform
+ pos: -69.5,25.5
+ parent: 2
+ - uid: 8095
+ components:
+ - type: Transform
+ pos: -68.5,29.5
+ parent: 2
+ - uid: 8096
+ components:
+ - type: Transform
+ pos: -68.5,28.5
+ parent: 2
+ - uid: 8097
+ components:
+ - type: Transform
+ pos: -68.5,27.5
+ parent: 2
+ - uid: 8098
+ components:
+ - type: Transform
+ pos: -67.5,25.5
+ parent: 2
+ - uid: 8099
+ components:
+ - type: Transform
+ pos: -66.5,25.5
+ parent: 2
+ - uid: 8100
+ components:
+ - type: Transform
+ pos: -66.5,26.5
+ parent: 2
+ - uid: 8101
+ components:
+ - type: Transform
+ pos: -66.5,27.5
+ parent: 2
+ - uid: 8102
+ components:
+ - type: Transform
+ pos: -67.5,26.5
+ parent: 2
+ - uid: 8103
+ components:
+ - type: Transform
+ pos: -67.5,27.5
+ parent: 2
+ - uid: 8104
+ components:
+ - type: Transform
+ pos: -71.5,37.5
+ parent: 2
+ - uid: 8105
+ components:
+ - type: Transform
+ pos: -71.5,38.5
+ parent: 2
+ - uid: 8106
+ components:
+ - type: Transform
+ pos: -72.5,36.5
+ parent: 2
+ - uid: 8107
+ components:
+ - type: Transform
+ pos: -72.5,37.5
+ parent: 2
+ - uid: 8108
+ components:
+ - type: Transform
+ pos: -72.5,38.5
+ parent: 2
+ - uid: 8109
+ components:
+ - type: Transform
+ pos: -73.5,36.5
+ parent: 2
+ - uid: 8110
+ components:
+ - type: Transform
+ pos: -73.5,37.5
+ parent: 2
+ - uid: 8111
+ components:
+ - type: Transform
+ pos: -73.5,38.5
+ parent: 2
+ - uid: 8112
+ components:
+ - type: Transform
+ pos: -69.5,36.5
+ parent: 2
+ - uid: 8113
+ components:
+ - type: Transform
+ pos: -69.5,37.5
+ parent: 2
+ - uid: 8114
+ components:
+ - type: Transform
+ pos: -69.5,38.5
+ parent: 2
+ - uid: 8115
+ components:
+ - type: Transform
+ pos: -70.5,36.5
+ parent: 2
+ - uid: 8116
+ components:
+ - type: Transform
+ pos: -70.5,37.5
+ parent: 2
+ - uid: 8117
+ components:
+ - type: Transform
+ pos: -70.5,38.5
+ parent: 2
+ - uid: 8118
+ components:
+ - type: Transform
+ pos: -71.5,36.5
+ parent: 2
+ - uid: 8119
+ components:
+ - type: Transform
+ pos: -75.5,37.5
+ parent: 2
+ - uid: 8120
+ components:
+ - type: Transform
+ pos: -75.5,36.5
+ parent: 2
+ - uid: 8121
+ components:
+ - type: Transform
+ pos: -75.5,32.5
+ parent: 2
+ - uid: 8122
+ components:
+ - type: Transform
+ pos: -74.5,37.5
+ parent: 2
+ - uid: 8123
+ components:
+ - type: Transform
+ pos: -74.5,36.5
+ parent: 2
+ - uid: 8124
+ components:
+ - type: Transform
+ pos: -74.5,32.5
+ parent: 2
+ - uid: 8125
+ components:
+ - type: Transform
+ pos: -75.5,38.5
+ parent: 2
+ - uid: 8126
+ components:
+ - type: Transform
+ pos: -74.5,38.5
+ parent: 2
+ - uid: 8127
+ components:
+ - type: Transform
+ pos: -76.5,29.5
+ parent: 2
+ - uid: 8128
+ components:
+ - type: Transform
+ pos: -77.5,31.5
+ parent: 2
+ - uid: 8129
+ components:
+ - type: Transform
+ pos: -77.5,30.5
+ parent: 2
+ - uid: 8130
+ components:
+ - type: Transform
+ pos: -77.5,29.5
+ parent: 2
+ - uid: 8131
+ components:
+ - type: Transform
+ pos: -75.5,31.5
+ parent: 2
+ - uid: 8132
+ components:
+ - type: Transform
+ pos: -75.5,30.5
+ parent: 2
+ - uid: 8133
+ components:
+ - type: Transform
+ pos: -75.5,29.5
+ parent: 2
+ - uid: 8134
+ components:
+ - type: Transform
+ pos: -76.5,31.5
+ parent: 2
+ - uid: 8135
+ components:
+ - type: Transform
+ pos: -76.5,30.5
+ parent: 2
+ - uid: 8136
+ components:
+ - type: Transform
+ pos: -77.5,28.5
+ parent: 2
+ - uid: 8137
+ components:
+ - type: Transform
+ pos: -75.5,27.5
+ parent: 2
+ - uid: 8138
+ components:
+ - type: Transform
+ pos: -75.5,28.5
+ parent: 2
+ - uid: 8139
+ components:
+ - type: Transform
+ pos: -74.5,25.5
+ parent: 2
+ - uid: 8140
+ components:
+ - type: Transform
+ pos: -74.5,26.5
+ parent: 2
+ - uid: 8141
+ components:
+ - type: Transform
+ pos: -74.5,27.5
+ parent: 2
+ - uid: 8142
+ components:
+ - type: Transform
+ pos: -74.5,28.5
+ parent: 2
+ - uid: 8143
+ components:
+ - type: Transform
+ pos: -74.5,29.5
+ parent: 2
+ - uid: 8144
+ components:
+ - type: Transform
+ pos: -74.5,30.5
+ parent: 2
+ - uid: 8145
+ components:
+ - type: Transform
+ pos: -73.5,24.5
+ parent: 2
+ - uid: 8146
+ components:
+ - type: Transform
+ pos: -73.5,25.5
+ parent: 2
+ - uid: 8147
+ components:
+ - type: Transform
+ pos: -73.5,26.5
+ parent: 2
+ - uid: 8148
+ components:
+ - type: Transform
+ pos: -73.5,27.5
+ parent: 2
+ - uid: 8149
+ components:
+ - type: Transform
+ pos: -73.5,28.5
+ parent: 2
+ - uid: 8150
+ components:
+ - type: Transform
+ pos: -73.5,29.5
+ parent: 2
+ - uid: 8151
+ components:
+ - type: Transform
+ pos: -73.5,30.5
+ parent: 2
+ - uid: 8152
+ components:
+ - type: Transform
+ pos: -74.5,24.5
+ parent: 2
+ - uid: 8153
+ components:
+ - type: Transform
+ pos: -76.5,27.5
+ parent: 2
+ - uid: 8154
+ components:
+ - type: Transform
+ pos: -76.5,28.5
+ parent: 2
+ - uid: 8155
+ components:
+ - type: Transform
+ pos: -77.5,27.5
+ parent: 2
+ - uid: 8156
+ components:
+ - type: Transform
+ pos: -84.5,36.5
+ parent: 2
+ - uid: 8157
+ components:
+ - type: Transform
+ pos: -84.5,35.5
+ parent: 2
+ - uid: 8158
+ components:
+ - type: Transform
+ pos: -83.5,37.5
+ parent: 2
+ - uid: 8159
+ components:
+ - type: Transform
+ pos: -83.5,36.5
+ parent: 2
+ - uid: 8160
+ components:
+ - type: Transform
+ pos: -83.5,35.5
+ parent: 2
+ - uid: 8161
+ components:
+ - type: Transform
+ pos: -82.5,37.5
+ parent: 2
+ - uid: 8162
+ components:
+ - type: Transform
+ pos: -82.5,36.5
+ parent: 2
+ - uid: 8163
+ components:
+ - type: Transform
+ pos: -82.5,35.5
+ parent: 2
+ - uid: 8164
+ components:
+ - type: Transform
+ pos: -86.5,37.5
+ parent: 2
+ - uid: 8165
+ components:
+ - type: Transform
+ pos: -86.5,36.5
+ parent: 2
+ - uid: 8166
+ components:
+ - type: Transform
+ pos: -86.5,35.5
+ parent: 2
+ - uid: 8167
+ components:
+ - type: Transform
+ pos: -85.5,37.5
+ parent: 2
+ - uid: 8168
+ components:
+ - type: Transform
+ pos: -85.5,36.5
+ parent: 2
+ - uid: 8169
+ components:
+ - type: Transform
+ pos: -85.5,35.5
+ parent: 2
+ - uid: 8170
+ components:
+ - type: Transform
+ pos: -84.5,37.5
+ parent: 2
+ - uid: 8171
+ components:
+ - type: Transform
+ pos: -82.5,34.5
+ parent: 2
+ - uid: 8172
+ components:
+ - type: Transform
+ pos: -82.5,33.5
+ parent: 2
+ - uid: 8173
+ components:
+ - type: Transform
+ pos: -85.5,32.5
+ parent: 2
+ - uid: 8174
+ components:
+ - type: Transform
+ pos: -82.5,32.5
+ parent: 2
+ - uid: 8175
+ components:
+ - type: Transform
+ pos: -83.5,33.5
+ parent: 2
+ - uid: 8176
+ components:
+ - type: Transform
+ pos: -83.5,32.5
+ parent: 2
+ - uid: 8177
+ components:
+ - type: Transform
+ pos: -84.5,33.5
+ parent: 2
+ - uid: 8178
+ components:
+ - type: Transform
+ pos: -84.5,32.5
+ parent: 2
+ - uid: 8179
+ components:
+ - type: Transform
+ pos: -85.5,33.5
+ parent: 2
+ - uid: 8180
+ components:
+ - type: Transform
+ pos: -86.5,32.5
+ parent: 2
+ - uid: 8181
+ components:
+ - type: Transform
+ pos: -86.5,33.5
+ parent: 2
+ - uid: 8182
+ components:
+ - type: Transform
+ pos: -87.5,32.5
+ parent: 2
+ - uid: 8183
+ components:
+ - type: Transform
+ pos: -87.5,33.5
+ parent: 2
+ - uid: 8184
+ components:
+ - type: Transform
+ pos: -87.5,34.5
+ parent: 2
+ - uid: 8185
+ components:
+ - type: Transform
+ pos: -86.5,34.5
+ parent: 2
+ - uid: 8186
+ components:
+ - type: Transform
+ pos: -85.5,34.5
+ parent: 2
+ - uid: 8187
+ components:
+ - type: Transform
+ pos: -84.5,34.5
+ parent: 2
+ - uid: 8188
+ components:
+ - type: Transform
+ pos: -83.5,34.5
+ parent: 2
+ - uid: 8189
+ components:
+ - type: Transform
+ pos: -79.5,36.5
+ parent: 2
+ - uid: 8190
+ components:
+ - type: Transform
+ pos: -79.5,37.5
+ parent: 2
+ - uid: 8191
+ components:
+ - type: Transform
+ pos: -78.5,36.5
+ parent: 2
+ - uid: 8192
+ components:
+ - type: Transform
+ pos: -78.5,37.5
+ parent: 2
+ - uid: 8193
+ components:
+ - type: Transform
+ pos: -76.5,38.5
+ parent: 2
+ - uid: 8194
+ components:
+ - type: Transform
+ pos: -77.5,37.5
+ parent: 2
+ - uid: 8195
+ components:
+ - type: Transform
+ pos: -78.5,38.5
+ parent: 2
+ - uid: 8196
+ components:
+ - type: Transform
+ pos: -77.5,38.5
+ parent: 2
+ - uid: 8197
+ components:
+ - type: Transform
+ pos: -76.5,37.5
+ parent: 2
+ - uid: 8198
+ components:
+ - type: Transform
+ pos: -80.5,37.5
+ parent: 2
+ - uid: 8199
+ components:
+ - type: Transform
+ pos: -80.5,36.5
+ parent: 2
+ - uid: 8200
+ components:
+ - type: Transform
+ pos: -81.5,37.5
+ parent: 2
+ - uid: 8201
+ components:
+ - type: Transform
+ pos: -81.5,36.5
+ parent: 2
+ - uid: 8202
+ components:
+ - type: Transform
+ pos: -81.5,39.5
+ parent: 2
+ - uid: 8203
+ components:
+ - type: Transform
+ pos: -82.5,38.5
+ parent: 2
+ - uid: 8204
+ components:
+ - type: Transform
+ pos: -82.5,39.5
+ parent: 2
+ - uid: 8205
+ components:
+ - type: Transform
+ pos: -81.5,38.5
+ parent: 2
+ - uid: 8206
+ components:
+ - type: Transform
+ pos: -80.5,39.5
+ parent: 2
+ - uid: 8207
+ components:
+ - type: Transform
+ pos: -79.5,39.5
+ parent: 2
+ - uid: 8208
+ components:
+ - type: Transform
+ pos: -78.5,39.5
+ parent: 2
+ - uid: 8209
+ components:
+ - type: Transform
+ pos: -77.5,39.5
+ parent: 2
+ - uid: 8210
+ components:
+ - type: Transform
+ pos: -76.5,39.5
+ parent: 2
+ - uid: 8211
+ components:
+ - type: Transform
+ pos: -76.5,40.5
+ parent: 2
+ - uid: 8212
+ components:
+ - type: Transform
+ pos: -75.5,39.5
+ parent: 2
+ - uid: 8213
+ components:
+ - type: Transform
+ pos: -75.5,40.5
+ parent: 2
+ - uid: 8214
+ components:
+ - type: Transform
+ pos: -74.5,39.5
+ parent: 2
+ - uid: 8215
+ components:
+ - type: Transform
+ pos: -74.5,40.5
+ parent: 2
+ - uid: 8216
+ components:
+ - type: Transform
+ pos: -79.5,38.5
+ parent: 2
+ - uid: 8217
+ components:
+ - type: Transform
+ pos: -77.5,40.5
+ parent: 2
+ - uid: 8218
+ components:
+ - type: Transform
+ pos: -78.5,40.5
+ parent: 2
+ - uid: 8219
+ components:
+ - type: Transform
+ pos: -79.5,40.5
+ parent: 2
+ - uid: 8220
+ components:
+ - type: Transform
+ pos: -77.5,41.5
+ parent: 2
+ - uid: 8221
+ components:
+ - type: Transform
+ pos: -78.5,41.5
+ parent: 2
+ - uid: 8222
+ components:
+ - type: Transform
+ pos: -79.5,41.5
+ parent: 2
+ - uid: 8223
+ components:
+ - type: Transform
+ pos: -69.5,34.5
+ parent: 2
+ - uid: 8224
+ components:
+ - type: Transform
+ pos: -69.5,33.5
+ parent: 2
+ - uid: 8225
+ components:
+ - type: Transform
+ pos: -69.5,32.5
+ parent: 2
+ - uid: 8226
+ components:
+ - type: Transform
+ pos: -68.5,36.5
+ parent: 2
+ - uid: 8227
+ components:
+ - type: Transform
+ pos: -68.5,35.5
+ parent: 2
+ - uid: 8228
+ components:
+ - type: Transform
+ pos: -68.5,34.5
+ parent: 2
+ - uid: 8229
+ components:
+ - type: Transform
+ pos: -68.5,33.5
+ parent: 2
+ - uid: 8230
+ components:
+ - type: Transform
+ pos: -68.5,32.5
+ parent: 2
+ - uid: 8231
+ components:
+ - type: Transform
+ pos: -69.5,35.5
+ parent: 2
+ - uid: 8232
+ components:
+ - type: Transform
+ pos: -70.5,35.5
+ parent: 2
+ - uid: 8233
+ components:
+ - type: Transform
+ pos: -70.5,34.5
+ parent: 2
+ - uid: 8234
+ components:
+ - type: Transform
+ pos: -70.5,33.5
+ parent: 2
+ - uid: 8235
+ components:
+ - type: Transform
+ pos: -70.5,32.5
+ parent: 2
+ - uid: 8236
+ components:
+ - type: Transform
+ pos: -69.5,40.5
+ parent: 2
+ - uid: 8237
+ components:
+ - type: Transform
+ pos: -69.5,39.5
+ parent: 2
+ - uid: 8238
+ components:
+ - type: Transform
+ pos: -70.5,40.5
+ parent: 2
+ - uid: 8239
+ components:
+ - type: Transform
+ pos: -70.5,39.5
+ parent: 2
+ - uid: 8240
+ components:
+ - type: Transform
+ pos: -71.5,40.5
+ parent: 2
+ - uid: 8241
+ components:
+ - type: Transform
+ pos: -71.5,39.5
+ parent: 2
+ - uid: 8242
+ components:
+ - type: Transform
+ pos: -68.5,38.5
+ parent: 2
+ - uid: 8243
+ components:
+ - type: Transform
+ pos: -68.5,37.5
+ parent: 2
+ - uid: 8244
+ components:
+ - type: Transform
+ pos: -89.5,37.5
+ parent: 2
+ - uid: 8245
+ components:
+ - type: Transform
+ pos: -89.5,36.5
+ parent: 2
+ - uid: 8246
+ components:
+ - type: Transform
+ pos: -88.5,38.5
+ parent: 2
+ - uid: 8247
+ components:
+ - type: Transform
+ pos: -88.5,37.5
+ parent: 2
+ - uid: 8248
+ components:
+ - type: Transform
+ pos: -88.5,36.5
+ parent: 2
+ - uid: 8249
+ components:
+ - type: Transform
+ pos: -87.5,38.5
+ parent: 2
+ - uid: 8250
+ components:
+ - type: Transform
+ pos: -87.5,37.5
+ parent: 2
+ - uid: 8251
+ components:
+ - type: Transform
+ pos: -87.5,36.5
+ parent: 2
+ - uid: 8252
+ components:
+ - type: Transform
+ pos: -91.5,38.5
+ parent: 2
+ - uid: 8253
+ components:
+ - type: Transform
+ pos: -91.5,37.5
+ parent: 2
+ - uid: 8254
+ components:
+ - type: Transform
+ pos: -91.5,36.5
+ parent: 2
+ - uid: 8255
+ components:
+ - type: Transform
+ pos: -90.5,38.5
+ parent: 2
+ - uid: 8256
+ components:
+ - type: Transform
+ pos: -90.5,37.5
+ parent: 2
+ - uid: 8257
+ components:
+ - type: Transform
+ pos: -90.5,36.5
+ parent: 2
+ - uid: 8258
+ components:
+ - type: Transform
+ pos: -89.5,38.5
+ parent: 2
+ - uid: 8259
+ components:
+ - type: Transform
+ pos: -87.5,35.5
+ parent: 2
+ - uid: 8260
+ components:
+ - type: Transform
+ pos: -89.5,35.5
+ parent: 2
+ - uid: 8261
+ components:
+ - type: Transform
+ pos: -88.5,35.5
+ parent: 2
+ - uid: 8262
+ components:
+ - type: Transform
+ pos: -83.5,38.5
+ parent: 2
+ - uid: 8263
+ components:
+ - type: Transform
+ pos: -84.5,38.5
+ parent: 2
+ - uid: 8264
+ components:
+ - type: Transform
+ pos: -81.5,40.5
+ parent: 2
+ - uid: 8265
+ components:
+ - type: Transform
+ pos: -73.5,41.5
+ parent: 2
+ - uid: 8266
+ components:
+ - type: Transform
+ pos: -77.5,42.5
+ parent: 2
+ - uid: 8267
+ components:
+ - type: Transform
+ pos: -76.5,42.5
+ parent: 2
+ - uid: 8268
+ components:
+ - type: Transform
+ pos: -75.5,41.5
+ parent: 2
+ - uid: 8269
+ components:
+ - type: Transform
+ pos: -72.5,39.5
+ parent: 2
+ - uid: 8270
+ components:
+ - type: Transform
+ pos: -67.5,36.5
+ parent: 2
+ - uid: 8271
+ components:
+ - type: Transform
+ pos: -67.5,33.5
+ parent: 2
+ - uid: 8272
+ components:
+ - type: Transform
+ pos: -67.5,34.5
+ parent: 2
+ - uid: 8273
+ components:
+ - type: Transform
+ pos: -67.5,29.5
+ parent: 2
+ - uid: 8274
+ components:
+ - type: Transform
+ pos: -69.5,30.5
+ parent: 2
+ - uid: 8275
+ components:
+ - type: Transform
+ pos: -70.5,30.5
+ parent: 2
+ - uid: 8276
+ components:
+ - type: Transform
+ pos: -64.5,54.5
+ parent: 2
+ - uid: 8277
+ components:
+ - type: Transform
+ pos: -64.5,53.5
+ parent: 2
+ - uid: 8278
+ components:
+ - type: Transform
+ pos: -64.5,52.5
+ parent: 2
+ - uid: 8279
+ components:
+ - type: Transform
+ pos: -64.5,51.5
+ parent: 2
+ - uid: 8280
+ components:
+ - type: Transform
+ pos: -64.5,50.5
+ parent: 2
+ - uid: 8281
+ components:
+ - type: Transform
+ pos: -64.5,49.5
+ parent: 2
+ - uid: 8282
+ components:
+ - type: Transform
+ pos: -65.5,54.5
+ parent: 2
+ - uid: 8283
+ components:
+ - type: Transform
+ pos: -65.5,53.5
+ parent: 2
+ - uid: 8284
+ components:
+ - type: Transform
+ pos: -65.5,52.5
+ parent: 2
+ - uid: 8285
+ components:
+ - type: Transform
+ pos: -65.5,51.5
+ parent: 2
+ - uid: 8286
+ components:
+ - type: Transform
+ pos: -65.5,50.5
+ parent: 2
+ - uid: 8287
+ components:
+ - type: Transform
+ pos: -65.5,49.5
+ parent: 2
+ - uid: 8288
+ components:
+ - type: Transform
+ pos: -66.5,54.5
+ parent: 2
+ - uid: 8289
+ components:
+ - type: Transform
+ pos: -66.5,53.5
+ parent: 2
+ - uid: 8290
+ components:
+ - type: Transform
+ pos: -66.5,52.5
+ parent: 2
+ - uid: 8291
+ components:
+ - type: Transform
+ pos: -66.5,51.5
+ parent: 2
+ - uid: 8292
+ components:
+ - type: Transform
+ pos: -66.5,50.5
+ parent: 2
+ - uid: 8293
+ components:
+ - type: Transform
+ pos: -66.5,49.5
+ parent: 2
+ - uid: 8294
+ components:
+ - type: Transform
+ pos: -67.5,54.5
+ parent: 2
+ - uid: 8295
+ components:
+ - type: Transform
+ pos: -67.5,53.5
+ parent: 2
+ - uid: 8296
+ components:
+ - type: Transform
+ pos: -67.5,52.5
+ parent: 2
+ - uid: 8297
+ components:
+ - type: Transform
+ pos: -67.5,51.5
+ parent: 2
+ - uid: 8298
+ components:
+ - type: Transform
+ pos: -67.5,50.5
+ parent: 2
+ - uid: 8299
+ components:
+ - type: Transform
+ pos: -67.5,49.5
+ parent: 2
+ - uid: 8300
+ components:
+ - type: Transform
+ pos: -68.5,54.5
+ parent: 2
+ - uid: 8301
+ components:
+ - type: Transform
+ pos: -68.5,53.5
+ parent: 2
+ - uid: 8302
+ components:
+ - type: Transform
+ pos: -68.5,52.5
+ parent: 2
+ - uid: 8303
+ components:
+ - type: Transform
+ pos: -68.5,51.5
+ parent: 2
+ - uid: 8304
+ components:
+ - type: Transform
+ pos: -68.5,50.5
+ parent: 2
+ - uid: 8305
+ components:
+ - type: Transform
+ pos: -68.5,49.5
+ parent: 2
+ - uid: 8306
+ components:
+ - type: Transform
+ pos: -69.5,54.5
+ parent: 2
+ - uid: 8307
+ components:
+ - type: Transform
+ pos: -69.5,53.5
+ parent: 2
+ - uid: 8308
+ components:
+ - type: Transform
+ pos: -69.5,52.5
+ parent: 2
+ - uid: 8309
+ components:
+ - type: Transform
+ pos: -69.5,51.5
+ parent: 2
+ - uid: 8310
+ components:
+ - type: Transform
+ pos: -69.5,50.5
+ parent: 2
+ - uid: 8311
+ components:
+ - type: Transform
+ pos: -69.5,49.5
+ parent: 2
+ - uid: 8312
+ components:
+ - type: Transform
+ pos: -70.5,54.5
+ parent: 2
+ - uid: 8313
+ components:
+ - type: Transform
+ pos: -70.5,53.5
+ parent: 2
+ - uid: 8314
+ components:
+ - type: Transform
+ pos: -70.5,52.5
+ parent: 2
+ - uid: 8315
+ components:
+ - type: Transform
+ pos: -70.5,51.5
+ parent: 2
+ - uid: 8316
+ components:
+ - type: Transform
+ pos: -70.5,50.5
+ parent: 2
+ - uid: 8317
+ components:
+ - type: Transform
+ pos: -70.5,49.5
+ parent: 2
+ - uid: 8318
+ components:
+ - type: Transform
+ pos: -74.5,51.5
+ parent: 2
+ - uid: 8319
+ components:
+ - type: Transform
+ pos: -74.5,50.5
+ parent: 2
+ - uid: 8320
+ components:
+ - type: Transform
+ pos: -75.5,52.5
+ parent: 2
+ - uid: 8321
+ components:
+ - type: Transform
+ pos: -75.5,51.5
+ parent: 2
+ - uid: 8322
+ components:
+ - type: Transform
+ pos: -75.5,50.5
+ parent: 2
+ - uid: 8323
+ components:
+ - type: Transform
+ pos: -76.5,52.5
+ parent: 2
+ - uid: 8324
+ components:
+ - type: Transform
+ pos: -76.5,51.5
+ parent: 2
+ - uid: 8325
+ components:
+ - type: Transform
+ pos: -76.5,50.5
+ parent: 2
+ - uid: 8326
+ components:
+ - type: Transform
+ pos: -72.5,52.5
+ parent: 2
+ - uid: 8327
+ components:
+ - type: Transform
+ pos: -72.5,51.5
+ parent: 2
+ - uid: 8328
+ components:
+ - type: Transform
+ pos: -72.5,50.5
+ parent: 2
+ - uid: 8329
+ components:
+ - type: Transform
+ pos: -73.5,52.5
+ parent: 2
+ - uid: 8330
+ components:
+ - type: Transform
+ pos: -73.5,51.5
+ parent: 2
+ - uid: 8331
+ components:
+ - type: Transform
+ pos: -73.5,50.5
+ parent: 2
+ - uid: 8332
+ components:
+ - type: Transform
+ pos: -74.5,52.5
+ parent: 2
+ - uid: 8333
+ components:
+ - type: Transform
+ pos: -72.5,47.5
+ parent: 2
+ - uid: 8334
+ components:
+ - type: Transform
+ pos: -72.5,46.5
+ parent: 2
+ - uid: 8335
+ components:
+ - type: Transform
+ pos: -71.5,47.5
+ parent: 2
+ - uid: 8336
+ components:
+ - type: Transform
+ pos: -71.5,46.5
+ parent: 2
+ - uid: 8337
+ components:
+ - type: Transform
+ pos: -70.5,46.5
+ parent: 2
+ - uid: 8338
+ components:
+ - type: Transform
+ pos: -70.5,47.5
+ parent: 2
+ - uid: 8339
+ components:
+ - type: Transform
+ pos: -69.5,46.5
+ parent: 2
+ - uid: 8340
+ components:
+ - type: Transform
+ pos: -69.5,47.5
+ parent: 2
+ - uid: 8341
+ components:
+ - type: Transform
+ pos: -68.5,46.5
+ parent: 2
+ - uid: 8342
+ components:
+ - type: Transform
+ pos: -68.5,47.5
+ parent: 2
+ - uid: 8343
+ components:
+ - type: Transform
+ pos: -79.5,47.5
+ parent: 2
+ - uid: 8344
+ components:
+ - type: Transform
+ pos: -79.5,48.5
+ parent: 2
+ - uid: 8345
+ components:
+ - type: Transform
+ pos: -79.5,49.5
+ parent: 2
+ - uid: 8346
+ components:
+ - type: Transform
+ pos: -80.5,47.5
+ parent: 2
+ - uid: 8347
+ components:
+ - type: Transform
+ pos: -80.5,49.5
+ parent: 2
+ - uid: 8348
+ components:
+ - type: Transform
+ pos: -80.5,48.5
+ parent: 2
+ - uid: 8349
+ components:
+ - type: Transform
+ pos: -80.5,50.5
+ parent: 2
+ - uid: 8350
+ components:
+ - type: Transform
+ pos: -71.5,45.5
+ parent: 2
+ - uid: 8351
+ components:
+ - type: Transform
+ pos: -72.5,45.5
+ parent: 2
+ - uid: 8352
+ components:
+ - type: Transform
+ pos: -73.5,45.5
+ parent: 2
+ - uid: 8353
+ components:
+ - type: Transform
+ pos: -74.5,45.5
+ parent: 2
+ - uid: 8354
+ components:
+ - type: Transform
+ pos: -77.5,44.5
+ parent: 2
+ - uid: 8355
+ components:
+ - type: Transform
+ pos: -78.5,45.5
+ parent: 2
+ - uid: 8356
+ components:
+ - type: Transform
+ pos: -78.5,44.5
+ parent: 2
+ - uid: 8357
+ components:
+ - type: Transform
+ pos: -79.5,44.5
+ parent: 2
+ - uid: 8358
+ components:
+ - type: Transform
+ pos: -80.5,45.5
+ parent: 2
+ - uid: 8359
+ components:
+ - type: Transform
+ pos: -80.5,44.5
+ parent: 2
+ - uid: 8360
+ components:
+ - type: Transform
+ pos: -79.5,45.5
+ parent: 2
+ - uid: 8361
+ components:
+ - type: Transform
+ pos: -74.5,44.5
+ parent: 2
+ - uid: 8362
+ components:
+ - type: Transform
+ pos: -75.5,45.5
+ parent: 2
+ - uid: 8363
+ components:
+ - type: Transform
+ pos: -75.5,44.5
+ parent: 2
+ - uid: 8364
+ components:
+ - type: Transform
+ pos: -76.5,45.5
+ parent: 2
+ - uid: 8365
+ components:
+ - type: Transform
+ pos: -76.5,44.5
+ parent: 2
+ - uid: 8366
+ components:
+ - type: Transform
+ pos: -77.5,45.5
+ parent: 2
+ - uid: 8367
+ components:
+ - type: Transform
+ pos: -81.5,45.5
+ parent: 2
+ - uid: 8368
+ components:
+ - type: Transform
+ pos: -81.5,46.5
+ parent: 2
+ - uid: 8369
+ components:
+ - type: Transform
+ pos: -82.5,45.5
+ parent: 2
+ - uid: 8370
+ components:
+ - type: Transform
+ pos: -81.5,48.5
+ parent: 2
+ - uid: 8371
+ components:
+ - type: Transform
+ pos: -82.5,46.5
+ parent: 2
+ - uid: 8372
+ components:
+ - type: Transform
+ pos: -82.5,48.5
+ parent: 2
+ - uid: 8373
+ components:
+ - type: Transform
+ pos: -82.5,47.5
+ parent: 2
+ - uid: 8374
+ components:
+ - type: Transform
+ pos: -81.5,47.5
+ parent: 2
+ - uid: 8375
+ components:
+ - type: Transform
+ pos: -84.5,48.5
+ parent: 2
+ - uid: 8376
+ components:
+ - type: Transform
+ pos: -84.5,47.5
+ parent: 2
+ - uid: 8377
+ components:
+ - type: Transform
+ pos: -83.5,48.5
+ parent: 2
+ - uid: 8378
+ components:
+ - type: Transform
+ pos: -83.5,47.5
+ parent: 2
+ - uid: 8379
+ components:
+ - type: Transform
+ pos: -86.5,49.5
+ parent: 2
+ - uid: 8380
+ components:
+ - type: Transform
+ pos: -81.5,54.5
+ parent: 2
+ - uid: 8381
+ components:
+ - type: Transform
+ pos: -79.5,54.5
+ parent: 2
+ - uid: 8382
+ components:
+ - type: Transform
+ pos: -80.5,54.5
+ parent: 2
+ - uid: 8383
+ components:
+ - type: Transform
+ pos: -79.5,53.5
+ parent: 2
+ - uid: 8384
+ components:
+ - type: Transform
+ pos: -78.5,54.5
+ parent: 2
+ - uid: 8385
+ components:
+ - type: Transform
+ pos: -78.5,53.5
+ parent: 2
+ - uid: 8386
+ components:
+ - type: Transform
+ pos: -80.5,52.5
+ parent: 2
+ - uid: 8387
+ components:
+ - type: Transform
+ pos: -80.5,51.5
+ parent: 2
+ - uid: 8388
+ components:
+ - type: Transform
+ pos: -78.5,52.5
+ parent: 2
+ - uid: 8389
+ components:
+ - type: Transform
+ pos: -78.5,51.5
+ parent: 2
+ - uid: 8390
+ components:
+ - type: Transform
+ pos: -79.5,52.5
+ parent: 2
+ - uid: 8391
+ components:
+ - type: Transform
+ pos: -79.5,51.5
+ parent: 2
+ - uid: 8392
+ components:
+ - type: Transform
+ pos: -80.5,53.5
+ parent: 2
+ - uid: 8393
+ components:
+ - type: Transform
+ pos: -77.5,54.5
+ parent: 2
+ - uid: 8394
+ components:
+ - type: Transform
+ pos: -77.5,53.5
+ parent: 2
+ - uid: 8395
+ components:
+ - type: Transform
+ pos: -76.5,55.5
+ parent: 2
+ - uid: 8396
+ components:
+ - type: Transform
+ pos: -76.5,54.5
+ parent: 2
+ - uid: 8397
+ components:
+ - type: Transform
+ pos: -75.5,55.5
+ parent: 2
+ - uid: 8398
+ components:
+ - type: Transform
+ pos: -75.5,54.5
+ parent: 2
+ - uid: 8399
+ components:
+ - type: Transform
+ pos: -74.5,55.5
+ parent: 2
+ - uid: 8400
+ components:
+ - type: Transform
+ pos: -73.5,55.5
+ parent: 2
+ - uid: 8401
+ components:
+ - type: Transform
+ pos: -73.5,54.5
+ parent: 2
+ - uid: 8402
+ components:
+ - type: Transform
+ pos: -74.5,54.5
+ parent: 2
+ - uid: 8403
+ components:
+ - type: Transform
+ pos: -73.5,53.5
+ parent: 2
+ - uid: 8404
+ components:
+ - type: Transform
+ pos: -74.5,53.5
+ parent: 2
+ - uid: 8405
+ components:
+ - type: Transform
+ pos: -72.5,53.5
+ parent: 2
+ - uid: 8406
+ components:
+ - type: Transform
+ pos: -75.5,53.5
+ parent: 2
+ - uid: 8407
+ components:
+ - type: Transform
+ pos: -76.5,53.5
+ parent: 2
+ - uid: 8408
+ components:
+ - type: Transform
+ pos: -76.5,49.5
+ parent: 2
+ - uid: 8409
+ components:
+ - type: Transform
+ pos: -77.5,50.5
+ parent: 2
+ - uid: 8410
+ components:
+ - type: Transform
+ pos: -77.5,49.5
+ parent: 2
+ - uid: 8411
+ components:
+ - type: Transform
+ pos: -78.5,50.5
+ parent: 2
+ - uid: 8412
+ components:
+ - type: Transform
+ pos: -78.5,49.5
+ parent: 2
+ - uid: 8413
+ components:
+ - type: Transform
+ pos: -79.5,50.5
+ parent: 2
+ - uid: 8414
+ components:
+ - type: Transform
+ pos: -81.5,49.5
+ parent: 2
+ - uid: 8415
+ components:
+ - type: Transform
+ pos: -82.5,49.5
+ parent: 2
+ - uid: 8416
+ components:
+ - type: Transform
+ pos: -82.5,50.5
+ parent: 2
+ - uid: 8417
+ components:
+ - type: Transform
+ pos: -81.5,52.5
+ parent: 2
+ - uid: 8418
+ components:
+ - type: Transform
+ pos: -82.5,51.5
+ parent: 2
+ - uid: 8419
+ components:
+ - type: Transform
+ pos: -82.5,52.5
+ parent: 2
+ - uid: 8420
+ components:
+ - type: Transform
+ pos: -81.5,50.5
+ parent: 2
+ - uid: 8421
+ components:
+ - type: Transform
+ pos: -81.5,51.5
+ parent: 2
+ - uid: 8422
+ components:
+ - type: Transform
+ pos: -77.5,52.5
+ parent: 2
+ - uid: 8423
+ components:
+ - type: Transform
+ pos: -77.5,51.5
+ parent: 2
+ - uid: 8424
+ components:
+ - type: Transform
+ pos: -75.5,47.5
+ parent: 2
+ - uid: 8425
+ components:
+ - type: Transform
+ pos: -76.5,47.5
+ parent: 2
+ - uid: 8426
+ components:
+ - type: Transform
+ pos: -77.5,47.5
+ parent: 2
+ - uid: 8427
+ components:
+ - type: Transform
+ pos: -78.5,47.5
+ parent: 2
+ - uid: 8428
+ components:
+ - type: Transform
+ pos: -74.5,46.5
+ parent: 2
+ - uid: 8429
+ components:
+ - type: Transform
+ pos: -73.5,47.5
+ parent: 2
+ - uid: 8430
+ components:
+ - type: Transform
+ pos: -72.5,49.5
+ parent: 2
+ - uid: 8431
+ components:
+ - type: Transform
+ pos: -79.5,46.5
+ parent: 2
+ - uid: 8432
+ components:
+ - type: Transform
+ pos: -76.5,48.5
+ parent: 2
+ - uid: 8433
+ components:
+ - type: Transform
+ pos: -73.5,49.5
+ parent: 2
+ - uid: 8434
+ components:
+ - type: Transform
+ pos: -75.5,48.5
+ parent: 2
+ - uid: 8435
+ components:
+ - type: Transform
+ pos: -78.5,46.5
+ parent: 2
+ - uid: 8436
+ components:
+ - type: Transform
+ pos: -74.5,48.5
+ parent: 2
+ - uid: 8437
+ components:
+ - type: Transform
+ pos: -76.5,46.5
+ parent: 2
+ - uid: 8438
+ components:
+ - type: Transform
+ pos: -71.5,50.5
+ parent: 2
+ - uid: 8439
+ components:
+ - type: Transform
+ pos: -71.5,49.5
+ parent: 2
+ - uid: 8440
+ components:
+ - type: Transform
+ pos: -65.5,48.5
+ parent: 2
+ - uid: 8441
+ components:
+ - type: Transform
+ pos: -65.5,47.5
+ parent: 2
+ - uid: 8442
+ components:
+ - type: Transform
+ pos: -63.5,47.5
+ parent: 2
+ - uid: 8443
+ components:
+ - type: Transform
+ pos: -61.5,47.5
+ parent: 2
+ - uid: 8444
+ components:
+ - type: Transform
+ pos: -63.5,48.5
+ parent: 2
+ - uid: 8445
+ components:
+ - type: Transform
+ pos: -64.5,48.5
+ parent: 2
+ - uid: 8446
+ components:
+ - type: Transform
+ pos: -61.5,48.5
+ parent: 2
+ - uid: 8447
+ components:
+ - type: Transform
+ pos: -62.5,51.5
+ parent: 2
+ - uid: 8448
+ components:
+ - type: Transform
+ pos: -62.5,50.5
+ parent: 2
+ - uid: 8449
+ components:
+ - type: Transform
+ pos: -62.5,49.5
+ parent: 2
+ - uid: 8450
+ components:
+ - type: Transform
+ pos: -62.5,48.5
+ parent: 2
+ - uid: 8451
+ components:
+ - type: Transform
+ pos: -63.5,51.5
+ parent: 2
+ - uid: 8452
+ components:
+ - type: Transform
+ pos: -63.5,50.5
+ parent: 2
+ - uid: 8453
+ components:
+ - type: Transform
+ pos: -63.5,49.5
+ parent: 2
+ - uid: 8454
+ components:
+ - type: Transform
+ pos: -60.5,51.5
+ parent: 2
+ - uid: 8455
+ components:
+ - type: Transform
+ pos: -60.5,50.5
+ parent: 2
+ - uid: 8456
+ components:
+ - type: Transform
+ pos: -60.5,49.5
+ parent: 2
+ - uid: 8457
+ components:
+ - type: Transform
+ pos: -60.5,48.5
+ parent: 2
+ - uid: 8458
+ components:
+ - type: Transform
+ pos: -61.5,51.5
+ parent: 2
+ - uid: 8459
+ components:
+ - type: Transform
+ pos: -61.5,50.5
+ parent: 2
+ - uid: 8460
+ components:
+ - type: Transform
+ pos: -61.5,49.5
+ parent: 2
+ - uid: 8461
+ components:
+ - type: Transform
+ pos: -58.5,48.5
+ parent: 2
+ - uid: 8462
+ components:
+ - type: Transform
+ pos: -58.5,49.5
+ parent: 2
+ - uid: 8463
+ components:
+ - type: Transform
+ pos: -58.5,50.5
+ parent: 2
+ - uid: 8464
+ components:
+ - type: Transform
+ pos: -58.5,51.5
+ parent: 2
+ - uid: 8465
+ components:
+ - type: Transform
+ pos: -58.5,52.5
+ parent: 2
+ - uid: 8466
+ components:
+ - type: Transform
+ pos: -59.5,48.5
+ parent: 2
+ - uid: 8467
+ components:
+ - type: Transform
+ pos: -59.5,50.5
+ parent: 2
+ - uid: 8468
+ components:
+ - type: Transform
+ pos: -62.5,52.5
+ parent: 2
+ - uid: 8469
+ components:
+ - type: Transform
+ pos: -61.5,52.5
+ parent: 2
+ - uid: 8470
+ components:
+ - type: Transform
+ pos: -59.5,51.5
+ parent: 2
+ - uid: 8471
+ components:
+ - type: Transform
+ pos: -59.5,52.5
+ parent: 2
+ - uid: 8472
+ components:
+ - type: Transform
+ pos: -59.5,49.5
+ parent: 2
+ - uid: 8473
+ components:
+ - type: Transform
+ pos: -60.5,52.5
+ parent: 2
+ - uid: 8474
+ components:
+ - type: Transform
+ pos: -58.5,55.5
+ parent: 2
+ - uid: 8475
+ components:
+ - type: Transform
+ pos: -59.5,56.5
+ parent: 2
+ - uid: 8476
+ components:
+ - type: Transform
+ pos: -59.5,55.5
+ parent: 2
+ - uid: 8477
+ components:
+ - type: Transform
+ pos: -60.5,56.5
+ parent: 2
+ - uid: 8478
+ components:
+ - type: Transform
+ pos: -60.5,55.5
+ parent: 2
+ - uid: 8479
+ components:
+ - type: Transform
+ pos: -61.5,56.5
+ parent: 2
+ - uid: 8480
+ components:
+ - type: Transform
+ pos: -61.5,55.5
+ parent: 2
+ - uid: 8481
+ components:
+ - type: Transform
+ pos: -55.5,56.5
+ parent: 2
+ - uid: 8482
+ components:
+ - type: Transform
+ pos: -55.5,55.5
+ parent: 2
+ - uid: 8483
+ components:
+ - type: Transform
+ pos: -56.5,56.5
+ parent: 2
+ - uid: 8484
+ components:
+ - type: Transform
+ pos: -56.5,55.5
+ parent: 2
+ - uid: 8485
+ components:
+ - type: Transform
+ pos: -57.5,56.5
+ parent: 2
+ - uid: 8486
+ components:
+ - type: Transform
+ pos: -57.5,55.5
+ parent: 2
+ - uid: 8487
+ components:
+ - type: Transform
+ pos: -58.5,56.5
+ parent: 2
+ - uid: 8488
+ components:
+ - type: Transform
+ pos: -59.5,54.5
+ parent: 2
+ - uid: 8489
+ components:
+ - type: Transform
+ pos: -59.5,53.5
+ parent: 2
+ - uid: 8490
+ components:
+ - type: Transform
+ pos: -60.5,54.5
+ parent: 2
+ - uid: 8491
+ components:
+ - type: Transform
+ pos: -60.5,53.5
+ parent: 2
+ - uid: 8492
+ components:
+ - type: Transform
+ pos: -63.5,55.5
+ parent: 2
+ - uid: 8493
+ components:
+ - type: Transform
+ pos: -63.5,54.5
+ parent: 2
+ - uid: 8494
+ components:
+ - type: Transform
+ pos: -63.5,53.5
+ parent: 2
+ - uid: 8495
+ components:
+ - type: Transform
+ pos: -63.5,52.5
+ parent: 2
+ - uid: 8496
+ components:
+ - type: Transform
+ pos: -64.5,55.5
+ parent: 2
+ - uid: 8497
+ components:
+ - type: Transform
+ pos: -61.5,54.5
+ parent: 2
+ - uid: 8498
+ components:
+ - type: Transform
+ pos: -61.5,53.5
+ parent: 2
+ - uid: 8499
+ components:
+ - type: Transform
+ pos: -62.5,55.5
+ parent: 2
+ - uid: 8500
+ components:
+ - type: Transform
+ pos: -62.5,54.5
+ parent: 2
+ - uid: 8501
+ components:
+ - type: Transform
+ pos: -62.5,53.5
+ parent: 2
+ - uid: 8502
+ components:
+ - type: Transform
+ pos: -69.5,57.5
+ parent: 2
+ - uid: 8503
+ components:
+ - type: Transform
+ pos: -69.5,56.5
+ parent: 2
+ - uid: 8504
+ components:
+ - type: Transform
+ pos: -69.5,55.5
+ parent: 2
+ - uid: 8505
+ components:
+ - type: Transform
+ pos: -68.5,57.5
+ parent: 2
+ - uid: 8506
+ components:
+ - type: Transform
+ pos: -67.5,57.5
+ parent: 2
+ - uid: 8507
+ components:
+ - type: Transform
+ pos: -67.5,56.5
+ parent: 2
+ - uid: 8508
+ components:
+ - type: Transform
+ pos: -67.5,55.5
+ parent: 2
+ - uid: 8509
+ components:
+ - type: Transform
+ pos: -68.5,55.5
+ parent: 2
+ - uid: 8510
+ components:
+ - type: Transform
+ pos: -68.5,56.5
+ parent: 2
+ - uid: 8511
+ components:
+ - type: Transform
+ pos: -65.5,57.5
+ parent: 2
+ - uid: 8512
+ components:
+ - type: Transform
+ pos: -65.5,56.5
+ parent: 2
+ - uid: 8513
+ components:
+ - type: Transform
+ pos: -65.5,55.5
+ parent: 2
+ - uid: 8514
+ components:
+ - type: Transform
+ pos: -66.5,57.5
+ parent: 2
+ - uid: 8515
+ components:
+ - type: Transform
+ pos: -66.5,56.5
+ parent: 2
+ - uid: 8516
+ components:
+ - type: Transform
+ pos: -66.5,55.5
+ parent: 2
+ - uid: 8517
+ components:
+ - type: Transform
+ pos: -63.5,57.5
+ parent: 2
+ - uid: 8518
+ components:
+ - type: Transform
+ pos: -63.5,56.5
+ parent: 2
+ - uid: 8519
+ components:
+ - type: Transform
+ pos: -64.5,57.5
+ parent: 2
+ - uid: 8520
+ components:
+ - type: Transform
+ pos: -64.5,56.5
+ parent: 2
+ - uid: 8521
+ components:
+ - type: Transform
+ pos: -61.5,57.5
+ parent: 2
+ - uid: 8522
+ components:
+ - type: Transform
+ pos: -62.5,57.5
+ parent: 2
+ - uid: 8523
+ components:
+ - type: Transform
+ pos: -62.5,56.5
+ parent: 2
+ - uid: 8524
+ components:
+ - type: Transform
+ pos: -68.5,58.5
+ parent: 2
+ - uid: 8525
+ components:
+ - type: Transform
+ pos: -64.5,58.5
+ parent: 2
+ - uid: 8526
+ components:
+ - type: Transform
+ pos: -65.5,58.5
+ parent: 2
+ - uid: 8527
+ components:
+ - type: Transform
+ pos: -66.5,58.5
+ parent: 2
+ - uid: 8528
+ components:
+ - type: Transform
+ pos: -67.5,58.5
+ parent: 2
+ - uid: 8529
+ components:
+ - type: Transform
+ pos: -68.5,59.5
+ parent: 2
+ - uid: 8530
+ components:
+ - type: Transform
+ pos: -67.5,60.5
+ parent: 2
+ - uid: 8531
+ components:
+ - type: Transform
+ pos: -67.5,59.5
+ parent: 2
+ - uid: 8532
+ components:
+ - type: Transform
+ pos: -68.5,60.5
+ parent: 2
+ - uid: 8533
+ components:
+ - type: Transform
+ pos: -65.5,60.5
+ parent: 2
+ - uid: 8534
+ components:
+ - type: Transform
+ pos: -65.5,59.5
+ parent: 2
+ - uid: 8535
+ components:
+ - type: Transform
+ pos: -66.5,60.5
+ parent: 2
+ - uid: 8536
+ components:
+ - type: Transform
+ pos: -66.5,59.5
+ parent: 2
+ - uid: 8537
+ components:
+ - type: Transform
+ pos: -63.5,58.5
+ parent: 2
+ - uid: 8538
+ components:
+ - type: Transform
+ pos: -64.5,60.5
+ parent: 2
+ - uid: 8539
+ components:
+ - type: Transform
+ pos: -64.5,59.5
+ parent: 2
+ - uid: 8540
+ components:
+ - type: Transform
+ pos: -62.5,60.5
+ parent: 2
+ - uid: 8541
+ components:
+ - type: Transform
+ pos: -62.5,59.5
+ parent: 2
+ - uid: 8542
+ components:
+ - type: Transform
+ pos: -62.5,58.5
+ parent: 2
+ - uid: 8543
+ components:
+ - type: Transform
+ pos: -63.5,60.5
+ parent: 2
+ - uid: 8544
+ components:
+ - type: Transform
+ pos: -63.5,59.5
+ parent: 2
+ - uid: 8545
+ components:
+ - type: Transform
+ pos: -70.5,57.5
+ parent: 2
+ - uid: 8546
+ components:
+ - type: Transform
+ pos: -70.5,56.5
+ parent: 2
+ - uid: 8547
+ components:
+ - type: Transform
+ pos: -71.5,58.5
+ parent: 2
+ - uid: 8548
+ components:
+ - type: Transform
+ pos: -71.5,57.5
+ parent: 2
+ - uid: 8549
+ components:
+ - type: Transform
+ pos: -71.5,56.5
+ parent: 2
+ - uid: 8550
+ components:
+ - type: Transform
+ pos: -69.5,58.5
+ parent: 2
+ - uid: 8551
+ components:
+ - type: Transform
+ pos: -70.5,58.5
+ parent: 2
+ - uid: 8552
+ components:
+ - type: Transform
+ pos: -73.5,56.5
+ parent: 2
+ - uid: 8553
+ components:
+ - type: Transform
+ pos: -71.5,52.5
+ parent: 2
+ - uid: 8554
+ components:
+ - type: Transform
+ pos: -71.5,51.5
+ parent: 2
+ - uid: 8555
+ components:
+ - type: Transform
+ pos: -72.5,56.5
+ parent: 2
+ - uid: 8556
+ components:
+ - type: Transform
+ pos: -72.5,55.5
+ parent: 2
+ - uid: 8557
+ components:
+ - type: Transform
+ pos: -72.5,54.5
+ parent: 2
+ - uid: 8558
+ components:
+ - type: Transform
+ pos: -71.5,55.5
+ parent: 2
+ - uid: 8559
+ components:
+ - type: Transform
+ pos: -71.5,54.5
+ parent: 2
+ - uid: 8560
+ components:
+ - type: Transform
+ pos: -71.5,53.5
+ parent: 2
+ - uid: 8561
+ components:
+ - type: Transform
+ pos: -70.5,55.5
+ parent: 2
+ - uid: 8562
+ components:
+ - type: Transform
+ pos: -69.5,59.5
+ parent: 2
+ - uid: 8563
+ components:
+ - type: Transform
+ pos: -70.5,59.5
+ parent: 2
+ - uid: 8564
+ components:
+ - type: Transform
+ pos: -73.5,57.5
+ parent: 2
+ - uid: 8565
+ components:
+ - type: Transform
+ pos: -72.5,57.5
+ parent: 2
+ - uid: 8566
+ components:
+ - type: Transform
+ pos: -74.5,56.5
+ parent: 2
+ - uid: 8567
+ components:
+ - type: Transform
+ pos: -75.5,56.5
+ parent: 2
+ - uid: 8568
+ components:
+ - type: Transform
+ pos: -77.5,55.5
+ parent: 2
+ - uid: 8569
+ components:
+ - type: Transform
+ pos: -68.5,48.5
+ parent: 2
+ - uid: 8570
+ components:
+ - type: Transform
+ pos: -67.5,47.5
+ parent: 2
+ - uid: 8571
+ components:
+ - type: Transform
+ pos: -71.5,48.5
+ parent: 2
+ - uid: 8572
+ components:
+ - type: Transform
+ pos: -72.5,48.5
+ parent: 2
+ - uid: 8573
+ components:
+ - type: Transform
+ pos: -54.5,56.5
+ parent: 2
+ - uid: 8574
+ components:
+ - type: Transform
+ pos: -52.5,59.5
+ parent: 2
+ - uid: 8575
+ components:
+ - type: Transform
+ pos: -53.5,58.5
+ parent: 2
+ - uid: 8576
+ components:
+ - type: Transform
+ pos: -53.5,59.5
+ parent: 2
+ - uid: 8577
+ components:
+ - type: Transform
+ pos: -52.5,58.5
+ parent: 2
+ - uid: 8578
+ components:
+ - type: Transform
+ pos: -51.5,58.5
+ parent: 2
+ - uid: 8579
+ components:
+ - type: Transform
+ pos: -51.5,59.5
+ parent: 2
+ - uid: 8580
+ components:
+ - type: Transform
+ pos: -50.5,58.5
+ parent: 2
+ - uid: 8581
+ components:
+ - type: Transform
+ pos: -50.5,59.5
+ parent: 2
+ - uid: 8582
+ components:
+ - type: Transform
+ pos: -54.5,59.5
+ parent: 2
+ - uid: 8583
+ components:
+ - type: Transform
+ pos: -55.5,59.5
+ parent: 2
+ - uid: 8584
+ components:
+ - type: Transform
+ pos: -56.5,59.5
+ parent: 2
+ - uid: 8585
+ components:
+ - type: Transform
+ pos: -49.5,59.5
+ parent: 2
+ - uid: 8586
+ components:
+ - type: Transform
+ pos: -48.5,59.5
+ parent: 2
+ - uid: 8587
+ components:
+ - type: Transform
+ pos: -51.5,55.5
+ parent: 2
+ - uid: 8588
+ components:
+ - type: Transform
+ pos: -50.5,56.5
+ parent: 2
+ - uid: 8589
+ components:
+ - type: Transform
+ pos: -50.5,55.5
+ parent: 2
+ - uid: 8590
+ components:
+ - type: Transform
+ pos: -43.5,55.5
+ parent: 2
+ - uid: 8591
+ components:
+ - type: Transform
+ pos: -44.5,56.5
+ parent: 2
+ - uid: 8592
+ components:
+ - type: Transform
+ pos: -42.5,54.5
+ parent: 2
+ - uid: 8593
+ components:
+ - type: Transform
+ pos: -43.5,59.5
+ parent: 2
+ - uid: 8594
+ components:
+ - type: Transform
+ pos: -41.5,60.5
+ parent: 2
+ - uid: 8595
+ components:
+ - type: Transform
+ pos: -41.5,61.5
+ parent: 2
+ - uid: 8596
+ components:
+ - type: Transform
+ pos: -42.5,61.5
+ parent: 2
+ - uid: 8597
+ components:
+ - type: Transform
+ pos: -42.5,60.5
+ parent: 2
+ - uid: 8598
+ components:
+ - type: Transform
+ pos: -42.5,59.5
+ parent: 2
+ - uid: 8599
+ components:
+ - type: Transform
+ pos: -43.5,60.5
+ parent: 2
+ - uid: 8600
+ components:
+ - type: Transform
+ pos: -44.5,60.5
+ parent: 2
+ - uid: 8601
+ components:
+ - type: Transform
+ pos: -44.5,59.5
+ parent: 2
+ - uid: 8602
+ components:
+ - type: Transform
+ pos: -45.5,60.5
+ parent: 2
+ - uid: 8603
+ components:
+ - type: Transform
+ pos: -45.5,59.5
+ parent: 2
+ - uid: 8604
+ components:
+ - type: Transform
+ pos: -40.5,61.5
+ parent: 2
+ - uid: 8605
+ components:
+ - type: Transform
+ pos: -35.5,62.5
+ parent: 2
+ - uid: 8606
+ components:
+ - type: Transform
+ pos: -36.5,62.5
+ parent: 2
+ - uid: 8607
+ components:
+ - type: Transform
+ pos: -35.5,63.5
+ parent: 2
+ - uid: 8608
+ components:
+ - type: Transform
+ pos: -36.5,63.5
+ parent: 2
+ - uid: 8609
+ components:
+ - type: Transform
+ pos: -36.5,64.5
+ parent: 2
+ - uid: 8610
+ components:
+ - type: Transform
+ pos: -38.5,62.5
+ parent: 2
+ - uid: 8611
+ components:
+ - type: Transform
+ pos: -37.5,63.5
+ parent: 2
+ - uid: 8612
+ components:
+ - type: Transform
+ pos: -31.5,65.5
+ parent: 2
+ - uid: 8613
+ components:
+ - type: Transform
+ pos: -37.5,62.5
+ parent: 2
+ - uid: 8614
+ components:
+ - type: Transform
+ pos: -31.5,66.5
+ parent: 2
+ - uid: 8615
+ components:
+ - type: Transform
+ pos: -32.5,66.5
+ parent: 2
+ - uid: 8616
+ components:
+ - type: Transform
+ pos: -32.5,65.5
+ parent: 2
+ - uid: 8617
+ components:
+ - type: Transform
+ pos: -33.5,65.5
+ parent: 2
+ - uid: 8618
+ components:
+ - type: Transform
+ pos: -31.5,67.5
+ parent: 2
+ - uid: 8619
+ components:
+ - type: Transform
+ pos: -31.5,68.5
+ parent: 2
+ - uid: 8620
+ components:
+ - type: Transform
+ pos: -30.5,67.5
+ parent: 2
+ - uid: 8621
+ components:
+ - type: Transform
+ pos: -30.5,66.5
+ parent: 2
+ - uid: 8622
+ components:
+ - type: Transform
+ pos: -23.5,64.5
+ parent: 2
+ - uid: 8623
+ components:
+ - type: Transform
+ pos: -22.5,64.5
+ parent: 2
+ - uid: 8624
+ components:
+ - type: Transform
+ pos: -21.5,64.5
+ parent: 2
+ - uid: 8625
+ components:
+ - type: Transform
+ pos: -21.5,65.5
+ parent: 2
+ - uid: 8626
+ components:
+ - type: Transform
+ pos: -20.5,64.5
+ parent: 2
+ - uid: 8627
+ components:
+ - type: Transform
+ pos: -20.5,65.5
+ parent: 2
+ - uid: 8628
+ components:
+ - type: Transform
+ pos: -22.5,67.5
+ parent: 2
+ - uid: 8629
+ components:
+ - type: Transform
+ pos: -22.5,68.5
+ parent: 2
+ - uid: 8630
+ components:
+ - type: Transform
+ pos: -22.5,69.5
+ parent: 2
+ - uid: 8631
+ components:
+ - type: Transform
+ pos: -23.5,67.5
+ parent: 2
+ - uid: 8632
+ components:
+ - type: Transform
+ pos: -23.5,68.5
+ parent: 2
+ - uid: 8633
+ components:
+ - type: Transform
+ pos: -23.5,69.5
+ parent: 2
+ - uid: 8634
+ components:
+ - type: Transform
+ pos: -24.5,67.5
+ parent: 2
+ - uid: 8635
+ components:
+ - type: Transform
+ pos: -25.5,67.5
+ parent: 2
+ - uid: 8636
+ components:
+ - type: Transform
+ pos: -24.5,66.5
+ parent: 2
+ - uid: 8637
+ components:
+ - type: Transform
+ pos: -24.5,65.5
+ parent: 2
+ - uid: 8638
+ components:
+ - type: Transform
+ pos: -21.5,69.5
+ parent: 2
+ - uid: 8639
+ components:
+ - type: Transform
+ pos: -21.5,70.5
+ parent: 2
+ - uid: 8640
+ components:
+ - type: Transform
+ pos: -21.5,71.5
+ parent: 2
+ - uid: 8641
+ components:
+ - type: Transform
+ pos: -20.5,70.5
+ parent: 2
+ - uid: 8642
+ components:
+ - type: Transform
+ pos: -19.5,70.5
+ parent: 2
+ - uid: 8643
+ components:
+ - type: Transform
+ pos: -18.5,70.5
+ parent: 2
+ - uid: 8644
+ components:
+ - type: Transform
+ pos: -17.5,70.5
+ parent: 2
+ - uid: 8645
+ components:
+ - type: Transform
+ pos: -15.5,71.5
+ parent: 2
+ - uid: 8646
+ components:
+ - type: Transform
+ pos: -15.5,70.5
+ parent: 2
+ - uid: 8647
+ components:
+ - type: Transform
+ pos: -16.5,71.5
+ parent: 2
+ - uid: 8648
+ components:
+ - type: Transform
+ pos: -16.5,70.5
+ parent: 2
+ - uid: 8649
+ components:
+ - type: Transform
+ pos: -16.5,69.5
+ parent: 2
+ - uid: 8650
+ components:
+ - type: Transform
+ pos: -16.5,68.5
+ parent: 2
+ - uid: 8651
+ components:
+ - type: Transform
+ pos: -17.5,69.5
+ parent: 2
+ - uid: 8652
+ components:
+ - type: Transform
+ pos: -17.5,68.5
+ parent: 2
+ - uid: 8653
+ components:
+ - type: Transform
+ pos: -18.5,67.5
+ parent: 2
+ - uid: 8654
+ components:
+ - type: Transform
+ pos: -18.5,68.5
+ parent: 2
+ - uid: 8655
+ components:
+ - type: Transform
+ pos: -18.5,66.5
+ parent: 2
+ - uid: 8656
+ components:
+ - type: Transform
+ pos: -19.5,67.5
+ parent: 2
+ - uid: 8657
+ components:
+ - type: Transform
+ pos: -19.5,66.5
+ parent: 2
+ - uid: 8658
+ components:
+ - type: Transform
+ pos: -23.5,70.5
+ parent: 2
+ - uid: 8659
+ components:
+ - type: Transform
+ pos: -23.5,71.5
+ parent: 2
+ - uid: 8660
+ components:
+ - type: Transform
+ pos: -22.5,70.5
+ parent: 2
+ - uid: 8661
+ components:
+ - type: Transform
+ pos: -22.5,71.5
+ parent: 2
+ - uid: 8662
+ components:
+ - type: Transform
+ pos: -21.5,72.5
+ parent: 2
+ - uid: 8663
+ components:
+ - type: Transform
+ pos: -22.5,72.5
+ parent: 2
+ - uid: 8664
+ components:
+ - type: Transform
+ pos: -20.5,72.5
+ parent: 2
+ - uid: 8665
+ components:
+ - type: Transform
+ pos: -8.5,62.5
+ parent: 2
+ - uid: 8666
+ components:
+ - type: Transform
+ pos: -8.5,61.5
+ parent: 2
+ - uid: 8667
+ components:
+ - type: Transform
+ pos: -9.5,62.5
+ parent: 2
+ - uid: 8668
+ components:
+ - type: Transform
+ pos: -9.5,61.5
+ parent: 2
+ - uid: 8669
+ components:
+ - type: Transform
+ pos: -10.5,62.5
+ parent: 2
+ - uid: 8670
+ components:
+ - type: Transform
+ pos: -10.5,61.5
+ parent: 2
+ - uid: 8671
+ components:
+ - type: Transform
+ pos: -11.5,62.5
+ parent: 2
+ - uid: 8672
+ components:
+ - type: Transform
+ pos: -12.5,62.5
+ parent: 2
+ - uid: 8673
+ components:
+ - type: Transform
+ pos: -8.5,60.5
+ parent: 2
+ - uid: 8674
+ components:
+ - type: Transform
+ pos: -9.5,60.5
+ parent: 2
+ - uid: 8723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -48.5,54.5
+ parent: 2
+ - uid: 8730
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -46.5,55.5
+ parent: 2
+ - uid: 8754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,63.5
+ parent: 2
+ - uid: 8771
+ components:
+ - type: Transform
+ pos: -60.5,-23.5
+ parent: 2
+ - uid: 8772
+ components:
+ - type: Transform
+ pos: -59.5,-23.5
+ parent: 2
+ - uid: 8773
+ components:
+ - type: Transform
+ pos: -58.5,-23.5
+ parent: 2
+ - uid: 8774
+ components:
+ - type: Transform
+ pos: -59.5,-24.5
+ parent: 2
+ - uid: 8775
+ components:
+ - type: Transform
+ pos: -57.5,-21.5
+ parent: 2
+ - uid: 8776
+ components:
+ - type: Transform
+ pos: -57.5,-20.5
+ parent: 2
+ - uid: 8777
+ components:
+ - type: Transform
+ pos: -56.5,-19.5
+ parent: 2
+ - uid: 8778
+ components:
+ - type: Transform
+ pos: -56.5,-18.5
+ parent: 2
+ - uid: 8779
+ components:
+ - type: Transform
+ pos: -57.5,-18.5
+ parent: 2
+ - uid: 8780
+ components:
+ - type: Transform
+ pos: -57.5,-19.5
+ parent: 2
+ - uid: 8781
+ components:
+ - type: Transform
+ pos: -54.5,-19.5
+ parent: 2
+ - uid: 8782
+ components:
+ - type: Transform
+ pos: -55.5,-19.5
+ parent: 2
+ - uid: 8783
+ components:
+ - type: Transform
+ pos: -55.5,-18.5
+ parent: 2
+ - uid: 8784
+ components:
+ - type: Transform
+ pos: -54.5,-18.5
+ parent: 2
+ - uid: 8785
+ components:
+ - type: Transform
+ pos: -50.5,-21.5
+ parent: 2
+ - uid: 8786
+ components:
+ - type: Transform
+ pos: -49.5,-21.5
+ parent: 2
+ - uid: 8787
+ components:
+ - type: Transform
+ pos: -48.5,-21.5
+ parent: 2
+ - uid: 8788
+ components:
+ - type: Transform
+ pos: -48.5,-20.5
+ parent: 2
+ - uid: 8789
+ components:
+ - type: Transform
+ pos: -49.5,-20.5
+ parent: 2
+ - uid: 8790
+ components:
+ - type: Transform
+ pos: -54.5,-16.5
+ parent: 2
+ - uid: 8791
+ components:
+ - type: Transform
+ pos: -54.5,-15.5
+ parent: 2
+ - uid: 8792
+ components:
+ - type: Transform
+ pos: -55.5,-16.5
+ parent: 2
+ - uid: 8793
+ components:
+ - type: Transform
+ pos: -55.5,-15.5
+ parent: 2
+ - uid: 8794
+ components:
+ - type: Transform
+ pos: -53.5,-13.5
+ parent: 2
+ - uid: 8795
+ components:
+ - type: Transform
+ pos: -54.5,-12.5
+ parent: 2
+ - uid: 8796
+ components:
+ - type: Transform
+ pos: -54.5,-13.5
+ parent: 2
+ - uid: 8797
+ components:
+ - type: Transform
+ pos: -53.5,-12.5
+ parent: 2
+ - uid: 8798
+ components:
+ - type: Transform
+ pos: -57.5,-10.5
+ parent: 2
+ - uid: 8799
+ components:
+ - type: Transform
+ pos: -57.5,-9.5
+ parent: 2
+ - uid: 8800
+ components:
+ - type: Transform
+ pos: -58.5,-10.5
+ parent: 2
+ - uid: 8801
+ components:
+ - type: Transform
+ pos: -58.5,-9.5
+ parent: 2
+ - uid: 8802
+ components:
+ - type: Transform
+ pos: -58.5,-8.5
+ parent: 2
+ - uid: 8803
+ components:
+ - type: Transform
+ pos: -58.5,-7.5
+ parent: 2
+ - uid: 8804
+ components:
+ - type: Transform
+ pos: -58.5,-6.5
+ parent: 2
+ - uid: 8805
+ components:
+ - type: Transform
+ pos: -59.5,-8.5
+ parent: 2
+ - uid: 8806
+ components:
+ - type: Transform
+ pos: -59.5,-7.5
+ parent: 2
+ - uid: 8807
+ components:
+ - type: Transform
+ pos: -59.5,-6.5
+ parent: 2
+ - uid: 8808
+ components:
+ - type: Transform
+ pos: -53.5,-1.5
+ parent: 2
+ - uid: 8809
+ components:
+ - type: Transform
+ pos: -52.5,-1.5
+ parent: 2
+ - uid: 8810
+ components:
+ - type: Transform
+ pos: -52.5,-0.5
+ parent: 2
+ - uid: 8811
+ components:
+ - type: Transform
+ pos: -52.5,0.5
+ parent: 2
+ - uid: 8812
+ components:
+ - type: Transform
+ pos: -52.5,1.5
+ parent: 2
+ - uid: 8813
+ components:
+ - type: Transform
+ pos: -53.5,0.5
+ parent: 2
+ - uid: 8814
+ components:
+ - type: Transform
+ pos: -53.5,-0.5
+ parent: 2
+ - uid: 8815
+ components:
+ - type: Transform
+ pos: -53.5,1.5
+ parent: 2
+ - uid: 8816
+ components:
+ - type: Transform
+ pos: -54.5,-2.5
+ parent: 2
+ - uid: 8817
+ components:
+ - type: Transform
+ pos: -54.5,-1.5
+ parent: 2
+ - uid: 8818
+ components:
+ - type: Transform
+ pos: -54.5,-0.5
+ parent: 2
+ - uid: 8819
+ components:
+ - type: Transform
+ pos: -59.5,-15.5
+ parent: 2
+ - uid: 8820
+ components:
+ - type: Transform
+ pos: -59.5,-16.5
+ parent: 2
+ - uid: 8821
+ components:
+ - type: Transform
+ pos: -59.5,-17.5
+ parent: 2
+ - uid: 8822
+ components:
+ - type: Transform
+ pos: -58.5,-14.5
+ parent: 2
+ - uid: 8823
+ components:
+ - type: Transform
+ pos: -58.5,-13.5
+ parent: 2
+ - uid: 8824
+ components:
+ - type: Transform
+ pos: -58.5,-15.5
+ parent: 2
+ - uid: 8825
+ components:
+ - type: Transform
+ pos: -59.5,-14.5
+ parent: 2
+ - uid: 8918
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -30.5,52.5
+ parent: 2
+ - uid: 8919
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -30.5,51.5
+ parent: 2
+ - uid: 8920
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,71.5
+ parent: 2
+ - uid: 8921
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,71.5
+ parent: 2
+ - uid: 8922
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,71.5
+ parent: 2
+ - uid: 8923
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,71.5
+ parent: 2
+ - uid: 8924
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,69.5
+ parent: 2
+ - uid: 8925
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,69.5
+ parent: 2
+ - uid: 8960
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,3.5
+ parent: 2
+ - uid: 8961
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,1.5
+ parent: 2
+ - uid: 8962
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,2.5
+ parent: 2
+ - uid: 8963
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,1.5
+ parent: 2
+ - uid: 8964
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,2.5
+ parent: 2
+ - uid: 8965
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,3.5
+ parent: 2
+ - uid: 8966
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,2.5
+ parent: 2
+ - uid: 8967
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,1.5
+ parent: 2
+ - uid: 8968
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,3.5
+ parent: 2
+ - uid: 8969
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,2.5
+ parent: 2
+ - uid: 8970
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,1.5
+ parent: 2
+ - uid: 8971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,3.5
+ parent: 2
+ - uid: 8972
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,4.5
+ parent: 2
+ - uid: 8973
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,4.5
+ parent: 2
+ - uid: 8974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,4.5
+ parent: 2
+ - uid: 8975
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,5.5
+ parent: 2
+ - uid: 8976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,3.5
+ parent: 2
+ - uid: 8977
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,3.5
+ parent: 2
+ - uid: 8978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -106.5,3.5
+ parent: 2
+ - uid: 8979
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -107.5,3.5
+ parent: 2
+ - uid: 8980
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -108.5,3.5
+ parent: 2
+ - uid: 8981
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,0.5
+ parent: 2
+ - uid: 8982
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,1.5
+ parent: 2
+ - uid: 8983
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -106.5,2.5
+ parent: 2
+ - uid: 8984
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -106.5,1.5
+ parent: 2
+ - uid: 8985
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -106.5,0.5
+ parent: 2
+ - uid: 8986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,2.5
+ parent: 2
+ - uid: 8987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,0.5
+ parent: 2
+ - uid: 8988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,2.5
+ parent: 2
+ - uid: 8989
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,1.5
+ parent: 2
+ - uid: 8990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,0.5
+ parent: 2
+ - uid: 8991
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,-0.5
+ parent: 2
+ - uid: 8992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,0.5
+ parent: 2
+ - uid: 8993
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,0.5
+ parent: 2
+ - uid: 8994
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,-0.5
+ parent: 2
+ - uid: 8995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,0.5
+ parent: 2
+ - uid: 8996
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,-0.5
+ parent: 2
+ - uid: 8997
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,0.5
+ parent: 2
+ - uid: 8998
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-0.5
+ parent: 2
+ - uid: 8999
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,-0.5
+ parent: 2
+ - uid: 9000
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,1.5
+ parent: 2
+ - uid: 9001
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,2.5
+ parent: 2
+ - uid: 9002
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,3.5
+ parent: 2
+ - uid: 9003
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-1.5
+ parent: 2
+ - uid: 9004
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-2.5
+ parent: 2
+ - uid: 9005
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-3.5
+ parent: 2
+ - uid: 9006
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,-4.5
+ parent: 2
+ - uid: 9007
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,-1.5
+ parent: 2
+ - uid: 9008
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,-3.5
+ parent: 2
+ - uid: 9009
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,-4.5
+ parent: 2
+ - uid: 9010
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,-2.5
+ parent: 2
+ - uid: 9011
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,-4.5
+ parent: 2
+ - uid: 9012
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,-3.5
+ parent: 2
+ - uid: 9088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,7.5
+ parent: 2
+ - uid: 9094
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,7.5
+ parent: 2
+ - uid: 9096
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,6.5
+ parent: 2
+ - uid: 9097
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,5.5
+ parent: 2
+ - uid: 9098
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,6.5
+ parent: 2
+ - uid: 9099
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,5.5
+ parent: 2
+ - uid: 9181
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,15.5
+ parent: 2
+ - uid: 9182
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,16.5
+ parent: 2
+ - uid: 9183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,15.5
+ parent: 2
+ - uid: 9184
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,16.5
+ parent: 2
+ - uid: 9185
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -114.5,16.5
+ parent: 2
+ - uid: 9186
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -114.5,17.5
+ parent: 2
+ - uid: 9187
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -113.5,17.5
+ parent: 2
+ - uid: 9188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -112.5,17.5
+ parent: 2
+ - uid: 9189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -111.5,17.5
+ parent: 2
+ - uid: 9190
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -111.5,18.5
+ parent: 2
+ - uid: 9191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -110.5,18.5
+ parent: 2
+ - uid: 9192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -112.5,16.5
+ parent: 2
+ - uid: 9193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -113.5,16.5
+ parent: 2
+ - uid: 9194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -114.5,15.5
+ parent: 2
+ - uid: 9195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -110.5,14.5
+ parent: 2
+ - uid: 9196
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -110.5,13.5
+ parent: 2
+ - uid: 9197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -111.5,14.5
+ parent: 2
+ - uid: 9198
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -111.5,13.5
+ parent: 2
+ - uid: 9199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -109.5,15.5
+ parent: 2
+ - uid: 9200
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -109.5,16.5
+ parent: 2
+ - uid: 9201
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -108.5,15.5
+ parent: 2
+ - uid: 9202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -108.5,16.5
+ parent: 2
+ - uid: 9203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -110.5,15.5
+ parent: 2
+ - uid: 9204
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -109.5,14.5
+ parent: 2
+ - uid: 9205
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -107.5,20.5
+ parent: 2
+ - uid: 9206
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -107.5,19.5
+ parent: 2
+ - uid: 9207
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -107.5,18.5
+ parent: 2
+ - uid: 9208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -106.5,20.5
+ parent: 2
+ - uid: 9209
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -106.5,19.5
+ parent: 2
+ - uid: 9210
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -106.5,18.5
+ parent: 2
+ - uid: 9211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,19.5
+ parent: 2
+ - uid: 9212
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,17.5
+ parent: 2
+ - uid: 9213
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,19.5
+ parent: 2
+ - uid: 9214
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,18.5
+ parent: 2
+ - uid: 9215
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,17.5
+ parent: 2
+ - uid: 9216
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,18.5
+ parent: 2
+ - uid: 9217
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,18.5
+ parent: 2
+ - uid: 9218
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,17.5
+ parent: 2
+ - uid: 9219
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,16.5
+ parent: 2
+ - uid: 9220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,15.5
+ parent: 2
+ - uid: 9221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,16.5
+ parent: 2
+ - uid: 9222
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,15.5
+ parent: 2
+ - uid: 9223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,16.5
+ parent: 2
+ - uid: 9224
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,15.5
+ parent: 2
+ - uid: 9225
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,16.5
+ parent: 2
+ - uid: 9226
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,15.5
+ parent: 2
+ - uid: 9227
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,16.5
+ parent: 2
+ - uid: 9228
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,17.5
+ parent: 2
+ - uid: 9229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,18.5
+ parent: 2
+ - uid: 9230
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,17.5
+ parent: 2
+ - uid: 9231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,17.5
+ parent: 2
+ - uid: 9232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,17.5
+ parent: 2
+ - uid: 9248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,21.5
+ parent: 2
+ - uid: 9249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,20.5
+ parent: 2
+ - uid: 9250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,20.5
+ parent: 2
+ - uid: 9251
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,20.5
+ parent: 2
+ - uid: 9252
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,21.5
+ parent: 2
+ - uid: 9253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,22.5
+ parent: 2
+ - uid: 9254
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,22.5
+ parent: 2
+ - uid: 9255
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,21.5
+ parent: 2
+ - uid: 9256
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,21.5
+ parent: 2
+ - uid: 9257
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,21.5
+ parent: 2
+ - uid: 9258
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,20.5
+ parent: 2
+ - uid: 9259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,23.5
+ parent: 2
+ - uid: 9260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,24.5
+ parent: 2
+ - uid: 9261
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,25.5
+ parent: 2
+ - uid: 9262
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,23.5
+ parent: 2
+ - uid: 9263
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,24.5
+ parent: 2
+ - uid: 9264
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,25.5
+ parent: 2
+ - uid: 9265
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,24.5
+ parent: 2
+ - uid: 9266
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,25.5
+ parent: 2
+ - uid: 9267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,26.5
+ parent: 2
+ - uid: 9268
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,28.5
+ parent: 2
+ - uid: 9269
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,27.5
+ parent: 2
+ - uid: 9270
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,29.5
+ parent: 2
+ - uid: 9271
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,28.5
+ parent: 2
+ - uid: 9272
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,27.5
+ parent: 2
+ - uid: 9273
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,29.5
+ parent: 2
+ - uid: 9274
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,28.5
+ parent: 2
+ - uid: 9275
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,27.5
+ parent: 2
+ - uid: 9276
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -120.5,29.5
+ parent: 2
+ - uid: 9277
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -120.5,28.5
+ parent: 2
+ - uid: 9278
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -120.5,27.5
+ parent: 2
+ - uid: 9279
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,29.5
+ parent: 2
+ - uid: 9280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,28.5
+ parent: 2
+ - uid: 9281
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,27.5
+ parent: 2
+ - uid: 9282
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,26.5
+ parent: 2
+ - uid: 9283
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,28.5
+ parent: 2
+ - uid: 9284
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,27.5
+ parent: 2
+ - uid: 9285
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,26.5
+ parent: 2
+ - uid: 9286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,22.5
+ parent: 2
+ - uid: 9287
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,25.5
+ parent: 2
+ - uid: 9288
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,22.5
+ parent: 2
+ - uid: 9289
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,23.5
+ parent: 2
+ - uid: 9290
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,24.5
+ parent: 2
+ - uid: 9291
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -114.5,25.5
+ parent: 2
+ - uid: 9292
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -114.5,24.5
+ parent: 2
+ - uid: 9293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -114.5,23.5
+ parent: 2
+ - uid: 9294
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -114.5,22.5
+ parent: 2
+ - uid: 9295
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,25.5
+ parent: 2
+ - uid: 9296
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,24.5
+ parent: 2
+ - uid: 9297
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,23.5
+ parent: 2
+ - uid: 9298
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,25.5
+ parent: 2
+ - uid: 9299
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,26.5
+ parent: 2
+ - uid: 9300
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,24.5
+ parent: 2
+ - uid: 9301
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,26.5
+ parent: 2
+ - uid: 9302
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,26.5
+ parent: 2
+ - uid: 9303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,26.5
+ parent: 2
+ - uid: 9304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -120.5,26.5
+ parent: 2
+ - uid: 9305
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,27.5
+ parent: 2
+ - uid: 9306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,28.5
+ parent: 2
+ - uid: 9307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,26.5
+ parent: 2
+ - uid: 9308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,27.5
+ parent: 2
+ - uid: 9309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,26.5
+ parent: 2
+ - uid: 9310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,27.5
+ parent: 2
+ - uid: 9311
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,22.5
+ parent: 2
+ - uid: 9312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,17.5
+ parent: 2
+ - uid: 9313
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,16.5
+ parent: 2
+ - uid: 9314
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,15.5
+ parent: 2
+ - uid: 9315
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,17.5
+ parent: 2
+ - uid: 9316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,16.5
+ parent: 2
+ - uid: 9317
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,15.5
+ parent: 2
+ - uid: 9318
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,17.5
+ parent: 2
+ - uid: 9319
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,16.5
+ parent: 2
+ - uid: 9320
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,15.5
+ parent: 2
+ - uid: 9321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,17.5
+ parent: 2
+ - uid: 9322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,18.5
+ parent: 2
+ - uid: 9323
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,19.5
+ parent: 2
+ - uid: 9324
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,18.5
+ parent: 2
+ - uid: 9325
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,18.5
+ parent: 2
+ - uid: 9326
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,7.5
+ parent: 2
+ - uid: 9327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,6.5
+ parent: 2
+ - uid: 9328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,7.5
+ parent: 2
+ - uid: 9329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,6.5
+ parent: 2
+ - uid: 9330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,7.5
+ parent: 2
+ - uid: 9331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,6.5
+ parent: 2
+ - uid: 9332
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,8.5
+ parent: 2
+ - uid: 9333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -120.5,8.5
+ parent: 2
+ - uid: 9334
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,11.5
+ parent: 2
+ - uid: 9335
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,12.5
+ parent: 2
+ - uid: 9336
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,10.5
+ parent: 2
+ - uid: 9337
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,11.5
+ parent: 2
+ - uid: 9338
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,12.5
+ parent: 2
+ - uid: 9339
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,10.5
+ parent: 2
+ - uid: 9340
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,11.5
+ parent: 2
+ - uid: 9341
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,12.5
+ parent: 2
+ - uid: 9342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,10.5
+ parent: 2
+ - uid: 9343
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,11.5
+ parent: 2
+ - uid: 9344
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,10.5
+ parent: 2
+ - uid: 9345
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,2.5
+ parent: 2
+ - uid: 9346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,1.5
+ parent: 2
+ - uid: 9347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,2.5
+ parent: 2
+ - uid: 9348
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,1.5
+ parent: 2
+ - uid: 9349
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,2.5
+ parent: 2
+ - uid: 9350
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,1.5
+ parent: 2
+ - uid: 9351
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,0.5
+ parent: 2
+ - uid: 9352
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,-0.5
+ parent: 2
+ - uid: 9353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,1.5
+ parent: 2
+ - uid: 9354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,0.5
+ parent: 2
+ - uid: 9355
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,-0.5
+ parent: 2
+ - uid: 9356
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -130.5,0.5
+ parent: 2
+ - uid: 9357
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -130.5,-0.5
+ parent: 2
+ - uid: 9358
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -130.5,-1.5
+ parent: 2
+ - uid: 9359
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -131.5,0.5
+ parent: 2
+ - uid: 9360
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -131.5,-0.5
+ parent: 2
+ - uid: 9361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -131.5,-1.5
+ parent: 2
+ - uid: 9362
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,-2.5
+ parent: 2
+ - uid: 9363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,-4.5
+ parent: 2
+ - uid: 9364
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,-4.5
+ parent: 2
+ - uid: 9365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,-3.5
+ parent: 2
+ - uid: 9366
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,-2.5
+ parent: 2
+ - uid: 9367
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,-4.5
+ parent: 2
+ - uid: 9368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,-3.5
+ parent: 2
+ - uid: 9369
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,-2.5
+ parent: 2
+ - uid: 9370
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,-3.5
+ parent: 2
+ - uid: 9371
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,-1.5
+ parent: 2
+ - uid: 9372
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,-0.5
+ parent: 2
+ - uid: 9373
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,10.5
+ parent: 2
+ - uid: 9374
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,-0.5
+ parent: 2
+ - uid: 9375
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,1.5
+ parent: 2
+ - uid: 9376
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,11.5
+ parent: 2
+ - uid: 9377
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,0.5
+ parent: 2
+ - uid: 9378
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,1.5
+ parent: 2
+ - uid: 9379
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,2.5
+ parent: 2
+ - uid: 9380
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,1.5
+ parent: 2
+ - uid: 9381
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,0.5
+ parent: 2
+ - uid: 9382
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,2.5
+ parent: 2
+ - uid: 9383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,1.5
+ parent: 2
+ - uid: 9384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,0.5
+ parent: 2
+ - uid: 9385
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,11.5
+ parent: 2
+ - uid: 9386
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,10.5
+ parent: 2
+ - uid: 9387
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,11.5
+ parent: 2
+ - uid: 9388
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,10.5
+ parent: 2
+ - uid: 9389
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -131.5,7.5
+ parent: 2
+ - uid: 9390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -130.5,5.5
+ parent: 2
+ - uid: 9391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -131.5,6.5
+ parent: 2
+ - uid: 9392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -131.5,5.5
+ parent: 2
+ - uid: 9393
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,7.5
+ parent: 2
+ - uid: 9394
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,6.5
+ parent: 2
+ - uid: 9395
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,5.5
+ parent: 2
+ - uid: 9396
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -130.5,7.5
+ parent: 2
+ - uid: 9397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -130.5,6.5
+ parent: 2
+ - uid: 9398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -130.5,8.5
+ parent: 2
+ - uid: 9399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -130.5,9.5
+ parent: 2
+ - uid: 9400
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -130.5,10.5
+ parent: 2
+ - uid: 9401
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -131.5,8.5
+ parent: 2
+ - uid: 9402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -131.5,9.5
+ parent: 2
+ - uid: 9403
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -131.5,10.5
+ parent: 2
+ - uid: 9404
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,8.5
+ parent: 2
+ - uid: 9405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,9.5
+ parent: 2
+ - uid: 9406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,10.5
+ parent: 2
+ - uid: 9407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,4.5
+ parent: 2
+ - uid: 9408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,7.5
+ parent: 2
+ - uid: 9409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,6.5
+ parent: 2
+ - uid: 9410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,5.5
+ parent: 2
+ - uid: 9411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,4.5
+ parent: 2
+ - uid: 9412
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -131.5,4.5
+ parent: 2
+ - uid: 9413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,19.5
+ parent: 2
+ - uid: 9414
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,18.5
+ parent: 2
+ - uid: 9415
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,19.5
+ parent: 2
+ - uid: 9416
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,18.5
+ parent: 2
+ - uid: 9417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,14.5
+ parent: 2
+ - uid: 9418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,13.5
+ parent: 2
+ - uid: 9419
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -131.5,15.5
+ parent: 2
+ - uid: 9420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -131.5,14.5
+ parent: 2
+ - uid: 9421
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -131.5,13.5
+ parent: 2
+ - uid: 9422
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,15.5
+ parent: 2
+ - uid: 9423
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,14.5
+ parent: 2
+ - uid: 9424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,13.5
+ parent: 2
+ - uid: 9425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,15.5
+ parent: 2
+ - uid: 9426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -134.5,16.5
+ parent: 2
+ - uid: 9427
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -135.5,17.5
+ parent: 2
+ - uid: 9428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -135.5,16.5
+ parent: 2
+ - uid: 9429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -135.5,15.5
+ parent: 2
+ - uid: 9430
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -134.5,15.5
+ parent: 2
+ - uid: 9431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,17.5
+ parent: 2
+ - uid: 9432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -132.5,16.5
+ parent: 2
+ - uid: 9433
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,17.5
+ parent: 2
+ - uid: 9434
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,16.5
+ parent: 2
+ - uid: 9435
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -134.5,17.5
+ parent: 2
+ - uid: 9804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-48.5
+ parent: 2
+ - uid: 9805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-51.5
+ parent: 2
+ - uid: 9806
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-50.5
+ parent: 2
+ - uid: 9807
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-49.5
+ parent: 2
+ - uid: 9808
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-48.5
+ parent: 2
+ - uid: 9809
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-51.5
+ parent: 2
+ - uid: 9810
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-50.5
+ parent: 2
+ - uid: 9811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-49.5
+ parent: 2
+ - uid: 9812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-48.5
+ parent: 2
+ - uid: 9813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-51.5
+ parent: 2
+ - uid: 9814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-50.5
+ parent: 2
+ - uid: 9815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-49.5
+ parent: 2
+ - uid: 9816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-47.5
+ parent: 2
+ - uid: 9817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-46.5
+ parent: 2
+ - uid: 9818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-45.5
+ parent: 2
+ - uid: 9819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-47.5
+ parent: 2
+ - uid: 9820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-46.5
+ parent: 2
+ - uid: 9821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-45.5
+ parent: 2
+ - uid: 9822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-44.5
+ parent: 2
+ - uid: 9823
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-43.5
+ parent: 2
+ - uid: 9824
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-47.5
+ parent: 2
+ - uid: 9825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-46.5
+ parent: 2
+ - uid: 9826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-45.5
+ parent: 2
+ - uid: 9827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-44.5
+ parent: 2
+ - uid: 9828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-43.5
+ parent: 2
+ - uid: 9829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,-42.5
+ parent: 2
+ - uid: 9830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,-43.5
+ parent: 2
+ - uid: 9831
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-42.5
+ parent: 2
+ - uid: 9832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-55.5
+ parent: 2
+ - uid: 9833
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-56.5
+ parent: 2
+ - uid: 9834
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-55.5
+ parent: 2
+ - uid: 9835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-56.5
+ parent: 2
+ - uid: 9836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-55.5
+ parent: 2
+ - uid: 9837
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-56.5
+ parent: 2
+ - uid: 9838
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-57.5
+ parent: 2
+ - uid: 9839
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-57.5
+ parent: 2
+ - uid: 9840
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,-57.5
+ parent: 2
+ - uid: 9841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-51.5
+ parent: 2
+ - uid: 9842
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-50.5
+ parent: 2
+ - uid: 9843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-48.5
+ parent: 2
+ - uid: 9844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-47.5
+ parent: 2
+ - uid: 9845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-49.5
+ parent: 2
+ - uid: 9846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-52.5
+ parent: 2
+ - uid: 9847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-51.5
+ parent: 2
+ - uid: 9848
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-50.5
+ parent: 2
+ - uid: 9849
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-49.5
+ parent: 2
+ - uid: 9850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-47.5
+ parent: 2
+ - uid: 9851
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-52.5
+ parent: 2
+ - uid: 9852
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-48.5
+ parent: 2
+ - uid: 9853
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-50.5
+ parent: 2
+ - uid: 9854
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-49.5
+ parent: 2
+ - uid: 9855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-48.5
+ parent: 2
+ - uid: 9856
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-47.5
+ parent: 2
+ - uid: 9857
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-46.5
+ parent: 2
+ - uid: 9858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-45.5
+ parent: 2
+ - uid: 9859
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-46.5
+ parent: 2
+ - uid: 9860
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-45.5
+ parent: 2
+ - uid: 9861
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-44.5
+ parent: 2
+ - uid: 9862
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-43.5
+ parent: 2
+ - uid: 9863
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-43.5
+ parent: 2
+ - uid: 9864
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-46.5
+ parent: 2
+ - uid: 9865
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-45.5
+ parent: 2
+ - uid: 9866
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-44.5
+ parent: 2
+ - uid: 9867
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-43.5
+ parent: 2
+ - uid: 9868
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-46.5
+ parent: 2
+ - uid: 9869
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-45.5
+ parent: 2
+ - uid: 9870
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-44.5
+ parent: 2
+ - uid: 9871
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-42.5
+ parent: 2
+ - uid: 9872
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-41.5
+ parent: 2
+ - uid: 9873
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-43.5
+ parent: 2
+ - uid: 9874
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-42.5
+ parent: 2
+ - uid: 9875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-41.5
+ parent: 2
+ - uid: 9876
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-43.5
+ parent: 2
+ - uid: 9877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-42.5
+ parent: 2
+ - uid: 9878
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-41.5
+ parent: 2
+ - uid: 9879
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-43.5
+ parent: 2
+ - uid: 9880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-42.5
+ parent: 2
+ - uid: 9881
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-42.5
+ parent: 2
+ - uid: 9882
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,-32.5
+ parent: 2
+ - uid: 9883
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,-33.5
+ parent: 2
+ - uid: 9884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,-32.5
+ parent: 2
+ - uid: 9885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,-33.5
+ parent: 2
+ - uid: 9886
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,-34.5
+ parent: 2
+ - uid: 9887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-32.5
+ parent: 2
+ - uid: 9888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-33.5
+ parent: 2
+ - uid: 9889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-34.5
+ parent: 2
+ - uid: 9890
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-35.5
+ parent: 2
+ - uid: 9891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-36.5
+ parent: 2
+ - uid: 9892
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-35.5
+ parent: 2
+ - uid: 9893
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-36.5
+ parent: 2
+ - uid: 9894
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-37.5
+ parent: 2
+ - uid: 9895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-36.5
+ parent: 2
+ - uid: 9896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-37.5
+ parent: 2
+ - uid: 9897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-36.5
+ parent: 2
+ - uid: 9898
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-34.5
+ parent: 2
+ - uid: 10016
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,-24.5
+ parent: 2
+ - uid: 10017
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -42.5,-20.5
+ parent: 2
+ - uid: 10018
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,-18.5
+ parent: 2
+ - uid: 10019
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -44.5,-19.5
+ parent: 2
+ - uid: 10020
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -46.5,-18.5
+ parent: 2
+ - uid: 10021
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -61.5,-29.5
+ parent: 2
+ - uid: 10022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -68.5,-34.5
+ parent: 2
+ - uid: 10023
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -70.5,-35.5
+ parent: 2
+ - uid: 10024
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -64.5,-33.5
+ parent: 2
+ - uid: 10025
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -62.5,-31.5
+ parent: 2
+ - uid: 10026
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -78.5,-24.5
+ parent: 2
+ - uid: 10027
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -82.5,-27.5
+ parent: 2
+ - uid: 10028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,-9.5
+ parent: 2
+ - uid: 10029
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-2.5
+ parent: 2
+ - uid: 10030
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,-8.5
+ parent: 2
+ - uid: 10031
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,5.5
+ parent: 2
+ - uid: 10032
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -62.5,8.5
+ parent: 2
+ - uid: 10033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,11.5
+ parent: 2
+ - uid: 10034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,5.5
+ parent: 2
+ - uid: 10035
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,9.5
+ parent: 2
+ - uid: 10036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -46.5,10.5
+ parent: 2
+ - uid: 10037
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,15.5
+ parent: 2
+ - uid: 10038
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -48.5,13.5
+ parent: 2
+ - uid: 10039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -72.5,4.5
+ parent: 2
+ - uid: 10040
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -81.5,7.5
+ parent: 2
+ - uid: 10041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -88.5,14.5
+ parent: 2
+ - uid: 10042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -87.5,23.5
+ parent: 2
+ - uid: 10043
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -82.5,20.5
+ parent: 2
+ - uid: 10044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,13.5
+ parent: 2
+ - uid: 10045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -79.5,30.5
+ parent: 2
+ - uid: 10046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -79.5,27.5
+ parent: 2
+ - uid: 10047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -78.5,27.5
+ parent: 2
+ - uid: 10048
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -89.5,40.5
+ parent: 2
+ - uid: 10049
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,39.5
+ parent: 2
+ - uid: 10050
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,38.5
+ parent: 2
+ - uid: 10051
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -87.5,44.5
+ parent: 2
+ - uid: 10052
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -66.5,44.5
+ parent: 2
+ - uid: 10053
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,53.5
+ parent: 2
+ - uid: 10054
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -56.5,58.5
+ parent: 2
+ - uid: 10055
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,59.5
+ parent: 2
+ - uid: 10056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -64.5,35.5
+ parent: 2
+ - uid: 10057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -63.5,28.5
+ parent: 2
+ - uid: 10058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,25.5
+ parent: 2
+ - uid: 10059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -44.5,42.5
+ parent: 2
+ - uid: 10060
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -47.5,47.5
+ parent: 2
+ - uid: 10061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,52.5
+ parent: 2
+ - uid: 10062
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,46.5
+ parent: 2
+ - uid: 10063
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,54.5
+ parent: 2
+ - uid: 10064
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,57.5
+ parent: 2
+ - uid: 10065
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,60.5
+ parent: 2
+ - uid: 10066
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,55.5
+ parent: 2
+ - uid: 10067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.5,64.5
+ parent: 2
+ - uid: 10068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,73.5
+ parent: 2
+ - uid: 10070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,70.5
+ parent: 2
+ - uid: 10121
+ components:
+ - type: Transform
+ pos: 88.5,129.5
+ parent: 2
+ - uid: 10125
+ components:
+ - type: Transform
+ pos: 88.5,128.5
+ parent: 2
+ - uid: 10126
+ components:
+ - type: Transform
+ pos: 89.5,128.5
+ parent: 2
+ - uid: 12354
+ components:
+ - type: Transform
+ pos: 51.5,96.5
+ parent: 2
+ - uid: 12357
+ components:
+ - type: Transform
+ pos: 47.5,93.5
+ parent: 2
+ - uid: 12358
+ components:
+ - type: Transform
+ pos: 48.5,94.5
+ parent: 2
+ - uid: 12359
+ components:
+ - type: Transform
+ pos: 48.5,93.5
+ parent: 2
+ - uid: 12360
+ components:
+ - type: Transform
+ pos: 46.5,93.5
+ parent: 2
+ - uid: 12362
+ components:
+ - type: Transform
+ pos: 49.5,94.5
+ parent: 2
+ - uid: 12363
+ components:
+ - type: Transform
+ pos: 45.5,98.5
+ parent: 2
+ - uid: 12364
+ components:
+ - type: Transform
+ pos: 50.5,95.5
+ parent: 2
+ - uid: 12365
+ components:
+ - type: Transform
+ pos: 50.5,97.5
+ parent: 2
+ - uid: 12366
+ components:
+ - type: Transform
+ pos: 50.5,98.5
+ parent: 2
+ - uid: 12367
+ components:
+ - type: Transform
+ pos: 50.5,99.5
+ parent: 2
+ - uid: 12368
+ components:
+ - type: Transform
+ pos: 50.5,100.5
+ parent: 2
+ - uid: 12369
+ components:
+ - type: Transform
+ pos: 50.5,96.5
+ parent: 2
+ - uid: 12370
+ components:
+ - type: Transform
+ pos: 50.5,101.5
+ parent: 2
+ - uid: 12371
+ components:
+ - type: Transform
+ pos: 46.5,102.5
+ parent: 2
+ - uid: 12372
+ components:
+ - type: Transform
+ pos: 46.5,103.5
+ parent: 2
+ - uid: 12373
+ components:
+ - type: Transform
+ pos: 46.5,104.5
+ parent: 2
+ - uid: 12374
+ components:
+ - type: Transform
+ pos: 46.5,105.5
+ parent: 2
+ - uid: 12375
+ components:
+ - type: Transform
+ pos: 46.5,106.5
+ parent: 2
+ - uid: 12376
+ components:
+ - type: Transform
+ pos: 45.5,95.5
+ parent: 2
+ - uid: 12377
+ components:
+ - type: Transform
+ pos: 45.5,96.5
+ parent: 2
+ - uid: 12378
+ components:
+ - type: Transform
+ pos: 45.5,97.5
+ parent: 2
+ - uid: 12379
+ components:
+ - type: Transform
+ pos: 47.5,106.5
+ parent: 2
+ - uid: 12380
+ components:
+ - type: Transform
+ pos: 46.5,95.5
+ parent: 2
+ - uid: 12381
+ components:
+ - type: Transform
+ pos: 46.5,96.5
+ parent: 2
+ - uid: 12382
+ components:
+ - type: Transform
+ pos: 46.5,97.5
+ parent: 2
+ - uid: 12383
+ components:
+ - type: Transform
+ pos: 46.5,98.5
+ parent: 2
+ - uid: 12384
+ components:
+ - type: Transform
+ pos: 46.5,99.5
+ parent: 2
+ - uid: 12385
+ components:
+ - type: Transform
+ pos: 46.5,100.5
+ parent: 2
+ - uid: 12386
+ components:
+ - type: Transform
+ pos: 46.5,101.5
+ parent: 2
+ - uid: 12387
+ components:
+ - type: Transform
+ pos: 47.5,99.5
+ parent: 2
+ - uid: 12388
+ components:
+ - type: Transform
+ pos: 47.5,97.5
+ parent: 2
+ - uid: 12389
+ components:
+ - type: Transform
+ pos: 47.5,100.5
+ parent: 2
+ - uid: 12390
+ components:
+ - type: Transform
+ pos: 47.5,101.5
+ parent: 2
+ - uid: 12391
+ components:
+ - type: Transform
+ pos: 47.5,102.5
+ parent: 2
+ - uid: 12392
+ components:
+ - type: Transform
+ pos: 47.5,103.5
+ parent: 2
+ - uid: 12393
+ components:
+ - type: Transform
+ pos: 47.5,104.5
+ parent: 2
+ - uid: 12394
+ components:
+ - type: Transform
+ pos: 47.5,105.5
+ parent: 2
+ - uid: 12395
+ components:
+ - type: Transform
+ pos: 48.5,103.5
+ parent: 2
+ - uid: 12396
+ components:
+ - type: Transform
+ pos: 48.5,104.5
+ parent: 2
+ - uid: 12397
+ components:
+ - type: Transform
+ pos: 48.5,105.5
+ parent: 2
+ - uid: 12398
+ components:
+ - type: Transform
+ pos: 47.5,95.5
+ parent: 2
+ - uid: 12399
+ components:
+ - type: Transform
+ pos: 48.5,106.5
+ parent: 2
+ - uid: 12400
+ components:
+ - type: Transform
+ pos: 47.5,96.5
+ parent: 2
+ - uid: 12401
+ components:
+ - type: Transform
+ pos: 48.5,97.5
+ parent: 2
+ - uid: 12402
+ components:
+ - type: Transform
+ pos: 47.5,98.5
+ parent: 2
+ - uid: 12403
+ components:
+ - type: Transform
+ pos: 48.5,95.5
+ parent: 2
+ - uid: 12404
+ components:
+ - type: Transform
+ pos: 48.5,96.5
+ parent: 2
+ - uid: 12405
+ components:
+ - type: Transform
+ pos: 49.5,104.5
+ parent: 2
+ - uid: 12406
+ components:
+ - type: Transform
+ pos: 48.5,99.5
+ parent: 2
+ - uid: 12407
+ components:
+ - type: Transform
+ pos: 48.5,100.5
+ parent: 2
+ - uid: 12408
+ components:
+ - type: Transform
+ pos: 48.5,98.5
+ parent: 2
+ - uid: 12409
+ components:
+ - type: Transform
+ pos: 48.5,102.5
+ parent: 2
+ - uid: 12410
+ components:
+ - type: Transform
+ pos: 48.5,101.5
+ parent: 2
+ - uid: 12411
+ components:
+ - type: Transform
+ pos: 49.5,99.5
+ parent: 2
+ - uid: 12412
+ components:
+ - type: Transform
+ pos: 49.5,100.5
+ parent: 2
+ - uid: 12413
+ components:
+ - type: Transform
+ pos: 50.5,104.5
+ parent: 2
+ - uid: 12414
+ components:
+ - type: Transform
+ pos: 49.5,101.5
+ parent: 2
+ - uid: 12415
+ components:
+ - type: Transform
+ pos: 49.5,102.5
+ parent: 2
+ - uid: 12416
+ components:
+ - type: Transform
+ pos: 49.5,103.5
+ parent: 2
+ - uid: 12417
+ components:
+ - type: Transform
+ pos: 49.5,105.5
+ parent: 2
+ - uid: 12418
+ components:
+ - type: Transform
+ pos: 49.5,106.5
+ parent: 2
+ - uid: 12419
+ components:
+ - type: Transform
+ pos: 50.5,102.5
+ parent: 2
+ - uid: 12420
+ components:
+ - type: Transform
+ pos: 50.5,105.5
+ parent: 2
+ - uid: 12421
+ components:
+ - type: Transform
+ pos: 50.5,103.5
+ parent: 2
+ - uid: 12422
+ components:
+ - type: Transform
+ pos: 50.5,106.5
+ parent: 2
+ - uid: 12423
+ components:
+ - type: Transform
+ pos: 49.5,95.5
+ parent: 2
+ - uid: 12424
+ components:
+ - type: Transform
+ pos: 49.5,96.5
+ parent: 2
+ - uid: 12425
+ components:
+ - type: Transform
+ pos: 49.5,97.5
+ parent: 2
+ - uid: 12426
+ components:
+ - type: Transform
+ pos: 49.5,98.5
+ parent: 2
+ - uid: 12427
+ components:
+ - type: Transform
+ pos: 40.5,96.5
+ parent: 2
+ - uid: 12428
+ components:
+ - type: Transform
+ pos: 40.5,97.5
+ parent: 2
+ - uid: 12429
+ components:
+ - type: Transform
+ pos: 40.5,98.5
+ parent: 2
+ - uid: 12430
+ components:
+ - type: Transform
+ pos: 40.5,99.5
+ parent: 2
+ - uid: 12431
+ components:
+ - type: Transform
+ pos: 40.5,100.5
+ parent: 2
+ - uid: 12432
+ components:
+ - type: Transform
+ pos: 40.5,101.5
+ parent: 2
+ - uid: 12433
+ components:
+ - type: Transform
+ pos: 40.5,102.5
+ parent: 2
+ - uid: 12434
+ components:
+ - type: Transform
+ pos: 41.5,100.5
+ parent: 2
+ - uid: 12435
+ components:
+ - type: Transform
+ pos: 41.5,101.5
+ parent: 2
+ - uid: 12436
+ components:
+ - type: Transform
+ pos: 41.5,102.5
+ parent: 2
+ - uid: 12437
+ components:
+ - type: Transform
+ pos: 41.5,103.5
+ parent: 2
+ - uid: 12438
+ components:
+ - type: Transform
+ pos: 41.5,104.5
+ parent: 2
+ - uid: 12439
+ components:
+ - type: Transform
+ pos: 41.5,105.5
+ parent: 2
+ - uid: 12440
+ components:
+ - type: Transform
+ pos: 41.5,106.5
+ parent: 2
+ - uid: 12441
+ components:
+ - type: Transform
+ pos: 40.5,95.5
+ parent: 2
+ - uid: 12442
+ components:
+ - type: Transform
+ pos: 42.5,104.5
+ parent: 2
+ - uid: 12443
+ components:
+ - type: Transform
+ pos: 42.5,105.5
+ parent: 2
+ - uid: 12444
+ components:
+ - type: Transform
+ pos: 42.5,106.5
+ parent: 2
+ - uid: 12445
+ components:
+ - type: Transform
+ pos: 41.5,95.5
+ parent: 2
+ - uid: 12446
+ components:
+ - type: Transform
+ pos: 41.5,96.5
+ parent: 2
+ - uid: 12447
+ components:
+ - type: Transform
+ pos: 41.5,97.5
+ parent: 2
+ - uid: 12448
+ components:
+ - type: Transform
+ pos: 41.5,98.5
+ parent: 2
+ - uid: 12449
+ components:
+ - type: Transform
+ pos: 41.5,99.5
+ parent: 2
+ - uid: 12450
+ components:
+ - type: Transform
+ pos: 42.5,96.5
+ parent: 2
+ - uid: 12451
+ components:
+ - type: Transform
+ pos: 42.5,97.5
+ parent: 2
+ - uid: 12452
+ components:
+ - type: Transform
+ pos: 42.5,98.5
+ parent: 2
+ - uid: 12453
+ components:
+ - type: Transform
+ pos: 42.5,99.5
+ parent: 2
+ - uid: 12454
+ components:
+ - type: Transform
+ pos: 42.5,100.5
+ parent: 2
+ - uid: 12455
+ components:
+ - type: Transform
+ pos: 42.5,101.5
+ parent: 2
+ - uid: 12456
+ components:
+ - type: Transform
+ pos: 42.5,102.5
+ parent: 2
+ - uid: 12457
+ components:
+ - type: Transform
+ pos: 42.5,103.5
+ parent: 2
+ - uid: 12458
+ components:
+ - type: Transform
+ pos: 43.5,100.5
+ parent: 2
+ - uid: 12459
+ components:
+ - type: Transform
+ pos: 43.5,101.5
+ parent: 2
+ - uid: 12460
+ components:
+ - type: Transform
+ pos: 43.5,102.5
+ parent: 2
+ - uid: 12461
+ components:
+ - type: Transform
+ pos: 43.5,103.5
+ parent: 2
+ - uid: 12462
+ components:
+ - type: Transform
+ pos: 43.5,104.5
+ parent: 2
+ - uid: 12463
+ components:
+ - type: Transform
+ pos: 43.5,105.5
+ parent: 2
+ - uid: 12464
+ components:
+ - type: Transform
+ pos: 43.5,106.5
+ parent: 2
+ - uid: 12465
+ components:
+ - type: Transform
+ pos: 42.5,95.5
+ parent: 2
+ - uid: 12466
+ components:
+ - type: Transform
+ pos: 44.5,104.5
+ parent: 2
+ - uid: 12467
+ components:
+ - type: Transform
+ pos: 44.5,105.5
+ parent: 2
+ - uid: 12468
+ components:
+ - type: Transform
+ pos: 44.5,106.5
+ parent: 2
+ - uid: 12469
+ components:
+ - type: Transform
+ pos: 43.5,95.5
+ parent: 2
+ - uid: 12470
+ components:
+ - type: Transform
+ pos: 43.5,96.5
+ parent: 2
+ - uid: 12471
+ components:
+ - type: Transform
+ pos: 43.5,97.5
+ parent: 2
+ - uid: 12472
+ components:
+ - type: Transform
+ pos: 43.5,98.5
+ parent: 2
+ - uid: 12473
+ components:
+ - type: Transform
+ pos: 43.5,99.5
+ parent: 2
+ - uid: 12474
+ components:
+ - type: Transform
+ pos: 44.5,96.5
+ parent: 2
+ - uid: 12475
+ components:
+ - type: Transform
+ pos: 44.5,97.5
+ parent: 2
+ - uid: 12476
+ components:
+ - type: Transform
+ pos: 44.5,98.5
+ parent: 2
+ - uid: 12477
+ components:
+ - type: Transform
+ pos: 44.5,99.5
+ parent: 2
+ - uid: 12478
+ components:
+ - type: Transform
+ pos: 44.5,100.5
+ parent: 2
+ - uid: 12479
+ components:
+ - type: Transform
+ pos: 44.5,101.5
+ parent: 2
+ - uid: 12480
+ components:
+ - type: Transform
+ pos: 44.5,102.5
+ parent: 2
+ - uid: 12481
+ components:
+ - type: Transform
+ pos: 44.5,103.5
+ parent: 2
+ - uid: 12482
+ components:
+ - type: Transform
+ pos: 45.5,100.5
+ parent: 2
+ - uid: 12483
+ components:
+ - type: Transform
+ pos: 45.5,101.5
+ parent: 2
+ - uid: 12484
+ components:
+ - type: Transform
+ pos: 45.5,102.5
+ parent: 2
+ - uid: 12485
+ components:
+ - type: Transform
+ pos: 45.5,103.5
+ parent: 2
+ - uid: 12486
+ components:
+ - type: Transform
+ pos: 45.5,104.5
+ parent: 2
+ - uid: 12487
+ components:
+ - type: Transform
+ pos: 45.5,105.5
+ parent: 2
+ - uid: 12488
+ components:
+ - type: Transform
+ pos: 45.5,106.5
+ parent: 2
+ - uid: 12489
+ components:
+ - type: Transform
+ pos: 44.5,95.5
+ parent: 2
+ - uid: 12490
+ components:
+ - type: Transform
+ pos: 45.5,99.5
+ parent: 2
+ - uid: 12491
+ components:
+ - type: Transform
+ pos: 35.5,106.5
+ parent: 2
+ - uid: 12492
+ components:
+ - type: Transform
+ pos: 35.5,98.5
+ parent: 2
+ - uid: 12493
+ components:
+ - type: Transform
+ pos: 35.5,99.5
+ parent: 2
+ - uid: 12494
+ components:
+ - type: Transform
+ pos: 35.5,100.5
+ parent: 2
+ - uid: 12495
+ components:
+ - type: Transform
+ pos: 35.5,101.5
+ parent: 2
+ - uid: 12496
+ components:
+ - type: Transform
+ pos: 35.5,102.5
+ parent: 2
+ - uid: 12497
+ components:
+ - type: Transform
+ pos: 35.5,103.5
+ parent: 2
+ - uid: 12498
+ components:
+ - type: Transform
+ pos: 35.5,104.5
+ parent: 2
+ - uid: 12499
+ components:
+ - type: Transform
+ pos: 35.5,105.5
+ parent: 2
+ - uid: 12500
+ components:
+ - type: Transform
+ pos: 36.5,102.5
+ parent: 2
+ - uid: 12501
+ components:
+ - type: Transform
+ pos: 36.5,104.5
+ parent: 2
+ - uid: 12502
+ components:
+ - type: Transform
+ pos: 36.5,105.5
+ parent: 2
+ - uid: 12503
+ components:
+ - type: Transform
+ pos: 36.5,103.5
+ parent: 2
+ - uid: 12504
+ components:
+ - type: Transform
+ pos: 36.5,106.5
+ parent: 2
+ - uid: 12505
+ components:
+ - type: Transform
+ pos: 35.5,95.5
+ parent: 2
+ - uid: 12506
+ components:
+ - type: Transform
+ pos: 35.5,96.5
+ parent: 2
+ - uid: 12507
+ components:
+ - type: Transform
+ pos: 35.5,97.5
+ parent: 2
+ - uid: 12508
+ components:
+ - type: Transform
+ pos: 37.5,106.5
+ parent: 2
+ - uid: 12509
+ components:
+ - type: Transform
+ pos: 36.5,95.5
+ parent: 2
+ - uid: 12510
+ components:
+ - type: Transform
+ pos: 36.5,96.5
+ parent: 2
+ - uid: 12511
+ components:
+ - type: Transform
+ pos: 36.5,97.5
+ parent: 2
+ - uid: 12512
+ components:
+ - type: Transform
+ pos: 36.5,98.5
+ parent: 2
+ - uid: 12513
+ components:
+ - type: Transform
+ pos: 36.5,99.5
+ parent: 2
+ - uid: 12514
+ components:
+ - type: Transform
+ pos: 36.5,100.5
+ parent: 2
+ - uid: 12515
+ components:
+ - type: Transform
+ pos: 36.5,101.5
+ parent: 2
+ - uid: 12516
+ components:
+ - type: Transform
+ pos: 37.5,98.5
+ parent: 2
+ - uid: 12517
+ components:
+ - type: Transform
+ pos: 37.5,99.5
+ parent: 2
+ - uid: 12518
+ components:
+ - type: Transform
+ pos: 37.5,100.5
+ parent: 2
+ - uid: 12519
+ components:
+ - type: Transform
+ pos: 37.5,101.5
+ parent: 2
+ - uid: 12520
+ components:
+ - type: Transform
+ pos: 37.5,102.5
+ parent: 2
+ - uid: 12521
+ components:
+ - type: Transform
+ pos: 37.5,103.5
+ parent: 2
+ - uid: 12522
+ components:
+ - type: Transform
+ pos: 37.5,104.5
+ parent: 2
+ - uid: 12523
+ components:
+ - type: Transform
+ pos: 37.5,105.5
+ parent: 2
+ - uid: 12524
+ components:
+ - type: Transform
+ pos: 38.5,102.5
+ parent: 2
+ - uid: 12525
+ components:
+ - type: Transform
+ pos: 38.5,103.5
+ parent: 2
+ - uid: 12526
+ components:
+ - type: Transform
+ pos: 38.5,104.5
+ parent: 2
+ - uid: 12527
+ components:
+ - type: Transform
+ pos: 38.5,105.5
+ parent: 2
+ - uid: 12528
+ components:
+ - type: Transform
+ pos: 38.5,106.5
+ parent: 2
+ - uid: 12529
+ components:
+ - type: Transform
+ pos: 37.5,95.5
+ parent: 2
+ - uid: 12530
+ components:
+ - type: Transform
+ pos: 37.5,96.5
+ parent: 2
+ - uid: 12531
+ components:
+ - type: Transform
+ pos: 37.5,97.5
+ parent: 2
+ - uid: 12532
+ components:
+ - type: Transform
+ pos: 38.5,95.5
+ parent: 2
+ - uid: 12533
+ components:
+ - type: Transform
+ pos: 38.5,96.5
+ parent: 2
+ - uid: 12534
+ components:
+ - type: Transform
+ pos: 38.5,97.5
+ parent: 2
+ - uid: 12535
+ components:
+ - type: Transform
+ pos: 38.5,98.5
+ parent: 2
+ - uid: 12536
+ components:
+ - type: Transform
+ pos: 38.5,99.5
+ parent: 2
+ - uid: 12537
+ components:
+ - type: Transform
+ pos: 38.5,100.5
+ parent: 2
+ - uid: 12538
+ components:
+ - type: Transform
+ pos: 38.5,101.5
+ parent: 2
+ - uid: 12539
+ components:
+ - type: Transform
+ pos: 39.5,102.5
+ parent: 2
+ - uid: 12540
+ components:
+ - type: Transform
+ pos: 39.5,98.5
+ parent: 2
+ - uid: 12541
+ components:
+ - type: Transform
+ pos: 39.5,99.5
+ parent: 2
+ - uid: 12542
+ components:
+ - type: Transform
+ pos: 39.5,100.5
+ parent: 2
+ - uid: 12543
+ components:
+ - type: Transform
+ pos: 39.5,101.5
+ parent: 2
+ - uid: 12544
+ components:
+ - type: Transform
+ pos: 39.5,103.5
+ parent: 2
+ - uid: 12545
+ components:
+ - type: Transform
+ pos: 39.5,104.5
+ parent: 2
+ - uid: 12546
+ components:
+ - type: Transform
+ pos: 39.5,105.5
+ parent: 2
+ - uid: 12547
+ components:
+ - type: Transform
+ pos: 39.5,106.5
+ parent: 2
+ - uid: 12548
+ components:
+ - type: Transform
+ pos: 40.5,103.5
+ parent: 2
+ - uid: 12549
+ components:
+ - type: Transform
+ pos: 40.5,104.5
+ parent: 2
+ - uid: 12550
+ components:
+ - type: Transform
+ pos: 40.5,105.5
+ parent: 2
+ - uid: 12551
+ components:
+ - type: Transform
+ pos: 40.5,106.5
+ parent: 2
+ - uid: 12552
+ components:
+ - type: Transform
+ pos: 39.5,95.5
+ parent: 2
+ - uid: 12553
+ components:
+ - type: Transform
+ pos: 39.5,96.5
+ parent: 2
+ - uid: 12554
+ components:
+ - type: Transform
+ pos: 39.5,97.5
+ parent: 2
+ - uid: 12555
+ components:
+ - type: Transform
+ pos: 30.5,96.5
+ parent: 2
+ - uid: 12556
+ components:
+ - type: Transform
+ pos: 30.5,97.5
+ parent: 2
+ - uid: 12557
+ components:
+ - type: Transform
+ pos: 30.5,98.5
+ parent: 2
+ - uid: 12558
+ components:
+ - type: Transform
+ pos: 30.5,99.5
+ parent: 2
+ - uid: 12559
+ components:
+ - type: Transform
+ pos: 30.5,100.5
+ parent: 2
+ - uid: 12560
+ components:
+ - type: Transform
+ pos: 30.5,101.5
+ parent: 2
+ - uid: 12561
+ components:
+ - type: Transform
+ pos: 30.5,102.5
+ parent: 2
+ - uid: 12562
+ components:
+ - type: Transform
+ pos: 30.5,104.5
+ parent: 2
+ - uid: 12563
+ components:
+ - type: Transform
+ pos: 31.5,100.5
+ parent: 2
+ - uid: 12564
+ components:
+ - type: Transform
+ pos: 31.5,101.5
+ parent: 2
+ - uid: 12565
+ components:
+ - type: Transform
+ pos: 31.5,102.5
+ parent: 2
+ - uid: 12566
+ components:
+ - type: Transform
+ pos: 31.5,103.5
+ parent: 2
+ - uid: 12567
+ components:
+ - type: Transform
+ pos: 31.5,104.5
+ parent: 2
+ - uid: 12568
+ components:
+ - type: Transform
+ pos: 31.5,105.5
+ parent: 2
+ - uid: 12569
+ components:
+ - type: Transform
+ pos: 31.5,106.5
+ parent: 2
+ - uid: 12570
+ components:
+ - type: Transform
+ pos: 30.5,95.5
+ parent: 2
+ - uid: 12571
+ components:
+ - type: Transform
+ pos: 32.5,105.5
+ parent: 2
+ - uid: 12572
+ components:
+ - type: Transform
+ pos: 32.5,106.5
+ parent: 2
+ - uid: 12573
+ components:
+ - type: Transform
+ pos: 33.5,105.5
+ parent: 2
+ - uid: 12574
+ components:
+ - type: Transform
+ pos: 31.5,95.5
+ parent: 2
+ - uid: 12575
+ components:
+ - type: Transform
+ pos: 31.5,96.5
+ parent: 2
+ - uid: 12576
+ components:
+ - type: Transform
+ pos: 31.5,97.5
+ parent: 2
+ - uid: 12577
+ components:
+ - type: Transform
+ pos: 31.5,98.5
+ parent: 2
+ - uid: 12578
+ components:
+ - type: Transform
+ pos: 31.5,99.5
+ parent: 2
+ - uid: 12579
+ components:
+ - type: Transform
+ pos: 32.5,97.5
+ parent: 2
+ - uid: 12580
+ components:
+ - type: Transform
+ pos: 32.5,98.5
+ parent: 2
+ - uid: 12581
+ components:
+ - type: Transform
+ pos: 32.5,99.5
+ parent: 2
+ - uid: 12582
+ components:
+ - type: Transform
+ pos: 32.5,100.5
+ parent: 2
+ - uid: 12583
+ components:
+ - type: Transform
+ pos: 32.5,101.5
+ parent: 2
+ - uid: 12584
+ components:
+ - type: Transform
+ pos: 32.5,102.5
+ parent: 2
+ - uid: 12585
+ components:
+ - type: Transform
+ pos: 32.5,103.5
+ parent: 2
+ - uid: 12586
+ components:
+ - type: Transform
+ pos: 32.5,104.5
+ parent: 2
+ - uid: 12587
+ components:
+ - type: Transform
+ pos: 33.5,100.5
+ parent: 2
+ - uid: 12588
+ components:
+ - type: Transform
+ pos: 33.5,101.5
+ parent: 2
+ - uid: 12589
+ components:
+ - type: Transform
+ pos: 33.5,103.5
+ parent: 2
+ - uid: 12590
+ components:
+ - type: Transform
+ pos: 33.5,104.5
+ parent: 2
+ - uid: 12591
+ components:
+ - type: Transform
+ pos: 33.5,102.5
+ parent: 2
+ - uid: 12592
+ components:
+ - type: Transform
+ pos: 33.5,106.5
+ parent: 2
+ - uid: 12593
+ components:
+ - type: Transform
+ pos: 32.5,95.5
+ parent: 2
+ - uid: 12594
+ components:
+ - type: Transform
+ pos: 32.5,96.5
+ parent: 2
+ - uid: 12595
+ components:
+ - type: Transform
+ pos: 34.5,104.5
+ parent: 2
+ - uid: 12596
+ components:
+ - type: Transform
+ pos: 34.5,105.5
+ parent: 2
+ - uid: 12597
+ components:
+ - type: Transform
+ pos: 34.5,106.5
+ parent: 2
+ - uid: 12598
+ components:
+ - type: Transform
+ pos: 33.5,95.5
+ parent: 2
+ - uid: 12599
+ components:
+ - type: Transform
+ pos: 33.5,96.5
+ parent: 2
+ - uid: 12600
+ components:
+ - type: Transform
+ pos: 33.5,97.5
+ parent: 2
+ - uid: 12601
+ components:
+ - type: Transform
+ pos: 33.5,98.5
+ parent: 2
+ - uid: 12602
+ components:
+ - type: Transform
+ pos: 33.5,99.5
+ parent: 2
+ - uid: 12603
+ components:
+ - type: Transform
+ pos: 34.5,96.5
+ parent: 2
+ - uid: 12604
+ components:
+ - type: Transform
+ pos: 34.5,98.5
+ parent: 2
+ - uid: 12605
+ components:
+ - type: Transform
+ pos: 34.5,97.5
+ parent: 2
+ - uid: 12606
+ components:
+ - type: Transform
+ pos: 34.5,99.5
+ parent: 2
+ - uid: 12607
+ components:
+ - type: Transform
+ pos: 34.5,100.5
+ parent: 2
+ - uid: 12608
+ components:
+ - type: Transform
+ pos: 34.5,101.5
+ parent: 2
+ - uid: 12609
+ components:
+ - type: Transform
+ pos: 34.5,102.5
+ parent: 2
+ - uid: 12610
+ components:
+ - type: Transform
+ pos: 34.5,103.5
+ parent: 2
+ - uid: 12611
+ components:
+ - type: Transform
+ pos: 34.5,95.5
+ parent: 2
+ - uid: 12612
+ components:
+ - type: Transform
+ pos: 30.5,103.5
+ parent: 2
+ - uid: 12613
+ components:
+ - type: Transform
+ pos: 30.5,105.5
+ parent: 2
+ - uid: 12614
+ components:
+ - type: Transform
+ pos: 41.5,110.5
+ parent: 2
+ - uid: 12615
+ components:
+ - type: Transform
+ pos: 29.5,95.5
+ parent: 2
+ - uid: 12616
+ components:
+ - type: Transform
+ pos: 29.5,96.5
+ parent: 2
+ - uid: 12617
+ components:
+ - type: Transform
+ pos: 29.5,97.5
+ parent: 2
+ - uid: 12618
+ components:
+ - type: Transform
+ pos: 29.5,98.5
+ parent: 2
+ - uid: 12619
+ components:
+ - type: Transform
+ pos: 41.5,109.5
+ parent: 2
+ - uid: 12620
+ components:
+ - type: Transform
+ pos: 29.5,99.5
+ parent: 2
+ - uid: 12621
+ components:
+ - type: Transform
+ pos: 29.5,101.5
+ parent: 2
+ - uid: 12622
+ components:
+ - type: Transform
+ pos: 29.5,102.5
+ parent: 2
+ - uid: 12623
+ components:
+ - type: Transform
+ pos: 29.5,103.5
+ parent: 2
+ - uid: 12624
+ components:
+ - type: Transform
+ pos: 29.5,100.5
+ parent: 2
+ - uid: 12625
+ components:
+ - type: Transform
+ pos: 29.5,104.5
+ parent: 2
+ - uid: 12626
+ components:
+ - type: Transform
+ pos: 29.5,105.5
+ parent: 2
+ - uid: 12627
+ components:
+ - type: Transform
+ pos: 51.5,105.5
+ parent: 2
+ - uid: 12628
+ components:
+ - type: Transform
+ pos: 51.5,106.5
+ parent: 2
+ - uid: 12629
+ components:
+ - type: Transform
+ pos: 51.5,107.5
+ parent: 2
+ - uid: 12630
+ components:
+ - type: Transform
+ pos: 51.5,108.5
+ parent: 2
+ - uid: 12631
+ components:
+ - type: Transform
+ pos: 51.5,102.5
+ parent: 2
+ - uid: 12632
+ components:
+ - type: Transform
+ pos: 51.5,109.5
+ parent: 2
+ - uid: 12633
+ components:
+ - type: Transform
+ pos: 51.5,97.5
+ parent: 2
+ - uid: 12634
+ components:
+ - type: Transform
+ pos: 51.5,98.5
+ parent: 2
+ - uid: 12635
+ components:
+ - type: Transform
+ pos: 51.5,99.5
+ parent: 2
+ - uid: 12636
+ components:
+ - type: Transform
+ pos: 51.5,100.5
+ parent: 2
+ - uid: 12637
+ components:
+ - type: Transform
+ pos: 51.5,101.5
+ parent: 2
+ - uid: 12638
+ components:
+ - type: Transform
+ pos: 51.5,103.5
+ parent: 2
+ - uid: 12639
+ components:
+ - type: Transform
+ pos: 51.5,104.5
+ parent: 2
+ - uid: 12640
+ components:
+ - type: Transform
+ pos: 52.5,101.5
+ parent: 2
+ - uid: 12641
+ components:
+ - type: Transform
+ pos: 52.5,102.5
+ parent: 2
+ - uid: 12642
+ components:
+ - type: Transform
+ pos: 52.5,103.5
+ parent: 2
+ - uid: 12643
+ components:
+ - type: Transform
+ pos: 52.5,104.5
+ parent: 2
+ - uid: 12644
+ components:
+ - type: Transform
+ pos: 52.5,105.5
+ parent: 2
+ - uid: 12645
+ components:
+ - type: Transform
+ pos: 52.5,106.5
+ parent: 2
+ - uid: 12646
+ components:
+ - type: Transform
+ pos: 52.5,107.5
+ parent: 2
+ - uid: 12647
+ components:
+ - type: Transform
+ pos: 52.5,108.5
+ parent: 2
+ - uid: 12648
+ components:
+ - type: Transform
+ pos: 52.5,109.5
+ parent: 2
+ - uid: 12649
+ components:
+ - type: Transform
+ pos: 52.5,110.5
+ parent: 2
+ - uid: 12650
+ components:
+ - type: Transform
+ pos: 52.5,111.5
+ parent: 2
+ - uid: 12651
+ components:
+ - type: Transform
+ pos: 52.5,112.5
+ parent: 2
+ - uid: 12652
+ components:
+ - type: Transform
+ pos: 52.5,113.5
+ parent: 2
+ - uid: 12653
+ components:
+ - type: Transform
+ pos: 52.5,114.5
+ parent: 2
+ - uid: 12654
+ components:
+ - type: Transform
+ pos: 52.5,115.5
+ parent: 2
+ - uid: 12655
+ components:
+ - type: Transform
+ pos: 53.5,113.5
+ parent: 2
+ - uid: 12656
+ components:
+ - type: Transform
+ pos: 53.5,114.5
+ parent: 2
+ - uid: 12657
+ components:
+ - type: Transform
+ pos: 53.5,115.5
+ parent: 2
+ - uid: 12658
+ components:
+ - type: Transform
+ pos: 53.5,116.5
+ parent: 2
+ - uid: 12659
+ components:
+ - type: Transform
+ pos: 53.5,117.5
+ parent: 2
+ - uid: 12660
+ components:
+ - type: Transform
+ pos: 53.5,111.5
+ parent: 2
+ - uid: 12661
+ components:
+ - type: Transform
+ pos: 53.5,105.5
+ parent: 2
+ - uid: 12662
+ components:
+ - type: Transform
+ pos: 53.5,106.5
+ parent: 2
+ - uid: 12663
+ components:
+ - type: Transform
+ pos: 53.5,107.5
+ parent: 2
+ - uid: 12664
+ components:
+ - type: Transform
+ pos: 53.5,108.5
+ parent: 2
+ - uid: 12665
+ components:
+ - type: Transform
+ pos: 53.5,109.5
+ parent: 2
+ - uid: 12666
+ components:
+ - type: Transform
+ pos: 53.5,110.5
+ parent: 2
+ - uid: 12667
+ components:
+ - type: Transform
+ pos: 53.5,112.5
+ parent: 2
+ - uid: 12668
+ components:
+ - type: Transform
+ pos: 54.5,110.5
+ parent: 2
+ - uid: 12669
+ components:
+ - type: Transform
+ pos: 54.5,117.5
+ parent: 2
+ - uid: 12670
+ components:
+ - type: Transform
+ pos: 54.5,116.5
+ parent: 2
+ - uid: 12671
+ components:
+ - type: Transform
+ pos: 54.5,118.5
+ parent: 2
+ - uid: 12673
+ components:
+ - type: Transform
+ pos: 54.5,108.5
+ parent: 2
+ - uid: 12674
+ components:
+ - type: Transform
+ pos: 54.5,109.5
+ parent: 2
+ - uid: 12675
+ components:
+ - type: Transform
+ pos: 54.5,111.5
+ parent: 2
+ - uid: 12676
+ components:
+ - type: Transform
+ pos: 54.5,112.5
+ parent: 2
+ - uid: 12677
+ components:
+ - type: Transform
+ pos: 54.5,113.5
+ parent: 2
+ - uid: 12678
+ components:
+ - type: Transform
+ pos: 54.5,114.5
+ parent: 2
+ - uid: 12679
+ components:
+ - type: Transform
+ pos: 54.5,115.5
+ parent: 2
+ - uid: 12680
+ components:
+ - type: Transform
+ pos: 55.5,109.5
+ parent: 2
+ - uid: 12681
+ components:
+ - type: Transform
+ pos: 55.5,110.5
+ parent: 2
+ - uid: 12682
+ components:
+ - type: Transform
+ pos: 55.5,111.5
+ parent: 2
+ - uid: 12683
+ components:
+ - type: Transform
+ pos: 55.5,112.5
+ parent: 2
+ - uid: 12684
+ components:
+ - type: Transform
+ pos: 55.5,113.5
+ parent: 2
+ - uid: 12685
+ components:
+ - type: Transform
+ pos: 55.5,115.5
+ parent: 2
+ - uid: 12686
+ components:
+ - type: Transform
+ pos: 55.5,116.5
+ parent: 2
+ - uid: 12687
+ components:
+ - type: Transform
+ pos: 55.5,114.5
+ parent: 2
+ - uid: 12688
+ components:
+ - type: Transform
+ pos: 55.5,117.5
+ parent: 2
+ - uid: 12689
+ components:
+ - type: Transform
+ pos: 55.5,118.5
+ parent: 2
+ - uid: 12695
+ components:
+ - type: Transform
+ pos: 56.5,112.5
+ parent: 2
+ - uid: 12696
+ components:
+ - type: Transform
+ pos: 56.5,113.5
+ parent: 2
+ - uid: 12697
+ components:
+ - type: Transform
+ pos: 56.5,114.5
+ parent: 2
+ - uid: 12698
+ components:
+ - type: Transform
+ pos: 56.5,115.5
+ parent: 2
+ - uid: 12699
+ components:
+ - type: Transform
+ pos: 56.5,116.5
+ parent: 2
+ - uid: 12700
+ components:
+ - type: Transform
+ pos: 56.5,117.5
+ parent: 2
+ - uid: 12701
+ components:
+ - type: Transform
+ pos: 56.5,118.5
+ parent: 2
+ - uid: 12713
+ components:
+ - type: Transform
+ pos: 52.5,116.5
+ parent: 2
+ - uid: 12718
+ components:
+ - type: Transform
+ pos: 57.5,113.5
+ parent: 2
+ - uid: 12719
+ components:
+ - type: Transform
+ pos: 57.5,114.5
+ parent: 2
+ - uid: 12723
+ components:
+ - type: Transform
+ pos: 57.5,116.5
+ parent: 2
+ - uid: 12724
+ components:
+ - type: Transform
+ pos: 57.5,117.5
+ parent: 2
+ - uid: 12733
+ components:
+ - type: Transform
+ pos: 49.5,115.5
+ parent: 2
+ - uid: 12736
+ components:
+ - type: Transform
+ pos: 57.5,115.5
+ parent: 2
+ - uid: 12746
+ components:
+ - type: Transform
+ pos: 51.5,115.5
+ parent: 2
+ - uid: 12749
+ components:
+ - type: Transform
+ pos: 48.5,115.5
+ parent: 2
+ - uid: 12750
+ components:
+ - type: Transform
+ pos: 50.5,115.5
+ parent: 2
+ - uid: 12753
+ components:
+ - type: Transform
+ pos: 44.5,114.5
+ parent: 2
+ - uid: 12754
+ components:
+ - type: Transform
+ pos: 51.5,114.5
+ parent: 2
+ - uid: 12755
+ components:
+ - type: Transform
+ pos: 50.5,114.5
+ parent: 2
+ - uid: 12756
+ components:
+ - type: Transform
+ pos: 49.5,114.5
+ parent: 2
+ - uid: 12757
+ components:
+ - type: Transform
+ pos: 48.5,114.5
+ parent: 2
+ - uid: 12758
+ components:
+ - type: Transform
+ pos: 47.5,114.5
+ parent: 2
+ - uid: 12759
+ components:
+ - type: Transform
+ pos: 46.5,114.5
+ parent: 2
+ - uid: 12760
+ components:
+ - type: Transform
+ pos: 45.5,114.5
+ parent: 2
+ - uid: 12761
+ components:
+ - type: Transform
+ pos: 43.5,113.5
+ parent: 2
+ - uid: 12762
+ components:
+ - type: Transform
+ pos: 42.5,113.5
+ parent: 2
+ - uid: 12763
+ components:
+ - type: Transform
+ pos: 41.5,113.5
+ parent: 2
+ - uid: 12764
+ components:
+ - type: Transform
+ pos: 40.5,113.5
+ parent: 2
+ - uid: 12765
+ components:
+ - type: Transform
+ pos: 40.5,112.5
+ parent: 2
+ - uid: 12766
+ components:
+ - type: Transform
+ pos: 39.5,112.5
+ parent: 2
+ - uid: 12767
+ components:
+ - type: Transform
+ pos: 33.5,108.5
+ parent: 2
+ - uid: 12768
+ components:
+ - type: Transform
+ pos: 32.5,107.5
+ parent: 2
+ - uid: 12769
+ components:
+ - type: Transform
+ pos: 34.5,108.5
+ parent: 2
+ - uid: 12770
+ components:
+ - type: Transform
+ pos: 36.5,109.5
+ parent: 2
+ - uid: 12771
+ components:
+ - type: Transform
+ pos: 39.5,111.5
+ parent: 2
+ - uid: 12772
+ components:
+ - type: Transform
+ pos: 38.5,110.5
+ parent: 2
+ - uid: 12773
+ components:
+ - type: Transform
+ pos: 37.5,109.5
+ parent: 2
+ - uid: 12774
+ components:
+ - type: Transform
+ pos: 35.5,109.5
+ parent: 2
+ - uid: 12775
+ components:
+ - type: Transform
+ pos: 41.5,112.5
+ parent: 2
+ - uid: 12776
+ components:
+ - type: Transform
+ pos: 41.5,107.5
+ parent: 2
+ - uid: 12777
+ components:
+ - type: Transform
+ pos: 41.5,111.5
+ parent: 2
+ - uid: 12778
+ components:
+ - type: Transform
+ pos: 50.5,107.5
+ parent: 2
+ - uid: 12779
+ components:
+ - type: Transform
+ pos: 50.5,109.5
+ parent: 2
+ - uid: 12780
+ components:
+ - type: Transform
+ pos: 50.5,110.5
+ parent: 2
+ - uid: 12781
+ components:
+ - type: Transform
+ pos: 50.5,111.5
+ parent: 2
+ - uid: 12782
+ components:
+ - type: Transform
+ pos: 50.5,112.5
+ parent: 2
+ - uid: 12783
+ components:
+ - type: Transform
+ pos: 49.5,107.5
+ parent: 2
+ - uid: 12784
+ components:
+ - type: Transform
+ pos: 49.5,108.5
+ parent: 2
+ - uid: 12785
+ components:
+ - type: Transform
+ pos: 43.5,112.5
+ parent: 2
+ - uid: 12786
+ components:
+ - type: Transform
+ pos: 42.5,107.5
+ parent: 2
+ - uid: 12787
+ components:
+ - type: Transform
+ pos: 42.5,108.5
+ parent: 2
+ - uid: 12788
+ components:
+ - type: Transform
+ pos: 42.5,109.5
+ parent: 2
+ - uid: 12789
+ components:
+ - type: Transform
+ pos: 42.5,110.5
+ parent: 2
+ - uid: 12790
+ components:
+ - type: Transform
+ pos: 42.5,111.5
+ parent: 2
+ - uid: 12791
+ components:
+ - type: Transform
+ pos: 42.5,112.5
+ parent: 2
+ - uid: 12792
+ components:
+ - type: Transform
+ pos: 41.5,108.5
+ parent: 2
+ - uid: 12793
+ components:
+ - type: Transform
+ pos: 44.5,111.5
+ parent: 2
+ - uid: 12794
+ components:
+ - type: Transform
+ pos: 46.5,108.5
+ parent: 2
+ - uid: 12795
+ components:
+ - type: Transform
+ pos: 44.5,112.5
+ parent: 2
+ - uid: 12796
+ components:
+ - type: Transform
+ pos: 43.5,107.5
+ parent: 2
+ - uid: 12797
+ components:
+ - type: Transform
+ pos: 43.5,108.5
+ parent: 2
+ - uid: 12798
+ components:
+ - type: Transform
+ pos: 43.5,109.5
+ parent: 2
+ - uid: 12799
+ components:
+ - type: Transform
+ pos: 43.5,110.5
+ parent: 2
+ - uid: 12800
+ components:
+ - type: Transform
+ pos: 43.5,111.5
+ parent: 2
+ - uid: 12801
+ components:
+ - type: Transform
+ pos: 45.5,109.5
+ parent: 2
+ - uid: 12802
+ components:
+ - type: Transform
+ pos: 45.5,110.5
+ parent: 2
+ - uid: 12803
+ components:
+ - type: Transform
+ pos: 45.5,111.5
+ parent: 2
+ - uid: 12804
+ components:
+ - type: Transform
+ pos: 45.5,112.5
+ parent: 2
+ - uid: 12805
+ components:
+ - type: Transform
+ pos: 44.5,107.5
+ parent: 2
+ - uid: 12806
+ components:
+ - type: Transform
+ pos: 44.5,108.5
+ parent: 2
+ - uid: 12807
+ components:
+ - type: Transform
+ pos: 44.5,109.5
+ parent: 2
+ - uid: 12808
+ components:
+ - type: Transform
+ pos: 44.5,110.5
+ parent: 2
+ - uid: 12809
+ components:
+ - type: Transform
+ pos: 47.5,112.5
+ parent: 2
+ - uid: 12810
+ components:
+ - type: Transform
+ pos: 46.5,107.5
+ parent: 2
+ - uid: 12811
+ components:
+ - type: Transform
+ pos: 46.5,109.5
+ parent: 2
+ - uid: 12812
+ components:
+ - type: Transform
+ pos: 46.5,110.5
+ parent: 2
+ - uid: 12813
+ components:
+ - type: Transform
+ pos: 46.5,111.5
+ parent: 2
+ - uid: 12814
+ components:
+ - type: Transform
+ pos: 46.5,112.5
+ parent: 2
+ - uid: 12815
+ components:
+ - type: Transform
+ pos: 45.5,107.5
+ parent: 2
+ - uid: 12816
+ components:
+ - type: Transform
+ pos: 45.5,108.5
+ parent: 2
+ - uid: 12817
+ components:
+ - type: Transform
+ pos: 48.5,110.5
+ parent: 2
+ - uid: 12818
+ components:
+ - type: Transform
+ pos: 48.5,111.5
+ parent: 2
+ - uid: 12819
+ components:
+ - type: Transform
+ pos: 48.5,112.5
+ parent: 2
+ - uid: 12820
+ components:
+ - type: Transform
+ pos: 47.5,107.5
+ parent: 2
+ - uid: 12821
+ components:
+ - type: Transform
+ pos: 47.5,108.5
+ parent: 2
+ - uid: 12822
+ components:
+ - type: Transform
+ pos: 47.5,109.5
+ parent: 2
+ - uid: 12823
+ components:
+ - type: Transform
+ pos: 47.5,110.5
+ parent: 2
+ - uid: 12824
+ components:
+ - type: Transform
+ pos: 47.5,111.5
+ parent: 2
+ - uid: 12825
+ components:
+ - type: Transform
+ pos: 49.5,109.5
+ parent: 2
+ - uid: 12826
+ components:
+ - type: Transform
+ pos: 50.5,108.5
+ parent: 2
+ - uid: 12827
+ components:
+ - type: Transform
+ pos: 49.5,110.5
+ parent: 2
+ - uid: 12828
+ components:
+ - type: Transform
+ pos: 49.5,111.5
+ parent: 2
+ - uid: 12829
+ components:
+ - type: Transform
+ pos: 49.5,112.5
+ parent: 2
+ - uid: 12830
+ components:
+ - type: Transform
+ pos: 48.5,107.5
+ parent: 2
+ - uid: 12831
+ components:
+ - type: Transform
+ pos: 48.5,108.5
+ parent: 2
+ - uid: 12832
+ components:
+ - type: Transform
+ pos: 48.5,109.5
+ parent: 2
+ - uid: 12833
+ components:
+ - type: Transform
+ pos: 51.5,113.5
+ parent: 2
+ - uid: 12834
+ components:
+ - type: Transform
+ pos: 44.5,113.5
+ parent: 2
+ - uid: 12835
+ components:
+ - type: Transform
+ pos: 45.5,113.5
+ parent: 2
+ - uid: 12836
+ components:
+ - type: Transform
+ pos: 46.5,113.5
+ parent: 2
+ - uid: 12837
+ components:
+ - type: Transform
+ pos: 47.5,113.5
+ parent: 2
+ - uid: 12838
+ components:
+ - type: Transform
+ pos: 48.5,113.5
+ parent: 2
+ - uid: 12839
+ components:
+ - type: Transform
+ pos: 49.5,113.5
+ parent: 2
+ - uid: 12840
+ components:
+ - type: Transform
+ pos: 50.5,113.5
+ parent: 2
+ - uid: 12841
+ components:
+ - type: Transform
+ pos: 51.5,110.5
+ parent: 2
+ - uid: 12842
+ components:
+ - type: Transform
+ pos: 51.5,111.5
+ parent: 2
+ - uid: 12843
+ components:
+ - type: Transform
+ pos: 51.5,112.5
+ parent: 2
+ - uid: 12844
+ components:
+ - type: Transform
+ pos: 40.5,107.5
+ parent: 2
+ - uid: 12845
+ components:
+ - type: Transform
+ pos: 40.5,108.5
+ parent: 2
+ - uid: 12846
+ components:
+ - type: Transform
+ pos: 40.5,109.5
+ parent: 2
+ - uid: 12847
+ components:
+ - type: Transform
+ pos: 39.5,107.5
+ parent: 2
+ - uid: 12848
+ components:
+ - type: Transform
+ pos: 39.5,108.5
+ parent: 2
+ - uid: 12849
+ components:
+ - type: Transform
+ pos: 39.5,109.5
+ parent: 2
+ - uid: 12850
+ components:
+ - type: Transform
+ pos: 38.5,107.5
+ parent: 2
+ - uid: 12851
+ components:
+ - type: Transform
+ pos: 38.5,109.5
+ parent: 2
+ - uid: 12852
+ components:
+ - type: Transform
+ pos: 38.5,108.5
+ parent: 2
+ - uid: 12853
+ components:
+ - type: Transform
+ pos: 37.5,107.5
+ parent: 2
+ - uid: 12854
+ components:
+ - type: Transform
+ pos: 36.5,107.5
+ parent: 2
+ - uid: 12855
+ components:
+ - type: Transform
+ pos: 37.5,108.5
+ parent: 2
+ - uid: 12856
+ components:
+ - type: Transform
+ pos: 36.5,108.5
+ parent: 2
+ - uid: 12857
+ components:
+ - type: Transform
+ pos: 35.5,107.5
+ parent: 2
+ - uid: 12858
+ components:
+ - type: Transform
+ pos: 35.5,108.5
+ parent: 2
+ - uid: 12859
+ components:
+ - type: Transform
+ pos: 34.5,107.5
+ parent: 2
+ - uid: 12860
+ components:
+ - type: Transform
+ pos: 33.5,107.5
+ parent: 2
+ - uid: 12861
+ components:
+ - type: Transform
+ pos: 40.5,110.5
+ parent: 2
+ - uid: 12862
+ components:
+ - type: Transform
+ pos: 39.5,110.5
+ parent: 2
+ - uid: 12863
+ components:
+ - type: Transform
+ pos: 40.5,111.5
+ parent: 2
+ - uid: 12864
+ components:
+ - type: Transform
+ pos: 36.5,92.5
+ parent: 2
+ - uid: 12869
+ components:
+ - type: Transform
+ pos: 40.5,92.5
+ parent: 2
+ - uid: 12870
+ components:
+ - type: Transform
+ pos: 39.5,92.5
+ parent: 2
+ - uid: 12871
+ components:
+ - type: Transform
+ pos: 38.5,92.5
+ parent: 2
+ - uid: 12872
+ components:
+ - type: Transform
+ pos: 37.5,92.5
+ parent: 2
+ - uid: 12873
+ components:
+ - type: Transform
+ pos: 35.5,92.5
+ parent: 2
+ - uid: 12874
+ components:
+ - type: Transform
+ pos: 34.5,92.5
+ parent: 2
+ - uid: 12875
+ components:
+ - type: Transform
+ pos: 33.5,92.5
+ parent: 2
+ - uid: 12876
+ components:
+ - type: Transform
+ pos: 32.5,92.5
+ parent: 2
+ - uid: 12877
+ components:
+ - type: Transform
+ pos: 31.5,92.5
+ parent: 2
+ - uid: 12878
+ components:
+ - type: Transform
+ pos: 32.5,91.5
+ parent: 2
+ - uid: 12879
+ components:
+ - type: Transform
+ pos: 33.5,91.5
+ parent: 2
+ - uid: 12880
+ components:
+ - type: Transform
+ pos: 32.5,90.5
+ parent: 2
+ - uid: 12881
+ components:
+ - type: Transform
+ pos: 31.5,90.5
+ parent: 2
+ - uid: 12882
+ components:
+ - type: Transform
+ pos: 30.5,89.5
+ parent: 2
+ - uid: 12883
+ components:
+ - type: Transform
+ pos: 29.5,89.5
+ parent: 2
+ - uid: 12884
+ components:
+ - type: Transform
+ pos: 28.5,89.5
+ parent: 2
+ - uid: 12885
+ components:
+ - type: Transform
+ pos: 27.5,89.5
+ parent: 2
+ - uid: 12886
+ components:
+ - type: Transform
+ pos: 26.5,90.5
+ parent: 2
+ - uid: 12887
+ components:
+ - type: Transform
+ pos: 26.5,89.5
+ parent: 2
+ - uid: 12888
+ components:
+ - type: Transform
+ pos: 26.5,88.5
+ parent: 2
+ - uid: 12889
+ components:
+ - type: Transform
+ pos: 25.5,89.5
+ parent: 2
+ - uid: 12890
+ components:
+ - type: Transform
+ pos: 25.5,88.5
+ parent: 2
+ - uid: 12891
+ components:
+ - type: Transform
+ pos: 24.5,89.5
+ parent: 2
+ - uid: 12892
+ components:
+ - type: Transform
+ pos: 24.5,88.5
+ parent: 2
+ - uid: 12893
+ components:
+ - type: Transform
+ pos: 23.5,89.5
+ parent: 2
+ - uid: 12894
+ components:
+ - type: Transform
+ pos: 23.5,88.5
+ parent: 2
+ - uid: 12895
+ components:
+ - type: Transform
+ pos: 22.5,89.5
+ parent: 2
+ - uid: 12896
+ components:
+ - type: Transform
+ pos: 22.5,88.5
+ parent: 2
+ - uid: 12897
+ components:
+ - type: Transform
+ pos: 28.5,104.5
+ parent: 2
+ - uid: 12898
+ components:
+ - type: Transform
+ pos: 26.5,103.5
+ parent: 2
+ - uid: 12899
+ components:
+ - type: Transform
+ pos: 24.5,103.5
+ parent: 2
+ - uid: 12900
+ components:
+ - type: Transform
+ pos: 27.5,104.5
+ parent: 2
+ - uid: 12901
+ components:
+ - type: Transform
+ pos: 25.5,103.5
+ parent: 2
+ - uid: 12902
+ components:
+ - type: Transform
+ pos: 25.5,104.5
+ parent: 2
+ - uid: 12903
+ components:
+ - type: Transform
+ pos: 26.5,104.5
+ parent: 2
+ - uid: 12904
+ components:
+ - type: Transform
+ pos: 23.5,103.5
+ parent: 2
+ - uid: 12905
+ components:
+ - type: Transform
+ pos: 22.5,102.5
+ parent: 2
+ - uid: 12906
+ components:
+ - type: Transform
+ pos: 21.5,87.5
+ parent: 2
+ - uid: 12907
+ components:
+ - type: Transform
+ pos: 20.5,87.5
+ parent: 2
+ - uid: 12908
+ components:
+ - type: Transform
+ pos: 19.5,87.5
+ parent: 2
+ - uid: 12909
+ components:
+ - type: Transform
+ pos: 18.5,87.5
+ parent: 2
+ - uid: 12910
+ components:
+ - type: Transform
+ pos: 17.5,87.5
+ parent: 2
+ - uid: 12911
+ components:
+ - type: Transform
+ pos: 16.5,87.5
+ parent: 2
+ - uid: 12912
+ components:
+ - type: Transform
+ pos: 15.5,88.5
+ parent: 2
+ - uid: 12913
+ components:
+ - type: Transform
+ pos: 14.5,89.5
+ parent: 2
+ - uid: 12914
+ components:
+ - type: Transform
+ pos: 13.5,90.5
+ parent: 2
+ - uid: 12915
+ components:
+ - type: Transform
+ pos: 12.5,91.5
+ parent: 2
+ - uid: 12916
+ components:
+ - type: Transform
+ pos: 11.5,92.5
+ parent: 2
+ - uid: 12917
+ components:
+ - type: Transform
+ pos: 11.5,93.5
+ parent: 2
+ - uid: 12918
+ components:
+ - type: Transform
+ pos: 11.5,94.5
+ parent: 2
+ - uid: 12919
+ components:
+ - type: Transform
+ pos: 11.5,95.5
+ parent: 2
+ - uid: 12920
+ components:
+ - type: Transform
+ pos: 12.5,96.5
+ parent: 2
+ - uid: 12921
+ components:
+ - type: Transform
+ pos: 13.5,97.5
+ parent: 2
+ - uid: 12922
+ components:
+ - type: Transform
+ pos: 13.5,98.5
+ parent: 2
+ - uid: 12923
+ components:
+ - type: Transform
+ pos: 14.5,99.5
+ parent: 2
+ - uid: 12924
+ components:
+ - type: Transform
+ pos: 15.5,99.5
+ parent: 2
+ - uid: 12925
+ components:
+ - type: Transform
+ pos: 16.5,99.5
+ parent: 2
+ - uid: 12926
+ components:
+ - type: Transform
+ pos: 17.5,99.5
+ parent: 2
+ - uid: 12927
+ components:
+ - type: Transform
+ pos: 18.5,99.5
+ parent: 2
+ - uid: 12928
+ components:
+ - type: Transform
+ pos: 18.5,100.5
+ parent: 2
+ - uid: 12929
+ components:
+ - type: Transform
+ pos: 19.5,100.5
+ parent: 2
+ - uid: 12930
+ components:
+ - type: Transform
+ pos: 20.5,100.5
+ parent: 2
+ - uid: 12931
+ components:
+ - type: Transform
+ pos: 20.5,101.5
+ parent: 2
+ - uid: 12932
+ components:
+ - type: Transform
+ pos: 21.5,101.5
+ parent: 2
+ - uid: 12933
+ components:
+ - type: Transform
+ pos: 16.5,88.5
+ parent: 2
+ - uid: 12934
+ components:
+ - type: Transform
+ pos: 16.5,89.5
+ parent: 2
+ - uid: 12935
+ components:
+ - type: Transform
+ pos: 16.5,90.5
+ parent: 2
+ - uid: 12936
+ components:
+ - type: Transform
+ pos: 16.5,91.5
+ parent: 2
+ - uid: 12937
+ components:
+ - type: Transform
+ pos: 16.5,92.5
+ parent: 2
+ - uid: 12938
+ components:
+ - type: Transform
+ pos: 16.5,94.5
+ parent: 2
+ - uid: 12939
+ components:
+ - type: Transform
+ pos: 16.5,95.5
+ parent: 2
+ - uid: 12940
+ components:
+ - type: Transform
+ pos: 16.5,96.5
+ parent: 2
+ - uid: 12941
+ components:
+ - type: Transform
+ pos: 16.5,97.5
+ parent: 2
+ - uid: 12942
+ components:
+ - type: Transform
+ pos: 16.5,98.5
+ parent: 2
+ - uid: 12943
+ components:
+ - type: Transform
+ pos: 17.5,88.5
+ parent: 2
+ - uid: 12944
+ components:
+ - type: Transform
+ pos: 17.5,89.5
+ parent: 2
+ - uid: 12945
+ components:
+ - type: Transform
+ pos: 16.5,93.5
+ parent: 2
+ - uid: 12946
+ components:
+ - type: Transform
+ pos: 17.5,90.5
+ parent: 2
+ - uid: 12947
+ components:
+ - type: Transform
+ pos: 17.5,91.5
+ parent: 2
+ - uid: 12948
+ components:
+ - type: Transform
+ pos: 21.5,97.5
+ parent: 2
+ - uid: 12949
+ components:
+ - type: Transform
+ pos: 21.5,89.5
+ parent: 2
+ - uid: 12950
+ components:
+ - type: Transform
+ pos: 21.5,90.5
+ parent: 2
+ - uid: 12951
+ components:
+ - type: Transform
+ pos: 21.5,91.5
+ parent: 2
+ - uid: 12952
+ components:
+ - type: Transform
+ pos: 21.5,92.5
+ parent: 2
+ - uid: 12953
+ components:
+ - type: Transform
+ pos: 21.5,93.5
+ parent: 2
+ - uid: 12954
+ components:
+ - type: Transform
+ pos: 21.5,95.5
+ parent: 2
+ - uid: 12955
+ components:
+ - type: Transform
+ pos: 21.5,94.5
+ parent: 2
+ - uid: 12956
+ components:
+ - type: Transform
+ pos: 21.5,96.5
+ parent: 2
+ - uid: 12957
+ components:
+ - type: Transform
+ pos: 20.5,92.5
+ parent: 2
+ - uid: 12958
+ components:
+ - type: Transform
+ pos: 20.5,93.5
+ parent: 2
+ - uid: 12959
+ components:
+ - type: Transform
+ pos: 20.5,94.5
+ parent: 2
+ - uid: 12960
+ components:
+ - type: Transform
+ pos: 20.5,91.5
+ parent: 2
+ - uid: 12961
+ components:
+ - type: Transform
+ pos: 20.5,96.5
+ parent: 2
+ - uid: 12962
+ components:
+ - type: Transform
+ pos: 20.5,97.5
+ parent: 2
+ - uid: 12963
+ components:
+ - type: Transform
+ pos: 20.5,98.5
+ parent: 2
+ - uid: 12964
+ components:
+ - type: Transform
+ pos: 21.5,88.5
+ parent: 2
+ - uid: 12965
+ components:
+ - type: Transform
+ pos: 19.5,95.5
+ parent: 2
+ - uid: 12966
+ components:
+ - type: Transform
+ pos: 19.5,96.5
+ parent: 2
+ - uid: 12967
+ components:
+ - type: Transform
+ pos: 19.5,97.5
+ parent: 2
+ - uid: 12968
+ components:
+ - type: Transform
+ pos: 19.5,98.5
+ parent: 2
+ - uid: 12969
+ components:
+ - type: Transform
+ pos: 20.5,88.5
+ parent: 2
+ - uid: 12970
+ components:
+ - type: Transform
+ pos: 18.5,96.5
+ parent: 2
+ - uid: 12971
+ components:
+ - type: Transform
+ pos: 20.5,89.5
+ parent: 2
+ - uid: 12972
+ components:
+ - type: Transform
+ pos: 20.5,90.5
+ parent: 2
+ - uid: 12973
+ components:
+ - type: Transform
+ pos: 18.5,98.5
+ parent: 2
+ - uid: 12974
+ components:
+ - type: Transform
+ pos: 19.5,88.5
+ parent: 2
+ - uid: 12975
+ components:
+ - type: Transform
+ pos: 19.5,89.5
+ parent: 2
+ - uid: 12976
+ components:
+ - type: Transform
+ pos: 19.5,90.5
+ parent: 2
+ - uid: 12977
+ components:
+ - type: Transform
+ pos: 19.5,91.5
+ parent: 2
+ - uid: 12978
+ components:
+ - type: Transform
+ pos: 19.5,92.5
+ parent: 2
+ - uid: 12979
+ components:
+ - type: Transform
+ pos: 19.5,93.5
+ parent: 2
+ - uid: 12980
+ components:
+ - type: Transform
+ pos: 19.5,94.5
+ parent: 2
+ - uid: 12981
+ components:
+ - type: Transform
+ pos: 18.5,89.5
+ parent: 2
+ - uid: 12982
+ components:
+ - type: Transform
+ pos: 18.5,90.5
+ parent: 2
+ - uid: 12983
+ components:
+ - type: Transform
+ pos: 18.5,91.5
+ parent: 2
+ - uid: 12984
+ components:
+ - type: Transform
+ pos: 18.5,92.5
+ parent: 2
+ - uid: 12985
+ components:
+ - type: Transform
+ pos: 18.5,93.5
+ parent: 2
+ - uid: 12986
+ components:
+ - type: Transform
+ pos: 18.5,94.5
+ parent: 2
+ - uid: 12987
+ components:
+ - type: Transform
+ pos: 18.5,95.5
+ parent: 2
+ - uid: 12988
+ components:
+ - type: Transform
+ pos: 18.5,97.5
+ parent: 2
+ - uid: 12989
+ components:
+ - type: Transform
+ pos: 17.5,92.5
+ parent: 2
+ - uid: 12990
+ components:
+ - type: Transform
+ pos: 17.5,93.5
+ parent: 2
+ - uid: 12991
+ components:
+ - type: Transform
+ pos: 17.5,94.5
+ parent: 2
+ - uid: 12992
+ components:
+ - type: Transform
+ pos: 17.5,95.5
+ parent: 2
+ - uid: 12993
+ components:
+ - type: Transform
+ pos: 17.5,96.5
+ parent: 2
+ - uid: 12994
+ components:
+ - type: Transform
+ pos: 17.5,97.5
+ parent: 2
+ - uid: 12995
+ components:
+ - type: Transform
+ pos: 17.5,98.5
+ parent: 2
+ - uid: 12996
+ components:
+ - type: Transform
+ pos: 18.5,88.5
+ parent: 2
+ - uid: 12997
+ components:
+ - type: Transform
+ pos: 21.5,98.5
+ parent: 2
+ - uid: 12998
+ components:
+ - type: Transform
+ pos: 20.5,95.5
+ parent: 2
+ - uid: 12999
+ components:
+ - type: Transform
+ pos: 15.5,91.5
+ parent: 2
+ - uid: 13000
+ components:
+ - type: Transform
+ pos: 15.5,92.5
+ parent: 2
+ - uid: 13001
+ components:
+ - type: Transform
+ pos: 15.5,93.5
+ parent: 2
+ - uid: 13002
+ components:
+ - type: Transform
+ pos: 15.5,94.5
+ parent: 2
+ - uid: 13003
+ components:
+ - type: Transform
+ pos: 15.5,95.5
+ parent: 2
+ - uid: 13004
+ components:
+ - type: Transform
+ pos: 15.5,96.5
+ parent: 2
+ - uid: 13005
+ components:
+ - type: Transform
+ pos: 14.5,92.5
+ parent: 2
+ - uid: 13006
+ components:
+ - type: Transform
+ pos: 14.5,93.5
+ parent: 2
+ - uid: 13007
+ components:
+ - type: Transform
+ pos: 14.5,94.5
+ parent: 2
+ - uid: 13008
+ components:
+ - type: Transform
+ pos: 14.5,95.5
+ parent: 2
+ - uid: 13009
+ components:
+ - type: Transform
+ pos: 14.5,96.5
+ parent: 2
+ - uid: 13010
+ components:
+ - type: Transform
+ pos: 13.5,91.5
+ parent: 2
+ - uid: 13011
+ components:
+ - type: Transform
+ pos: 13.5,92.5
+ parent: 2
+ - uid: 13012
+ components:
+ - type: Transform
+ pos: 13.5,93.5
+ parent: 2
+ - uid: 13013
+ components:
+ - type: Transform
+ pos: 14.5,91.5
+ parent: 2
+ - uid: 13014
+ components:
+ - type: Transform
+ pos: 13.5,94.5
+ parent: 2
+ - uid: 13015
+ components:
+ - type: Transform
+ pos: 13.5,95.5
+ parent: 2
+ - uid: 13016
+ components:
+ - type: Transform
+ pos: 13.5,96.5
+ parent: 2
+ - uid: 13017
+ components:
+ - type: Transform
+ pos: 12.5,92.5
+ parent: 2
+ - uid: 13018
+ components:
+ - type: Transform
+ pos: 12.5,93.5
+ parent: 2
+ - uid: 13019
+ components:
+ - type: Transform
+ pos: 12.5,94.5
+ parent: 2
+ - uid: 13020
+ components:
+ - type: Transform
+ pos: 12.5,95.5
+ parent: 2
+ - uid: 13021
+ components:
+ - type: Transform
+ pos: 15.5,97.5
+ parent: 2
+ - uid: 13022
+ components:
+ - type: Transform
+ pos: 15.5,98.5
+ parent: 2
+ - uid: 13023
+ components:
+ - type: Transform
+ pos: 14.5,97.5
+ parent: 2
+ - uid: 13024
+ components:
+ - type: Transform
+ pos: 14.5,98.5
+ parent: 2
+ - uid: 13025
+ components:
+ - type: Transform
+ pos: 15.5,89.5
+ parent: 2
+ - uid: 13026
+ components:
+ - type: Transform
+ pos: 15.5,90.5
+ parent: 2
+ - uid: 13027
+ components:
+ - type: Transform
+ pos: 14.5,90.5
+ parent: 2
+ - uid: 13028
+ components:
+ - type: Transform
+ pos: 22.5,90.5
+ parent: 2
+ - uid: 13029
+ components:
+ - type: Transform
+ pos: 22.5,91.5
+ parent: 2
+ - uid: 13030
+ components:
+ - type: Transform
+ pos: 22.5,92.5
+ parent: 2
+ - uid: 13031
+ components:
+ - type: Transform
+ pos: 22.5,93.5
+ parent: 2
+ - uid: 13032
+ components:
+ - type: Transform
+ pos: 22.5,94.5
+ parent: 2
+ - uid: 13033
+ components:
+ - type: Transform
+ pos: 22.5,95.5
+ parent: 2
+ - uid: 13034
+ components:
+ - type: Transform
+ pos: 22.5,97.5
+ parent: 2
+ - uid: 13035
+ components:
+ - type: Transform
+ pos: 22.5,98.5
+ parent: 2
+ - uid: 13036
+ components:
+ - type: Transform
+ pos: 22.5,99.5
+ parent: 2
+ - uid: 13037
+ components:
+ - type: Transform
+ pos: 22.5,100.5
+ parent: 2
+ - uid: 13038
+ components:
+ - type: Transform
+ pos: 22.5,101.5
+ parent: 2
+ - uid: 13039
+ components:
+ - type: Transform
+ pos: 23.5,90.5
+ parent: 2
+ - uid: 13040
+ components:
+ - type: Transform
+ pos: 22.5,96.5
+ parent: 2
+ - uid: 13041
+ components:
+ - type: Transform
+ pos: 23.5,92.5
+ parent: 2
+ - uid: 13042
+ components:
+ - type: Transform
+ pos: 23.5,91.5
+ parent: 2
+ - uid: 13043
+ components:
+ - type: Transform
+ pos: 23.5,93.5
+ parent: 2
+ - uid: 13044
+ components:
+ - type: Transform
+ pos: 23.5,94.5
+ parent: 2
+ - uid: 13045
+ components:
+ - type: Transform
+ pos: 23.5,95.5
+ parent: 2
+ - uid: 13046
+ components:
+ - type: Transform
+ pos: 23.5,96.5
+ parent: 2
+ - uid: 13047
+ components:
+ - type: Transform
+ pos: 23.5,97.5
+ parent: 2
+ - uid: 13048
+ components:
+ - type: Transform
+ pos: 23.5,98.5
+ parent: 2
+ - uid: 13049
+ components:
+ - type: Transform
+ pos: 23.5,99.5
+ parent: 2
+ - uid: 13050
+ components:
+ - type: Transform
+ pos: 23.5,100.5
+ parent: 2
+ - uid: 13051
+ components:
+ - type: Transform
+ pos: 23.5,101.5
+ parent: 2
+ - uid: 13052
+ components:
+ - type: Transform
+ pos: 24.5,90.5
+ parent: 2
+ - uid: 13053
+ components:
+ - type: Transform
+ pos: 24.5,91.5
+ parent: 2
+ - uid: 13054
+ components:
+ - type: Transform
+ pos: 24.5,92.5
+ parent: 2
+ - uid: 13055
+ components:
+ - type: Transform
+ pos: 24.5,93.5
+ parent: 2
+ - uid: 13056
+ components:
+ - type: Transform
+ pos: 24.5,94.5
+ parent: 2
+ - uid: 13057
+ components:
+ - type: Transform
+ pos: 24.5,95.5
+ parent: 2
+ - uid: 13058
+ components:
+ - type: Transform
+ pos: 24.5,96.5
+ parent: 2
+ - uid: 13059
+ components:
+ - type: Transform
+ pos: 25.5,90.5
+ parent: 2
+ - uid: 13060
+ components:
+ - type: Transform
+ pos: 25.5,94.5
+ parent: 2
+ - uid: 13061
+ components:
+ - type: Transform
+ pos: 25.5,95.5
+ parent: 2
+ - uid: 13062
+ components:
+ - type: Transform
+ pos: 25.5,97.5
+ parent: 2
+ - uid: 13063
+ components:
+ - type: Transform
+ pos: 25.5,98.5
+ parent: 2
+ - uid: 13064
+ components:
+ - type: Transform
+ pos: 25.5,96.5
+ parent: 2
+ - uid: 13065
+ components:
+ - type: Transform
+ pos: 25.5,99.5
+ parent: 2
+ - uid: 13066
+ components:
+ - type: Transform
+ pos: 25.5,100.5
+ parent: 2
+ - uid: 13067
+ components:
+ - type: Transform
+ pos: 25.5,101.5
+ parent: 2
+ - uid: 13068
+ components:
+ - type: Transform
+ pos: 24.5,97.5
+ parent: 2
+ - uid: 13069
+ components:
+ - type: Transform
+ pos: 24.5,98.5
+ parent: 2
+ - uid: 13070
+ components:
+ - type: Transform
+ pos: 24.5,99.5
+ parent: 2
+ - uid: 13071
+ components:
+ - type: Transform
+ pos: 24.5,100.5
+ parent: 2
+ - uid: 13072
+ components:
+ - type: Transform
+ pos: 24.5,101.5
+ parent: 2
+ - uid: 13073
+ components:
+ - type: Transform
+ pos: 25.5,92.5
+ parent: 2
+ - uid: 13074
+ components:
+ - type: Transform
+ pos: 25.5,91.5
+ parent: 2
+ - uid: 13075
+ components:
+ - type: Transform
+ pos: 25.5,93.5
+ parent: 2
+ - uid: 13076
+ components:
+ - type: Transform
+ pos: 21.5,99.5
+ parent: 2
+ - uid: 13077
+ components:
+ - type: Transform
+ pos: 20.5,99.5
+ parent: 2
+ - uid: 13078
+ components:
+ - type: Transform
+ pos: 19.5,99.5
+ parent: 2
+ - uid: 13079
+ components:
+ - type: Transform
+ pos: 21.5,100.5
+ parent: 2
+ - uid: 13080
+ components:
+ - type: Transform
+ pos: 30.5,90.5
+ parent: 2
+ - uid: 13081
+ components:
+ - type: Transform
+ pos: 29.5,90.5
+ parent: 2
+ - uid: 13082
+ components:
+ - type: Transform
+ pos: 28.5,90.5
+ parent: 2
+ - uid: 13083
+ components:
+ - type: Transform
+ pos: 27.5,90.5
+ parent: 2
+ - uid: 13084
+ components:
+ - type: Transform
+ pos: 26.5,98.5
+ parent: 2
+ - uid: 13085
+ components:
+ - type: Transform
+ pos: 26.5,99.5
+ parent: 2
+ - uid: 13086
+ components:
+ - type: Transform
+ pos: 26.5,100.5
+ parent: 2
+ - uid: 13087
+ components:
+ - type: Transform
+ pos: 26.5,101.5
+ parent: 2
+ - uid: 13088
+ components:
+ - type: Transform
+ pos: 26.5,102.5
+ parent: 2
+ - uid: 13089
+ components:
+ - type: Transform
+ pos: 27.5,102.5
+ parent: 2
+ - uid: 13090
+ components:
+ - type: Transform
+ pos: 26.5,91.5
+ parent: 2
+ - uid: 13091
+ components:
+ - type: Transform
+ pos: 26.5,92.5
+ parent: 2
+ - uid: 13092
+ components:
+ - type: Transform
+ pos: 26.5,93.5
+ parent: 2
+ - uid: 13093
+ components:
+ - type: Transform
+ pos: 26.5,94.5
+ parent: 2
+ - uid: 13094
+ components:
+ - type: Transform
+ pos: 26.5,95.5
+ parent: 2
+ - uid: 13095
+ components:
+ - type: Transform
+ pos: 26.5,96.5
+ parent: 2
+ - uid: 13096
+ components:
+ - type: Transform
+ pos: 26.5,97.5
+ parent: 2
+ - uid: 13097
+ components:
+ - type: Transform
+ pos: 27.5,94.5
+ parent: 2
+ - uid: 13098
+ components:
+ - type: Transform
+ pos: 27.5,95.5
+ parent: 2
+ - uid: 13099
+ components:
+ - type: Transform
+ pos: 27.5,96.5
+ parent: 2
+ - uid: 13100
+ components:
+ - type: Transform
+ pos: 27.5,97.5
+ parent: 2
+ - uid: 13101
+ components:
+ - type: Transform
+ pos: 27.5,98.5
+ parent: 2
+ - uid: 13102
+ components:
+ - type: Transform
+ pos: 27.5,99.5
+ parent: 2
+ - uid: 13103
+ components:
+ - type: Transform
+ pos: 27.5,100.5
+ parent: 2
+ - uid: 13104
+ components:
+ - type: Transform
+ pos: 27.5,101.5
+ parent: 2
+ - uid: 13105
+ components:
+ - type: Transform
+ pos: 28.5,99.5
+ parent: 2
+ - uid: 13106
+ components:
+ - type: Transform
+ pos: 28.5,100.5
+ parent: 2
+ - uid: 13107
+ components:
+ - type: Transform
+ pos: 28.5,101.5
+ parent: 2
+ - uid: 13108
+ components:
+ - type: Transform
+ pos: 28.5,102.5
+ parent: 2
+ - uid: 13109
+ components:
+ - type: Transform
+ pos: 27.5,91.5
+ parent: 2
+ - uid: 13110
+ components:
+ - type: Transform
+ pos: 27.5,92.5
+ parent: 2
+ - uid: 13111
+ components:
+ - type: Transform
+ pos: 27.5,93.5
+ parent: 2
+ - uid: 13112
+ components:
+ - type: Transform
+ pos: 28.5,97.5
+ parent: 2
+ - uid: 13113
+ components:
+ - type: Transform
+ pos: 28.5,91.5
+ parent: 2
+ - uid: 13114
+ components:
+ - type: Transform
+ pos: 28.5,92.5
+ parent: 2
+ - uid: 13115
+ components:
+ - type: Transform
+ pos: 28.5,93.5
+ parent: 2
+ - uid: 13116
+ components:
+ - type: Transform
+ pos: 28.5,94.5
+ parent: 2
+ - uid: 13117
+ components:
+ - type: Transform
+ pos: 28.5,95.5
+ parent: 2
+ - uid: 13118
+ components:
+ - type: Transform
+ pos: 28.5,96.5
+ parent: 2
+ - uid: 13119
+ components:
+ - type: Transform
+ pos: 28.5,98.5
+ parent: 2
+ - uid: 13120
+ components:
+ - type: Transform
+ pos: 25.5,102.5
+ parent: 2
+ - uid: 13121
+ components:
+ - type: Transform
+ pos: 24.5,102.5
+ parent: 2
+ - uid: 13122
+ components:
+ - type: Transform
+ pos: 23.5,102.5
+ parent: 2
+ - uid: 13123
+ components:
+ - type: Transform
+ pos: 27.5,103.5
+ parent: 2
+ - uid: 13124
+ components:
+ - type: Transform
+ pos: 28.5,103.5
+ parent: 2
+ - uid: 13125
+ components:
+ - type: Transform
+ pos: 31.5,91.5
+ parent: 2
+ - uid: 13126
+ components:
+ - type: Transform
+ pos: 30.5,91.5
+ parent: 2
+ - uid: 13127
+ components:
+ - type: Transform
+ pos: 30.5,92.5
+ parent: 2
+ - uid: 13128
+ components:
+ - type: Transform
+ pos: 30.5,93.5
+ parent: 2
+ - uid: 13129
+ components:
+ - type: Transform
+ pos: 30.5,94.5
+ parent: 2
+ - uid: 13130
+ components:
+ - type: Transform
+ pos: 29.5,91.5
+ parent: 2
+ - uid: 13131
+ components:
+ - type: Transform
+ pos: 29.5,92.5
+ parent: 2
+ - uid: 13132
+ components:
+ - type: Transform
+ pos: 29.5,94.5
+ parent: 2
+ - uid: 13133
+ components:
+ - type: Transform
+ pos: 29.5,93.5
+ parent: 2
+ - uid: 13134
+ components:
+ - type: Transform
+ pos: 42.5,94.5
+ parent: 2
+ - uid: 13135
+ components:
+ - type: Transform
+ pos: 43.5,93.5
+ parent: 2
+ - uid: 13136
+ components:
+ - type: Transform
+ pos: 43.5,94.5
+ parent: 2
+ - uid: 13137
+ components:
+ - type: Transform
+ pos: 44.5,93.5
+ parent: 2
+ - uid: 13138
+ components:
+ - type: Transform
+ pos: 44.5,94.5
+ parent: 2
+ - uid: 13139
+ components:
+ - type: Transform
+ pos: 45.5,93.5
+ parent: 2
+ - uid: 13140
+ components:
+ - type: Transform
+ pos: 45.5,94.5
+ parent: 2
+ - uid: 13141
+ components:
+ - type: Transform
+ pos: 31.5,93.5
+ parent: 2
+ - uid: 13142
+ components:
+ - type: Transform
+ pos: 31.5,94.5
+ parent: 2
+ - uid: 13143
+ components:
+ - type: Transform
+ pos: 32.5,93.5
+ parent: 2
+ - uid: 13144
+ components:
+ - type: Transform
+ pos: 32.5,94.5
+ parent: 2
+ - uid: 13145
+ components:
+ - type: Transform
+ pos: 33.5,93.5
+ parent: 2
+ - uid: 13146
+ components:
+ - type: Transform
+ pos: 33.5,94.5
+ parent: 2
+ - uid: 13147
+ components:
+ - type: Transform
+ pos: 34.5,93.5
+ parent: 2
+ - uid: 13148
+ components:
+ - type: Transform
+ pos: 35.5,93.5
+ parent: 2
+ - uid: 13149
+ components:
+ - type: Transform
+ pos: 35.5,94.5
+ parent: 2
+ - uid: 13150
+ components:
+ - type: Transform
+ pos: 36.5,93.5
+ parent: 2
+ - uid: 13151
+ components:
+ - type: Transform
+ pos: 36.5,94.5
+ parent: 2
+ - uid: 13152
+ components:
+ - type: Transform
+ pos: 37.5,93.5
+ parent: 2
+ - uid: 13153
+ components:
+ - type: Transform
+ pos: 37.5,94.5
+ parent: 2
+ - uid: 13154
+ components:
+ - type: Transform
+ pos: 34.5,94.5
+ parent: 2
+ - uid: 13155
+ components:
+ - type: Transform
+ pos: 38.5,94.5
+ parent: 2
+ - uid: 13156
+ components:
+ - type: Transform
+ pos: 38.5,93.5
+ parent: 2
+ - uid: 13157
+ components:
+ - type: Transform
+ pos: 39.5,93.5
+ parent: 2
+ - uid: 13158
+ components:
+ - type: Transform
+ pos: 39.5,94.5
+ parent: 2
+ - uid: 13159
+ components:
+ - type: Transform
+ pos: 40.5,93.5
+ parent: 2
+ - uid: 13160
+ components:
+ - type: Transform
+ pos: 40.5,94.5
+ parent: 2
+ - uid: 13161
+ components:
+ - type: Transform
+ pos: 41.5,93.5
+ parent: 2
+ - uid: 13162
+ components:
+ - type: Transform
+ pos: 41.5,94.5
+ parent: 2
+ - uid: 13163
+ components:
+ - type: Transform
+ pos: 42.5,93.5
+ parent: 2
+ - uid: 13164
+ components:
+ - type: Transform
+ pos: 46.5,94.5
+ parent: 2
+ - uid: 13165
+ components:
+ - type: Transform
+ pos: 47.5,94.5
+ parent: 2
+ - uid: 13166
+ components:
+ - type: Transform
+ pos: 47.5,115.5
+ parent: 2
+ - uid: 13462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -77.5,46.5
+ parent: 2
+ - uid: 13463
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -80.5,46.5
+ parent: 2
+ - uid: 13464
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -78.5,48.5
+ parent: 2
+ - uid: 13465
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -77.5,48.5
+ parent: 2
+ - uid: 14150
+ components:
+ - type: Transform
+ pos: 48.5,-2.5
+ parent: 2
+ - uid: 14647
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,-15.5
+ parent: 2
+ - uid: 14669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,13.5
+ parent: 2
+ - uid: 14773
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,14.5
+ parent: 2
+ - uid: 14775
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,19.5
+ parent: 2
+ - uid: 14777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,21.5
+ parent: 2
+ - uid: 14778
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,20.5
+ parent: 2
+ - uid: 14779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,23.5
+ parent: 2
+ - uid: 14780
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,22.5
+ parent: 2
+ - uid: 14787
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,20.5
+ parent: 2
+ - uid: 14788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,19.5
+ parent: 2
+ - uid: 14789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,22.5
+ parent: 2
+ - uid: 14790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,21.5
+ parent: 2
+ - uid: 14792
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,23.5
+ parent: 2
+ - uid: 14797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,18.5
+ parent: 2
+ - uid: 14798
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,19.5
+ parent: 2
+ - uid: 14799
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,20.5
+ parent: 2
+ - uid: 14800
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,21.5
+ parent: 2
+ - uid: 14801
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,22.5
+ parent: 2
+ - uid: 14802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,23.5
+ parent: 2
+ - uid: 14807
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,17.5
+ parent: 2
+ - uid: 14808
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,18.5
+ parent: 2
+ - uid: 14809
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,19.5
+ parent: 2
+ - uid: 14810
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,20.5
+ parent: 2
+ - uid: 14811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,21.5
+ parent: 2
+ - uid: 14812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,22.5
+ parent: 2
+ - uid: 14813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,23.5
+ parent: 2
+ - uid: 14816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,15.5
+ parent: 2
+ - uid: 14817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,16.5
+ parent: 2
+ - uid: 14818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,17.5
+ parent: 2
+ - uid: 14819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,18.5
+ parent: 2
+ - uid: 14820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,19.5
+ parent: 2
+ - uid: 14821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,20.5
+ parent: 2
+ - uid: 14822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,21.5
+ parent: 2
+ - uid: 14823
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,22.5
+ parent: 2
+ - uid: 14824
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,23.5
+ parent: 2
+ - uid: 14825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,13.5
+ parent: 2
+ - uid: 14826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,14.5
+ parent: 2
+ - uid: 14827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,15.5
+ parent: 2
+ - uid: 14828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,16.5
+ parent: 2
+ - uid: 14829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,17.5
+ parent: 2
+ - uid: 14830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,18.5
+ parent: 2
+ - uid: 14831
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,19.5
+ parent: 2
+ - uid: 14832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,20.5
+ parent: 2
+ - uid: 14833
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,21.5
+ parent: 2
+ - uid: 14834
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,22.5
+ parent: 2
+ - uid: 14835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,23.5
+ parent: 2
+ - uid: 14836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,13.5
+ parent: 2
+ - uid: 14837
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,14.5
+ parent: 2
+ - uid: 14838
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,15.5
+ parent: 2
+ - uid: 14839
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,16.5
+ parent: 2
+ - uid: 14840
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,17.5
+ parent: 2
+ - uid: 14841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,18.5
+ parent: 2
+ - uid: 14842
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,19.5
+ parent: 2
+ - uid: 14843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,20.5
+ parent: 2
+ - uid: 14844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,21.5
+ parent: 2
+ - uid: 14845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,22.5
+ parent: 2
+ - uid: 14846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,23.5
+ parent: 2
+ - uid: 14847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,13.5
+ parent: 2
+ - uid: 14848
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,14.5
+ parent: 2
+ - uid: 14849
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,15.5
+ parent: 2
+ - uid: 14850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,16.5
+ parent: 2
+ - uid: 14851
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,17.5
+ parent: 2
+ - uid: 14852
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,18.5
+ parent: 2
+ - uid: 14853
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,19.5
+ parent: 2
+ - uid: 14854
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,20.5
+ parent: 2
+ - uid: 14855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,21.5
+ parent: 2
+ - uid: 14856
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,22.5
+ parent: 2
+ - uid: 14857
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,23.5
+ parent: 2
+ - uid: 14858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,13.5
+ parent: 2
+ - uid: 14859
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,14.5
+ parent: 2
+ - uid: 14860
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,15.5
+ parent: 2
+ - uid: 14861
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,16.5
+ parent: 2
+ - uid: 14862
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,17.5
+ parent: 2
+ - uid: 14863
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,18.5
+ parent: 2
+ - uid: 14864
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,19.5
+ parent: 2
+ - uid: 14865
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,20.5
+ parent: 2
+ - uid: 14866
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,21.5
+ parent: 2
+ - uid: 14867
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,22.5
+ parent: 2
+ - uid: 14868
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,23.5
+ parent: 2
+ - uid: 14869
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,13.5
+ parent: 2
+ - uid: 14870
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,14.5
+ parent: 2
+ - uid: 14871
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,15.5
+ parent: 2
+ - uid: 14872
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,16.5
+ parent: 2
+ - uid: 14873
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,17.5
+ parent: 2
+ - uid: 14874
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,18.5
+ parent: 2
+ - uid: 14875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,19.5
+ parent: 2
+ - uid: 14876
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,20.5
+ parent: 2
+ - uid: 14877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,21.5
+ parent: 2
+ - uid: 14878
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,22.5
+ parent: 2
+ - uid: 14879
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,23.5
+ parent: 2
+ - uid: 14880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,13.5
+ parent: 2
+ - uid: 14881
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,14.5
+ parent: 2
+ - uid: 14882
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,15.5
+ parent: 2
+ - uid: 14883
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,16.5
+ parent: 2
+ - uid: 14884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,17.5
+ parent: 2
+ - uid: 14885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,18.5
+ parent: 2
+ - uid: 14886
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,19.5
+ parent: 2
+ - uid: 14887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,20.5
+ parent: 2
+ - uid: 14888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,21.5
+ parent: 2
+ - uid: 14889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,22.5
+ parent: 2
+ - uid: 14890
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,23.5
+ parent: 2
+ - uid: 14891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,13.5
+ parent: 2
+ - uid: 14892
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,14.5
+ parent: 2
+ - uid: 14893
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,15.5
+ parent: 2
+ - uid: 14894
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,16.5
+ parent: 2
+ - uid: 14895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,17.5
+ parent: 2
+ - uid: 14896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,18.5
+ parent: 2
+ - uid: 14897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,19.5
+ parent: 2
+ - uid: 14898
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,20.5
+ parent: 2
+ - uid: 14899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,21.5
+ parent: 2
+ - uid: 14900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,22.5
+ parent: 2
+ - uid: 14901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,23.5
+ parent: 2
+ - uid: 14902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,12.5
+ parent: 2
+ - uid: 14903
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,11.5
+ parent: 2
+ - uid: 14904
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,10.5
+ parent: 2
+ - uid: 14905
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,12.5
+ parent: 2
+ - uid: 14906
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,11.5
+ parent: 2
+ - uid: 14907
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,10.5
+ parent: 2
+ - uid: 14908
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,12.5
+ parent: 2
+ - uid: 14909
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,11.5
+ parent: 2
+ - uid: 14910
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,10.5
+ parent: 2
+ - uid: 14911
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,12.5
+ parent: 2
+ - uid: 14912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,11.5
+ parent: 2
+ - uid: 14913
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,10.5
+ parent: 2
+ - uid: 14914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,12.5
+ parent: 2
+ - uid: 14915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,11.5
+ parent: 2
+ - uid: 14916
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,10.5
+ parent: 2
+ - uid: 14918
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,11.5
+ parent: 2
+ - uid: 14919
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,10.5
+ parent: 2
+ - uid: 14921
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,11.5
+ parent: 2
+ - uid: 14922
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,10.5
+ parent: 2
+ - uid: 14924
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,11.5
+ parent: 2
+ - uid: 14925
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,10.5
+ parent: 2
+ - uid: 14926
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,10.5
+ parent: 2
+ - uid: 14927
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,11.5
+ parent: 2
+ - uid: 14928
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,12.5
+ parent: 2
+ - uid: 14929
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,10.5
+ parent: 2
+ - uid: 14930
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,11.5
+ parent: 2
+ - uid: 14931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,12.5
+ parent: 2
+ - uid: 14932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,13.5
+ parent: 2
+ - uid: 14933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,14.5
+ parent: 2
+ - uid: 14934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,15.5
+ parent: 2
+ - uid: 14935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,16.5
+ parent: 2
+ - uid: 14936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,17.5
+ parent: 2
+ - uid: 14937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,18.5
+ parent: 2
+ - uid: 14938
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,19.5
+ parent: 2
+ - uid: 14939
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,20.5
+ parent: 2
+ - uid: 14940
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,21.5
+ parent: 2
+ - uid: 14941
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,13.5
+ parent: 2
+ - uid: 14942
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,14.5
+ parent: 2
+ - uid: 14943
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,15.5
+ parent: 2
+ - uid: 14944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,17.5
+ parent: 2
+ - uid: 14945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,18.5
+ parent: 2
+ - uid: 14946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,19.5
+ parent: 2
+ - uid: 14947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,20.5
+ parent: 2
+ - uid: 14948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,21.5
+ parent: 2
+ - uid: 14949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,16.5
+ parent: 2
+ - uid: 14950
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,9.5
+ parent: 2
+ - uid: 14951
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,8.5
+ parent: 2
+ - uid: 14952
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,7.5
+ parent: 2
+ - uid: 14953
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,6.5
+ parent: 2
+ - uid: 14954
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,5.5
+ parent: 2
+ - uid: 14955
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,4.5
+ parent: 2
+ - uid: 14956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,3.5
+ parent: 2
+ - uid: 14957
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,2.5
+ parent: 2
+ - uid: 14958
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,9.5
+ parent: 2
+ - uid: 14959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,8.5
+ parent: 2
+ - uid: 14960
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,7.5
+ parent: 2
+ - uid: 14961
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,6.5
+ parent: 2
+ - uid: 14962
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,5.5
+ parent: 2
+ - uid: 14963
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,4.5
+ parent: 2
+ - uid: 14964
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,3.5
+ parent: 2
+ - uid: 14965
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,2.5
+ parent: 2
+ - uid: 14966
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,9.5
+ parent: 2
+ - uid: 14967
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,8.5
+ parent: 2
+ - uid: 14968
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,7.5
+ parent: 2
+ - uid: 14969
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,6.5
+ parent: 2
+ - uid: 14970
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,5.5
+ parent: 2
+ - uid: 14971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,4.5
+ parent: 2
+ - uid: 14972
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,3.5
+ parent: 2
+ - uid: 14973
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,2.5
+ parent: 2
+ - uid: 14974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,9.5
+ parent: 2
+ - uid: 14975
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,8.5
+ parent: 2
+ - uid: 14976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,7.5
+ parent: 2
+ - uid: 14977
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,6.5
+ parent: 2
+ - uid: 14978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,5.5
+ parent: 2
+ - uid: 14979
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,4.5
+ parent: 2
+ - uid: 14980
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,3.5
+ parent: 2
+ - uid: 14981
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,2.5
+ parent: 2
+ - uid: 14982
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,9.5
+ parent: 2
+ - uid: 14983
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,8.5
+ parent: 2
+ - uid: 14984
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,7.5
+ parent: 2
+ - uid: 14985
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,6.5
+ parent: 2
+ - uid: 14986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,5.5
+ parent: 2
+ - uid: 14987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,4.5
+ parent: 2
+ - uid: 14988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,3.5
+ parent: 2
+ - uid: 14989
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,2.5
+ parent: 2
+ - uid: 14990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,9.5
+ parent: 2
+ - uid: 14991
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,8.5
+ parent: 2
+ - uid: 14992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,7.5
+ parent: 2
+ - uid: 14993
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,6.5
+ parent: 2
+ - uid: 14994
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,5.5
+ parent: 2
+ - uid: 14995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,4.5
+ parent: 2
+ - uid: 14996
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,9.5
+ parent: 2
+ - uid: 14997
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,8.5
+ parent: 2
+ - uid: 14998
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,7.5
+ parent: 2
+ - uid: 14999
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,6.5
+ parent: 2
+ - uid: 15000
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,5.5
+ parent: 2
+ - uid: 15001
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,4.5
+ parent: 2
+ - uid: 15002
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,3.5
+ parent: 2
+ - uid: 15003
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,12.5
+ parent: 2
+ - uid: 15004
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,24.5
+ parent: 2
+ - uid: 15005
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,22.5
+ parent: 2
+ - uid: 15006
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,23.5
+ parent: 2
+ - uid: 15007
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,24.5
+ parent: 2
+ - uid: 15008
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,25.5
+ parent: 2
+ - uid: 15009
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,24.5
+ parent: 2
+ - uid: 15010
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,25.5
+ parent: 2
+ - uid: 15011
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,24.5
+ parent: 2
+ - uid: 15012
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,25.5
+ parent: 2
+ - uid: 15013
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,24.5
+ parent: 2
+ - uid: 15014
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,25.5
+ parent: 2
+ - uid: 15015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,24.5
+ parent: 2
+ - uid: 15016
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,25.5
+ parent: 2
+ - uid: 15017
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,24.5
+ parent: 2
+ - uid: 15018
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,25.5
+ parent: 2
+ - uid: 15019
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,24.5
+ parent: 2
+ - uid: 15020
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,25.5
+ parent: 2
+ - uid: 15021
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,24.5
+ parent: 2
+ - uid: 15022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,25.5
+ parent: 2
+ - uid: 15023
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,24.5
+ parent: 2
+ - uid: 15024
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,25.5
+ parent: 2
+ - uid: 15025
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,24.5
+ parent: 2
+ - uid: 15026
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,25.5
+ parent: 2
+ - uid: 15027
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,24.5
+ parent: 2
+ - uid: 15028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,23.5
+ parent: 2
+ - uid: 15029
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,22.5
+ parent: 2
+ - uid: 15030
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,21.5
+ parent: 2
+ - uid: 15031
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,20.5
+ parent: 2
+ - uid: 15032
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,19.5
+ parent: 2
+ - uid: 15033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,18.5
+ parent: 2
+ - uid: 15034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,17.5
+ parent: 2
+ - uid: 15035
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,16.5
+ parent: 2
+ - uid: 15036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,15.5
+ parent: 2
+ - uid: 15037
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,24.5
+ parent: 2
+ - uid: 15038
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,23.5
+ parent: 2
+ - uid: 15039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,22.5
+ parent: 2
+ - uid: 15040
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,21.5
+ parent: 2
+ - uid: 15041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,20.5
+ parent: 2
+ - uid: 15042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,19.5
+ parent: 2
+ - uid: 15043
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,18.5
+ parent: 2
+ - uid: 15044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,17.5
+ parent: 2
+ - uid: 15045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,16.5
+ parent: 2
+ - uid: 15046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,15.5
+ parent: 2
+ - uid: 15047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,24.5
+ parent: 2
+ - uid: 15048
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,24.5
+ parent: 2
+ - uid: 15049
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,12.5
+ parent: 2
+ - uid: 15050
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,11.5
+ parent: 2
+ - uid: 15051
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,14.5
+ parent: 2
+ - uid: 15052
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,25.5
+ parent: 2
+ - uid: 15053
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,26.5
+ parent: 2
+ - uid: 15054
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,27.5
+ parent: 2
+ - uid: 15055
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,25.5
+ parent: 2
+ - uid: 15056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,26.5
+ parent: 2
+ - uid: 15057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,27.5
+ parent: 2
+ - uid: 15058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,25.5
+ parent: 2
+ - uid: 15059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,26.5
+ parent: 2
+ - uid: 15060
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,27.5
+ parent: 2
+ - uid: 15061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,26.5
+ parent: 2
+ - uid: 15062
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,27.5
+ parent: 2
+ - uid: 15063
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,26.5
+ parent: 2
+ - uid: 15064
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,27.5
+ parent: 2
+ - uid: 15065
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,26.5
+ parent: 2
+ - uid: 15066
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,27.5
+ parent: 2
+ - uid: 15073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,26.5
+ parent: 2
+ - uid: 15074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,27.5
+ parent: 2
+ - uid: 15077
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,26.5
+ parent: 2
+ - uid: 15078
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,27.5
+ parent: 2
+ - uid: 15079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,28.5
+ parent: 2
+ - uid: 15081
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,26.5
+ parent: 2
+ - uid: 15082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,27.5
+ parent: 2
+ - uid: 15083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,28.5
+ parent: 2
+ - uid: 15084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,29.5
+ parent: 2
+ - uid: 15085
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,26.5
+ parent: 2
+ - uid: 15086
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,27.5
+ parent: 2
+ - uid: 15087
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,28.5
+ parent: 2
+ - uid: 15088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,29.5
+ parent: 2
+ - uid: 15089
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,26.5
+ parent: 2
+ - uid: 15090
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,27.5
+ parent: 2
+ - uid: 15091
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,28.5
+ parent: 2
+ - uid: 15092
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,29.5
+ parent: 2
+ - uid: 15093
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,26.5
+ parent: 2
+ - uid: 15094
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,26.5
+ parent: 2
+ - uid: 15095
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,26.5
+ parent: 2
+ - uid: 15096
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,25.5
+ parent: 2
+ - uid: 15097
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,26.5
+ parent: 2
+ - uid: 15098
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,25.5
+ parent: 2
+ - uid: 15099
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,24.5
+ parent: 2
+ - uid: 15100
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,23.5
+ parent: 2
+ - uid: 15101
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,22.5
+ parent: 2
+ - uid: 15102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,26.5
+ parent: 2
+ - uid: 15103
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,25.5
+ parent: 2
+ - uid: 15104
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,24.5
+ parent: 2
+ - uid: 15105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,23.5
+ parent: 2
+ - uid: 15106
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,22.5
+ parent: 2
+ - uid: 15107
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,21.5
+ parent: 2
+ - uid: 15108
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,20.5
+ parent: 2
+ - uid: 15109
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,19.5
+ parent: 2
+ - uid: 15110
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,18.5
+ parent: 2
+ - uid: 15111
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,21.5
+ parent: 2
+ - uid: 15112
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,20.5
+ parent: 2
+ - uid: 15113
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,19.5
+ parent: 2
+ - uid: 15114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,18.5
+ parent: 2
+ - uid: 15115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,17.5
+ parent: 2
+ - uid: 15116
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,16.5
+ parent: 2
+ - uid: 15117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,15.5
+ parent: 2
+ - uid: 15122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,27.5
+ parent: 2
+ - uid: 15123
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,28.5
+ parent: 2
+ - uid: 15125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,27.5
+ parent: 2
+ - uid: 15126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,28.5
+ parent: 2
+ - uid: 15127
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,29.5
+ parent: 2
+ - uid: 15136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,30.5
+ parent: 2
+ - uid: 15137
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,30.5
+ parent: 2
+ - uid: 15138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,28.5
+ parent: 2
+ - uid: 15139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,29.5
+ parent: 2
+ - uid: 15140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,30.5
+ parent: 2
+ - uid: 15141
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,28.5
+ parent: 2
+ - uid: 15142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,29.5
+ parent: 2
+ - uid: 15143
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,30.5
+ parent: 2
+ - uid: 15144
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,28.5
+ parent: 2
+ - uid: 15145
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,29.5
+ parent: 2
+ - uid: 15146
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,30.5
+ parent: 2
+ - uid: 15147
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,28.5
+ parent: 2
+ - uid: 15148
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,29.5
+ parent: 2
+ - uid: 15149
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,30.5
+ parent: 2
+ - uid: 15150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,27.5
+ parent: 2
+ - uid: 15151
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,27.5
+ parent: 2
+ - uid: 15152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,27.5
+ parent: 2
+ - uid: 15153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,27.5
+ parent: 2
+ - uid: 15154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,27.5
+ parent: 2
+ - uid: 15155
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,28.5
+ parent: 2
+ - uid: 15156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,29.5
+ parent: 2
+ - uid: 15157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,28.5
+ parent: 2
+ - uid: 15158
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,27.5
+ parent: 2
+ - uid: 15159
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,26.5
+ parent: 2
+ - uid: 15160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,25.5
+ parent: 2
+ - uid: 15161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,22.5
+ parent: 2
+ - uid: 15162
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,21.5
+ parent: 2
+ - uid: 15163
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,20.5
+ parent: 2
+ - uid: 15164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,19.5
+ parent: 2
+ - uid: 15165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,26.5
+ parent: 2
+ - uid: 15166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,25.5
+ parent: 2
+ - uid: 15194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,9.5
+ parent: 2
+ - uid: 15195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,8.5
+ parent: 2
+ - uid: 15196
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,7.5
+ parent: 2
+ - uid: 15197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,6.5
+ parent: 2
+ - uid: 15198
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,2.5
+ parent: 2
+ - uid: 15199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,1.5
+ parent: 2
+ - uid: 15200
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,0.5
+ parent: 2
+ - uid: 15201
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,2.5
+ parent: 2
+ - uid: 15202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,1.5
+ parent: 2
+ - uid: 15203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,0.5
+ parent: 2
+ - uid: 15204
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-0.5
+ parent: 2
+ - uid: 15205
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,2.5
+ parent: 2
+ - uid: 15206
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,1.5
+ parent: 2
+ - uid: 15207
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,-0.5
+ parent: 2
+ - uid: 15208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,0.5
+ parent: 2
+ - uid: 15209
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,-0.5
+ parent: 2
+ - uid: 15210
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,1.5
+ parent: 2
+ - uid: 15211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,0.5
+ parent: 2
+ - uid: 15212
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,-0.5
+ parent: 2
+ - uid: 15213
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,1.5
+ parent: 2
+ - uid: 15214
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,0.5
+ parent: 2
+ - uid: 15215
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,-0.5
+ parent: 2
+ - uid: 15216
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,3.5
+ parent: 2
+ - uid: 15217
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,3.5
+ parent: 2
+ - uid: 15218
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,4.5
+ parent: 2
+ - uid: 15219
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,5.5
+ parent: 2
+ - uid: 15220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,1.5
+ parent: 2
+ - uid: 15221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,1.5
+ parent: 2
+ - uid: 15222
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,2.5
+ parent: 2
+ - uid: 15223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,1.5
+ parent: 2
+ - uid: 15224
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,3.5
+ parent: 2
+ - uid: 15225
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,2.5
+ parent: 2
+ - uid: 15226
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,1.5
+ parent: 2
+ - uid: 15227
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,3.5
+ parent: 2
+ - uid: 15228
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,2.5
+ parent: 2
+ - uid: 15229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,1.5
+ parent: 2
+ - uid: 15230
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,3.5
+ parent: 2
+ - uid: 15231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,2.5
+ parent: 2
+ - uid: 15232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,1.5
+ parent: 2
+ - uid: 15233
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,6.5
+ parent: 2
+ - uid: 15234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,5.5
+ parent: 2
+ - uid: 15235
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,4.5
+ parent: 2
+ - uid: 15236
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,0.5
+ parent: 2
+ - uid: 15237
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,-0.5
+ parent: 2
+ - uid: 15238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,0.5
+ parent: 2
+ - uid: 15239
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,-0.5
+ parent: 2
+ - uid: 15240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,3.5
+ parent: 2
+ - uid: 15241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,2.5
+ parent: 2
+ - uid: 15242
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,1.5
+ parent: 2
+ - uid: 15243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,0.5
+ parent: 2
+ - uid: 15244
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,-0.5
+ parent: 2
+ - uid: 15245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,3.5
+ parent: 2
+ - uid: 15246
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,2.5
+ parent: 2
+ - uid: 15247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,1.5
+ parent: 2
+ - uid: 15248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,0.5
+ parent: 2
+ - uid: 15249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,-0.5
+ parent: 2
+ - uid: 15250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,4.5
+ parent: 2
+ - uid: 15251
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,4.5
+ parent: 2
+ - uid: 15252
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,5.5
+ parent: 2
+ - uid: 15253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,7.5
+ parent: 2
+ - uid: 15254
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,1.5
+ parent: 2
+ - uid: 15255
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,0.5
+ parent: 2
+ - uid: 15256
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,-0.5
+ parent: 2
+ - uid: 15257
+ components:
+ - type: Transform
+ pos: 50.5,-1.5
+ parent: 2
+ - uid: 15258
+ components:
+ - type: Transform
+ pos: 49.5,-1.5
+ parent: 2
+ - uid: 15259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,0.5
+ parent: 2
+ - uid: 15260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-0.5
+ parent: 2
+ - uid: 15261
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-1.5
+ parent: 2
+ - uid: 15262
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-2.5
+ parent: 2
+ - uid: 15263
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,0.5
+ parent: 2
+ - uid: 15264
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,-0.5
+ parent: 2
+ - uid: 15265
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,-1.5
+ parent: 2
+ - uid: 15266
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,-2.5
+ parent: 2
+ - uid: 15267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,0.5
+ parent: 2
+ - uid: 15268
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,-0.5
+ parent: 2
+ - uid: 15269
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,-1.5
+ parent: 2
+ - uid: 15270
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,-2.5
+ parent: 2
+ - uid: 15271
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,0.5
+ parent: 2
+ - uid: 15272
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,-0.5
+ parent: 2
+ - uid: 15273
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,-1.5
+ parent: 2
+ - uid: 15274
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,-2.5
+ parent: 2
+ - uid: 15275
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,-1.5
+ parent: 2
+ - uid: 15276
+ components:
+ - type: Transform
+ pos: 44.5,-4.5
+ parent: 2
+ - uid: 15277
+ components:
+ - type: Transform
+ pos: 45.5,-3.5
+ parent: 2
+ - uid: 15278
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,-1.5
+ parent: 2
+ - uid: 15279
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,-1.5
+ parent: 2
+ - uid: 15280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,-1.5
+ parent: 2
+ - uid: 15281
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,-2.5
+ parent: 2
+ - uid: 15282
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,-3.5
+ parent: 2
+ - uid: 15283
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,-4.5
+ parent: 2
+ - uid: 15284
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,-3.5
+ parent: 2
+ - uid: 15285
+ components:
+ - type: Transform
+ pos: 45.5,-4.5
+ parent: 2
+ - uid: 15286
+ components:
+ - type: Transform
+ pos: 48.5,-3.5
+ parent: 2
+ - uid: 15287
+ components:
+ - type: Transform
+ pos: 47.5,-3.5
+ parent: 2
+ - uid: 15288
+ components:
+ - type: Transform
+ pos: 46.5,-3.5
+ parent: 2
+ - uid: 15290
+ components:
+ - type: Transform
+ pos: 37.5,1.5
+ parent: 2
+ - uid: 15291
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,-2.5
+ parent: 2
+ - uid: 15292
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,-3.5
+ parent: 2
+ - uid: 15293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,-2.5
+ parent: 2
+ - uid: 15294
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,-1.5
+ parent: 2
+ - uid: 15295
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,1.5
+ parent: 2
+ - uid: 15296
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,0.5
+ parent: 2
+ - uid: 15297
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,1.5
+ parent: 2
+ - uid: 15298
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,0.5
+ parent: 2
+ - uid: 15299
+ components:
+ - type: Transform
+ pos: 37.5,0.5
+ parent: 2
+ - uid: 15300
+ components:
+ - type: Transform
+ pos: 36.5,0.5
+ parent: 2
+ - uid: 15301
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,2.5
+ parent: 2
+ - uid: 15302
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,2.5
+ parent: 2
+ - uid: 15303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,2.5
+ parent: 2
+ - uid: 15304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,4.5
+ parent: 2
+ - uid: 15305
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,3.5
+ parent: 2
+ - uid: 15306
+ components:
+ - type: Transform
+ pos: 37.5,-0.5
+ parent: 2
+ - uid: 15313
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,-0.5
+ parent: 2
+ - uid: 15314
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,-0.5
+ parent: 2
+ - uid: 15318
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,-1.5
+ parent: 2
+ - uid: 15319
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,-1.5
+ parent: 2
+ - uid: 15342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,-16.5
+ parent: 2
+ - uid: 15343
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,-15.5
+ parent: 2
+ - uid: 15344
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,-16.5
+ parent: 2
+ - uid: 15345
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,-16.5
+ parent: 2
+ - uid: 15346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,-17.5
+ parent: 2
+ - uid: 15347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,-16.5
+ parent: 2
+ - uid: 15348
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,-17.5
+ parent: 2
+ - uid: 15349
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,-16.5
+ parent: 2
+ - uid: 15350
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,-15.5
+ parent: 2
+ - uid: 15351
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,-18.5
+ parent: 2
+ - uid: 15352
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-18.5
+ parent: 2
+ - uid: 15353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-17.5
+ parent: 2
+ - uid: 15354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,-17.5
+ parent: 2
+ - uid: 15355
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-17.5
+ parent: 2
+ - uid: 15356
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-16.5
+ parent: 2
+ - uid: 15357
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-16.5
+ parent: 2
+ - uid: 15358
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-16.5
+ parent: 2
+ - uid: 15359
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,-18.5
+ parent: 2
+ - uid: 15360
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,-19.5
+ parent: 2
+ - uid: 15361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-19.5
+ parent: 2
+ - uid: 15362
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-20.5
+ parent: 2
+ - uid: 15363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-20.5
+ parent: 2
+ - uid: 15364
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-21.5
+ parent: 2
+ - uid: 15365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-21.5
+ parent: 2
+ - uid: 15366
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-22.5
+ parent: 2
+ - uid: 15602
+ components:
+ - type: Transform
+ pos: 20.5,-33.5
+ parent: 2
+ - uid: 15603
+ components:
+ - type: Transform
+ pos: 20.5,-32.5
+ parent: 2
+ - uid: 15604
+ components:
+ - type: Transform
+ pos: 20.5,-31.5
+ parent: 2
+ - uid: 15605
+ components:
+ - type: Transform
+ pos: 20.5,-30.5
+ parent: 2
+ - uid: 15606
+ components:
+ - type: Transform
+ pos: 20.5,-29.5
+ parent: 2
+ - uid: 15607
+ components:
+ - type: Transform
+ pos: 21.5,-33.5
+ parent: 2
+ - uid: 15608
+ components:
+ - type: Transform
+ pos: 21.5,-32.5
+ parent: 2
+ - uid: 15609
+ components:
+ - type: Transform
+ pos: 21.5,-31.5
+ parent: 2
+ - uid: 15610
+ components:
+ - type: Transform
+ pos: 21.5,-30.5
+ parent: 2
+ - uid: 15611
+ components:
+ - type: Transform
+ pos: 21.5,-29.5
+ parent: 2
+ - uid: 15612
+ components:
+ - type: Transform
+ pos: 22.5,-33.5
+ parent: 2
+ - uid: 15613
+ components:
+ - type: Transform
+ pos: 22.5,-32.5
+ parent: 2
+ - uid: 15614
+ components:
+ - type: Transform
+ pos: 22.5,-31.5
+ parent: 2
+ - uid: 15615
+ components:
+ - type: Transform
+ pos: 22.5,-30.5
+ parent: 2
+ - uid: 15616
+ components:
+ - type: Transform
+ pos: 22.5,-29.5
+ parent: 2
+ - uid: 15617
+ components:
+ - type: Transform
+ pos: 23.5,-33.5
+ parent: 2
+ - uid: 15618
+ components:
+ - type: Transform
+ pos: 23.5,-32.5
+ parent: 2
+ - uid: 15619
+ components:
+ - type: Transform
+ pos: 23.5,-31.5
+ parent: 2
+ - uid: 15620
+ components:
+ - type: Transform
+ pos: 23.5,-30.5
+ parent: 2
+ - uid: 15621
+ components:
+ - type: Transform
+ pos: 23.5,-29.5
+ parent: 2
+ - uid: 15622
+ components:
+ - type: Transform
+ pos: 24.5,-33.5
+ parent: 2
+ - uid: 15623
+ components:
+ - type: Transform
+ pos: 24.5,-32.5
+ parent: 2
+ - uid: 15624
+ components:
+ - type: Transform
+ pos: 24.5,-31.5
+ parent: 2
+ - uid: 15625
+ components:
+ - type: Transform
+ pos: 24.5,-30.5
+ parent: 2
+ - uid: 15626
+ components:
+ - type: Transform
+ pos: 24.5,-29.5
+ parent: 2
+ - uid: 15627
+ components:
+ - type: Transform
+ pos: 25.5,-33.5
+ parent: 2
+ - uid: 15628
+ components:
+ - type: Transform
+ pos: 25.5,-32.5
+ parent: 2
+ - uid: 15629
+ components:
+ - type: Transform
+ pos: 25.5,-31.5
+ parent: 2
+ - uid: 15630
+ components:
+ - type: Transform
+ pos: 25.5,-30.5
+ parent: 2
+ - uid: 15631
+ components:
+ - type: Transform
+ pos: 25.5,-29.5
+ parent: 2
+ - uid: 15632
+ components:
+ - type: Transform
+ pos: 26.5,-33.5
+ parent: 2
+ - uid: 15633
+ components:
+ - type: Transform
+ pos: 26.5,-32.5
+ parent: 2
+ - uid: 15634
+ components:
+ - type: Transform
+ pos: 26.5,-31.5
+ parent: 2
+ - uid: 15635
+ components:
+ - type: Transform
+ pos: 26.5,-30.5
+ parent: 2
+ - uid: 15636
+ components:
+ - type: Transform
+ pos: 26.5,-29.5
+ parent: 2
+ - uid: 15637
+ components:
+ - type: Transform
+ pos: 26.5,-35.5
+ parent: 2
+ - uid: 15638
+ components:
+ - type: Transform
+ pos: 26.5,-34.5
+ parent: 2
+ - uid: 15639
+ components:
+ - type: Transform
+ pos: 25.5,-35.5
+ parent: 2
+ - uid: 15640
+ components:
+ - type: Transform
+ pos: 25.5,-34.5
+ parent: 2
+ - uid: 15641
+ components:
+ - type: Transform
+ pos: 24.5,-35.5
+ parent: 2
+ - uid: 15642
+ components:
+ - type: Transform
+ pos: 24.5,-34.5
+ parent: 2
+ - uid: 15643
+ components:
+ - type: Transform
+ pos: 23.5,-34.5
+ parent: 2
+ - uid: 15644
+ components:
+ - type: Transform
+ pos: 22.5,-34.5
+ parent: 2
+ - uid: 15645
+ components:
+ - type: Transform
+ pos: 21.5,-34.5
+ parent: 2
+ - uid: 15646
+ components:
+ - type: Transform
+ pos: 19.5,-32.5
+ parent: 2
+ - uid: 15647
+ components:
+ - type: Transform
+ pos: 19.5,-31.5
+ parent: 2
+ - uid: 15648
+ components:
+ - type: Transform
+ pos: 19.5,-30.5
+ parent: 2
+ - uid: 15649
+ components:
+ - type: Transform
+ pos: 19.5,-29.5
+ parent: 2
+ - uid: 15650
+ components:
+ - type: Transform
+ pos: 18.5,-31.5
+ parent: 2
+ - uid: 15651
+ components:
+ - type: Transform
+ pos: 18.5,-30.5
+ parent: 2
+ - uid: 15652
+ components:
+ - type: Transform
+ pos: 18.5,-29.5
+ parent: 2
+ - uid: 15653
+ components:
+ - type: Transform
+ pos: 17.5,-30.5
+ parent: 2
+ - uid: 15654
+ components:
+ - type: Transform
+ pos: 17.5,-29.5
+ parent: 2
+ - uid: 15655
+ components:
+ - type: Transform
+ pos: 16.5,-30.5
+ parent: 2
+ - uid: 15656
+ components:
+ - type: Transform
+ pos: 16.5,-29.5
+ parent: 2
+ - uid: 15657
+ components:
+ - type: Transform
+ pos: 15.5,-29.5
+ parent: 2
+ - uid: 15658
+ components:
+ - type: Transform
+ pos: 15.5,-28.5
+ parent: 2
+ - uid: 15659
+ components:
+ - type: Transform
+ pos: 16.5,-28.5
+ parent: 2
+ - uid: 15660
+ components:
+ - type: Transform
+ pos: 17.5,-28.5
+ parent: 2
+ - uid: 15661
+ components:
+ - type: Transform
+ pos: 18.5,-28.5
+ parent: 2
+ - uid: 15662
+ components:
+ - type: Transform
+ pos: 19.5,-28.5
+ parent: 2
+ - uid: 15663
+ components:
+ - type: Transform
+ pos: 20.5,-28.5
+ parent: 2
+ - uid: 15664
+ components:
+ - type: Transform
+ pos: 21.5,-28.5
+ parent: 2
+ - uid: 15665
+ components:
+ - type: Transform
+ pos: 22.5,-28.5
+ parent: 2
+ - uid: 15666
+ components:
+ - type: Transform
+ pos: 23.5,-28.5
+ parent: 2
+ - uid: 15667
+ components:
+ - type: Transform
+ pos: 24.5,-28.5
+ parent: 2
+ - uid: 15668
+ components:
+ - type: Transform
+ pos: 25.5,-28.5
+ parent: 2
+ - uid: 15669
+ components:
+ - type: Transform
+ pos: 26.5,-28.5
+ parent: 2
+ - uid: 15670
+ components:
+ - type: Transform
+ pos: 27.5,-33.5
+ parent: 2
+ - uid: 15671
+ components:
+ - type: Transform
+ pos: 27.5,-32.5
+ parent: 2
+ - uid: 15672
+ components:
+ - type: Transform
+ pos: 27.5,-31.5
+ parent: 2
+ - uid: 15673
+ components:
+ - type: Transform
+ pos: 27.5,-30.5
+ parent: 2
+ - uid: 15674
+ components:
+ - type: Transform
+ pos: 27.5,-29.5
+ parent: 2
+ - uid: 15675
+ components:
+ - type: Transform
+ pos: 27.5,-28.5
+ parent: 2
+ - uid: 15676
+ components:
+ - type: Transform
+ pos: 28.5,-32.5
+ parent: 2
+ - uid: 15677
+ components:
+ - type: Transform
+ pos: 28.5,-31.5
+ parent: 2
+ - uid: 15678
+ components:
+ - type: Transform
+ pos: 28.5,-30.5
+ parent: 2
+ - uid: 15679
+ components:
+ - type: Transform
+ pos: 28.5,-29.5
+ parent: 2
+ - uid: 15680
+ components:
+ - type: Transform
+ pos: 28.5,-28.5
+ parent: 2
+ - uid: 15681
+ components:
+ - type: Transform
+ pos: 29.5,-31.5
+ parent: 2
+ - uid: 15682
+ components:
+ - type: Transform
+ pos: 29.5,-30.5
+ parent: 2
+ - uid: 15683
+ components:
+ - type: Transform
+ pos: 29.5,-29.5
+ parent: 2
+ - uid: 15684
+ components:
+ - type: Transform
+ pos: 29.5,-28.5
+ parent: 2
+ - uid: 15685
+ components:
+ - type: Transform
+ pos: 30.5,-30.5
+ parent: 2
+ - uid: 15686
+ components:
+ - type: Transform
+ pos: 30.5,-29.5
+ parent: 2
+ - uid: 15687
+ components:
+ - type: Transform
+ pos: 30.5,-28.5
+ parent: 2
+ - uid: 15688
+ components:
+ - type: Transform
+ pos: 33.5,-33.5
+ parent: 2
+ - uid: 15689
+ components:
+ - type: Transform
+ pos: 33.5,-32.5
+ parent: 2
+ - uid: 15690
+ components:
+ - type: Transform
+ pos: 33.5,-31.5
+ parent: 2
+ - uid: 15691
+ components:
+ - type: Transform
+ pos: 33.5,-30.5
+ parent: 2
+ - uid: 15692
+ components:
+ - type: Transform
+ pos: 33.5,-29.5
+ parent: 2
+ - uid: 15693
+ components:
+ - type: Transform
+ pos: 32.5,-33.5
+ parent: 2
+ - uid: 15694
+ components:
+ - type: Transform
+ pos: 32.5,-32.5
+ parent: 2
+ - uid: 15695
+ components:
+ - type: Transform
+ pos: 32.5,-31.5
+ parent: 2
+ - uid: 15696
+ components:
+ - type: Transform
+ pos: 32.5,-30.5
+ parent: 2
+ - uid: 15697
+ components:
+ - type: Transform
+ pos: 32.5,-29.5
+ parent: 2
+ - uid: 15698
+ components:
+ - type: Transform
+ pos: 34.5,-33.5
+ parent: 2
+ - uid: 15699
+ components:
+ - type: Transform
+ pos: 34.5,-32.5
+ parent: 2
+ - uid: 15700
+ components:
+ - type: Transform
+ pos: 34.5,-31.5
+ parent: 2
+ - uid: 15701
+ components:
+ - type: Transform
+ pos: 34.5,-30.5
+ parent: 2
+ - uid: 15702
+ components:
+ - type: Transform
+ pos: 34.5,-29.5
+ parent: 2
+ - uid: 15703
+ components:
+ - type: Transform
+ pos: 35.5,-33.5
+ parent: 2
+ - uid: 15704
+ components:
+ - type: Transform
+ pos: 35.5,-32.5
+ parent: 2
+ - uid: 15705
+ components:
+ - type: Transform
+ pos: 35.5,-31.5
+ parent: 2
+ - uid: 15706
+ components:
+ - type: Transform
+ pos: 35.5,-30.5
+ parent: 2
+ - uid: 15707
+ components:
+ - type: Transform
+ pos: 35.5,-29.5
+ parent: 2
+ - uid: 15708
+ components:
+ - type: Transform
+ pos: 36.5,-33.5
+ parent: 2
+ - uid: 15709
+ components:
+ - type: Transform
+ pos: 36.5,-32.5
+ parent: 2
+ - uid: 15710
+ components:
+ - type: Transform
+ pos: 36.5,-31.5
+ parent: 2
+ - uid: 15711
+ components:
+ - type: Transform
+ pos: 36.5,-30.5
+ parent: 2
+ - uid: 15712
+ components:
+ - type: Transform
+ pos: 36.5,-29.5
+ parent: 2
+ - uid: 15713
+ components:
+ - type: Transform
+ pos: 31.5,-28.5
+ parent: 2
+ - uid: 15714
+ components:
+ - type: Transform
+ pos: 32.5,-28.5
+ parent: 2
+ - uid: 15715
+ components:
+ - type: Transform
+ pos: 33.5,-28.5
+ parent: 2
+ - uid: 15716
+ components:
+ - type: Transform
+ pos: 34.5,-28.5
+ parent: 2
+ - uid: 15717
+ components:
+ - type: Transform
+ pos: 35.5,-28.5
+ parent: 2
+ - uid: 15718
+ components:
+ - type: Transform
+ pos: 36.5,-28.5
+ parent: 2
+ - uid: 15719
+ components:
+ - type: Transform
+ pos: 37.5,-28.5
+ parent: 2
+ - uid: 15720
+ components:
+ - type: Transform
+ pos: 37.5,-27.5
+ parent: 2
+ - uid: 15721
+ components:
+ - type: Transform
+ pos: 36.5,-27.5
+ parent: 2
+ - uid: 15722
+ components:
+ - type: Transform
+ pos: 35.5,-27.5
+ parent: 2
+ - uid: 15723
+ components:
+ - type: Transform
+ pos: 34.5,-27.5
+ parent: 2
+ - uid: 15724
+ components:
+ - type: Transform
+ pos: 33.5,-27.5
+ parent: 2
+ - uid: 15725
+ components:
+ - type: Transform
+ pos: 32.5,-27.5
+ parent: 2
+ - uid: 15726
+ components:
+ - type: Transform
+ pos: 31.5,-27.5
+ parent: 2
+ - uid: 15727
+ components:
+ - type: Transform
+ pos: 38.5,-26.5
+ parent: 2
+ - uid: 15728
+ components:
+ - type: Transform
+ pos: 37.5,-26.5
+ parent: 2
+ - uid: 15729
+ components:
+ - type: Transform
+ pos: 36.5,-26.5
+ parent: 2
+ - uid: 15730
+ components:
+ - type: Transform
+ pos: 35.5,-26.5
+ parent: 2
+ - uid: 15731
+ components:
+ - type: Transform
+ pos: 34.5,-26.5
+ parent: 2
+ - uid: 15732
+ components:
+ - type: Transform
+ pos: 33.5,-26.5
+ parent: 2
+ - uid: 15733
+ components:
+ - type: Transform
+ pos: 32.5,-26.5
+ parent: 2
+ - uid: 15734
+ components:
+ - type: Transform
+ pos: 38.5,-25.5
+ parent: 2
+ - uid: 15735
+ components:
+ - type: Transform
+ pos: 37.5,-25.5
+ parent: 2
+ - uid: 15736
+ components:
+ - type: Transform
+ pos: 36.5,-25.5
+ parent: 2
+ - uid: 15737
+ components:
+ - type: Transform
+ pos: 35.5,-25.5
+ parent: 2
+ - uid: 15738
+ components:
+ - type: Transform
+ pos: 34.5,-25.5
+ parent: 2
+ - uid: 15739
+ components:
+ - type: Transform
+ pos: 33.5,-25.5
+ parent: 2
+ - uid: 15740
+ components:
+ - type: Transform
+ pos: 40.5,-24.5
+ parent: 2
+ - uid: 15741
+ components:
+ - type: Transform
+ pos: 39.5,-24.5
+ parent: 2
+ - uid: 15742
+ components:
+ - type: Transform
+ pos: 38.5,-24.5
+ parent: 2
+ - uid: 15743
+ components:
+ - type: Transform
+ pos: 36.5,-24.5
+ parent: 2
+ - uid: 15744
+ components:
+ - type: Transform
+ pos: 37.5,-24.5
+ parent: 2
+ - uid: 15745
+ components:
+ - type: Transform
+ pos: 35.5,-24.5
+ parent: 2
+ - uid: 15746
+ components:
+ - type: Transform
+ pos: 31.5,-29.5
+ parent: 2
+ - uid: 15747
+ components:
+ - type: Transform
+ pos: 31.5,-30.5
+ parent: 2
+ - uid: 15748
+ components:
+ - type: Transform
+ pos: 31.5,-31.5
+ parent: 2
+ - uid: 15749
+ components:
+ - type: Transform
+ pos: 34.5,-34.5
+ parent: 2
+ - uid: 15750
+ components:
+ - type: Transform
+ pos: 37.5,-23.5
+ parent: 2
+ - uid: 15751
+ components:
+ - type: Transform
+ pos: 38.5,-23.5
+ parent: 2
+ - uid: 15752
+ components:
+ - type: Transform
+ pos: 39.5,-23.5
+ parent: 2
+ - uid: 15753
+ components:
+ - type: Transform
+ pos: 40.5,-23.5
+ parent: 2
+ - uid: 15754
+ components:
+ - type: Transform
+ pos: 36.5,-23.5
+ parent: 2
+ - uid: 15755
+ components:
+ - type: Transform
+ pos: 39.5,-22.5
+ parent: 2
+ - uid: 15756
+ components:
+ - type: Transform
+ pos: 38.5,-22.5
+ parent: 2
+ - uid: 15757
+ components:
+ - type: Transform
+ pos: 40.5,-22.5
+ parent: 2
+ - uid: 15758
+ components:
+ - type: Transform
+ pos: 41.5,-23.5
+ parent: 2
+ - uid: 15759
+ components:
+ - type: Transform
+ pos: 41.5,-22.5
+ parent: 2
+ - uid: 15760
+ components:
+ - type: Transform
+ pos: 40.5,-21.5
+ parent: 2
+ - uid: 15761
+ components:
+ - type: Transform
+ pos: 50.5,-2.5
+ parent: 2
+ - uid: 15762
+ components:
+ - type: Transform
+ pos: 50.5,-3.5
+ parent: 2
+ - uid: 15763
+ components:
+ - type: Transform
+ pos: 49.5,-2.5
+ parent: 2
+ - uid: 15764
+ components:
+ - type: Transform
+ pos: 49.5,-3.5
+ parent: 2
+ - uid: 15765
+ components:
+ - type: Transform
+ pos: 49.5,-4.5
+ parent: 2
+ - uid: 15766
+ components:
+ - type: Transform
+ pos: 49.5,-5.5
+ parent: 2
+ - uid: 15767
+ components:
+ - type: Transform
+ pos: 49.5,-6.5
+ parent: 2
+ - uid: 15768
+ components:
+ - type: Transform
+ pos: 48.5,-4.5
+ parent: 2
+ - uid: 15769
+ components:
+ - type: Transform
+ pos: 48.5,-5.5
+ parent: 2
+ - uid: 15770
+ components:
+ - type: Transform
+ pos: 48.5,-6.5
+ parent: 2
+ - uid: 15771
+ components:
+ - type: Transform
+ pos: 47.5,-4.5
+ parent: 2
+ - uid: 15772
+ components:
+ - type: Transform
+ pos: 47.5,-5.5
+ parent: 2
+ - uid: 15773
+ components:
+ - type: Transform
+ pos: 47.5,-6.5
+ parent: 2
+ - uid: 15774
+ components:
+ - type: Transform
+ pos: 47.5,-7.5
+ parent: 2
+ - uid: 15775
+ components:
+ - type: Transform
+ pos: 46.5,-4.5
+ parent: 2
+ - uid: 15776
+ components:
+ - type: Transform
+ pos: 46.5,-5.5
+ parent: 2
+ - uid: 15777
+ components:
+ - type: Transform
+ pos: 46.5,-6.5
+ parent: 2
+ - uid: 15778
+ components:
+ - type: Transform
+ pos: 46.5,-7.5
+ parent: 2
+ - uid: 15779
+ components:
+ - type: Transform
+ pos: 45.5,-5.5
+ parent: 2
+ - uid: 15780
+ components:
+ - type: Transform
+ pos: 45.5,-6.5
+ parent: 2
+ - uid: 15781
+ components:
+ - type: Transform
+ pos: 45.5,-7.5
+ parent: 2
+ - uid: 15782
+ components:
+ - type: Transform
+ pos: 44.5,-5.5
+ parent: 2
+ - uid: 15783
+ components:
+ - type: Transform
+ pos: 44.5,-6.5
+ parent: 2
+ - uid: 15784
+ components:
+ - type: Transform
+ pos: 43.5,-5.5
+ parent: 2
+ - uid: 15785
+ components:
+ - type: Transform
+ pos: 44.5,-7.5
+ parent: 2
+ - uid: 15786
+ components:
+ - type: Transform
+ pos: 44.5,-8.5
+ parent: 2
+ - uid: 15787
+ components:
+ - type: Transform
+ pos: 47.5,-9.5
+ parent: 2
+ - uid: 15788
+ components:
+ - type: Transform
+ pos: 45.5,-8.5
+ parent: 2
+ - uid: 15789
+ components:
+ - type: Transform
+ pos: 45.5,-9.5
+ parent: 2
+ - uid: 15790
+ components:
+ - type: Transform
+ pos: 46.5,-8.5
+ parent: 2
+ - uid: 15791
+ components:
+ - type: Transform
+ pos: 46.5,-10.5
+ parent: 2
+ - uid: 15792
+ components:
+ - type: Transform
+ pos: 45.5,-10.5
+ parent: 2
+ - uid: 15793
+ components:
+ - type: Transform
+ pos: 46.5,-9.5
+ parent: 2
+ - uid: 15794
+ components:
+ - type: Transform
+ pos: 47.5,-8.5
+ parent: 2
+ - uid: 15795
+ components:
+ - type: Transform
+ pos: 48.5,-7.5
+ parent: 2
+ - uid: 15796
+ components:
+ - type: Transform
+ pos: 46.5,-11.5
+ parent: 2
+ - uid: 15797
+ components:
+ - type: Transform
+ pos: 46.5,-12.5
+ parent: 2
+ - uid: 15798
+ components:
+ - type: Transform
+ pos: 47.5,-10.5
+ parent: 2
+ - uid: 15799
+ components:
+ - type: Transform
+ pos: 47.5,-11.5
+ parent: 2
+ - uid: 15800
+ components:
+ - type: Transform
+ pos: 47.5,-12.5
+ parent: 2
+ - uid: 15801
+ components:
+ - type: Transform
+ pos: 48.5,-10.5
+ parent: 2
+ - uid: 15802
+ components:
+ - type: Transform
+ pos: 48.5,-11.5
+ parent: 2
+ - uid: 15803
+ components:
+ - type: Transform
+ pos: 49.5,-11.5
+ parent: 2
+ - uid: 15804
+ components:
+ - type: Transform
+ pos: 49.5,-12.5
+ parent: 2
+ - uid: 15805
+ components:
+ - type: Transform
+ pos: 48.5,-12.5
+ parent: 2
+ - uid: 15806
+ components:
+ - type: Transform
+ pos: 49.5,-10.5
+ parent: 2
+ - uid: 15807
+ components:
+ - type: Transform
+ pos: 50.5,-12.5
+ parent: 2
+ - uid: 15808
+ components:
+ - type: Transform
+ pos: 50.5,-11.5
+ parent: 2
+ - uid: 15809
+ components:
+ - type: Transform
+ pos: 51.5,-12.5
+ parent: 2
+ - uid: 15810
+ components:
+ - type: Transform
+ pos: 51.5,-11.5
+ parent: 2
+ - uid: 15811
+ components:
+ - type: Transform
+ pos: 50.5,-13.5
+ parent: 2
+ - uid: 15812
+ components:
+ - type: Transform
+ pos: 50.5,-14.5
+ parent: 2
+ - uid: 15813
+ components:
+ - type: Transform
+ pos: 49.5,-13.5
+ parent: 2
+ - uid: 15814
+ components:
+ - type: Transform
+ pos: 49.5,-14.5
+ parent: 2
+ - uid: 15815
+ components:
+ - type: Transform
+ pos: 48.5,-13.5
+ parent: 2
+ - uid: 15816
+ components:
+ - type: Transform
+ pos: 48.5,-14.5
+ parent: 2
+ - uid: 15817
+ components:
+ - type: Transform
+ pos: 47.5,-13.5
+ parent: 2
+ - uid: 15818
+ components:
+ - type: Transform
+ pos: 47.5,-14.5
+ parent: 2
+ - uid: 15819
+ components:
+ - type: Transform
+ pos: 48.5,-9.5
+ parent: 2
+ - uid: 15820
+ components:
+ - type: Transform
+ pos: 49.5,-15.5
+ parent: 2
+ - uid: 15821
+ components:
+ - type: Transform
+ pos: 48.5,-15.5
+ parent: 2
+ - uid: 15822
+ components:
+ - type: Transform
+ pos: 48.5,-16.5
+ parent: 2
+ - uid: 15823
+ components:
+ - type: Transform
+ pos: 47.5,-16.5
+ parent: 2
+ - uid: 15824
+ components:
+ - type: Transform
+ pos: 47.5,-17.5
+ parent: 2
+ - uid: 15825
+ components:
+ - type: Transform
+ pos: 47.5,-18.5
+ parent: 2
+ - uid: 15826
+ components:
+ - type: Transform
+ pos: 46.5,-18.5
+ parent: 2
+ - uid: 15827
+ components:
+ - type: Transform
+ pos: 46.5,-19.5
+ parent: 2
+ - uid: 15828
+ components:
+ - type: Transform
+ pos: 47.5,-15.5
+ parent: 2
+ - uid: 15829
+ components:
+ - type: Transform
+ pos: 44.5,-20.5
+ parent: 2
+ - uid: 15830
+ components:
+ - type: Transform
+ pos: 43.5,-22.5
+ parent: 2
+ - uid: 15831
+ components:
+ - type: Transform
+ pos: 42.5,-23.5
+ parent: 2
+ - uid: 15832
+ components:
+ - type: Transform
+ pos: 42.5,-22.5
+ parent: 2
+ - uid: 15833
+ components:
+ - type: Transform
+ pos: 43.5,-21.5
+ parent: 2
+ - uid: 15834
+ components:
+ - type: Transform
+ pos: 44.5,-21.5
+ parent: 2
+ - uid: 15835
+ components:
+ - type: Transform
+ pos: 45.5,-20.5
+ parent: 2
+ - uid: 15836
+ components:
+ - type: Transform
+ pos: 46.5,-17.5
+ parent: 2
+ - uid: 15837
+ components:
+ - type: Transform
+ pos: 45.5,-19.5
+ parent: 2
+ - uid: 15838
+ components:
+ - type: Transform
+ pos: 43.5,-20.5
+ parent: 2
+ - uid: 15839
+ components:
+ - type: Transform
+ pos: 42.5,-21.5
+ parent: 2
+ - uid: 15840
+ components:
+ - type: Transform
+ pos: 41.5,-21.5
+ parent: 2
+ - uid: 15841
+ components:
+ - type: Transform
+ pos: 45.5,-17.5
+ parent: 2
+ - uid: 15842
+ components:
+ - type: Transform
+ pos: 45.5,-18.5
+ parent: 2
+ - uid: 15843
+ components:
+ - type: Transform
+ pos: 44.5,-19.5
+ parent: 2
+ - uid: 15844
+ components:
+ - type: Transform
+ pos: 43.5,-19.5
+ parent: 2
+ - uid: 15845
+ components:
+ - type: Transform
+ pos: 46.5,-16.5
+ parent: 2
+ - uid: 15846
+ components:
+ - type: Transform
+ pos: 44.5,-18.5
+ parent: 2
+ - uid: 15847
+ components:
+ - type: Transform
+ pos: 42.5,-20.5
+ parent: 2
+ - uid: 15848
+ components:
+ - type: Transform
+ pos: 45.5,-11.5
+ parent: 2
+ - uid: 15849
+ components:
+ - type: Transform
+ pos: 46.5,-13.5
+ parent: 2
+ - uid: 15850
+ components:
+ - type: Transform
+ pos: 46.5,-14.5
+ parent: 2
+ - uid: 15851
+ components:
+ - type: Transform
+ pos: 46.5,-15.5
+ parent: 2
+ - uid: 15852
+ components:
+ - type: Transform
+ pos: 45.5,-16.5
+ parent: 2
+ - uid: 15853
+ components:
+ - type: Transform
+ pos: 41.5,-20.5
+ parent: 2
+ - uid: 15854
+ components:
+ - type: Transform
+ pos: 39.5,-21.5
+ parent: 2
+ - uid: 15855
+ components:
+ - type: Transform
+ pos: 36.5,-22.5
+ parent: 2
+ - uid: 15856
+ components:
+ - type: Transform
+ pos: 37.5,-22.5
+ parent: 2
+ - uid: 15857
+ components:
+ - type: Transform
+ pos: 38.5,-21.5
+ parent: 2
+ - uid: 15858
+ components:
+ - type: Transform
+ pos: 40.5,-20.5
+ parent: 2
+ - uid: 15859
+ components:
+ - type: Transform
+ pos: 39.5,-20.5
+ parent: 2
+ - uid: 15860
+ components:
+ - type: Transform
+ pos: 37.5,-21.5
+ parent: 2
+ - uid: 15861
+ components:
+ - type: Transform
+ pos: 31.5,-26.5
+ parent: 2
+ - uid: 15862
+ components:
+ - type: Transform
+ pos: 32.5,-25.5
+ parent: 2
+ - uid: 15863
+ components:
+ - type: Transform
+ pos: 33.5,-24.5
+ parent: 2
+ - uid: 15864
+ components:
+ - type: Transform
+ pos: 34.5,-23.5
+ parent: 2
+ - uid: 15865
+ components:
+ - type: Transform
+ pos: 35.5,-23.5
+ parent: 2
+ - uid: 15866
+ components:
+ - type: Transform
+ pos: 34.5,-24.5
+ parent: 2
+ - uid: 15867
+ components:
+ - type: Transform
+ pos: 32.5,-23.5
+ parent: 2
+ - uid: 15868
+ components:
+ - type: Transform
+ pos: 33.5,-23.5
+ parent: 2
+ - uid: 15869
+ components:
+ - type: Transform
+ pos: 32.5,-24.5
+ parent: 2
+ - uid: 15870
+ components:
+ - type: Transform
+ pos: 31.5,-24.5
+ parent: 2
+ - uid: 15871
+ components:
+ - type: Transform
+ pos: 31.5,-25.5
+ parent: 2
+ - uid: 15872
+ components:
+ - type: Transform
+ pos: 35.5,-22.5
+ parent: 2
+ - uid: 15873
+ components:
+ - type: Transform
+ pos: 34.5,-22.5
+ parent: 2
+ - uid: 15874
+ components:
+ - type: Transform
+ pos: 36.5,-21.5
+ parent: 2
+ - uid: 15875
+ components:
+ - type: Transform
+ pos: 44.5,-9.5
+ parent: 2
+ - uid: 15876
+ components:
+ - type: Transform
+ pos: 43.5,-9.5
+ parent: 2
+ - uid: 15877
+ components:
+ - type: Transform
+ pos: 43.5,-8.5
+ parent: 2
+ - uid: 15878
+ components:
+ - type: Transform
+ pos: 43.5,-7.5
+ parent: 2
+ - uid: 15879
+ components:
+ - type: Transform
+ pos: 44.5,-10.5
+ parent: 2
+ - uid: 15880
+ components:
+ - type: Transform
+ pos: 45.5,-12.5
+ parent: 2
+ - uid: 15881
+ components:
+ - type: Transform
+ pos: 42.5,-8.5
+ parent: 2
+ - uid: 15882
+ components:
+ - type: Transform
+ pos: 43.5,-6.5
+ parent: 2
+ - uid: 15883
+ components:
+ - type: Transform
+ pos: 42.5,-7.5
+ parent: 2
+ - uid: 15884
+ components:
+ - type: Transform
+ pos: 45.5,-13.5
+ parent: 2
+ - uid: 15885
+ components:
+ - type: Transform
+ pos: 30.5,-27.5
+ parent: 2
+ - uid: 15886
+ components:
+ - type: Transform
+ pos: 30.5,-26.5
+ parent: 2
+ - uid: 15887
+ components:
+ - type: Transform
+ pos: 30.5,-25.5
+ parent: 2
+ - uid: 15888
+ components:
+ - type: Transform
+ pos: 29.5,-27.5
+ parent: 2
+ - uid: 15893
+ components:
+ - type: Transform
+ pos: 12.5,-16.5
+ parent: 2
+ - uid: 15894
+ components:
+ - type: Transform
+ pos: 17.5,-19.5
+ parent: 2
+ - uid: 15895
+ components:
+ - type: Transform
+ pos: 16.5,-18.5
+ parent: 2
+ - uid: 15896
+ components:
+ - type: Transform
+ pos: 14.5,-17.5
+ parent: 2
+ - uid: 15897
+ components:
+ - type: Transform
+ pos: 20.5,-19.5
+ parent: 2
+ - uid: 15898
+ components:
+ - type: Transform
+ pos: 28.5,-15.5
+ parent: 2
+ - uid: 15899
+ components:
+ - type: Transform
+ pos: 28.5,-16.5
+ parent: 2
+ - uid: 15900
+ components:
+ - type: Transform
+ pos: 27.5,-17.5
+ parent: 2
+ - uid: 15901
+ components:
+ - type: Transform
+ pos: 26.5,-17.5
+ parent: 2
+ - uid: 15902
+ components:
+ - type: Transform
+ pos: 27.5,-14.5
+ parent: 2
+ - uid: 15903
+ components:
+ - type: Transform
+ pos: 28.5,-14.5
+ parent: 2
+ - uid: 15904
+ components:
+ - type: Transform
+ pos: 32.5,-15.5
+ parent: 2
+ - uid: 15905
+ components:
+ - type: Transform
+ pos: 33.5,-17.5
+ parent: 2
+ - uid: 15906
+ components:
+ - type: Transform
+ pos: 38.5,-20.5
+ parent: 2
+ - uid: 15907
+ components:
+ - type: Transform
+ pos: 42.5,-19.5
+ parent: 2
+ - uid: 15908
+ components:
+ - type: Transform
+ pos: 43.5,-18.5
+ parent: 2
+ - uid: 15909
+ components:
+ - type: Transform
+ pos: 44.5,-17.5
+ parent: 2
+ - uid: 15910
+ components:
+ - type: Transform
+ pos: 45.5,-14.5
+ parent: 2
+ - uid: 15911
+ components:
+ - type: Transform
+ pos: 45.5,-15.5
+ parent: 2
+ - uid: 15925
+ components:
+ - type: Transform
+ pos: 1.5,-27.5
+ parent: 2
+ - uid: 15930
+ components:
+ - type: Transform
+ pos: 1.5,-28.5
+ parent: 2
+ - uid: 15931
+ components:
+ - type: Transform
+ pos: 0.5,-28.5
+ parent: 2
+ - uid: 15932
+ components:
+ - type: Transform
+ pos: 0.5,-27.5
+ parent: 2
+ - uid: 15933
+ components:
+ - type: Transform
+ pos: 2.5,-28.5
+ parent: 2
+ - uid: 15934
+ components:
+ - type: Transform
+ pos: 2.5,-27.5
+ parent: 2
+ - uid: 15935
+ components:
+ - type: Transform
+ pos: 4.5,-25.5
+ parent: 2
+ - uid: 15936
+ components:
+ - type: Transform
+ pos: 3.5,-26.5
+ parent: 2
+ - uid: 15937
+ components:
+ - type: Transform
+ pos: 4.5,-27.5
+ parent: 2
+ - uid: 15938
+ components:
+ - type: Transform
+ pos: 4.5,-26.5
+ parent: 2
+ - uid: 15939
+ components:
+ - type: Transform
+ pos: 2.5,-26.5
+ parent: 2
+ - uid: 15940
+ components:
+ - type: Transform
+ pos: 3.5,-27.5
+ parent: 2
+ - uid: 15941
+ components:
+ - type: Transform
+ pos: 5.5,-26.5
+ parent: 2
+ - uid: 15942
+ components:
+ - type: Transform
+ pos: 5.5,-25.5
+ parent: 2
+ - uid: 15943
+ components:
+ - type: Transform
+ pos: 3.5,-25.5
+ parent: 2
+ - uid: 15944
+ components:
+ - type: Transform
+ pos: 1.5,-26.5
+ parent: 2
+ - uid: 15945
+ components:
+ - type: Transform
+ pos: 0.5,-26.5
+ parent: 2
+ - uid: 15946
+ components:
+ - type: Transform
+ pos: 0.5,-29.5
+ parent: 2
+ - uid: 15947
+ components:
+ - type: Transform
+ pos: -0.5,-27.5
+ parent: 2
+ - uid: 15948
+ components:
+ - type: Transform
+ pos: -0.5,-29.5
+ parent: 2
+ - uid: 15949
+ components:
+ - type: Transform
+ pos: -0.5,-28.5
+ parent: 2
+ - uid: 15950
+ components:
+ - type: Transform
+ pos: -1.5,-29.5
+ parent: 2
+ - uid: 15951
+ components:
+ - type: Transform
+ pos: -1.5,-28.5
+ parent: 2
+ - uid: 15952
+ components:
+ - type: Transform
+ pos: -2.5,-29.5
+ parent: 2
+ - uid: 15953
+ components:
+ - type: Transform
+ pos: -2.5,-28.5
+ parent: 2
+ - uid: 15954
+ components:
+ - type: Transform
+ pos: 6.5,-25.5
+ parent: 2
+ - uid: 15955
+ components:
+ - type: Transform
+ pos: 6.5,-24.5
+ parent: 2
+ - uid: 15956
+ components:
+ - type: Transform
+ pos: 5.5,-24.5
+ parent: 2
+ - uid: 15957
+ components:
+ - type: Transform
+ pos: -2.5,-30.5
+ parent: 2
+ - uid: 15958
+ components:
+ - type: Transform
+ pos: -3.5,-30.5
+ parent: 2
+ - uid: 15959
+ components:
+ - type: Transform
+ pos: -3.5,-29.5
+ parent: 2
+- proto: CP14BiomeSpawnerGrassland
+ entities:
+ - uid: 168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-57.5
+ parent: 2
+ - uid: 1594
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -65.5,-0.5
+ parent: 2
+ - uid: 1595
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -64.5,-0.5
+ parent: 2
+ - uid: 1596
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,47.5
+ parent: 2
+ - uid: 1597
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,48.5
+ parent: 2
+ - uid: 1598
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -48.5,45.5
+ parent: 2
+ - uid: 4915
+ components:
+ - type: Transform
+ pos: -71.5,-20.5
+ parent: 2
+ - uid: 4925
+ components:
+ - type: Transform
+ pos: -76.5,-23.5
+ parent: 2
+ - uid: 5387
+ components:
+ - type: Transform
+ pos: -76.5,-22.5
+ parent: 2
+ - uid: 6360
+ components:
+ - type: Transform
+ pos: -76.5,-21.5
+ parent: 2
+ - uid: 6361
+ components:
+ - type: Transform
+ pos: -76.5,-20.5
+ parent: 2
+ - uid: 6363
+ components:
+ - type: Transform
+ pos: -75.5,-22.5
+ parent: 2
+ - uid: 6364
+ components:
+ - type: Transform
+ pos: -75.5,-21.5
+ parent: 2
+ - uid: 6365
+ components:
+ - type: Transform
+ pos: -75.5,-20.5
+ parent: 2
+ - uid: 6366
+ components:
+ - type: Transform
+ pos: -74.5,-23.5
+ parent: 2
+ - uid: 6367
+ components:
+ - type: Transform
+ pos: -74.5,-22.5
+ parent: 2
+ - uid: 6368
+ components:
+ - type: Transform
+ pos: -74.5,-21.5
+ parent: 2
+ - uid: 6369
+ components:
+ - type: Transform
+ pos: -74.5,-20.5
+ parent: 2
+ - uid: 6370
+ components:
+ - type: Transform
+ pos: -73.5,-23.5
+ parent: 2
+ - uid: 6371
+ components:
+ - type: Transform
+ pos: -73.5,-22.5
+ parent: 2
+ - uid: 6372
+ components:
+ - type: Transform
+ pos: -73.5,-21.5
+ parent: 2
+ - uid: 6373
+ components:
+ - type: Transform
+ pos: -73.5,-20.5
+ parent: 2
+ - uid: 6374
+ components:
+ - type: Transform
+ pos: -72.5,-23.5
+ parent: 2
+ - uid: 6375
+ components:
+ - type: Transform
+ pos: -72.5,-22.5
+ parent: 2
+ - uid: 6377
+ components:
+ - type: Transform
+ pos: -72.5,-20.5
+ parent: 2
+ - uid: 6378
+ components:
+ - type: Transform
+ pos: -71.5,-23.5
+ parent: 2
+ - uid: 6379
+ components:
+ - type: Transform
+ pos: -71.5,-22.5
+ parent: 2
+ - uid: 6380
+ components:
+ - type: Transform
+ pos: -71.5,-21.5
+ parent: 2
+ - uid: 6381
+ components:
+ - type: Transform
+ pos: -67.5,-17.5
+ parent: 2
+ - uid: 6382
+ components:
+ - type: Transform
+ pos: -67.5,-18.5
+ parent: 2
+ - uid: 6383
+ components:
+ - type: Transform
+ pos: -66.5,-21.5
+ parent: 2
+ - uid: 6385
+ components:
+ - type: Transform
+ pos: -66.5,-20.5
+ parent: 2
+ - uid: 6386
+ components:
+ - type: Transform
+ pos: -66.5,-18.5
+ parent: 2
+ - uid: 6387
+ components:
+ - type: Transform
+ pos: -66.5,-17.5
+ parent: 2
+ - uid: 6388
+ components:
+ - type: Transform
+ pos: -65.5,-21.5
+ parent: 2
+ - uid: 6389
+ components:
+ - type: Transform
+ pos: -64.5,-19.5
+ parent: 2
+ - uid: 6390
+ components:
+ - type: Transform
+ pos: -70.5,-19.5
+ parent: 2
+ - uid: 6391
+ components:
+ - type: Transform
+ pos: -70.5,-18.5
+ parent: 2
+ - uid: 6392
+ components:
+ - type: Transform
+ pos: -70.5,-17.5
+ parent: 2
+ - uid: 6393
+ components:
+ - type: Transform
+ pos: -69.5,-21.5
+ parent: 2
+ - uid: 6394
+ components:
+ - type: Transform
+ pos: -69.5,-19.5
+ parent: 2
+ - uid: 6395
+ components:
+ - type: Transform
+ pos: -69.5,-18.5
+ parent: 2
+ - uid: 6396
+ components:
+ - type: Transform
+ pos: -69.5,-20.5
+ parent: 2
+ - uid: 6397
+ components:
+ - type: Transform
+ pos: -68.5,-21.5
+ parent: 2
+ - uid: 6398
+ components:
+ - type: Transform
+ pos: -68.5,-20.5
+ parent: 2
+ - uid: 6399
+ components:
+ - type: Transform
+ pos: -69.5,-17.5
+ parent: 2
+ - uid: 6400
+ components:
+ - type: Transform
+ pos: -68.5,-18.5
+ parent: 2
+ - uid: 6401
+ components:
+ - type: Transform
+ pos: -68.5,-17.5
+ parent: 2
+ - uid: 6402
+ components:
+ - type: Transform
+ pos: -68.5,-19.5
+ parent: 2
+ - uid: 6403
+ components:
+ - type: Transform
+ pos: -67.5,-21.5
+ parent: 2
+ - uid: 6404
+ components:
+ - type: Transform
+ pos: -67.5,-20.5
+ parent: 2
+ - uid: 6405
+ components:
+ - type: Transform
+ pos: -67.5,-19.5
+ parent: 2
+ - uid: 6406
+ components:
+ - type: Transform
+ pos: -65.5,-20.5
+ parent: 2
+ - uid: 6407
+ components:
+ - type: Transform
+ pos: -65.5,-19.5
+ parent: 2
+ - uid: 6408
+ components:
+ - type: Transform
+ pos: -65.5,-18.5
+ parent: 2
+ - uid: 6409
+ components:
+ - type: Transform
+ pos: -65.5,-17.5
+ parent: 2
+ - uid: 6410
+ components:
+ - type: Transform
+ pos: -64.5,-21.5
+ parent: 2
+ - uid: 6411
+ components:
+ - type: Transform
+ pos: -64.5,-20.5
+ parent: 2
+ - uid: 6412
+ components:
+ - type: Transform
+ pos: -64.5,-18.5
+ parent: 2
+ - uid: 6413
+ components:
+ - type: Transform
+ pos: -64.5,-17.5
+ parent: 2
+ - uid: 6414
+ components:
+ - type: Transform
+ pos: -70.5,-20.5
+ parent: 2
+ - uid: 6415
+ components:
+ - type: Transform
+ pos: -70.5,-21.5
+ parent: 2
+ - uid: 6416
+ components:
+ - type: Transform
+ pos: -71.5,-17.5
+ parent: 2
+ - uid: 6417
+ components:
+ - type: Transform
+ pos: -71.5,-18.5
+ parent: 2
+ - uid: 6418
+ components:
+ - type: Transform
+ pos: -71.5,-19.5
+ parent: 2
+ - uid: 6419
+ components:
+ - type: Transform
+ pos: -66.5,-22.5
+ parent: 2
+ - uid: 6420
+ components:
+ - type: Transform
+ pos: -66.5,-23.5
+ parent: 2
+ - uid: 6421
+ components:
+ - type: Transform
+ pos: -66.5,-24.5
+ parent: 2
+ - uid: 6422
+ components:
+ - type: Transform
+ pos: -66.5,-25.5
+ parent: 2
+ - uid: 6423
+ components:
+ - type: Transform
+ pos: -66.5,-26.5
+ parent: 2
+ - uid: 6424
+ components:
+ - type: Transform
+ pos: -66.5,-27.5
+ parent: 2
+ - uid: 6425
+ components:
+ - type: Transform
+ pos: -65.5,-22.5
+ parent: 2
+ - uid: 6426
+ components:
+ - type: Transform
+ pos: -65.5,-23.5
+ parent: 2
+ - uid: 6427
+ components:
+ - type: Transform
+ pos: -65.5,-24.5
+ parent: 2
+ - uid: 6428
+ components:
+ - type: Transform
+ pos: -65.5,-25.5
+ parent: 2
+ - uid: 6429
+ components:
+ - type: Transform
+ pos: -65.5,-26.5
+ parent: 2
+ - uid: 6430
+ components:
+ - type: Transform
+ pos: -65.5,-27.5
+ parent: 2
+ - uid: 6431
+ components:
+ - type: Transform
+ pos: -64.5,-22.5
+ parent: 2
+ - uid: 6432
+ components:
+ - type: Transform
+ pos: -64.5,-23.5
+ parent: 2
+ - uid: 6433
+ components:
+ - type: Transform
+ pos: -64.5,-24.5
+ parent: 2
+ - uid: 6435
+ components:
+ - type: Transform
+ pos: -64.5,-26.5
+ parent: 2
+ - uid: 6436
+ components:
+ - type: Transform
+ pos: -64.5,-25.5
+ parent: 2
+ - uid: 6437
+ components:
+ - type: Transform
+ pos: -63.5,-21.5
+ parent: 2
+ - uid: 6438
+ components:
+ - type: Transform
+ pos: -63.5,-22.5
+ parent: 2
+ - uid: 6439
+ components:
+ - type: Transform
+ pos: -63.5,-24.5
+ parent: 2
+ - uid: 6440
+ components:
+ - type: Transform
+ pos: -63.5,-23.5
+ parent: 2
+ - uid: 6441
+ components:
+ - type: Transform
+ pos: -63.5,-26.5
+ parent: 2
+ - uid: 6442
+ components:
+ - type: Transform
+ pos: -63.5,-27.5
+ parent: 2
+ - uid: 6443
+ components:
+ - type: Transform
+ pos: -63.5,-25.5
+ parent: 2
+ - uid: 6444
+ components:
+ - type: Transform
+ pos: -67.5,-31.5
+ parent: 2
+ - uid: 6445
+ components:
+ - type: Transform
+ pos: -65.5,-31.5
+ parent: 2
+ - uid: 6446
+ components:
+ - type: Transform
+ pos: -66.5,-28.5
+ parent: 2
+ - uid: 6447
+ components:
+ - type: Transform
+ pos: -66.5,-29.5
+ parent: 2
+ - uid: 6448
+ components:
+ - type: Transform
+ pos: -66.5,-30.5
+ parent: 2
+ - uid: 6449
+ components:
+ - type: Transform
+ pos: -66.5,-31.5
+ parent: 2
+ - uid: 6450
+ components:
+ - type: Transform
+ pos: -67.5,-28.5
+ parent: 2
+ - uid: 6451
+ components:
+ - type: Transform
+ pos: -67.5,-29.5
+ parent: 2
+ - uid: 6452
+ components:
+ - type: Transform
+ pos: -67.5,-30.5
+ parent: 2
+ - uid: 6453
+ components:
+ - type: Transform
+ pos: -64.5,-28.5
+ parent: 2
+ - uid: 6454
+ components:
+ - type: Transform
+ pos: -64.5,-29.5
+ parent: 2
+ - uid: 6455
+ components:
+ - type: Transform
+ pos: -64.5,-30.5
+ parent: 2
+ - uid: 6456
+ components:
+ - type: Transform
+ pos: -64.5,-31.5
+ parent: 2
+ - uid: 6458
+ components:
+ - type: Transform
+ pos: -65.5,-29.5
+ parent: 2
+ - uid: 6459
+ components:
+ - type: Transform
+ pos: -65.5,-30.5
+ parent: 2
+ - uid: 6460
+ components:
+ - type: Transform
+ pos: -66.5,-32.5
+ parent: 2
+ - uid: 6461
+ components:
+ - type: Transform
+ pos: -66.5,-33.5
+ parent: 2
+ - uid: 6462
+ components:
+ - type: Transform
+ pos: -67.5,-32.5
+ parent: 2
+ - uid: 6463
+ components:
+ - type: Transform
+ pos: -67.5,-33.5
+ parent: 2
+ - uid: 6464
+ components:
+ - type: Transform
+ pos: -68.5,-30.5
+ parent: 2
+ - uid: 6465
+ components:
+ - type: Transform
+ pos: -68.5,-31.5
+ parent: 2
+ - uid: 6466
+ components:
+ - type: Transform
+ pos: -68.5,-32.5
+ parent: 2
+ - uid: 6467
+ components:
+ - type: Transform
+ pos: -68.5,-33.5
+ parent: 2
+ - uid: 6468
+ components:
+ - type: Transform
+ pos: -60.5,-18.5
+ parent: 2
+ - uid: 6472
+ components:
+ - type: Transform
+ pos: -60.5,-14.5
+ parent: 2
+ - uid: 6473
+ components:
+ - type: Transform
+ pos: -60.5,-20.5
+ parent: 2
+ - uid: 6474
+ components:
+ - type: Transform
+ pos: -61.5,-18.5
+ parent: 2
+ - uid: 6475
+ components:
+ - type: Transform
+ pos: -61.5,-17.5
+ parent: 2
+ - uid: 6478
+ components:
+ - type: Transform
+ pos: -61.5,-14.5
+ parent: 2
+ - uid: 6479
+ components:
+ - type: Transform
+ pos: -60.5,-22.5
+ parent: 2
+ - uid: 6480
+ components:
+ - type: Transform
+ pos: -60.5,-21.5
+ parent: 2
+ - uid: 6481
+ components:
+ - type: Transform
+ pos: -60.5,-19.5
+ parent: 2
+ - uid: 6482
+ components:
+ - type: Transform
+ pos: -62.5,-17.5
+ parent: 2
+ - uid: 6483
+ components:
+ - type: Transform
+ pos: -62.5,-16.5
+ parent: 2
+ - uid: 6485
+ components:
+ - type: Transform
+ pos: -62.5,-14.5
+ parent: 2
+ - uid: 6486
+ components:
+ - type: Transform
+ pos: -61.5,-22.5
+ parent: 2
+ - uid: 6487
+ components:
+ - type: Transform
+ pos: -61.5,-21.5
+ parent: 2
+ - uid: 6488
+ components:
+ - type: Transform
+ pos: -61.5,-20.5
+ parent: 2
+ - uid: 6489
+ components:
+ - type: Transform
+ pos: -61.5,-19.5
+ parent: 2
+ - uid: 6490
+ components:
+ - type: Transform
+ pos: -63.5,-16.5
+ parent: 2
+ - uid: 6491
+ components:
+ - type: Transform
+ pos: -63.5,-15.5
+ parent: 2
+ - uid: 6492
+ components:
+ - type: Transform
+ pos: -63.5,-14.5
+ parent: 2
+ - uid: 6493
+ components:
+ - type: Transform
+ pos: -62.5,-22.5
+ parent: 2
+ - uid: 6495
+ components:
+ - type: Transform
+ pos: -62.5,-20.5
+ parent: 2
+ - uid: 6496
+ components:
+ - type: Transform
+ pos: -62.5,-19.5
+ parent: 2
+ - uid: 6497
+ components:
+ - type: Transform
+ pos: -62.5,-18.5
+ parent: 2
+ - uid: 6498
+ components:
+ - type: Transform
+ pos: -64.5,-15.5
+ parent: 2
+ - uid: 6499
+ components:
+ - type: Transform
+ pos: -64.5,-14.5
+ parent: 2
+ - uid: 6500
+ components:
+ - type: Transform
+ pos: -63.5,-20.5
+ parent: 2
+ - uid: 6501
+ components:
+ - type: Transform
+ pos: -63.5,-19.5
+ parent: 2
+ - uid: 6502
+ components:
+ - type: Transform
+ pos: -63.5,-18.5
+ parent: 2
+ - uid: 6503
+ components:
+ - type: Transform
+ pos: -63.5,-17.5
+ parent: 2
+ - uid: 6504
+ components:
+ - type: Transform
+ pos: -64.5,-16.5
+ parent: 2
+ - uid: 6505
+ components:
+ - type: Transform
+ pos: -68.5,-16.5
+ parent: 2
+ - uid: 6506
+ components:
+ - type: Transform
+ pos: -68.5,-15.5
+ parent: 2
+ - uid: 6507
+ components:
+ - type: Transform
+ pos: -68.5,-14.5
+ parent: 2
+ - uid: 6508
+ components:
+ - type: Transform
+ pos: -68.5,-13.5
+ parent: 2
+ - uid: 6509
+ components:
+ - type: Transform
+ pos: -68.5,-12.5
+ parent: 2
+ - uid: 6510
+ components:
+ - type: Transform
+ pos: -68.5,-11.5
+ parent: 2
+ - uid: 6511
+ components:
+ - type: Transform
+ pos: -68.5,-10.5
+ parent: 2
+ - uid: 6512
+ components:
+ - type: Transform
+ pos: -68.5,-9.5
+ parent: 2
+ - uid: 6513
+ components:
+ - type: Transform
+ pos: -68.5,-8.5
+ parent: 2
+ - uid: 6514
+ components:
+ - type: Transform
+ pos: -68.5,-7.5
+ parent: 2
+ - uid: 6515
+ components:
+ - type: Transform
+ pos: -68.5,-6.5
+ parent: 2
+ - uid: 6516
+ components:
+ - type: Transform
+ pos: -67.5,-16.5
+ parent: 2
+ - uid: 6517
+ components:
+ - type: Transform
+ pos: -67.5,-15.5
+ parent: 2
+ - uid: 6518
+ components:
+ - type: Transform
+ pos: -67.5,-14.5
+ parent: 2
+ - uid: 6519
+ components:
+ - type: Transform
+ pos: -67.5,-13.5
+ parent: 2
+ - uid: 6520
+ components:
+ - type: Transform
+ pos: -63.5,-7.5
+ parent: 2
+ - uid: 6521
+ components:
+ - type: Transform
+ pos: -63.5,-13.5
+ parent: 2
+ - uid: 6522
+ components:
+ - type: Transform
+ pos: -63.5,-12.5
+ parent: 2
+ - uid: 6523
+ components:
+ - type: Transform
+ pos: -63.5,-11.5
+ parent: 2
+ - uid: 6524
+ components:
+ - type: Transform
+ pos: -63.5,-9.5
+ parent: 2
+ - uid: 6525
+ components:
+ - type: Transform
+ pos: -63.5,-8.5
+ parent: 2
+ - uid: 6526
+ components:
+ - type: Transform
+ pos: -65.5,-8.5
+ parent: 2
+ - uid: 6527
+ components:
+ - type: Transform
+ pos: -64.5,-11.5
+ parent: 2
+ - uid: 6528
+ components:
+ - type: Transform
+ pos: -64.5,-12.5
+ parent: 2
+ - uid: 6529
+ components:
+ - type: Transform
+ pos: -64.5,-10.5
+ parent: 2
+ - uid: 6530
+ components:
+ - type: Transform
+ pos: -64.5,-9.5
+ parent: 2
+ - uid: 6531
+ components:
+ - type: Transform
+ pos: -64.5,-8.5
+ parent: 2
+ - uid: 6532
+ components:
+ - type: Transform
+ pos: -64.5,-7.5
+ parent: 2
+ - uid: 6533
+ components:
+ - type: Transform
+ pos: -64.5,-6.5
+ parent: 2
+ - uid: 6534
+ components:
+ - type: Transform
+ pos: -65.5,-10.5
+ parent: 2
+ - uid: 6535
+ components:
+ - type: Transform
+ pos: -65.5,-9.5
+ parent: 2
+ - uid: 6536
+ components:
+ - type: Transform
+ pos: -65.5,-6.5
+ parent: 2
+ - uid: 6537
+ components:
+ - type: Transform
+ pos: -65.5,-7.5
+ parent: 2
+ - uid: 6538
+ components:
+ - type: Transform
+ pos: -64.5,-13.5
+ parent: 2
+ - uid: 6539
+ components:
+ - type: Transform
+ pos: -66.5,-7.5
+ parent: 2
+ - uid: 6540
+ components:
+ - type: Transform
+ pos: -66.5,-6.5
+ parent: 2
+ - uid: 6541
+ components:
+ - type: Transform
+ pos: -65.5,-16.5
+ parent: 2
+ - uid: 6542
+ components:
+ - type: Transform
+ pos: -65.5,-15.5
+ parent: 2
+ - uid: 6543
+ components:
+ - type: Transform
+ pos: -65.5,-14.5
+ parent: 2
+ - uid: 6544
+ components:
+ - type: Transform
+ pos: -65.5,-13.5
+ parent: 2
+ - uid: 6545
+ components:
+ - type: Transform
+ pos: -65.5,-12.5
+ parent: 2
+ - uid: 6546
+ components:
+ - type: Transform
+ pos: -65.5,-11.5
+ parent: 2
+ - uid: 6547
+ components:
+ - type: Transform
+ pos: -66.5,-15.5
+ parent: 2
+ - uid: 6549
+ components:
+ - type: Transform
+ pos: -66.5,-13.5
+ parent: 2
+ - uid: 6550
+ components:
+ - type: Transform
+ pos: -66.5,-12.5
+ parent: 2
+ - uid: 6551
+ components:
+ - type: Transform
+ pos: -66.5,-11.5
+ parent: 2
+ - uid: 6552
+ components:
+ - type: Transform
+ pos: -66.5,-10.5
+ parent: 2
+ - uid: 6553
+ components:
+ - type: Transform
+ pos: -66.5,-9.5
+ parent: 2
+ - uid: 6554
+ components:
+ - type: Transform
+ pos: -66.5,-8.5
+ parent: 2
+ - uid: 6555
+ components:
+ - type: Transform
+ pos: -67.5,-12.5
+ parent: 2
+ - uid: 6556
+ components:
+ - type: Transform
+ pos: -67.5,-11.5
+ parent: 2
+ - uid: 6557
+ components:
+ - type: Transform
+ pos: -67.5,-10.5
+ parent: 2
+ - uid: 6558
+ components:
+ - type: Transform
+ pos: -67.5,-9.5
+ parent: 2
+ - uid: 6559
+ components:
+ - type: Transform
+ pos: -67.5,-8.5
+ parent: 2
+ - uid: 6560
+ components:
+ - type: Transform
+ pos: -67.5,-7.5
+ parent: 2
+ - uid: 6561
+ components:
+ - type: Transform
+ pos: -67.5,-6.5
+ parent: 2
+ - uid: 6562
+ components:
+ - type: Transform
+ pos: -66.5,-16.5
+ parent: 2
+ - uid: 6563
+ components:
+ - type: Transform
+ pos: -61.5,-13.5
+ parent: 2
+ - uid: 6564
+ components:
+ - type: Transform
+ pos: -61.5,-12.5
+ parent: 2
+ - uid: 6565
+ components:
+ - type: Transform
+ pos: -61.5,-11.5
+ parent: 2
+ - uid: 6566
+ components:
+ - type: Transform
+ pos: -61.5,-10.5
+ parent: 2
+ - uid: 6567
+ components:
+ - type: Transform
+ pos: -61.5,-9.5
+ parent: 2
+ - uid: 6568
+ components:
+ - type: Transform
+ pos: -61.5,-8.5
+ parent: 2
+ - uid: 6569
+ components:
+ - type: Transform
+ pos: -61.5,-7.5
+ parent: 2
+ - uid: 6570
+ components:
+ - type: Transform
+ pos: -61.5,-6.5
+ parent: 2
+ - uid: 6571
+ components:
+ - type: Transform
+ pos: -62.5,-10.5
+ parent: 2
+ - uid: 6572
+ components:
+ - type: Transform
+ pos: -62.5,-9.5
+ parent: 2
+ - uid: 6573
+ components:
+ - type: Transform
+ pos: -62.5,-8.5
+ parent: 2
+ - uid: 6575
+ components:
+ - type: Transform
+ pos: -62.5,-6.5
+ parent: 2
+ - uid: 6576
+ components:
+ - type: Transform
+ pos: -63.5,-6.5
+ parent: 2
+ - uid: 6577
+ components:
+ - type: Transform
+ pos: -63.5,-10.5
+ parent: 2
+ - uid: 6578
+ components:
+ - type: Transform
+ pos: -62.5,-13.5
+ parent: 2
+ - uid: 6579
+ components:
+ - type: Transform
+ pos: -62.5,-12.5
+ parent: 2
+ - uid: 6580
+ components:
+ - type: Transform
+ pos: -62.5,-11.5
+ parent: 2
+ - uid: 6581
+ components:
+ - type: Transform
+ pos: -65.5,-5.5
+ parent: 2
+ - uid: 6582
+ components:
+ - type: Transform
+ pos: -65.5,-4.5
+ parent: 2
+ - uid: 6583
+ components:
+ - type: Transform
+ pos: -65.5,-3.5
+ parent: 2
+ - uid: 6584
+ components:
+ - type: Transform
+ pos: -60.5,-12.5
+ parent: 2
+ - uid: 6585
+ components:
+ - type: Transform
+ pos: -60.5,-11.5
+ parent: 2
+ - uid: 6586
+ components:
+ - type: Transform
+ pos: -60.5,-10.5
+ parent: 2
+ - uid: 6587
+ components:
+ - type: Transform
+ pos: -60.5,-9.5
+ parent: 2
+ - uid: 6588
+ components:
+ - type: Transform
+ pos: -60.5,-8.5
+ parent: 2
+ - uid: 6589
+ components:
+ - type: Transform
+ pos: -60.5,-7.5
+ parent: 2
+ - uid: 6590
+ components:
+ - type: Transform
+ pos: -60.5,-6.5
+ parent: 2
+ - uid: 6591
+ components:
+ - type: Transform
+ pos: -64.5,-5.5
+ parent: 2
+ - uid: 6592
+ components:
+ - type: Transform
+ pos: -64.5,-4.5
+ parent: 2
+ - uid: 6593
+ components:
+ - type: Transform
+ pos: -64.5,-3.5
+ parent: 2
+ - uid: 6594
+ components:
+ - type: Transform
+ pos: -63.5,-3.5
+ parent: 2
+ - uid: 6595
+ components:
+ - type: Transform
+ pos: -63.5,-5.5
+ parent: 2
+ - uid: 6596
+ components:
+ - type: Transform
+ pos: -63.5,-4.5
+ parent: 2
+ - uid: 6597
+ components:
+ - type: Transform
+ pos: -62.5,-5.5
+ parent: 2
+ - uid: 6598
+ components:
+ - type: Transform
+ pos: -62.5,-4.5
+ parent: 2
+ - uid: 6599
+ components:
+ - type: Transform
+ pos: -62.5,-3.5
+ parent: 2
+ - uid: 6600
+ components:
+ - type: Transform
+ pos: -61.5,-5.5
+ parent: 2
+ - uid: 6601
+ components:
+ - type: Transform
+ pos: -61.5,-4.5
+ parent: 2
+ - uid: 6602
+ components:
+ - type: Transform
+ pos: -61.5,-3.5
+ parent: 2
+ - uid: 6603
+ components:
+ - type: Transform
+ pos: -60.5,-5.5
+ parent: 2
+ - uid: 6604
+ components:
+ - type: Transform
+ pos: -60.5,-4.5
+ parent: 2
+ - uid: 6605
+ components:
+ - type: Transform
+ pos: -60.5,-3.5
+ parent: 2
+ - uid: 6606
+ components:
+ - type: Transform
+ pos: -62.5,-2.5
+ parent: 2
+ - uid: 6607
+ components:
+ - type: Transform
+ pos: -62.5,-1.5
+ parent: 2
+ - uid: 6608
+ components:
+ - type: Transform
+ pos: -62.5,-0.5
+ parent: 2
+ - uid: 6609
+ components:
+ - type: Transform
+ pos: -62.5,0.5
+ parent: 2
+ - uid: 6610
+ components:
+ - type: Transform
+ pos: -62.5,1.5
+ parent: 2
+ - uid: 6611
+ components:
+ - type: Transform
+ pos: -62.5,2.5
+ parent: 2
+ - uid: 6612
+ components:
+ - type: Transform
+ pos: -62.5,3.5
+ parent: 2
+ - uid: 6613
+ components:
+ - type: Transform
+ pos: -61.5,-2.5
+ parent: 2
+ - uid: 6614
+ components:
+ - type: Transform
+ pos: -61.5,-1.5
+ parent: 2
+ - uid: 6615
+ components:
+ - type: Transform
+ pos: -61.5,-0.5
+ parent: 2
+ - uid: 6616
+ components:
+ - type: Transform
+ pos: -61.5,0.5
+ parent: 2
+ - uid: 6617
+ components:
+ - type: Transform
+ pos: -61.5,1.5
+ parent: 2
+ - uid: 6618
+ components:
+ - type: Transform
+ pos: -61.5,2.5
+ parent: 2
+ - uid: 6619
+ components:
+ - type: Transform
+ pos: -61.5,3.5
+ parent: 2
+ - uid: 6620
+ components:
+ - type: Transform
+ pos: -67.5,-5.5
+ parent: 2
+ - uid: 6621
+ components:
+ - type: Transform
+ pos: -67.5,-0.5
+ parent: 2
+ - uid: 6622
+ components:
+ - type: Transform
+ pos: -63.5,-0.5
+ parent: 2
+ - uid: 6623
+ components:
+ - type: Transform
+ pos: -63.5,-1.5
+ parent: 2
+ - uid: 6624
+ components:
+ - type: Transform
+ pos: -63.5,-2.5
+ parent: 2
+ - uid: 6625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,97.5
+ parent: 2
+ - uid: 6626
+ components:
+ - type: Transform
+ pos: -66.5,-3.5
+ parent: 2
+ - uid: 6627
+ components:
+ - type: Transform
+ pos: -66.5,-4.5
+ parent: 2
+ - uid: 6628
+ components:
+ - type: Transform
+ pos: -66.5,-5.5
+ parent: 2
+ - uid: 6629
+ components:
+ - type: Transform
+ pos: -67.5,-1.5
+ parent: 2
+ - uid: 6630
+ components:
+ - type: Transform
+ pos: -67.5,-2.5
+ parent: 2
+ - uid: 6631
+ components:
+ - type: Transform
+ pos: -67.5,-3.5
+ parent: 2
+ - uid: 6632
+ components:
+ - type: Transform
+ pos: -67.5,-4.5
+ parent: 2
+ - uid: 6633
+ components:
+ - type: Transform
+ pos: -65.5,-2.5
+ parent: 2
+ - uid: 6634
+ components:
+ - type: Transform
+ pos: -66.5,-0.5
+ parent: 2
+ - uid: 6635
+ components:
+ - type: Transform
+ pos: -66.5,-1.5
+ parent: 2
+ - uid: 6636
+ components:
+ - type: Transform
+ pos: -66.5,-2.5
+ parent: 2
+ - uid: 6637
+ components:
+ - type: Transform
+ pos: -64.5,-1.5
+ parent: 2
+ - uid: 6638
+ components:
+ - type: Transform
+ pos: -64.5,-2.5
+ parent: 2
+ - uid: 6639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,113.5
+ parent: 2
+ - uid: 6640
+ components:
+ - type: Transform
+ pos: -65.5,-1.5
+ parent: 2
+ - uid: 6641
+ components:
+ - type: Transform
+ pos: -63.5,0.5
+ parent: 2
+ - uid: 6642
+ components:
+ - type: Transform
+ pos: -63.5,1.5
+ parent: 2
+ - uid: 6643
+ components:
+ - type: Transform
+ pos: -63.5,2.5
+ parent: 2
+ - uid: 6644
+ components:
+ - type: Transform
+ pos: -64.5,0.5
+ parent: 2
+ - uid: 6645
+ components:
+ - type: Transform
+ pos: -64.5,1.5
+ parent: 2
+ - uid: 6646
+ components:
+ - type: Transform
+ pos: -64.5,2.5
+ parent: 2
+ - uid: 6647
+ components:
+ - type: Transform
+ pos: -65.5,0.5
+ parent: 2
+ - uid: 6648
+ components:
+ - type: Transform
+ pos: -65.5,1.5
+ parent: 2
+ - uid: 6649
+ components:
+ - type: Transform
+ pos: -65.5,2.5
+ parent: 2
+ - uid: 6650
+ components:
+ - type: Transform
+ pos: -63.5,3.5
+ parent: 2
+ - uid: 6651
+ components:
+ - type: Transform
+ pos: -60.5,1.5
+ parent: 2
+ - uid: 6652
+ components:
+ - type: Transform
+ pos: -60.5,0.5
+ parent: 2
+ - uid: 6653
+ components:
+ - type: Transform
+ pos: -60.5,-0.5
+ parent: 2
+ - uid: 6654
+ components:
+ - type: Transform
+ pos: -60.5,-1.5
+ parent: 2
+ - uid: 6655
+ components:
+ - type: Transform
+ pos: -60.5,-2.5
+ parent: 2
+ - uid: 6656
+ components:
+ - type: Transform
+ pos: -62.5,-23.5
+ parent: 2
+ - uid: 6657
+ components:
+ - type: Transform
+ pos: -62.5,-24.5
+ parent: 2
+ - uid: 6659
+ components:
+ - type: Transform
+ pos: -62.5,-26.5
+ parent: 2
+ - uid: 6660
+ components:
+ - type: Transform
+ pos: -67.5,-22.5
+ parent: 2
+ - uid: 6661
+ components:
+ - type: Transform
+ pos: -68.5,-22.5
+ parent: 2
+ - uid: 6662
+ components:
+ - type: Transform
+ pos: -69.5,-22.5
+ parent: 2
+ - uid: 6663
+ components:
+ - type: Transform
+ pos: -67.5,-23.5
+ parent: 2
+ - uid: 6665
+ components:
+ - type: Transform
+ pos: -69.5,-15.5
+ parent: 2
+ - uid: 6666
+ components:
+ - type: Transform
+ pos: -69.5,-16.5
+ parent: 2
+ - uid: 6667
+ components:
+ - type: Transform
+ pos: -59.5,4.5
+ parent: 2
+ - uid: 6668
+ components:
+ - type: Transform
+ pos: -61.5,4.5
+ parent: 2
+ - uid: 6669
+ components:
+ - type: Transform
+ pos: -61.5,5.5
+ parent: 2
+ - uid: 6670
+ components:
+ - type: Transform
+ pos: -60.5,2.5
+ parent: 2
+ - uid: 6671
+ components:
+ - type: Transform
+ pos: -60.5,3.5
+ parent: 2
+ - uid: 6672
+ components:
+ - type: Transform
+ pos: -60.5,4.5
+ parent: 2
+ - uid: 6673
+ components:
+ - type: Transform
+ pos: -60.5,5.5
+ parent: 2
+ - uid: 6674
+ components:
+ - type: Transform
+ pos: -59.5,2.5
+ parent: 2
+ - uid: 6676
+ components:
+ - type: Transform
+ pos: -59.5,5.5
+ parent: 2
+ - uid: 6677
+ components:
+ - type: Transform
+ pos: -58.5,2.5
+ parent: 2
+ - uid: 6678
+ components:
+ - type: Transform
+ pos: -58.5,3.5
+ parent: 2
+ - uid: 6679
+ components:
+ - type: Transform
+ pos: -58.5,4.5
+ parent: 2
+ - uid: 6680
+ components:
+ - type: Transform
+ pos: -58.5,5.5
+ parent: 2
+ - uid: 6681
+ components:
+ - type: Transform
+ pos: -54.5,9.5
+ parent: 2
+ - uid: 6682
+ components:
+ - type: Transform
+ pos: -54.5,10.5
+ parent: 2
+ - uid: 6683
+ components:
+ - type: Transform
+ pos: -56.5,8.5
+ parent: 2
+ - uid: 6684
+ components:
+ - type: Transform
+ pos: -56.5,9.5
+ parent: 2
+ - uid: 6685
+ components:
+ - type: Transform
+ pos: -56.5,10.5
+ parent: 2
+ - uid: 6686
+ components:
+ - type: Transform
+ pos: -55.5,8.5
+ parent: 2
+ - uid: 6687
+ components:
+ - type: Transform
+ pos: -55.5,9.5
+ parent: 2
+ - uid: 6688
+ components:
+ - type: Transform
+ pos: -55.5,10.5
+ parent: 2
+ - uid: 6689
+ components:
+ - type: Transform
+ pos: -54.5,8.5
+ parent: 2
+ - uid: 6690
+ components:
+ - type: Transform
+ pos: -54.5,11.5
+ parent: 2
+ - uid: 6691
+ components:
+ - type: Transform
+ pos: -53.5,10.5
+ parent: 2
+ - uid: 6692
+ components:
+ - type: Transform
+ pos: -53.5,11.5
+ parent: 2
+ - uid: 6693
+ components:
+ - type: Transform
+ pos: -52.5,10.5
+ parent: 2
+ - uid: 6694
+ components:
+ - type: Transform
+ pos: -52.5,11.5
+ parent: 2
+ - uid: 6695
+ components:
+ - type: Transform
+ pos: -51.5,12.5
+ parent: 2
+ - uid: 6696
+ components:
+ - type: Transform
+ pos: -50.5,12.5
+ parent: 2
+ - uid: 6697
+ components:
+ - type: Transform
+ pos: -58.5,7.5
+ parent: 2
+ - uid: 6698
+ components:
+ - type: Transform
+ pos: -58.5,6.5
+ parent: 2
+ - uid: 6699
+ components:
+ - type: Transform
+ pos: -56.5,7.5
+ parent: 2
+ - uid: 6700
+ components:
+ - type: Transform
+ pos: -56.5,6.5
+ parent: 2
+ - uid: 6701
+ components:
+ - type: Transform
+ pos: -57.5,8.5
+ parent: 2
+ - uid: 6702
+ components:
+ - type: Transform
+ pos: -57.5,7.5
+ parent: 2
+ - uid: 6703
+ components:
+ - type: Transform
+ pos: -57.5,6.5
+ parent: 2
+ - uid: 6704
+ components:
+ - type: Transform
+ pos: -58.5,8.5
+ parent: 2
+ - uid: 6705
+ components:
+ - type: Transform
+ pos: -51.5,13.5
+ parent: 2
+ - uid: 6706
+ components:
+ - type: Transform
+ pos: -50.5,13.5
+ parent: 2
+ - uid: 6707
+ components:
+ - type: Transform
+ pos: -52.5,12.5
+ parent: 2
+ - uid: 6708
+ components:
+ - type: Transform
+ pos: -87.5,21.5
+ parent: 2
+ - uid: 6709
+ components:
+ - type: Transform
+ pos: -85.5,17.5
+ parent: 2
+ - uid: 6710
+ components:
+ - type: Transform
+ pos: -87.5,20.5
+ parent: 2
+ - uid: 6711
+ components:
+ - type: Transform
+ pos: -56.5,11.5
+ parent: 2
+ - uid: 6712
+ components:
+ - type: Transform
+ pos: -69.5,-0.5
+ parent: 2
+ - uid: 6713
+ components:
+ - type: Transform
+ pos: -87.5,19.5
+ parent: 2
+ - uid: 6714
+ components:
+ - type: Transform
+ pos: -57.5,10.5
+ parent: 2
+ - uid: 6715
+ components:
+ - type: Transform
+ pos: -57.5,9.5
+ parent: 2
+ - uid: 6716
+ components:
+ - type: Transform
+ pos: -68.5,-2.5
+ parent: 2
+ - uid: 6717
+ components:
+ - type: Transform
+ pos: -69.5,-3.5
+ parent: 2
+ - uid: 6718
+ components:
+ - type: Transform
+ pos: -86.5,16.5
+ parent: 2
+ - uid: 6719
+ components:
+ - type: Transform
+ pos: -85.5,18.5
+ parent: 2
+ - uid: 6720
+ components:
+ - type: Transform
+ pos: -68.5,-3.5
+ parent: 2
+ - uid: 6721
+ components:
+ - type: Transform
+ pos: -68.5,-0.5
+ parent: 2
+ - uid: 6722
+ components:
+ - type: Transform
+ pos: -87.5,18.5
+ parent: 2
+ - uid: 6723
+ components:
+ - type: Transform
+ pos: -59.5,9.5
+ parent: 2
+ - uid: 6724
+ components:
+ - type: Transform
+ pos: -59.5,8.5
+ parent: 2
+ - uid: 6726
+ components:
+ - type: Transform
+ pos: -68.5,-4.5
+ parent: 2
+ - uid: 6728
+ components:
+ - type: Transform
+ pos: -72.5,0.5
+ parent: 2
+ - uid: 6730
+ components:
+ - type: Transform
+ pos: -72.5,2.5
+ parent: 2
+ - uid: 6731
+ components:
+ - type: Transform
+ pos: -72.5,3.5
+ parent: 2
+ - uid: 6732
+ components:
+ - type: Transform
+ pos: -85.5,21.5
+ parent: 2
+ - uid: 6733
+ components:
+ - type: Transform
+ pos: -86.5,17.5
+ parent: 2
+ - uid: 6734
+ components:
+ - type: Transform
+ pos: -86.5,20.5
+ parent: 2
+ - uid: 6735
+ components:
+ - type: Transform
+ pos: -71.5,0.5
+ parent: 2
+ - uid: 6736
+ components:
+ - type: Transform
+ pos: -71.5,1.5
+ parent: 2
+ - uid: 6737
+ components:
+ - type: Transform
+ pos: -71.5,2.5
+ parent: 2
+ - uid: 6738
+ components:
+ - type: Transform
+ pos: -71.5,3.5
+ parent: 2
+ - uid: 6739
+ components:
+ - type: Transform
+ pos: -71.5,4.5
+ parent: 2
+ - uid: 6740
+ components:
+ - type: Transform
+ pos: -84.5,16.5
+ parent: 2
+ - uid: 6741
+ components:
+ - type: Transform
+ pos: -86.5,18.5
+ parent: 2
+ - uid: 6742
+ components:
+ - type: Transform
+ pos: -70.5,0.5
+ parent: 2
+ - uid: 6743
+ components:
+ - type: Transform
+ pos: -86.5,21.5
+ parent: 2
+ - uid: 6744
+ components:
+ - type: Transform
+ pos: -64.5,3.5
+ parent: 2
+ - uid: 6745
+ components:
+ - type: Transform
+ pos: -64.5,4.5
+ parent: 2
+ - uid: 6746
+ components:
+ - type: Transform
+ pos: -64.5,5.5
+ parent: 2
+ - uid: 6747
+ components:
+ - type: Transform
+ pos: -64.5,6.5
+ parent: 2
+ - uid: 6748
+ components:
+ - type: Transform
+ pos: -67.5,4.5
+ parent: 2
+ - uid: 6749
+ components:
+ - type: Transform
+ pos: -67.5,5.5
+ parent: 2
+ - uid: 6750
+ components:
+ - type: Transform
+ pos: -67.5,6.5
+ parent: 2
+ - uid: 6751
+ components:
+ - type: Transform
+ pos: -66.5,0.5
+ parent: 2
+ - uid: 6752
+ components:
+ - type: Transform
+ pos: -66.5,1.5
+ parent: 2
+ - uid: 6753
+ components:
+ - type: Transform
+ pos: -66.5,2.5
+ parent: 2
+ - uid: 6754
+ components:
+ - type: Transform
+ pos: -66.5,3.5
+ parent: 2
+ - uid: 6755
+ components:
+ - type: Transform
+ pos: -66.5,4.5
+ parent: 2
+ - uid: 6756
+ components:
+ - type: Transform
+ pos: -68.5,3.5
+ parent: 2
+ - uid: 6757
+ components:
+ - type: Transform
+ pos: -68.5,4.5
+ parent: 2
+ - uid: 6758
+ components:
+ - type: Transform
+ pos: -68.5,5.5
+ parent: 2
+ - uid: 6759
+ components:
+ - type: Transform
+ pos: -84.5,19.5
+ parent: 2
+ - uid: 6760
+ components:
+ - type: Transform
+ pos: -67.5,0.5
+ parent: 2
+ - uid: 6761
+ components:
+ - type: Transform
+ pos: -67.5,1.5
+ parent: 2
+ - uid: 6762
+ components:
+ - type: Transform
+ pos: -67.5,2.5
+ parent: 2
+ - uid: 6763
+ components:
+ - type: Transform
+ pos: -67.5,3.5
+ parent: 2
+ - uid: 6764
+ components:
+ - type: Transform
+ pos: -69.5,2.5
+ parent: 2
+ - uid: 6765
+ components:
+ - type: Transform
+ pos: -69.5,3.5
+ parent: 2
+ - uid: 6766
+ components:
+ - type: Transform
+ pos: -69.5,4.5
+ parent: 2
+ - uid: 6767
+ components:
+ - type: Transform
+ pos: -84.5,17.5
+ parent: 2
+ - uid: 6769
+ components:
+ - type: Transform
+ pos: -68.5,0.5
+ parent: 2
+ - uid: 6770
+ components:
+ - type: Transform
+ pos: -68.5,1.5
+ parent: 2
+ - uid: 6771
+ components:
+ - type: Transform
+ pos: -68.5,2.5
+ parent: 2
+ - uid: 6772
+ components:
+ - type: Transform
+ pos: -70.5,1.5
+ parent: 2
+ - uid: 6773
+ components:
+ - type: Transform
+ pos: -70.5,2.5
+ parent: 2
+ - uid: 6774
+ components:
+ - type: Transform
+ pos: -70.5,3.5
+ parent: 2
+ - uid: 6775
+ components:
+ - type: Transform
+ pos: -70.5,4.5
+ parent: 2
+ - uid: 6776
+ components:
+ - type: Transform
+ pos: -84.5,20.5
+ parent: 2
+ - uid: 6777
+ components:
+ - type: Transform
+ pos: -86.5,19.5
+ parent: 2
+ - uid: 6778
+ components:
+ - type: Transform
+ pos: -69.5,0.5
+ parent: 2
+ - uid: 6779
+ components:
+ - type: Transform
+ pos: -69.5,1.5
+ parent: 2
+ - uid: 6780
+ components:
+ - type: Transform
+ pos: -62.5,4.5
+ parent: 2
+ - uid: 6781
+ components:
+ - type: Transform
+ pos: -62.5,5.5
+ parent: 2
+ - uid: 6782
+ components:
+ - type: Transform
+ pos: -62.5,6.5
+ parent: 2
+ - uid: 6783
+ components:
+ - type: Transform
+ pos: -63.5,4.5
+ parent: 2
+ - uid: 6785
+ components:
+ - type: Transform
+ pos: -63.5,6.5
+ parent: 2
+ - uid: 6786
+ components:
+ - type: Transform
+ pos: -65.5,5.5
+ parent: 2
+ - uid: 6787
+ components:
+ - type: Transform
+ pos: -65.5,4.5
+ parent: 2
+ - uid: 6788
+ components:
+ - type: Transform
+ pos: -65.5,3.5
+ parent: 2
+ - uid: 6789
+ components:
+ - type: Transform
+ pos: -66.5,6.5
+ parent: 2
+ - uid: 6790
+ components:
+ - type: Transform
+ pos: -66.5,5.5
+ parent: 2
+ - uid: 6791
+ components:
+ - type: Transform
+ pos: -87.5,17.5
+ parent: 2
+ - uid: 6792
+ components:
+ - type: Transform
+ pos: -87.5,16.5
+ parent: 2
+ - uid: 6793
+ components:
+ - type: Transform
+ pos: -61.5,7.5
+ parent: 2
+ - uid: 6794
+ components:
+ - type: Transform
+ pos: -61.5,6.5
+ parent: 2
+ - uid: 6795
+ components:
+ - type: Transform
+ pos: -70.5,-0.5
+ parent: 2
+ - uid: 6796
+ components:
+ - type: Transform
+ pos: -85.5,16.5
+ parent: 2
+ - uid: 6797
+ components:
+ - type: Transform
+ pos: -69.5,-1.5
+ parent: 2
+ - uid: 6798
+ components:
+ - type: Transform
+ pos: -60.5,6.5
+ parent: 2
+ - uid: 6799
+ components:
+ - type: Transform
+ pos: -59.5,7.5
+ parent: 2
+ - uid: 6800
+ components:
+ - type: Transform
+ pos: -59.5,6.5
+ parent: 2
+ - uid: 6801
+ components:
+ - type: Transform
+ pos: -60.5,7.5
+ parent: 2
+ - uid: 6802
+ components:
+ - type: Transform
+ pos: -85.5,20.5
+ parent: 2
+ - uid: 6803
+ components:
+ - type: Transform
+ pos: -85.5,19.5
+ parent: 2
+ - uid: 6804
+ components:
+ - type: Transform
+ pos: -83.5,21.5
+ parent: 2
+ - uid: 6805
+ components:
+ - type: Transform
+ pos: -83.5,20.5
+ parent: 2
+ - uid: 6806
+ components:
+ - type: Transform
+ pos: -83.5,19.5
+ parent: 2
+ - uid: 6807
+ components:
+ - type: Transform
+ pos: -83.5,18.5
+ parent: 2
+ - uid: 6808
+ components:
+ - type: Transform
+ pos: -83.5,17.5
+ parent: 2
+ - uid: 6809
+ components:
+ - type: Transform
+ pos: -83.5,16.5
+ parent: 2
+ - uid: 6810
+ components:
+ - type: Transform
+ pos: -84.5,21.5
+ parent: 2
+ - uid: 6811
+ components:
+ - type: Transform
+ pos: -84.5,15.5
+ parent: 2
+ - uid: 6812
+ components:
+ - type: Transform
+ pos: -85.5,15.5
+ parent: 2
+ - uid: 6813
+ components:
+ - type: Transform
+ pos: -86.5,22.5
+ parent: 2
+ - uid: 6814
+ components:
+ - type: Transform
+ pos: -85.5,22.5
+ parent: 2
+ - uid: 6815
+ components:
+ - type: Transform
+ pos: -84.5,22.5
+ parent: 2
+ - uid: 6816
+ components:
+ - type: Transform
+ pos: -83.5,44.5
+ parent: 2
+ - uid: 6817
+ components:
+ - type: Transform
+ pos: -83.5,43.5
+ parent: 2
+ - uid: 6818
+ components:
+ - type: Transform
+ pos: -83.5,42.5
+ parent: 2
+ - uid: 6819
+ components:
+ - type: Transform
+ pos: -84.5,44.5
+ parent: 2
+ - uid: 6820
+ components:
+ - type: Transform
+ pos: -84.5,43.5
+ parent: 2
+ - uid: 6821
+ components:
+ - type: Transform
+ pos: -84.5,42.5
+ parent: 2
+ - uid: 6822
+ components:
+ - type: Transform
+ pos: -85.5,44.5
+ parent: 2
+ - uid: 6823
+ components:
+ - type: Transform
+ pos: -85.5,43.5
+ parent: 2
+ - uid: 6824
+ components:
+ - type: Transform
+ pos: -85.5,42.5
+ parent: 2
+ - uid: 6825
+ components:
+ - type: Transform
+ pos: -87.5,42.5
+ parent: 2
+ - uid: 6826
+ components:
+ - type: Transform
+ pos: -87.5,41.5
+ parent: 2
+ - uid: 6827
+ components:
+ - type: Transform
+ pos: -85.5,41.5
+ parent: 2
+ - uid: 6828
+ components:
+ - type: Transform
+ pos: -86.5,43.5
+ parent: 2
+ - uid: 6829
+ components:
+ - type: Transform
+ pos: -86.5,42.5
+ parent: 2
+ - uid: 6830
+ components:
+ - type: Transform
+ pos: -86.5,41.5
+ parent: 2
+ - uid: 6831
+ components:
+ - type: Transform
+ pos: -87.5,43.5
+ parent: 2
+ - uid: 6832
+ components:
+ - type: Transform
+ pos: -80.5,43.5
+ parent: 2
+ - uid: 6833
+ components:
+ - type: Transform
+ pos: -82.5,42.5
+ parent: 2
+ - uid: 6834
+ components:
+ - type: Transform
+ pos: -82.5,43.5
+ parent: 2
+ - uid: 6835
+ components:
+ - type: Transform
+ pos: -81.5,42.5
+ parent: 2
+ - uid: 6836
+ components:
+ - type: Transform
+ pos: -81.5,43.5
+ parent: 2
+ - uid: 6837
+ components:
+ - type: Transform
+ pos: -80.5,42.5
+ parent: 2
+ - uid: 6838
+ components:
+ - type: Transform
+ pos: -78.5,43.5
+ parent: 2
+ - uid: 6839
+ components:
+ - type: Transform
+ pos: -77.5,43.5
+ parent: 2
+ - uid: 6840
+ components:
+ - type: Transform
+ pos: -76.5,43.5
+ parent: 2
+ - uid: 6841
+ components:
+ - type: Transform
+ pos: -75.5,43.5
+ parent: 2
+ - uid: 6842
+ components:
+ - type: Transform
+ pos: -74.5,43.5
+ parent: 2
+ - uid: 6843
+ components:
+ - type: Transform
+ pos: -73.5,43.5
+ parent: 2
+ - uid: 6844
+ components:
+ - type: Transform
+ pos: -72.5,43.5
+ parent: 2
+ - uid: 6845
+ components:
+ - type: Transform
+ pos: -70.5,42.5
+ parent: 2
+ - uid: 6846
+ components:
+ - type: Transform
+ pos: -69.5,42.5
+ parent: 2
+ - uid: 6847
+ components:
+ - type: Transform
+ pos: -68.5,42.5
+ parent: 2
+ - uid: 6848
+ components:
+ - type: Transform
+ pos: -67.5,42.5
+ parent: 2
+ - uid: 6849
+ components:
+ - type: Transform
+ pos: -66.5,42.5
+ parent: 2
+ - uid: 6850
+ components:
+ - type: Transform
+ pos: -65.5,42.5
+ parent: 2
+ - uid: 6851
+ components:
+ - type: Transform
+ pos: -64.5,42.5
+ parent: 2
+ - uid: 6852
+ components:
+ - type: Transform
+ pos: -71.5,43.5
+ parent: 2
+ - uid: 6853
+ components:
+ - type: Transform
+ pos: -70.5,43.5
+ parent: 2
+ - uid: 6854
+ components:
+ - type: Transform
+ pos: -69.5,43.5
+ parent: 2
+ - uid: 6855
+ components:
+ - type: Transform
+ pos: -68.5,43.5
+ parent: 2
+ - uid: 6856
+ components:
+ - type: Transform
+ pos: -71.5,42.5
+ parent: 2
+ - uid: 6857
+ components:
+ - type: Transform
+ pos: -72.5,42.5
+ parent: 2
+ - uid: 6858
+ components:
+ - type: Transform
+ pos: -73.5,42.5
+ parent: 2
+ - uid: 6859
+ components:
+ - type: Transform
+ pos: -74.5,42.5
+ parent: 2
+ - uid: 6860
+ components:
+ - type: Transform
+ pos: -75.5,42.5
+ parent: 2
+ - uid: 6861
+ components:
+ - type: Transform
+ pos: -79.5,43.5
+ parent: 2
+ - uid: 6862
+ components:
+ - type: Transform
+ pos: -59.5,40.5
+ parent: 2
+ - uid: 6863
+ components:
+ - type: Transform
+ pos: -61.5,40.5
+ parent: 2
+ - uid: 6864
+ components:
+ - type: Transform
+ pos: -60.5,43.5
+ parent: 2
+ - uid: 6865
+ components:
+ - type: Transform
+ pos: -60.5,42.5
+ parent: 2
+ - uid: 6866
+ components:
+ - type: Transform
+ pos: -60.5,41.5
+ parent: 2
+ - uid: 6867
+ components:
+ - type: Transform
+ pos: -60.5,40.5
+ parent: 2
+ - uid: 6868
+ components:
+ - type: Transform
+ pos: -59.5,43.5
+ parent: 2
+ - uid: 6869
+ components:
+ - type: Transform
+ pos: -59.5,42.5
+ parent: 2
+ - uid: 6870
+ components:
+ - type: Transform
+ pos: -59.5,41.5
+ parent: 2
+ - uid: 6871
+ components:
+ - type: Transform
+ pos: -63.5,40.5
+ parent: 2
+ - uid: 6872
+ components:
+ - type: Transform
+ pos: -62.5,43.5
+ parent: 2
+ - uid: 6873
+ components:
+ - type: Transform
+ pos: -62.5,42.5
+ parent: 2
+ - uid: 6874
+ components:
+ - type: Transform
+ pos: -62.5,41.5
+ parent: 2
+ - uid: 6875
+ components:
+ - type: Transform
+ pos: -62.5,40.5
+ parent: 2
+ - uid: 6876
+ components:
+ - type: Transform
+ pos: -61.5,43.5
+ parent: 2
+ - uid: 6877
+ components:
+ - type: Transform
+ pos: -61.5,42.5
+ parent: 2
+ - uid: 6878
+ components:
+ - type: Transform
+ pos: -61.5,41.5
+ parent: 2
+ - uid: 6879
+ components:
+ - type: Transform
+ pos: -64.5,43.5
+ parent: 2
+ - uid: 6880
+ components:
+ - type: Transform
+ pos: -64.5,41.5
+ parent: 2
+ - uid: 6881
+ components:
+ - type: Transform
+ pos: -64.5,40.5
+ parent: 2
+ - uid: 6882
+ components:
+ - type: Transform
+ pos: -63.5,43.5
+ parent: 2
+ - uid: 6883
+ components:
+ - type: Transform
+ pos: -63.5,42.5
+ parent: 2
+ - uid: 6884
+ components:
+ - type: Transform
+ pos: -63.5,41.5
+ parent: 2
+ - uid: 6885
+ components:
+ - type: Transform
+ pos: -58.5,34.5
+ parent: 2
+ - uid: 6886
+ components:
+ - type: Transform
+ pos: -58.5,33.5
+ parent: 2
+ - uid: 6887
+ components:
+ - type: Transform
+ pos: -57.5,39.5
+ parent: 2
+ - uid: 6888
+ components:
+ - type: Transform
+ pos: -57.5,38.5
+ parent: 2
+ - uid: 6889
+ components:
+ - type: Transform
+ pos: -58.5,38.5
+ parent: 2
+ - uid: 6890
+ components:
+ - type: Transform
+ pos: -57.5,37.5
+ parent: 2
+ - uid: 6891
+ components:
+ - type: Transform
+ pos: -57.5,36.5
+ parent: 2
+ - uid: 6892
+ components:
+ - type: Transform
+ pos: -57.5,35.5
+ parent: 2
+ - uid: 6893
+ components:
+ - type: Transform
+ pos: -57.5,34.5
+ parent: 2
+ - uid: 6894
+ components:
+ - type: Transform
+ pos: -57.5,33.5
+ parent: 2
+ - uid: 6895
+ components:
+ - type: Transform
+ pos: -59.5,36.5
+ parent: 2
+ - uid: 6896
+ components:
+ - type: Transform
+ pos: -59.5,35.5
+ parent: 2
+ - uid: 6897
+ components:
+ - type: Transform
+ pos: -59.5,34.5
+ parent: 2
+ - uid: 6898
+ components:
+ - type: Transform
+ pos: -59.5,33.5
+ parent: 2
+ - uid: 6899
+ components:
+ - type: Transform
+ pos: -58.5,39.5
+ parent: 2
+ - uid: 6900
+ components:
+ - type: Transform
+ pos: -58.5,37.5
+ parent: 2
+ - uid: 6901
+ components:
+ - type: Transform
+ pos: -58.5,36.5
+ parent: 2
+ - uid: 6902
+ components:
+ - type: Transform
+ pos: -58.5,35.5
+ parent: 2
+ - uid: 6903
+ components:
+ - type: Transform
+ pos: -60.5,37.5
+ parent: 2
+ - uid: 6904
+ components:
+ - type: Transform
+ pos: -60.5,36.5
+ parent: 2
+ - uid: 6905
+ components:
+ - type: Transform
+ pos: -60.5,35.5
+ parent: 2
+ - uid: 6906
+ components:
+ - type: Transform
+ pos: -60.5,34.5
+ parent: 2
+ - uid: 6907
+ components:
+ - type: Transform
+ pos: -60.5,33.5
+ parent: 2
+ - uid: 6908
+ components:
+ - type: Transform
+ pos: -59.5,39.5
+ parent: 2
+ - uid: 6909
+ components:
+ - type: Transform
+ pos: -59.5,38.5
+ parent: 2
+ - uid: 6910
+ components:
+ - type: Transform
+ pos: -59.5,37.5
+ parent: 2
+ - uid: 6911
+ components:
+ - type: Transform
+ pos: -61.5,38.5
+ parent: 2
+ - uid: 6912
+ components:
+ - type: Transform
+ pos: -61.5,37.5
+ parent: 2
+ - uid: 6913
+ components:
+ - type: Transform
+ pos: -61.5,36.5
+ parent: 2
+ - uid: 6914
+ components:
+ - type: Transform
+ pos: -61.5,35.5
+ parent: 2
+ - uid: 6915
+ components:
+ - type: Transform
+ pos: -61.5,34.5
+ parent: 2
+ - uid: 6916
+ components:
+ - type: Transform
+ pos: -61.5,33.5
+ parent: 2
+ - uid: 6917
+ components:
+ - type: Transform
+ pos: -60.5,39.5
+ parent: 2
+ - uid: 6918
+ components:
+ - type: Transform
+ pos: -60.5,38.5
+ parent: 2
+ - uid: 6919
+ components:
+ - type: Transform
+ pos: -62.5,39.5
+ parent: 2
+ - uid: 6920
+ components:
+ - type: Transform
+ pos: -62.5,38.5
+ parent: 2
+ - uid: 6921
+ components:
+ - type: Transform
+ pos: -62.5,37.5
+ parent: 2
+ - uid: 6922
+ components:
+ - type: Transform
+ pos: -62.5,36.5
+ parent: 2
+ - uid: 6923
+ components:
+ - type: Transform
+ pos: -62.5,35.5
+ parent: 2
+ - uid: 6924
+ components:
+ - type: Transform
+ pos: -62.5,34.5
+ parent: 2
+ - uid: 6925
+ components:
+ - type: Transform
+ pos: -62.5,33.5
+ parent: 2
+ - uid: 6926
+ components:
+ - type: Transform
+ pos: -61.5,39.5
+ parent: 2
+ - uid: 6927
+ components:
+ - type: Transform
+ pos: -63.5,39.5
+ parent: 2
+ - uid: 6928
+ components:
+ - type: Transform
+ pos: -63.5,38.5
+ parent: 2
+ - uid: 6929
+ components:
+ - type: Transform
+ pos: -63.5,37.5
+ parent: 2
+ - uid: 6930
+ components:
+ - type: Transform
+ pos: -63.5,36.5
+ parent: 2
+ - uid: 6931
+ components:
+ - type: Transform
+ pos: -63.5,35.5
+ parent: 2
+ - uid: 6932
+ components:
+ - type: Transform
+ pos: -63.5,34.5
+ parent: 2
+ - uid: 6933
+ components:
+ - type: Transform
+ pos: -63.5,33.5
+ parent: 2
+ - uid: 6934
+ components:
+ - type: Transform
+ pos: -57.5,29.5
+ parent: 2
+ - uid: 6935
+ components:
+ - type: Transform
+ pos: -58.5,32.5
+ parent: 2
+ - uid: 6936
+ components:
+ - type: Transform
+ pos: -58.5,31.5
+ parent: 2
+ - uid: 6937
+ components:
+ - type: Transform
+ pos: -58.5,30.5
+ parent: 2
+ - uid: 6938
+ components:
+ - type: Transform
+ pos: -58.5,29.5
+ parent: 2
+ - uid: 6939
+ components:
+ - type: Transform
+ pos: -57.5,32.5
+ parent: 2
+ - uid: 6940
+ components:
+ - type: Transform
+ pos: -57.5,31.5
+ parent: 2
+ - uid: 6941
+ components:
+ - type: Transform
+ pos: -57.5,30.5
+ parent: 2
+ - uid: 6942
+ components:
+ - type: Transform
+ pos: -60.5,30.5
+ parent: 2
+ - uid: 6943
+ components:
+ - type: Transform
+ pos: -60.5,29.5
+ parent: 2
+ - uid: 6944
+ components:
+ - type: Transform
+ pos: -59.5,32.5
+ parent: 2
+ - uid: 6945
+ components:
+ - type: Transform
+ pos: -59.5,31.5
+ parent: 2
+ - uid: 6946
+ components:
+ - type: Transform
+ pos: -59.5,30.5
+ parent: 2
+ - uid: 6947
+ components:
+ - type: Transform
+ pos: -59.5,29.5
+ parent: 2
+ - uid: 6948
+ components:
+ - type: Transform
+ pos: -61.5,32.5
+ parent: 2
+ - uid: 6949
+ components:
+ - type: Transform
+ pos: -61.5,31.5
+ parent: 2
+ - uid: 6950
+ components:
+ - type: Transform
+ pos: -61.5,29.5
+ parent: 2
+ - uid: 6951
+ components:
+ - type: Transform
+ pos: -61.5,30.5
+ parent: 2
+ - uid: 6952
+ components:
+ - type: Transform
+ pos: -60.5,32.5
+ parent: 2
+ - uid: 6953
+ components:
+ - type: Transform
+ pos: -60.5,31.5
+ parent: 2
+ - uid: 6954
+ components:
+ - type: Transform
+ pos: -59.5,28.5
+ parent: 2
+ - uid: 6955
+ components:
+ - type: Transform
+ pos: -60.5,28.5
+ parent: 2
+ - uid: 6956
+ components:
+ - type: Transform
+ pos: -61.5,28.5
+ parent: 2
+ - uid: 6957
+ components:
+ - type: Transform
+ pos: -62.5,28.5
+ parent: 2
+ - uid: 6958
+ components:
+ - type: Transform
+ pos: -62.5,29.5
+ parent: 2
+ - uid: 6959
+ components:
+ - type: Transform
+ pos: -62.5,30.5
+ parent: 2
+ - uid: 6960
+ components:
+ - type: Transform
+ pos: -62.5,31.5
+ parent: 2
+ - uid: 6961
+ components:
+ - type: Transform
+ pos: -62.5,32.5
+ parent: 2
+ - uid: 6962
+ components:
+ - type: Transform
+ pos: -63.5,31.5
+ parent: 2
+ - uid: 6963
+ components:
+ - type: Transform
+ pos: -63.5,32.5
+ parent: 2
+ - uid: 6964
+ components:
+ - type: Transform
+ pos: -64.5,34.5
+ parent: 2
+ - uid: 6965
+ components:
+ - type: Transform
+ pos: -64.5,36.5
+ parent: 2
+ - uid: 6966
+ components:
+ - type: Transform
+ pos: -64.5,38.5
+ parent: 2
+ - uid: 6967
+ components:
+ - type: Transform
+ pos: -64.5,37.5
+ parent: 2
+ - uid: 6968
+ components:
+ - type: Transform
+ pos: -65.5,40.5
+ parent: 2
+ - uid: 6969
+ components:
+ - type: Transform
+ pos: -64.5,39.5
+ parent: 2
+ - uid: 6970
+ components:
+ - type: Transform
+ pos: -56.5,30.5
+ parent: 2
+ - uid: 6971
+ components:
+ - type: Transform
+ pos: -54.5,28.5
+ parent: 2
+ - uid: 6972
+ components:
+ - type: Transform
+ pos: -53.5,27.5
+ parent: 2
+ - uid: 6973
+ components:
+ - type: Transform
+ pos: -53.5,28.5
+ parent: 2
+ - uid: 6974
+ components:
+ - type: Transform
+ pos: -53.5,29.5
+ parent: 2
+ - uid: 6975
+ components:
+ - type: Transform
+ pos: -53.5,30.5
+ parent: 2
+ - uid: 6976
+ components:
+ - type: Transform
+ pos: -54.5,27.5
+ parent: 2
+ - uid: 6977
+ components:
+ - type: Transform
+ pos: -54.5,29.5
+ parent: 2
+ - uid: 6978
+ components:
+ - type: Transform
+ pos: -54.5,30.5
+ parent: 2
+ - uid: 6979
+ components:
+ - type: Transform
+ pos: -55.5,27.5
+ parent: 2
+ - uid: 6980
+ components:
+ - type: Transform
+ pos: -55.5,28.5
+ parent: 2
+ - uid: 6981
+ components:
+ - type: Transform
+ pos: -55.5,29.5
+ parent: 2
+ - uid: 6982
+ components:
+ - type: Transform
+ pos: -55.5,30.5
+ parent: 2
+ - uid: 6983
+ components:
+ - type: Transform
+ pos: -56.5,27.5
+ parent: 2
+ - uid: 6984
+ components:
+ - type: Transform
+ pos: -56.5,28.5
+ parent: 2
+ - uid: 6985
+ components:
+ - type: Transform
+ pos: -56.5,29.5
+ parent: 2
+ - uid: 6986
+ components:
+ - type: Transform
+ pos: -57.5,27.5
+ parent: 2
+ - uid: 6987
+ components:
+ - type: Transform
+ pos: -57.5,28.5
+ parent: 2
+ - uid: 6988
+ components:
+ - type: Transform
+ pos: -55.5,34.5
+ parent: 2
+ - uid: 6989
+ components:
+ - type: Transform
+ pos: -55.5,35.5
+ parent: 2
+ - uid: 6990
+ components:
+ - type: Transform
+ pos: -55.5,36.5
+ parent: 2
+ - uid: 6991
+ components:
+ - type: Transform
+ pos: -54.5,34.5
+ parent: 2
+ - uid: 6992
+ components:
+ - type: Transform
+ pos: -54.5,35.5
+ parent: 2
+ - uid: 6993
+ components:
+ - type: Transform
+ pos: -54.5,36.5
+ parent: 2
+ - uid: 6994
+ components:
+ - type: Transform
+ pos: -53.5,37.5
+ parent: 2
+ - uid: 6995
+ components:
+ - type: Transform
+ pos: -53.5,38.5
+ parent: 2
+ - uid: 6996
+ components:
+ - type: Transform
+ pos: -53.5,39.5
+ parent: 2
+ - uid: 6997
+ components:
+ - type: Transform
+ pos: -52.5,37.5
+ parent: 2
+ - uid: 6998
+ components:
+ - type: Transform
+ pos: -52.5,38.5
+ parent: 2
+ - uid: 6999
+ components:
+ - type: Transform
+ pos: -52.5,39.5
+ parent: 2
+ - uid: 7000
+ components:
+ - type: Transform
+ pos: -51.5,37.5
+ parent: 2
+ - uid: 7001
+ components:
+ - type: Transform
+ pos: -51.5,39.5
+ parent: 2
+ - uid: 7002
+ components:
+ - type: Transform
+ pos: -51.5,38.5
+ parent: 2
+ - uid: 7003
+ components:
+ - type: Transform
+ pos: -46.5,44.5
+ parent: 2
+ - uid: 7004
+ components:
+ - type: Transform
+ pos: -46.5,45.5
+ parent: 2
+ - uid: 7005
+ components:
+ - type: Transform
+ pos: -46.5,46.5
+ parent: 2
+ - uid: 7006
+ components:
+ - type: Transform
+ pos: -45.5,44.5
+ parent: 2
+ - uid: 7007
+ components:
+ - type: Transform
+ pos: -45.5,45.5
+ parent: 2
+ - uid: 7008
+ components:
+ - type: Transform
+ pos: -45.5,46.5
+ parent: 2
+ - uid: 7009
+ components:
+ - type: Transform
+ pos: -43.5,47.5
+ parent: 2
+ - uid: 7010
+ components:
+ - type: Transform
+ pos: -43.5,48.5
+ parent: 2
+ - uid: 7011
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,115.5
+ parent: 2
+ - uid: 7012
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,114.5
+ parent: 2
+ - uid: 7013
+ components:
+ - type: Transform
+ pos: -44.5,46.5
+ parent: 2
+ - uid: 7014
+ components:
+ - type: Transform
+ pos: -44.5,47.5
+ parent: 2
+ - uid: 7015
+ components:
+ - type: Transform
+ pos: -44.5,48.5
+ parent: 2
+ - uid: 7016
+ components:
+ - type: Transform
+ pos: -43.5,46.5
+ parent: 2
+ - uid: 7017
+ components:
+ - type: Transform
+ pos: -43.5,49.5
+ parent: 2
+ - uid: 7018
+ components:
+ - type: Transform
+ pos: -42.5,48.5
+ parent: 2
+ - uid: 7019
+ components:
+ - type: Transform
+ pos: -42.5,49.5
+ parent: 2
+ - uid: 7020
+ components:
+ - type: Transform
+ pos: -41.5,48.5
+ parent: 2
+ - uid: 7021
+ components:
+ - type: Transform
+ pos: -41.5,49.5
+ parent: 2
+ - uid: 7022
+ components:
+ - type: Transform
+ pos: -40.5,48.5
+ parent: 2
+ - uid: 7023
+ components:
+ - type: Transform
+ pos: -40.5,49.5
+ parent: 2
+ - uid: 7024
+ components:
+ - type: Transform
+ pos: -41.5,47.5
+ parent: 2
+ - uid: 7025
+ components:
+ - type: Transform
+ pos: -42.5,50.5
+ parent: 2
+ - uid: 7026
+ components:
+ - type: Transform
+ pos: -42.5,47.5
+ parent: 2
+ - uid: 7027
+ components:
+ - type: Transform
+ pos: -39.5,47.5
+ parent: 2
+ - uid: 7028
+ components:
+ - type: Transform
+ pos: -40.5,50.5
+ parent: 2
+ - uid: 7029
+ components:
+ - type: Transform
+ pos: -40.5,47.5
+ parent: 2
+ - uid: 7030
+ components:
+ - type: Transform
+ pos: -41.5,50.5
+ parent: 2
+ - uid: 7031
+ components:
+ - type: Transform
+ pos: -38.5,50.5
+ parent: 2
+ - uid: 7032
+ components:
+ - type: Transform
+ pos: -38.5,49.5
+ parent: 2
+ - uid: 7033
+ components:
+ - type: Transform
+ pos: -38.5,48.5
+ parent: 2
+ - uid: 7034
+ components:
+ - type: Transform
+ pos: -38.5,47.5
+ parent: 2
+ - uid: 7035
+ components:
+ - type: Transform
+ pos: -39.5,50.5
+ parent: 2
+ - uid: 7036
+ components:
+ - type: Transform
+ pos: -39.5,49.5
+ parent: 2
+ - uid: 7037
+ components:
+ - type: Transform
+ pos: -39.5,48.5
+ parent: 2
+ - uid: 7038
+ components:
+ - type: Transform
+ pos: -44.5,45.5
+ parent: 2
+ - uid: 7039
+ components:
+ - type: Transform
+ pos: -42.5,46.5
+ parent: 2
+ - uid: 7040
+ components:
+ - type: Transform
+ pos: -42.5,45.5
+ parent: 2
+ - uid: 7041
+ components:
+ - type: Transform
+ pos: -43.5,45.5
+ parent: 2
+ - uid: 7042
+ components:
+ - type: Transform
+ pos: -47.5,45.5
+ parent: 2
+ - uid: 7043
+ components:
+ - type: Transform
+ pos: -47.5,44.5
+ parent: 2
+ - uid: 7044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,105.5
+ parent: 2
+ - uid: 7045
+ components:
+ - type: Transform
+ pos: -48.5,44.5
+ parent: 2
+ - uid: 7046
+ components:
+ - type: Transform
+ pos: -48.5,43.5
+ parent: 2
+ - uid: 7047
+ components:
+ - type: Transform
+ pos: -48.5,42.5
+ parent: 2
+ - uid: 7048
+ components:
+ - type: Transform
+ pos: -49.5,44.5
+ parent: 2
+ - uid: 7049
+ components:
+ - type: Transform
+ pos: -49.5,43.5
+ parent: 2
+ - uid: 7050
+ components:
+ - type: Transform
+ pos: -49.5,42.5
+ parent: 2
+ - uid: 7051
+ components:
+ - type: Transform
+ pos: -50.5,44.5
+ parent: 2
+ - uid: 7052
+ components:
+ - type: Transform
+ pos: -50.5,43.5
+ parent: 2
+ - uid: 7053
+ components:
+ - type: Transform
+ pos: -50.5,42.5
+ parent: 2
+ - uid: 7054
+ components:
+ - type: Transform
+ pos: -51.5,44.5
+ parent: 2
+ - uid: 7055
+ components:
+ - type: Transform
+ pos: -51.5,43.5
+ parent: 2
+ - uid: 7056
+ components:
+ - type: Transform
+ pos: -51.5,42.5
+ parent: 2
+ - uid: 7057
+ components:
+ - type: Transform
+ pos: -51.5,41.5
+ parent: 2
+ - uid: 7058
+ components:
+ - type: Transform
+ pos: -52.5,42.5
+ parent: 2
+ - uid: 7059
+ components:
+ - type: Transform
+ pos: -52.5,41.5
+ parent: 2
+ - uid: 7060
+ components:
+ - type: Transform
+ pos: -53.5,42.5
+ parent: 2
+ - uid: 7061
+ components:
+ - type: Transform
+ pos: -53.5,41.5
+ parent: 2
+ - uid: 7062
+ components:
+ - type: Transform
+ pos: -55.5,40.5
+ parent: 2
+ - uid: 7063
+ components:
+ - type: Transform
+ pos: -55.5,39.5
+ parent: 2
+ - uid: 7064
+ components:
+ - type: Transform
+ pos: -53.5,40.5
+ parent: 2
+ - uid: 7065
+ components:
+ - type: Transform
+ pos: -54.5,41.5
+ parent: 2
+ - uid: 7066
+ components:
+ - type: Transform
+ pos: -54.5,40.5
+ parent: 2
+ - uid: 7067
+ components:
+ - type: Transform
+ pos: -54.5,39.5
+ parent: 2
+ - uid: 7068
+ components:
+ - type: Transform
+ pos: -55.5,41.5
+ parent: 2
+ - uid: 7069
+ components:
+ - type: Transform
+ pos: -51.5,36.5
+ parent: 2
+ - uid: 7070
+ components:
+ - type: Transform
+ pos: -56.5,33.5
+ parent: 2
+ - uid: 7071
+ components:
+ - type: Transform
+ pos: -56.5,34.5
+ parent: 2
+ - uid: 7072
+ components:
+ - type: Transform
+ pos: -56.5,35.5
+ parent: 2
+ - uid: 7073
+ components:
+ - type: Transform
+ pos: -56.5,36.5
+ parent: 2
+ - uid: 7074
+ components:
+ - type: Transform
+ pos: -56.5,37.5
+ parent: 2
+ - uid: 7075
+ components:
+ - type: Transform
+ pos: -56.5,38.5
+ parent: 2
+ - uid: 7076
+ components:
+ - type: Transform
+ pos: -55.5,33.5
+ parent: 2
+ - uid: 7077
+ components:
+ - type: Transform
+ pos: -52.5,34.5
+ parent: 2
+ - uid: 7078
+ components:
+ - type: Transform
+ pos: -52.5,35.5
+ parent: 2
+ - uid: 7079
+ components:
+ - type: Transform
+ pos: -52.5,36.5
+ parent: 2
+ - uid: 7080
+ components:
+ - type: Transform
+ pos: -51.5,33.5
+ parent: 2
+ - uid: 7081
+ components:
+ - type: Transform
+ pos: -51.5,34.5
+ parent: 2
+ - uid: 7082
+ components:
+ - type: Transform
+ pos: -51.5,35.5
+ parent: 2
+ - uid: 7083
+ components:
+ - type: Transform
+ pos: -54.5,38.5
+ parent: 2
+ - uid: 7084
+ components:
+ - type: Transform
+ pos: -53.5,33.5
+ parent: 2
+ - uid: 7085
+ components:
+ - type: Transform
+ pos: -53.5,34.5
+ parent: 2
+ - uid: 7086
+ components:
+ - type: Transform
+ pos: -53.5,35.5
+ parent: 2
+ - uid: 7087
+ components:
+ - type: Transform
+ pos: -53.5,36.5
+ parent: 2
+ - uid: 7088
+ components:
+ - type: Transform
+ pos: -52.5,33.5
+ parent: 2
+ - uid: 7089
+ components:
+ - type: Transform
+ pos: -55.5,37.5
+ parent: 2
+ - uid: 7090
+ components:
+ - type: Transform
+ pos: -55.5,38.5
+ parent: 2
+ - uid: 7091
+ components:
+ - type: Transform
+ pos: -54.5,33.5
+ parent: 2
+ - uid: 7092
+ components:
+ - type: Transform
+ pos: -54.5,37.5
+ parent: 2
+ - uid: 7093
+ components:
+ - type: Transform
+ pos: -50.5,41.5
+ parent: 2
+ - uid: 7094
+ components:
+ - type: Transform
+ pos: -49.5,38.5
+ parent: 2
+ - uid: 7095
+ components:
+ - type: Transform
+ pos: -49.5,39.5
+ parent: 2
+ - uid: 7096
+ components:
+ - type: Transform
+ pos: -49.5,40.5
+ parent: 2
+ - uid: 7098
+ components:
+ - type: Transform
+ pos: -50.5,39.5
+ parent: 2
+ - uid: 7099
+ components:
+ - type: Transform
+ pos: -48.5,40.5
+ parent: 2
+ - uid: 7100
+ components:
+ - type: Transform
+ pos: -48.5,39.5
+ parent: 2
+ - uid: 7101
+ components:
+ - type: Transform
+ pos: -48.5,41.5
+ parent: 2
+ - uid: 7102
+ components:
+ - type: Transform
+ pos: -49.5,41.5
+ parent: 2
+ - uid: 7103
+ components:
+ - type: Transform
+ pos: -51.5,40.5
+ parent: 2
+ - uid: 7104
+ components:
+ - type: Transform
+ pos: -50.5,38.5
+ parent: 2
+ - uid: 7105
+ components:
+ - type: Transform
+ pos: -50.5,40.5
+ parent: 2
+ - uid: 7106
+ components:
+ - type: Transform
+ pos: -41.5,46.5
+ parent: 2
+ - uid: 7107
+ components:
+ - type: Transform
+ pos: -40.5,46.5
+ parent: 2
+ - uid: 7108
+ components:
+ - type: Transform
+ pos: -39.5,46.5
+ parent: 2
+ - uid: 7109
+ components:
+ - type: Transform
+ pos: -38.5,46.5
+ parent: 2
+ - uid: 7110
+ components:
+ - type: Transform
+ pos: -47.5,50.5
+ parent: 2
+ - uid: 7111
+ components:
+ - type: Transform
+ pos: -43.5,50.5
+ parent: 2
+ - uid: 7112
+ components:
+ - type: Transform
+ pos: -44.5,50.5
+ parent: 2
+ - uid: 7113
+ components:
+ - type: Transform
+ pos: -45.5,50.5
+ parent: 2
+ - uid: 7114
+ components:
+ - type: Transform
+ pos: -46.5,50.5
+ parent: 2
+ - uid: 7115
+ components:
+ - type: Transform
+ pos: -49.5,49.5
+ parent: 2
+ - uid: 7116
+ components:
+ - type: Transform
+ pos: -49.5,48.5
+ parent: 2
+ - uid: 7117
+ components:
+ - type: Transform
+ pos: -50.5,50.5
+ parent: 2
+ - uid: 7118
+ components:
+ - type: Transform
+ pos: -50.5,49.5
+ parent: 2
+ - uid: 7119
+ components:
+ - type: Transform
+ pos: -50.5,48.5
+ parent: 2
+ - uid: 7120
+ components:
+ - type: Transform
+ pos: -51.5,50.5
+ parent: 2
+ - uid: 7121
+ components:
+ - type: Transform
+ pos: -51.5,49.5
+ parent: 2
+ - uid: 7122
+ components:
+ - type: Transform
+ pos: -51.5,48.5
+ parent: 2
+ - uid: 7123
+ components:
+ - type: Transform
+ pos: -47.5,49.5
+ parent: 2
+ - uid: 7124
+ components:
+ - type: Transform
+ pos: -47.5,48.5
+ parent: 2
+ - uid: 7125
+ components:
+ - type: Transform
+ pos: -48.5,50.5
+ parent: 2
+ - uid: 7126
+ components:
+ - type: Transform
+ pos: -48.5,49.5
+ parent: 2
+ - uid: 7127
+ components:
+ - type: Transform
+ pos: -48.5,48.5
+ parent: 2
+ - uid: 7128
+ components:
+ - type: Transform
+ pos: -49.5,50.5
+ parent: 2
+ - uid: 7129
+ components:
+ - type: Transform
+ pos: -54.5,45.5
+ parent: 2
+ - uid: 7130
+ components:
+ - type: Transform
+ pos: -51.5,46.5
+ parent: 2
+ - uid: 7131
+ components:
+ - type: Transform
+ pos: -53.5,48.5
+ parent: 2
+ - uid: 7132
+ components:
+ - type: Transform
+ pos: -53.5,47.5
+ parent: 2
+ - uid: 7133
+ components:
+ - type: Transform
+ pos: -53.5,46.5
+ parent: 2
+ - uid: 7134
+ components:
+ - type: Transform
+ pos: -54.5,48.5
+ parent: 2
+ - uid: 7136
+ components:
+ - type: Transform
+ pos: -54.5,46.5
+ parent: 2
+ - uid: 7137
+ components:
+ - type: Transform
+ pos: -53.5,45.5
+ parent: 2
+ - uid: 7138
+ components:
+ - type: Transform
+ pos: -51.5,47.5
+ parent: 2
+ - uid: 7139
+ components:
+ - type: Transform
+ pos: -51.5,45.5
+ parent: 2
+ - uid: 7140
+ components:
+ - type: Transform
+ pos: -52.5,48.5
+ parent: 2
+ - uid: 7141
+ components:
+ - type: Transform
+ pos: -52.5,47.5
+ parent: 2
+ - uid: 7142
+ components:
+ - type: Transform
+ pos: -52.5,46.5
+ parent: 2
+ - uid: 7143
+ components:
+ - type: Transform
+ pos: -52.5,45.5
+ parent: 2
+ - uid: 7144
+ components:
+ - type: Transform
+ pos: -54.5,44.5
+ parent: 2
+ - uid: 7145
+ components:
+ - type: Transform
+ pos: -54.5,43.5
+ parent: 2
+ - uid: 7146
+ components:
+ - type: Transform
+ pos: -55.5,45.5
+ parent: 2
+ - uid: 7147
+ components:
+ - type: Transform
+ pos: -55.5,44.5
+ parent: 2
+ - uid: 7148
+ components:
+ - type: Transform
+ pos: -55.5,43.5
+ parent: 2
+ - uid: 7149
+ components:
+ - type: Transform
+ pos: -56.5,46.5
+ parent: 2
+ - uid: 7150
+ components:
+ - type: Transform
+ pos: -55.5,46.5
+ parent: 2
+ - uid: 7151
+ components:
+ - type: Transform
+ pos: -58.5,46.5
+ parent: 2
+ - uid: 7152
+ components:
+ - type: Transform
+ pos: -57.5,43.5
+ parent: 2
+ - uid: 7153
+ components:
+ - type: Transform
+ pos: -57.5,44.5
+ parent: 2
+ - uid: 7154
+ components:
+ - type: Transform
+ pos: -57.5,45.5
+ parent: 2
+ - uid: 7155
+ components:
+ - type: Transform
+ pos: -57.5,46.5
+ parent: 2
+ - uid: 7156
+ components:
+ - type: Transform
+ pos: -56.5,43.5
+ parent: 2
+ - uid: 7157
+ components:
+ - type: Transform
+ pos: -56.5,44.5
+ parent: 2
+ - uid: 7158
+ components:
+ - type: Transform
+ pos: -56.5,45.5
+ parent: 2
+ - uid: 7159
+ components:
+ - type: Transform
+ pos: -61.5,44.5
+ parent: 2
+ - uid: 7160
+ components:
+ - type: Transform
+ pos: -61.5,45.5
+ parent: 2
+ - uid: 7161
+ components:
+ - type: Transform
+ pos: -61.5,46.5
+ parent: 2
+ - uid: 7162
+ components:
+ - type: Transform
+ pos: -60.5,44.5
+ parent: 2
+ - uid: 7163
+ components:
+ - type: Transform
+ pos: -60.5,45.5
+ parent: 2
+ - uid: 7164
+ components:
+ - type: Transform
+ pos: -60.5,46.5
+ parent: 2
+ - uid: 7165
+ components:
+ - type: Transform
+ pos: -59.5,44.5
+ parent: 2
+ - uid: 7167
+ components:
+ - type: Transform
+ pos: -59.5,46.5
+ parent: 2
+ - uid: 7168
+ components:
+ - type: Transform
+ pos: -58.5,43.5
+ parent: 2
+ - uid: 7169
+ components:
+ - type: Transform
+ pos: -58.5,44.5
+ parent: 2
+ - uid: 7170
+ components:
+ - type: Transform
+ pos: -58.5,45.5
+ parent: 2
+ - uid: 7171
+ components:
+ - type: Transform
+ pos: -55.5,47.5
+ parent: 2
+ - uid: 7172
+ components:
+ - type: Transform
+ pos: -55.5,48.5
+ parent: 2
+ - uid: 7173
+ components:
+ - type: Transform
+ pos: -55.5,42.5
+ parent: 2
+ - uid: 7174
+ components:
+ - type: Transform
+ pos: -56.5,42.5
+ parent: 2
+ - uid: 7175
+ components:
+ - type: Transform
+ pos: -56.5,41.5
+ parent: 2
+ - uid: 7176
+ components:
+ - type: Transform
+ pos: -58.5,42.5
+ parent: 2
+ - uid: 7177
+ components:
+ - type: Transform
+ pos: -58.5,41.5
+ parent: 2
+ - uid: 7178
+ components:
+ - type: Transform
+ pos: -58.5,40.5
+ parent: 2
+ - uid: 7179
+ components:
+ - type: Transform
+ pos: -53.5,44.5
+ parent: 2
+ - uid: 7180
+ components:
+ - type: Transform
+ pos: -53.5,43.5
+ parent: 2
+ - uid: 7181
+ components:
+ - type: Transform
+ pos: -54.5,42.5
+ parent: 2
+ - uid: 7182
+ components:
+ - type: Transform
+ pos: -56.5,40.5
+ parent: 2
+ - uid: 7183
+ components:
+ - type: Transform
+ pos: -57.5,42.5
+ parent: 2
+ - uid: 7184
+ components:
+ - type: Transform
+ pos: -57.5,41.5
+ parent: 2
+ - uid: 7185
+ components:
+ - type: Transform
+ pos: -57.5,40.5
+ parent: 2
+ - uid: 7186
+ components:
+ - type: Transform
+ pos: -56.5,47.5
+ parent: 2
+ - uid: 7187
+ components:
+ - type: Transform
+ pos: -56.5,48.5
+ parent: 2
+ - uid: 7188
+ components:
+ - type: Transform
+ pos: -56.5,49.5
+ parent: 2
+ - uid: 7189
+ components:
+ - type: Transform
+ pos: -56.5,50.5
+ parent: 2
+ - uid: 7190
+ components:
+ - type: Transform
+ pos: -55.5,49.5
+ parent: 2
+ - uid: 7191
+ components:
+ - type: Transform
+ pos: -55.5,50.5
+ parent: 2
+ - uid: 7192
+ components:
+ - type: Transform
+ pos: -54.5,49.5
+ parent: 2
+ - uid: 7193
+ components:
+ - type: Transform
+ pos: -54.5,50.5
+ parent: 2
+ - uid: 7194
+ components:
+ - type: Transform
+ pos: -45.5,52.5
+ parent: 2
+ - uid: 7195
+ components:
+ - type: Transform
+ pos: -45.5,51.5
+ parent: 2
+ - uid: 7196
+ components:
+ - type: Transform
+ pos: -48.5,51.5
+ parent: 2
+ - uid: 7197
+ components:
+ - type: Transform
+ pos: -47.5,52.5
+ parent: 2
+ - uid: 7198
+ components:
+ - type: Transform
+ pos: -47.5,51.5
+ parent: 2
+ - uid: 7199
+ components:
+ - type: Transform
+ pos: -46.5,52.5
+ parent: 2
+ - uid: 7200
+ components:
+ - type: Transform
+ pos: -46.5,51.5
+ parent: 2
+ - uid: 7201
+ components:
+ - type: Transform
+ pos: -50.5,52.5
+ parent: 2
+ - uid: 7202
+ components:
+ - type: Transform
+ pos: -50.5,51.5
+ parent: 2
+ - uid: 7203
+ components:
+ - type: Transform
+ pos: -49.5,52.5
+ parent: 2
+ - uid: 7204
+ components:
+ - type: Transform
+ pos: -49.5,51.5
+ parent: 2
+ - uid: 7206
+ components:
+ - type: Transform
+ pos: -45.5,49.5
+ parent: 2
+ - uid: 7207
+ components:
+ - type: Transform
+ pos: -44.5,49.5
+ parent: 2
+ - uid: 7208
+ components:
+ - type: Transform
+ pos: -43.5,52.5
+ parent: 2
+ - uid: 7209
+ components:
+ - type: Transform
+ pos: -44.5,51.5
+ parent: 2
+ - uid: 7210
+ components:
+ - type: Transform
+ pos: -44.5,52.5
+ parent: 2
+ - uid: 7211
+ components:
+ - type: Transform
+ pos: -42.5,51.5
+ parent: 2
+ - uid: 7212
+ components:
+ - type: Transform
+ pos: -42.5,52.5
+ parent: 2
+ - uid: 7213
+ components:
+ - type: Transform
+ pos: -43.5,51.5
+ parent: 2
+ - uid: 7214
+ components:
+ - type: Transform
+ pos: -46.5,49.5
+ parent: 2
+ - uid: 7215
+ components:
+ - type: Transform
+ pos: -51.5,52.5
+ parent: 2
+ - uid: 7216
+ components:
+ - type: Transform
+ pos: -55.5,52.5
+ parent: 2
+ - uid: 7217
+ components:
+ - type: Transform
+ pos: -55.5,51.5
+ parent: 2
+ - uid: 7218
+ components:
+ - type: Transform
+ pos: -52.5,49.5
+ parent: 2
+ - uid: 7219
+ components:
+ - type: Transform
+ pos: -53.5,52.5
+ parent: 2
+ - uid: 7220
+ components:
+ - type: Transform
+ pos: -53.5,51.5
+ parent: 2
+ - uid: 7221
+ components:
+ - type: Transform
+ pos: -53.5,50.5
+ parent: 2
+ - uid: 7222
+ components:
+ - type: Transform
+ pos: -53.5,49.5
+ parent: 2
+ - uid: 7223
+ components:
+ - type: Transform
+ pos: -54.5,52.5
+ parent: 2
+ - uid: 7224
+ components:
+ - type: Transform
+ pos: -54.5,51.5
+ parent: 2
+ - uid: 7225
+ components:
+ - type: Transform
+ pos: -51.5,51.5
+ parent: 2
+ - uid: 7227
+ components:
+ - type: Transform
+ pos: -52.5,51.5
+ parent: 2
+ - uid: 7228
+ components:
+ - type: Transform
+ pos: -52.5,50.5
+ parent: 2
+ - uid: 7229
+ components:
+ - type: Transform
+ pos: -67.5,41.5
+ parent: 2
+ - uid: 7230
+ components:
+ - type: Transform
+ pos: -67.5,43.5
+ parent: 2
+ - uid: 7231
+ components:
+ - type: Transform
+ pos: -66.5,43.5
+ parent: 2
+ - uid: 7232
+ components:
+ - type: Transform
+ pos: -65.5,41.5
+ parent: 2
+ - uid: 7233
+ components:
+ - type: Transform
+ pos: -65.5,43.5
+ parent: 2
+ - uid: 7234
+ components:
+ - type: Transform
+ pos: -66.5,41.5
+ parent: 2
+ - uid: 7235
+ components:
+ - type: Transform
+ pos: -62.5,44.5
+ parent: 2
+ - uid: 7236
+ components:
+ - type: Transform
+ pos: -63.5,44.5
+ parent: 2
+ - uid: 7237
+ components:
+ - type: Transform
+ pos: -64.5,44.5
+ parent: 2
+ - uid: 7238
+ components:
+ - type: Transform
+ pos: -65.5,44.5
+ parent: 2
+ - uid: 7239
+ components:
+ - type: Transform
+ pos: -40.5,44.5
+ parent: 2
+ - uid: 7240
+ components:
+ - type: Transform
+ pos: -40.5,45.5
+ parent: 2
+ - uid: 7241
+ components:
+ - type: Transform
+ pos: -38.5,44.5
+ parent: 2
+ - uid: 7242
+ components:
+ - type: Transform
+ pos: -41.5,44.5
+ parent: 2
+ - uid: 7243
+ components:
+ - type: Transform
+ pos: -41.5,45.5
+ parent: 2
+ - uid: 7244
+ components:
+ - type: Transform
+ pos: -37.5,44.5
+ parent: 2
+ - uid: 7245
+ components:
+ - type: Transform
+ pos: -37.5,45.5
+ parent: 2
+ - uid: 7246
+ components:
+ - type: Transform
+ pos: -37.5,46.5
+ parent: 2
+ - uid: 7247
+ components:
+ - type: Transform
+ pos: -38.5,45.5
+ parent: 2
+ - uid: 7248
+ components:
+ - type: Transform
+ pos: -39.5,44.5
+ parent: 2
+ - uid: 7249
+ components:
+ - type: Transform
+ pos: -39.5,45.5
+ parent: 2
+ - uid: 7250
+ components:
+ - type: Transform
+ pos: -24.5,60.5
+ parent: 2
+ - uid: 7251
+ components:
+ - type: Transform
+ pos: -23.5,60.5
+ parent: 2
+ - uid: 7252
+ components:
+ - type: Transform
+ pos: -21.5,62.5
+ parent: 2
+ - uid: 7253
+ components:
+ - type: Transform
+ pos: -21.5,60.5
+ parent: 2
+ - uid: 7254
+ components:
+ - type: Transform
+ pos: -23.5,61.5
+ parent: 2
+ - uid: 7255
+ components:
+ - type: Transform
+ pos: -23.5,62.5
+ parent: 2
+ - uid: 7256
+ components:
+ - type: Transform
+ pos: -22.5,60.5
+ parent: 2
+ - uid: 7257
+ components:
+ - type: Transform
+ pos: -22.5,62.5
+ parent: 2
+ - uid: 7258
+ components:
+ - type: Transform
+ pos: -22.5,61.5
+ parent: 2
+ - uid: 7259
+ components:
+ - type: Transform
+ pos: -21.5,61.5
+ parent: 2
+ - uid: 7260
+ components:
+ - type: Transform
+ pos: -21.5,63.5
+ parent: 2
+ - uid: 7261
+ components:
+ - type: Transform
+ pos: -20.5,62.5
+ parent: 2
+ - uid: 7262
+ components:
+ - type: Transform
+ pos: -20.5,63.5
+ parent: 2
+ - uid: 7263
+ components:
+ - type: Transform
+ pos: -19.5,62.5
+ parent: 2
+ - uid: 7264
+ components:
+ - type: Transform
+ pos: -19.5,63.5
+ parent: 2
+ - uid: 7265
+ components:
+ - type: Transform
+ pos: -19.5,64.5
+ parent: 2
+ - uid: 7266
+ components:
+ - type: Transform
+ pos: -19.5,65.5
+ parent: 2
+ - uid: 7267
+ components:
+ - type: Transform
+ pos: -18.5,63.5
+ parent: 2
+ - uid: 7268
+ components:
+ - type: Transform
+ pos: -17.5,63.5
+ parent: 2
+ - uid: 7269
+ components:
+ - type: Transform
+ pos: -18.5,64.5
+ parent: 2
+ - uid: 7270
+ components:
+ - type: Transform
+ pos: -17.5,64.5
+ parent: 2
+ - uid: 7271
+ components:
+ - type: Transform
+ pos: -17.5,65.5
+ parent: 2
+ - uid: 7272
+ components:
+ - type: Transform
+ pos: -18.5,65.5
+ parent: 2
+ - uid: 7273
+ components:
+ - type: Transform
+ pos: -17.5,66.5
+ parent: 2
+ - uid: 7274
+ components:
+ - type: Transform
+ pos: -17.5,67.5
+ parent: 2
+ - uid: 7275
+ components:
+ - type: Transform
+ pos: -16.5,65.5
+ parent: 2
+ - uid: 7276
+ components:
+ - type: Transform
+ pos: -16.5,66.5
+ parent: 2
+ - uid: 7277
+ components:
+ - type: Transform
+ pos: -16.5,67.5
+ parent: 2
+ - uid: 7278
+ components:
+ - type: Transform
+ pos: -16.5,64.5
+ parent: 2
+ - uid: 7279
+ components:
+ - type: Transform
+ pos: -16.5,63.5
+ parent: 2
+ - uid: 7280
+ components:
+ - type: Transform
+ pos: -22.5,66.5
+ parent: 2
+ - uid: 7281
+ components:
+ - type: Transform
+ pos: -22.5,65.5
+ parent: 2
+ - uid: 7282
+ components:
+ - type: Transform
+ pos: -23.5,66.5
+ parent: 2
+ - uid: 7283
+ components:
+ - type: Transform
+ pos: -23.5,65.5
+ parent: 2
+ - uid: 7284
+ components:
+ - type: Transform
+ pos: -20.5,68.5
+ parent: 2
+ - uid: 7285
+ components:
+ - type: Transform
+ pos: -20.5,67.5
+ parent: 2
+ - uid: 7286
+ components:
+ - type: Transform
+ pos: -20.5,66.5
+ parent: 2
+ - uid: 7287
+ components:
+ - type: Transform
+ pos: -21.5,68.5
+ parent: 2
+ - uid: 7288
+ components:
+ - type: Transform
+ pos: -21.5,67.5
+ parent: 2
+ - uid: 7289
+ components:
+ - type: Transform
+ pos: -21.5,66.5
+ parent: 2
+ - uid: 7290
+ components:
+ - type: Transform
+ pos: -29.5,64.5
+ parent: 2
+ - uid: 7291
+ components:
+ - type: Transform
+ pos: -29.5,63.5
+ parent: 2
+ - uid: 7292
+ components:
+ - type: Transform
+ pos: -30.5,64.5
+ parent: 2
+ - uid: 7293
+ components:
+ - type: Transform
+ pos: -30.5,63.5
+ parent: 2
+ - uid: 7294
+ components:
+ - type: Transform
+ pos: -29.5,62.5
+ parent: 2
+ - uid: 7296
+ components:
+ - type: Transform
+ pos: -31.5,62.5
+ parent: 2
+ - uid: 7297
+ components:
+ - type: Transform
+ pos: -31.5,61.5
+ parent: 2
+ - uid: 7298
+ components:
+ - type: Transform
+ pos: -31.5,60.5
+ parent: 2
+ - uid: 7299
+ components:
+ - type: Transform
+ pos: -32.5,62.5
+ parent: 2
+ - uid: 7300
+ components:
+ - type: Transform
+ pos: -32.5,61.5
+ parent: 2
+ - uid: 7301
+ components:
+ - type: Transform
+ pos: -32.5,60.5
+ parent: 2
+ - uid: 7302
+ components:
+ - type: Transform
+ pos: -26.5,59.5
+ parent: 2
+ - uid: 7303
+ components:
+ - type: Transform
+ pos: -26.5,58.5
+ parent: 2
+ - uid: 7304
+ components:
+ - type: Transform
+ pos: -26.5,57.5
+ parent: 2
+ - uid: 7305
+ components:
+ - type: Transform
+ pos: -27.5,59.5
+ parent: 2
+ - uid: 7306
+ components:
+ - type: Transform
+ pos: -27.5,58.5
+ parent: 2
+ - uid: 7307
+ components:
+ - type: Transform
+ pos: -27.5,57.5
+ parent: 2
+ - uid: 8675
+ components:
+ - type: Transform
+ pos: 1.5,67.5
+ parent: 2
+ - uid: 8676
+ components:
+ - type: Transform
+ pos: 1.5,66.5
+ parent: 2
+ - uid: 8677
+ components:
+ - type: Transform
+ pos: 0.5,67.5
+ parent: 2
+ - uid: 8678
+ components:
+ - type: Transform
+ pos: 0.5,66.5
+ parent: 2
+ - uid: 8679
+ components:
+ - type: Transform
+ pos: -0.5,67.5
+ parent: 2
+ - uid: 8680
+ components:
+ - type: Transform
+ pos: -0.5,66.5
+ parent: 2
+ - uid: 8681
+ components:
+ - type: Transform
+ pos: -1.5,67.5
+ parent: 2
+ - uid: 8682
+ components:
+ - type: Transform
+ pos: -1.5,66.5
+ parent: 2
+ - uid: 8683
+ components:
+ - type: Transform
+ pos: -9.5,73.5
+ parent: 2
+ - uid: 8684
+ components:
+ - type: Transform
+ pos: -8.5,76.5
+ parent: 2
+ - uid: 8685
+ components:
+ - type: Transform
+ pos: -8.5,75.5
+ parent: 2
+ - uid: 8686
+ components:
+ - type: Transform
+ pos: -8.5,74.5
+ parent: 2
+ - uid: 8687
+ components:
+ - type: Transform
+ pos: -8.5,73.5
+ parent: 2
+ - uid: 8688
+ components:
+ - type: Transform
+ pos: -7.5,76.5
+ parent: 2
+ - uid: 8689
+ components:
+ - type: Transform
+ pos: -7.5,75.5
+ parent: 2
+ - uid: 8690
+ components:
+ - type: Transform
+ pos: -7.5,74.5
+ parent: 2
+ - uid: 8691
+ components:
+ - type: Transform
+ pos: -7.5,73.5
+ parent: 2
+ - uid: 8692
+ components:
+ - type: Transform
+ pos: -6.5,76.5
+ parent: 2
+ - uid: 8693
+ components:
+ - type: Transform
+ pos: -6.5,75.5
+ parent: 2
+ - uid: 8694
+ components:
+ - type: Transform
+ pos: -6.5,74.5
+ parent: 2
+ - uid: 8695
+ components:
+ - type: Transform
+ pos: -6.5,73.5
+ parent: 2
+ - uid: 8696
+ components:
+ - type: Transform
+ pos: -10.5,76.5
+ parent: 2
+ - uid: 8697
+ components:
+ - type: Transform
+ pos: -10.5,75.5
+ parent: 2
+ - uid: 8698
+ components:
+ - type: Transform
+ pos: -10.5,74.5
+ parent: 2
+ - uid: 8699
+ components:
+ - type: Transform
+ pos: -10.5,73.5
+ parent: 2
+ - uid: 8700
+ components:
+ - type: Transform
+ pos: -9.5,76.5
+ parent: 2
+ - uid: 8701
+ components:
+ - type: Transform
+ pos: -9.5,75.5
+ parent: 2
+ - uid: 8702
+ components:
+ - type: Transform
+ pos: -9.5,74.5
+ parent: 2
+ - uid: 8703
+ components:
+ - type: Transform
+ pos: -5.5,75.5
+ parent: 2
+ - uid: 8704
+ components:
+ - type: Transform
+ pos: -5.5,76.5
+ parent: 2
+ - uid: 8705
+ components:
+ - type: Transform
+ pos: -5.5,77.5
+ parent: 2
+ - uid: 8706
+ components:
+ - type: Transform
+ pos: -4.5,77.5
+ parent: 2
+ - uid: 8707
+ components:
+ - type: Transform
+ pos: -35.5,53.5
+ parent: 2
+ - uid: 8708
+ components:
+ - type: Transform
+ pos: -35.5,52.5
+ parent: 2
+ - uid: 8709
+ components:
+ - type: Transform
+ pos: -36.5,53.5
+ parent: 2
+ - uid: 8710
+ components:
+ - type: Transform
+ pos: -36.5,52.5
+ parent: 2
+ - uid: 8711
+ components:
+ - type: Transform
+ pos: -37.5,53.5
+ parent: 2
+ - uid: 8712
+ components:
+ - type: Transform
+ pos: -37.5,52.5
+ parent: 2
+ - uid: 8713
+ components:
+ - type: Transform
+ pos: -38.5,52.5
+ parent: 2
+ - uid: 8714
+ components:
+ - type: Transform
+ pos: -39.5,52.5
+ parent: 2
+ - uid: 8715
+ components:
+ - type: Transform
+ pos: -35.5,50.5
+ parent: 2
+ - uid: 8716
+ components:
+ - type: Transform
+ pos: -35.5,51.5
+ parent: 2
+ - uid: 8717
+ components:
+ - type: Transform
+ pos: -36.5,50.5
+ parent: 2
+ - uid: 8718
+ components:
+ - type: Transform
+ pos: -36.5,51.5
+ parent: 2
+ - uid: 8719
+ components:
+ - type: Transform
+ pos: -37.5,50.5
+ parent: 2
+ - uid: 8720
+ components:
+ - type: Transform
+ pos: -37.5,51.5
+ parent: 2
+ - uid: 8721
+ components:
+ - type: Transform
+ pos: -38.5,51.5
+ parent: 2
+ - uid: 8722
+ components:
+ - type: Transform
+ pos: -39.5,51.5
+ parent: 2
+ - uid: 8724
+ components:
+ - type: Transform
+ pos: -45.5,57.5
+ parent: 2
+ - uid: 8725
+ components:
+ - type: Transform
+ pos: -45.5,56.5
+ parent: 2
+ - uid: 8726
+ components:
+ - type: Transform
+ pos: -45.5,55.5
+ parent: 2
+ - uid: 8727
+ components:
+ - type: Transform
+ pos: -45.5,54.5
+ parent: 2
+ - uid: 8728
+ components:
+ - type: Transform
+ pos: -46.5,57.5
+ parent: 2
+ - uid: 8729
+ components:
+ - type: Transform
+ pos: -46.5,56.5
+ parent: 2
+ - uid: 8731
+ components:
+ - type: Transform
+ pos: -46.5,54.5
+ parent: 2
+ - uid: 8732
+ components:
+ - type: Transform
+ pos: -47.5,57.5
+ parent: 2
+ - uid: 8733
+ components:
+ - type: Transform
+ pos: -47.5,56.5
+ parent: 2
+ - uid: 8734
+ components:
+ - type: Transform
+ pos: -47.5,55.5
+ parent: 2
+ - uid: 8735
+ components:
+ - type: Transform
+ pos: -47.5,54.5
+ parent: 2
+ - uid: 8736
+ components:
+ - type: Transform
+ pos: -48.5,57.5
+ parent: 2
+ - uid: 8737
+ components:
+ - type: Transform
+ pos: -48.5,56.5
+ parent: 2
+ - uid: 8738
+ components:
+ - type: Transform
+ pos: -48.5,55.5
+ parent: 2
+ - uid: 8739
+ components:
+ - type: Transform
+ pos: -47.5,53.5
+ parent: 2
+ - uid: 8740
+ components:
+ - type: Transform
+ pos: -48.5,53.5
+ parent: 2
+ - uid: 8741
+ components:
+ - type: Transform
+ pos: -49.5,53.5
+ parent: 2
+ - uid: 8742
+ components:
+ - type: Transform
+ pos: -50.5,53.5
+ parent: 2
+ - uid: 8743
+ components:
+ - type: Transform
+ pos: -51.5,53.5
+ parent: 2
+ - uid: 8744
+ components:
+ - type: Transform
+ pos: -52.5,53.5
+ parent: 2
+ - uid: 8745
+ components:
+ - type: Transform
+ pos: -39.5,59.5
+ parent: 2
+ - uid: 8746
+ components:
+ - type: Transform
+ pos: -39.5,58.5
+ parent: 2
+ - uid: 8747
+ components:
+ - type: Transform
+ pos: -40.5,59.5
+ parent: 2
+ - uid: 8748
+ components:
+ - type: Transform
+ pos: -40.5,58.5
+ parent: 2
+ - uid: 8749
+ components:
+ - type: Transform
+ pos: -41.5,59.5
+ parent: 2
+ - uid: 8750
+ components:
+ - type: Transform
+ pos: -41.5,58.5
+ parent: 2
+ - uid: 8751
+ components:
+ - type: Transform
+ pos: -32.5,64.5
+ parent: 2
+ - uid: 8752
+ components:
+ - type: Transform
+ pos: -32.5,63.5
+ parent: 2
+ - uid: 8753
+ components:
+ - type: Transform
+ pos: -33.5,64.5
+ parent: 2
+ - uid: 8755
+ components:
+ - type: Transform
+ pos: -34.5,64.5
+ parent: 2
+ - uid: 8756
+ components:
+ - type: Transform
+ pos: -34.5,63.5
+ parent: 2
+ - uid: 8757
+ components:
+ - type: Transform
+ pos: -33.5,62.5
+ parent: 2
+ - uid: 8758
+ components:
+ - type: Transform
+ pos: -27.5,66.5
+ parent: 2
+ - uid: 8759
+ components:
+ - type: Transform
+ pos: -26.5,67.5
+ parent: 2
+ - uid: 8760
+ components:
+ - type: Transform
+ pos: -26.5,68.5
+ parent: 2
+ - uid: 8761
+ components:
+ - type: Transform
+ pos: -25.5,68.5
+ parent: 2
+ - uid: 8762
+ components:
+ - type: Transform
+ pos: -28.5,67.5
+ parent: 2
+ - uid: 8763
+ components:
+ - type: Transform
+ pos: -27.5,67.5
+ parent: 2
+ - uid: 8764
+ components:
+ - type: Transform
+ pos: -28.5,66.5
+ parent: 2
+ - uid: 8765
+ components:
+ - type: Transform
+ pos: -27.5,68.5
+ parent: 2
+ - uid: 8766
+ components:
+ - type: Transform
+ pos: -15.5,69.5
+ parent: 2
+ - uid: 8767
+ components:
+ - type: Transform
+ pos: -15.5,68.5
+ parent: 2
+ - uid: 8768
+ components:
+ - type: Transform
+ pos: -15.5,67.5
+ parent: 2
+ - uid: 8769
+ components:
+ - type: Transform
+ pos: -15.5,66.5
+ parent: 2
+ - uid: 8770
+ components:
+ - type: Transform
+ pos: -15.5,65.5
+ parent: 2
+ - uid: 8926
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,-11.5
+ parent: 2
+ - uid: 8927
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,-12.5
+ parent: 2
+ - uid: 8928
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,-11.5
+ parent: 2
+ - uid: 8929
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,-12.5
+ parent: 2
+ - uid: 8930
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-12.5
+ parent: 2
+ - uid: 8931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,-13.5
+ parent: 2
+ - uid: 8932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,-13.5
+ parent: 2
+ - uid: 8933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-10.5
+ parent: 2
+ - uid: 8934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,-10.5
+ parent: 2
+ - uid: 8935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,-10.5
+ parent: 2
+ - uid: 8936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-11.5
+ parent: 2
+ - uid: 8937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,-15.5
+ parent: 2
+ - uid: 8938
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,-16.5
+ parent: 2
+ - uid: 8939
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,-17.5
+ parent: 2
+ - uid: 8949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,-2.5
+ parent: 2
+ - uid: 8950
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,-1.5
+ parent: 2
+ - uid: 8951
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,-2.5
+ parent: 2
+ - uid: 8952
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,-1.5
+ parent: 2
+ - uid: 8953
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,-2.5
+ parent: 2
+ - uid: 8954
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,-1.5
+ parent: 2
+ - uid: 8955
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,-3.5
+ parent: 2
+ - uid: 8956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,-3.5
+ parent: 2
+ - uid: 8957
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,-2.5
+ parent: 2
+ - uid: 8958
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,-3.5
+ parent: 2
+ - uid: 8959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-2.5
+ parent: 2
+ - uid: 9013
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,2.5
+ parent: 2
+ - uid: 9014
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -120.5,1.5
+ parent: 2
+ - uid: 9015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,1.5
+ parent: 2
+ - uid: 9016
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,2.5
+ parent: 2
+ - uid: 9017
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,1.5
+ parent: 2
+ - uid: 9018
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -120.5,2.5
+ parent: 2
+ - uid: 9019
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,4.5
+ parent: 2
+ - uid: 9020
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,3.5
+ parent: 2
+ - uid: 9021
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,2.5
+ parent: 2
+ - uid: 9022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,1.5
+ parent: 2
+ - uid: 9023
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,4.5
+ parent: 2
+ - uid: 9024
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,3.5
+ parent: 2
+ - uid: 9025
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,2.5
+ parent: 2
+ - uid: 9026
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,1.5
+ parent: 2
+ - uid: 9027
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,3.5
+ parent: 2
+ - uid: 9028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,2.5
+ parent: 2
+ - uid: 9029
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,1.5
+ parent: 2
+ - uid: 9030
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,4.5
+ parent: 2
+ - uid: 9031
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,3.5
+ parent: 2
+ - uid: 9032
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,4.5
+ parent: 2
+ - uid: 9033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,2.5
+ parent: 2
+ - uid: 9034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,4.5
+ parent: 2
+ - uid: 9035
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,1.5
+ parent: 2
+ - uid: 9036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,3.5
+ parent: 2
+ - uid: 9037
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,0.5
+ parent: 2
+ - uid: 9038
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,-0.5
+ parent: 2
+ - uid: 9039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,0.5
+ parent: 2
+ - uid: 9040
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,-0.5
+ parent: 2
+ - uid: 9041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,-1.5
+ parent: 2
+ - uid: 9042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,0.5
+ parent: 2
+ - uid: 9043
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,-0.5
+ parent: 2
+ - uid: 9044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,-1.5
+ parent: 2
+ - uid: 9045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,-0.5
+ parent: 2
+ - uid: 9046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,-1.5
+ parent: 2
+ - uid: 9047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,0.5
+ parent: 2
+ - uid: 9048
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,-1.5
+ parent: 2
+ - uid: 9049
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,-2.5
+ parent: 2
+ - uid: 9050
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -120.5,19.5
+ parent: 2
+ - uid: 9051
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,22.5
+ parent: 2
+ - uid: 9052
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,21.5
+ parent: 2
+ - uid: 9053
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,20.5
+ parent: 2
+ - uid: 9054
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,19.5
+ parent: 2
+ - uid: 9055
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -120.5,22.5
+ parent: 2
+ - uid: 9056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -120.5,21.5
+ parent: 2
+ - uid: 9057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -120.5,20.5
+ parent: 2
+ - uid: 9058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,14.5
+ parent: 2
+ - uid: 9059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,14.5
+ parent: 2
+ - uid: 9060
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,13.5
+ parent: 2
+ - uid: 9061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -119.5,13.5
+ parent: 2
+ - uid: 9062
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,12.5
+ parent: 2
+ - uid: 9063
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,11.5
+ parent: 2
+ - uid: 9064
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,10.5
+ parent: 2
+ - uid: 9065
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,9.5
+ parent: 2
+ - uid: 9066
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,8.5
+ parent: 2
+ - uid: 9067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,11.5
+ parent: 2
+ - uid: 9068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,10.5
+ parent: 2
+ - uid: 9069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,9.5
+ parent: 2
+ - uid: 9070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,10.5
+ parent: 2
+ - uid: 9071
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,8.5
+ parent: 2
+ - uid: 9072
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,11.5
+ parent: 2
+ - uid: 9073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,9.5
+ parent: 2
+ - uid: 9074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,8.5
+ parent: 2
+ - uid: 9075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,11.5
+ parent: 2
+ - uid: 9076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,10.5
+ parent: 2
+ - uid: 9077
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,9.5
+ parent: 2
+ - uid: 9078
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,8.5
+ parent: 2
+ - uid: 9079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -115.5,7.5
+ parent: 2
+ - uid: 9080
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,6.5
+ parent: 2
+ - uid: 9081
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -116.5,5.5
+ parent: 2
+ - uid: 9082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,6.5
+ parent: 2
+ - uid: 9083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,5.5
+ parent: 2
+ - uid: 9084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,11.5
+ parent: 2
+ - uid: 9085
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,10.5
+ parent: 2
+ - uid: 9086
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,9.5
+ parent: 2
+ - uid: 9087
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,8.5
+ parent: 2
+ - uid: 9089
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,12.5
+ parent: 2
+ - uid: 9090
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,11.5
+ parent: 2
+ - uid: 9091
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,10.5
+ parent: 2
+ - uid: 9092
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,9.5
+ parent: 2
+ - uid: 9093
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,8.5
+ parent: 2
+ - uid: 9095
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,12.5
+ parent: 2
+ - uid: 9100
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,7.5
+ parent: 2
+ - uid: 9101
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,6.5
+ parent: 2
+ - uid: 9102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,5.5
+ parent: 2
+ - uid: 9103
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,8.5
+ parent: 2
+ - uid: 9104
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,9.5
+ parent: 2
+ - uid: 9105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,4.5
+ parent: 2
+ - uid: 9106
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,5.5
+ parent: 2
+ - uid: 9107
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,6.5
+ parent: 2
+ - uid: 9108
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,9.5
+ parent: 2
+ - uid: 9109
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,5.5
+ parent: 2
+ - uid: 9110
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,6.5
+ parent: 2
+ - uid: 9111
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,7.5
+ parent: 2
+ - uid: 9112
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,8.5
+ parent: 2
+ - uid: 9113
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,9.5
+ parent: 2
+ - uid: 9114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,4.5
+ parent: 2
+ - uid: 9115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,4.5
+ parent: 2
+ - uid: 9116
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,7.5
+ parent: 2
+ - uid: 9117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,8.5
+ parent: 2
+ - uid: 9118
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,9.5
+ parent: 2
+ - uid: 9119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,5.5
+ parent: 2
+ - uid: 9120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,6.5
+ parent: 2
+ - uid: 9121
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,7.5
+ parent: 2
+ - uid: 9122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,8.5
+ parent: 2
+ - uid: 9123
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,12.5
+ parent: 2
+ - uid: 9124
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,13.5
+ parent: 2
+ - uid: 9125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,14.5
+ parent: 2
+ - uid: 9126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,15.5
+ parent: 2
+ - uid: 9127
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,16.5
+ parent: 2
+ - uid: 9128
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -125.5,17.5
+ parent: 2
+ - uid: 9129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,12.5
+ parent: 2
+ - uid: 9130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,17.5
+ parent: 2
+ - uid: 9131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,16.5
+ parent: 2
+ - uid: 9132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,17.5
+ parent: 2
+ - uid: 9133
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,12.5
+ parent: 2
+ - uid: 9134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,13.5
+ parent: 2
+ - uid: 9135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,14.5
+ parent: 2
+ - uid: 9136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,15.5
+ parent: 2
+ - uid: 9137
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,16.5
+ parent: 2
+ - uid: 9138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,13.5
+ parent: 2
+ - uid: 9139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,14.5
+ parent: 2
+ - uid: 9140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,15.5
+ parent: 2
+ - uid: 9141
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,16.5
+ parent: 2
+ - uid: 9142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,17.5
+ parent: 2
+ - uid: 9143
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,13.5
+ parent: 2
+ - uid: 9144
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,14.5
+ parent: 2
+ - uid: 9145
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,15.5
+ parent: 2
+ - uid: 9146
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,18.5
+ parent: 2
+ - uid: 9147
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,19.5
+ parent: 2
+ - uid: 9148
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,17.5
+ parent: 2
+ - uid: 9149
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,18.5
+ parent: 2
+ - uid: 9150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,19.5
+ parent: 2
+ - uid: 9151
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -130.5,22.5
+ parent: 2
+ - uid: 9152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -130.5,21.5
+ parent: 2
+ - uid: 9153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,22.5
+ parent: 2
+ - uid: 9154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,22.5
+ parent: 2
+ - uid: 9155
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,21.5
+ parent: 2
+ - uid: 9156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,21.5
+ parent: 2
+ - uid: 9157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,22.5
+ parent: 2
+ - uid: 9158
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,21.5
+ parent: 2
+ - uid: 9159
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,18.5
+ parent: 2
+ - uid: 9160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -129.5,20.5
+ parent: 2
+ - uid: 9161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,19.5
+ parent: 2
+ - uid: 9162
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -126.5,18.5
+ parent: 2
+ - uid: 9163
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -127.5,20.5
+ parent: 2
+ - uid: 9164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,18.5
+ parent: 2
+ - uid: 9165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,16.5
+ parent: 2
+ - uid: 9166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,16.5
+ parent: 2
+ - uid: 9167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,14.5
+ parent: 2
+ - uid: 9168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,17.5
+ parent: 2
+ - uid: 9169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,16.5
+ parent: 2
+ - uid: 9170
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,15.5
+ parent: 2
+ - uid: 9171
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -122.5,14.5
+ parent: 2
+ - uid: 9172
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,17.5
+ parent: 2
+ - uid: 9173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,16.5
+ parent: 2
+ - uid: 9174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,15.5
+ parent: 2
+ - uid: 9175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,17.5
+ parent: 2
+ - uid: 9176
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,15.5
+ parent: 2
+ - uid: 9177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -124.5,14.5
+ parent: 2
+ - uid: 9178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,17.5
+ parent: 2
+ - uid: 9179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,15.5
+ parent: 2
+ - uid: 9180
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -121.5,14.5
+ parent: 2
+ - uid: 9233
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,22.5
+ parent: 2
+ - uid: 9234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,21.5
+ parent: 2
+ - uid: 9235
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,20.5
+ parent: 2
+ - uid: 9236
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,22.5
+ parent: 2
+ - uid: 9237
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,21.5
+ parent: 2
+ - uid: 9238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,20.5
+ parent: 2
+ - uid: 9239
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,20.5
+ parent: 2
+ - uid: 9240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -103.5,19.5
+ parent: 2
+ - uid: 9241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,20.5
+ parent: 2
+ - uid: 9242
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,19.5
+ parent: 2
+ - uid: 9243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,19.5
+ parent: 2
+ - uid: 9244
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,18.5
+ parent: 2
+ - uid: 9245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,18.5
+ parent: 2
+ - uid: 9246
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -106.5,21.5
+ parent: 2
+ - uid: 9247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -107.5,21.5
+ parent: 2
+ - uid: 9619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-52.5
+ parent: 2
+ - uid: 9620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-53.5
+ parent: 2
+ - uid: 9621
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-54.5
+ parent: 2
+ - uid: 9622
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-55.5
+ parent: 2
+ - uid: 9623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-56.5
+ parent: 2
+ - uid: 9624
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-57.5
+ parent: 2
+ - uid: 9625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-52.5
+ parent: 2
+ - uid: 9626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-53.5
+ parent: 2
+ - uid: 9627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-54.5
+ parent: 2
+ - uid: 9628
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-55.5
+ parent: 2
+ - uid: 9629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-56.5
+ parent: 2
+ - uid: 9630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-57.5
+ parent: 2
+ - uid: 9631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-52.5
+ parent: 2
+ - uid: 9632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-54.5
+ parent: 2
+ - uid: 9633
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-53.5
+ parent: 2
+ - uid: 9634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-55.5
+ parent: 2
+ - uid: 9635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-56.5
+ parent: 2
+ - uid: 9636
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-57.5
+ parent: 2
+ - uid: 9637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-52.5
+ parent: 2
+ - uid: 9638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-53.5
+ parent: 2
+ - uid: 9639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-54.5
+ parent: 2
+ - uid: 9640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-55.5
+ parent: 2
+ - uid: 9641
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-56.5
+ parent: 2
+ - uid: 9642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-56.5
+ parent: 2
+ - uid: 9643
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-57.5
+ parent: 2
+ - uid: 9644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-58.5
+ parent: 2
+ - uid: 9645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-59.5
+ parent: 2
+ - uid: 9646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-56.5
+ parent: 2
+ - uid: 9647
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-57.5
+ parent: 2
+ - uid: 9648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-59.5
+ parent: 2
+ - uid: 9649
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-57.5
+ parent: 2
+ - uid: 9650
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-56.5
+ parent: 2
+ - uid: 9651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-58.5
+ parent: 2
+ - uid: 9652
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-59.5
+ parent: 2
+ - uid: 9653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-58.5
+ parent: 2
+ - uid: 9654
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-59.5
+ parent: 2
+ - uid: 9655
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-58.5
+ parent: 2
+ - uid: 9656
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-59.5
+ parent: 2
+ - uid: 9657
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-58.5
+ parent: 2
+ - uid: 9658
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-63.5
+ parent: 2
+ - uid: 9659
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-60.5
+ parent: 2
+ - uid: 9660
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-61.5
+ parent: 2
+ - uid: 9661
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-62.5
+ parent: 2
+ - uid: 9662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-63.5
+ parent: 2
+ - uid: 9663
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-61.5
+ parent: 2
+ - uid: 9664
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-60.5
+ parent: 2
+ - uid: 9665
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-62.5
+ parent: 2
+ - uid: 9666
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-63.5
+ parent: 2
+ - uid: 9667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-61.5
+ parent: 2
+ - uid: 9668
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-60.5
+ parent: 2
+ - uid: 9669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-62.5
+ parent: 2
+ - uid: 9670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-64.5
+ parent: 2
+ - uid: 9671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-65.5
+ parent: 2
+ - uid: 9672
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-63.5
+ parent: 2
+ - uid: 9673
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-64.5
+ parent: 2
+ - uid: 9674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-65.5
+ parent: 2
+ - uid: 9675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,-65.5
+ parent: 2
+ - uid: 9676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-69.5
+ parent: 2
+ - uid: 9677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-68.5
+ parent: 2
+ - uid: 9678
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-67.5
+ parent: 2
+ - uid: 9679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-66.5
+ parent: 2
+ - uid: 9680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-65.5
+ parent: 2
+ - uid: 9681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-70.5
+ parent: 2
+ - uid: 9682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-69.5
+ parent: 2
+ - uid: 9683
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-68.5
+ parent: 2
+ - uid: 9684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-70.5
+ parent: 2
+ - uid: 9685
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-69.5
+ parent: 2
+ - uid: 9686
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-68.5
+ parent: 2
+ - uid: 9687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-67.5
+ parent: 2
+ - uid: 9688
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-66.5
+ parent: 2
+ - uid: 9689
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-65.5
+ parent: 2
+ - uid: 9690
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-70.5
+ parent: 2
+ - uid: 9691
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-67.5
+ parent: 2
+ - uid: 9692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-66.5
+ parent: 2
+ - uid: 9693
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-65.5
+ parent: 2
+ - uid: 9694
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,-70.5
+ parent: 2
+ - uid: 9695
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,-69.5
+ parent: 2
+ - uid: 9696
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,-68.5
+ parent: 2
+ - uid: 9697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,-67.5
+ parent: 2
+ - uid: 9698
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,-66.5
+ parent: 2
+ - uid: 9699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-67.5
+ parent: 2
+ - uid: 9700
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,-67.5
+ parent: 2
+ - uid: 9701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,-66.5
+ parent: 2
+ - uid: 9702
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,-65.5
+ parent: 2
+ - uid: 9703
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-66.5
+ parent: 2
+ - uid: 9704
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-65.5
+ parent: 2
+ - uid: 9705
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-59.5
+ parent: 2
+ - uid: 9706
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-60.5
+ parent: 2
+ - uid: 9707
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-61.5
+ parent: 2
+ - uid: 9708
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-60.5
+ parent: 2
+ - uid: 9709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-59.5
+ parent: 2
+ - uid: 9710
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-61.5
+ parent: 2
+ - uid: 9711
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-59.5
+ parent: 2
+ - uid: 9712
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-61.5
+ parent: 2
+ - uid: 9713
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-60.5
+ parent: 2
+ - uid: 9714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-59.5
+ parent: 2
+ - uid: 9715
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,-59.5
+ parent: 2
+ - uid: 9716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-58.5
+ parent: 2
+ - uid: 9717
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-57.5
+ parent: 2
+ - uid: 9718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-58.5
+ parent: 2
+ - uid: 9719
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-57.5
+ parent: 2
+ - uid: 9720
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-58.5
+ parent: 2
+ - uid: 9721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-64.5
+ parent: 2
+ - uid: 9722
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-65.5
+ parent: 2
+ - uid: 9723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-66.5
+ parent: 2
+ - uid: 9724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-67.5
+ parent: 2
+ - uid: 9725
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-55.5
+ parent: 2
+ - uid: 9726
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-54.5
+ parent: 2
+ - uid: 9727
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-53.5
+ parent: 2
+ - uid: 9728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-55.5
+ parent: 2
+ - uid: 9729
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-54.5
+ parent: 2
+ - uid: 9730
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-53.5
+ parent: 2
+ - uid: 9731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-55.5
+ parent: 2
+ - uid: 9732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-54.5
+ parent: 2
+ - uid: 9733
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-53.5
+ parent: 2
+ - uid: 9734
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-52.5
+ parent: 2
+ - uid: 9735
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-50.5
+ parent: 2
+ - uid: 9736
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-49.5
+ parent: 2
+ - uid: 9737
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-48.5
+ parent: 2
+ - uid: 9738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-51.5
+ parent: 2
+ - uid: 9739
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-50.5
+ parent: 2
+ - uid: 9740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-49.5
+ parent: 2
+ - uid: 9741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,-48.5
+ parent: 2
+ - uid: 9742
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-52.5
+ parent: 2
+ - uid: 9743
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-51.5
+ parent: 2
+ - uid: 9744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-51.5
+ parent: 2
+ - uid: 9745
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-50.5
+ parent: 2
+ - uid: 9746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-49.5
+ parent: 2
+ - uid: 9747
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-48.5
+ parent: 2
+ - uid: 9748
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-51.5
+ parent: 2
+ - uid: 9749
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-50.5
+ parent: 2
+ - uid: 9750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-48.5
+ parent: 2
+ - uid: 9751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-51.5
+ parent: 2
+ - uid: 9752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-50.5
+ parent: 2
+ - uid: 9753
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-49.5
+ parent: 2
+ - uid: 9754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,-48.5
+ parent: 2
+ - uid: 9755
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-49.5
+ parent: 2
+ - uid: 9756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-55.5
+ parent: 2
+ - uid: 9757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-54.5
+ parent: 2
+ - uid: 9758
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-53.5
+ parent: 2
+ - uid: 9759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-47.5
+ parent: 2
+ - uid: 9760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-46.5
+ parent: 2
+ - uid: 9761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-45.5
+ parent: 2
+ - uid: 9762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-46.5
+ parent: 2
+ - uid: 9763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-45.5
+ parent: 2
+ - uid: 9764
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-47.5
+ parent: 2
+ - uid: 9765
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,-47.5
+ parent: 2
+ - uid: 9766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-45.5
+ parent: 2
+ - uid: 9767
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-46.5
+ parent: 2
+ - uid: 9768
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-41.5
+ parent: 2
+ - uid: 9769
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-44.5
+ parent: 2
+ - uid: 9770
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-43.5
+ parent: 2
+ - uid: 9771
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-42.5
+ parent: 2
+ - uid: 9772
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-41.5
+ parent: 2
+ - uid: 9773
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-44.5
+ parent: 2
+ - uid: 9774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-43.5
+ parent: 2
+ - uid: 9775
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,-42.5
+ parent: 2
+ - uid: 9776
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-40.5
+ parent: 2
+ - uid: 9777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-39.5
+ parent: 2
+ - uid: 9778
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-38.5
+ parent: 2
+ - uid: 9779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-41.5
+ parent: 2
+ - uid: 9780
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-40.5
+ parent: 2
+ - uid: 9781
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,-41.5
+ parent: 2
+ - uid: 9782
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,-40.5
+ parent: 2
+ - uid: 9783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,-41.5
+ parent: 2
+ - uid: 9784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,-40.5
+ parent: 2
+ - uid: 9785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,-39.5
+ parent: 2
+ - uid: 9786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,-38.5
+ parent: 2
+ - uid: 9787
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,-37.5
+ parent: 2
+ - uid: 9788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,-38.5
+ parent: 2
+ - uid: 9789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,-39.5
+ parent: 2
+ - uid: 9790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,-38.5
+ parent: 2
+ - uid: 9791
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,-39.5
+ parent: 2
+ - uid: 9792
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,-40.5
+ parent: 2
+ - uid: 9793
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,-41.5
+ parent: 2
+ - uid: 9794
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,-42.5
+ parent: 2
+ - uid: 9795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,-43.5
+ parent: 2
+ - uid: 9796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,-42.5
+ parent: 2
+ - uid: 9797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,-43.5
+ parent: 2
+ - uid: 9798
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,-44.5
+ parent: 2
+ - uid: 9799
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,-45.5
+ parent: 2
+ - uid: 9800
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,-46.5
+ parent: 2
+ - uid: 9801
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,-44.5
+ parent: 2
+ - uid: 9802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,-45.5
+ parent: 2
+ - uid: 9803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,-46.5
+ parent: 2
+ - uid: 9988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -47.5,-19.5
+ parent: 2
+ - uid: 9989
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -46.5,-20.5
+ parent: 2
+ - uid: 9990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-21.5
+ parent: 2
+ - uid: 9991
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -44.5,-21.5
+ parent: 2
+ - uid: 9992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -43.5,-20.5
+ parent: 2
+ - uid: 9993
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -43.5,-19.5
+ parent: 2
+ - uid: 9994
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -50.5,-19.5
+ parent: 2
+ - uid: 9995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -51.5,-19.5
+ parent: 2
+ - uid: 9996
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,-18.5
+ parent: 2
+ - uid: 9997
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -41.5,-19.5
+ parent: 2
+ - uid: 9998
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,-18.5
+ parent: 2
+ - uid: 9999
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,-17.5
+ parent: 2
+ - uid: 10000
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,-22.5
+ parent: 2
+ - uid: 10001
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.5,-22.5
+ parent: 2
+ - uid: 10002
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,-20.5
+ parent: 2
+ - uid: 10003
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-21.5
+ parent: 2
+ - uid: 10004
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-19.5
+ parent: 2
+ - uid: 10005
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,-19.5
+ parent: 2
+ - uid: 10006
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-20.5
+ parent: 2
+ - uid: 10007
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,-21.5
+ parent: 2
+ - uid: 10008
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.5,-21.5
+ parent: 2
+ - uid: 10009
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-19.5
+ parent: 2
+ - uid: 10010
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -47.5,-18.5
+ parent: 2
+ - uid: 10011
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -44.5,-20.5
+ parent: 2
+ - uid: 10012
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-20.5
+ parent: 2
+ - uid: 10013
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-18.5
+ parent: 2
+ - uid: 10014
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -43.5,-21.5
+ parent: 2
+ - uid: 10015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -46.5,-22.5
+ parent: 2
+ - uid: 10571
+ components:
+ - type: Transform
+ pos: 54.5,95.5
+ parent: 2
+ - uid: 10572
+ components:
+ - type: Transform
+ pos: 54.5,96.5
+ parent: 2
+ - uid: 10573
+ components:
+ - type: Transform
+ pos: 54.5,94.5
+ parent: 2
+ - uid: 10574
+ components:
+ - type: Transform
+ pos: 65.5,95.5
+ parent: 2
+ - uid: 10575
+ components:
+ - type: Transform
+ pos: 65.5,94.5
+ parent: 2
+ - uid: 12267
+ components:
+ - type: Transform
+ pos: 66.5,96.5
+ parent: 2
+ - uid: 12321
+ components:
+ - type: Transform
+ pos: 65.5,97.5
+ parent: 2
+ - uid: 12322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,103.5
+ parent: 2
+ - uid: 12323
+ components:
+ - type: Transform
+ pos: 53.5,94.5
+ parent: 2
+ - uid: 12324
+ components:
+ - type: Transform
+ pos: 55.5,96.5
+ parent: 2
+ - uid: 12325
+ components:
+ - type: Transform
+ pos: 66.5,95.5
+ parent: 2
+ - uid: 12326
+ components:
+ - type: Transform
+ pos: 64.5,95.5
+ parent: 2
+ - uid: 12327
+ components:
+ - type: Transform
+ pos: 65.5,96.5
+ parent: 2
+ - uid: 12328
+ components:
+ - type: Transform
+ pos: 58.5,104.5
+ parent: 2
+ - uid: 12329
+ components:
+ - type: Transform
+ pos: 59.5,105.5
+ parent: 2
+ - uid: 12330
+ components:
+ - type: Transform
+ pos: 59.5,106.5
+ parent: 2
+ - uid: 12331
+ components:
+ - type: Transform
+ pos: 57.5,102.5
+ parent: 2
+ - uid: 12332
+ components:
+ - type: Transform
+ pos: 58.5,103.5
+ parent: 2
+ - uid: 12333
+ components:
+ - type: Transform
+ pos: 58.5,105.5
+ parent: 2
+ - uid: 12334
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,105.5
+ parent: 2
+ - uid: 12335
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,104.5
+ parent: 2
+ - uid: 12336
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,104.5
+ parent: 2
+ - uid: 12337
+ components:
+ - type: Transform
+ pos: 65.5,114.5
+ parent: 2
+ - uid: 12338
+ components:
+ - type: Transform
+ pos: 64.5,113.5
+ parent: 2
+ - uid: 12339
+ components:
+ - type: Transform
+ pos: 65.5,113.5
+ parent: 2
+ - uid: 12340
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,103.5
+ parent: 2
+ - uid: 12341
+ components:
+ - type: Transform
+ pos: 54.5,97.5
+ parent: 2
+ - uid: 12342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,113.5
+ parent: 2
+ - uid: 12343
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,75.5
+ parent: 2
+ - uid: 12344
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,76.5
+ parent: 2
+ - uid: 12345
+ components:
+ - type: Transform
+ pos: 55.5,97.5
+ parent: 2
+ - uid: 12346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,75.5
+ parent: 2
+ - uid: 12347
+ components:
+ - type: Transform
+ pos: 55.5,95.5
+ parent: 2
+ - uid: 12348
+ components:
+ - type: Transform
+ pos: 59.5,104.5
+ parent: 2
+ - uid: 12350
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,76.5
+ parent: 2
+ - uid: 12351
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,74.5
+ parent: 2
+ - uid: 12352
+ components:
+ - type: Transform
+ pos: 41.5,59.5
+ parent: 2
+ - uid: 12353
+ components:
+ - type: Transform
+ pos: 41.5,60.5
+ parent: 2
+ - uid: 12355
+ components:
+ - type: Transform
+ pos: 41.5,61.5
+ parent: 2
+ - uid: 12356
+ components:
+ - type: Transform
+ pos: 41.5,63.5
+ parent: 2
+ - uid: 12361
+ components:
+ - type: Transform
+ pos: 40.5,65.5
+ parent: 2
+ - uid: 12672
+ components:
+ - type: Transform
+ pos: 40.5,64.5
+ parent: 2
+ - uid: 12690
+ components:
+ - type: Transform
+ pos: 42.5,65.5
+ parent: 2
+ - uid: 12693
+ components:
+ - type: Transform
+ pos: 48.5,72.5
+ parent: 2
+ - uid: 12694
+ components:
+ - type: Transform
+ pos: 41.5,62.5
+ parent: 2
+ - uid: 12702
+ components:
+ - type: Transform
+ pos: 41.5,66.5
+ parent: 2
+ - uid: 12703
+ components:
+ - type: Transform
+ pos: 43.5,66.5
+ parent: 2
+ - uid: 12704
+ components:
+ - type: Transform
+ pos: 48.5,71.5
+ parent: 2
+ - uid: 12705
+ components:
+ - type: Transform
+ pos: 49.5,72.5
+ parent: 2
+ - uid: 12706
+ components:
+ - type: Transform
+ pos: 43.5,67.5
+ parent: 2
+ - uid: 12707
+ components:
+ - type: Transform
+ pos: 49.5,71.5
+ parent: 2
+ - uid: 12708
+ components:
+ - type: Transform
+ pos: 52.5,73.5
+ parent: 2
+ - uid: 12709
+ components:
+ - type: Transform
+ pos: 50.5,72.5
+ parent: 2
+ - uid: 12710
+ components:
+ - type: Transform
+ pos: 51.5,73.5
+ parent: 2
+ - uid: 12711
+ components:
+ - type: Transform
+ pos: 50.5,73.5
+ parent: 2
+ - uid: 12712
+ components:
+ - type: Transform
+ pos: 51.5,72.5
+ parent: 2
+ - uid: 12715
+ components:
+ - type: Transform
+ pos: 44.5,68.5
+ parent: 2
+ - uid: 12717
+ components:
+ - type: Transform
+ pos: 40.5,60.5
+ parent: 2
+ - uid: 12720
+ components:
+ - type: Transform
+ pos: 40.5,59.5
+ parent: 2
+ - uid: 12721
+ components:
+ - type: Transform
+ pos: 40.5,63.5
+ parent: 2
+ - uid: 12725
+ components:
+ - type: Transform
+ pos: 41.5,65.5
+ parent: 2
+ - uid: 12728
+ components:
+ - type: Transform
+ pos: 40.5,61.5
+ parent: 2
+ - uid: 12729
+ components:
+ - type: Transform
+ pos: 40.5,58.5
+ parent: 2
+ - uid: 12734
+ components:
+ - type: Transform
+ pos: 40.5,62.5
+ parent: 2
+ - uid: 12737
+ components:
+ - type: Transform
+ pos: 44.5,69.5
+ parent: 2
+ - uid: 12738
+ components:
+ - type: Transform
+ pos: 47.5,71.5
+ parent: 2
+ - uid: 12739
+ components:
+ - type: Transform
+ pos: 41.5,58.5
+ parent: 2
+ - uid: 12740
+ components:
+ - type: Transform
+ pos: 45.5,68.5
+ parent: 2
+ - uid: 12741
+ components:
+ - type: Transform
+ pos: 45.5,69.5
+ parent: 2
+ - uid: 12742
+ components:
+ - type: Transform
+ pos: 46.5,69.5
+ parent: 2
+ - uid: 12743
+ components:
+ - type: Transform
+ pos: 46.5,71.5
+ parent: 2
+ - uid: 12744
+ components:
+ - type: Transform
+ pos: 46.5,70.5
+ parent: 2
+ - uid: 12745
+ components:
+ - type: Transform
+ pos: 44.5,67.5
+ parent: 2
+ - uid: 12747
+ components:
+ - type: Transform
+ pos: 45.5,70.5
+ parent: 2
+ - uid: 12748
+ components:
+ - type: Transform
+ pos: 43.5,68.5
+ parent: 2
+ - uid: 12752
+ components:
+ - type: Transform
+ pos: 42.5,67.5
+ parent: 2
+ - uid: 12865
+ components:
+ - type: Transform
+ pos: 42.5,64.5
+ parent: 2
+ - uid: 12866
+ components:
+ - type: Transform
+ pos: 42.5,66.5
+ parent: 2
+ - uid: 12867
+ components:
+ - type: Transform
+ pos: 43.5,65.5
+ parent: 2
+ - uid: 12868
+ components:
+ - type: Transform
+ pos: 41.5,64.5
+ parent: 2
+ - uid: 13167
+ components:
+ - type: Transform
+ pos: 53.5,73.5
+ parent: 2
+ - uid: 13168
+ components:
+ - type: Transform
+ pos: 54.5,73.5
+ parent: 2
+ - uid: 13169
+ components:
+ - type: Transform
+ pos: 55.5,73.5
+ parent: 2
+ - uid: 13170
+ components:
+ - type: Transform
+ pos: 52.5,74.5
+ parent: 2
+ - uid: 13171
+ components:
+ - type: Transform
+ pos: 53.5,74.5
+ parent: 2
+ - uid: 13172
+ components:
+ - type: Transform
+ pos: 54.5,74.5
+ parent: 2
+ - uid: 13173
+ components:
+ - type: Transform
+ pos: 55.5,74.5
+ parent: 2
+ - uid: 13174
+ components:
+ - type: Transform
+ pos: 56.5,74.5
+ parent: 2
+ - uid: 13175
+ components:
+ - type: Transform
+ pos: 57.5,74.5
+ parent: 2
+ - uid: 13176
+ components:
+ - type: Transform
+ pos: 63.5,75.5
+ parent: 2
+ - uid: 13177
+ components:
+ - type: Transform
+ pos: 64.5,75.5
+ parent: 2
+ - uid: 13178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,74.5
+ parent: 2
+ - uid: 13179
+ components:
+ - type: Transform
+ pos: 56.5,75.5
+ parent: 2
+ - uid: 13180
+ components:
+ - type: Transform
+ pos: 57.5,75.5
+ parent: 2
+ - uid: 13181
+ components:
+ - type: Transform
+ pos: 58.5,75.5
+ parent: 2
+ - uid: 13182
+ components:
+ - type: Transform
+ pos: 59.5,75.5
+ parent: 2
+ - uid: 13183
+ components:
+ - type: Transform
+ pos: 60.5,75.5
+ parent: 2
+ - uid: 13184
+ components:
+ - type: Transform
+ pos: 61.5,75.5
+ parent: 2
+ - uid: 13185
+ components:
+ - type: Transform
+ pos: 62.5,75.5
+ parent: 2
+ - uid: 13186
+ components:
+ - type: Transform
+ pos: 64.5,76.5
+ parent: 2
+ - uid: 13187
+ components:
+ - type: Transform
+ pos: 58.5,76.5
+ parent: 2
+ - uid: 13188
+ components:
+ - type: Transform
+ pos: 59.5,76.5
+ parent: 2
+ - uid: 13189
+ components:
+ - type: Transform
+ pos: 60.5,76.5
+ parent: 2
+ - uid: 13190
+ components:
+ - type: Transform
+ pos: 61.5,76.5
+ parent: 2
+ - uid: 13191
+ components:
+ - type: Transform
+ pos: 62.5,76.5
+ parent: 2
+ - uid: 13192
+ components:
+ - type: Transform
+ pos: 63.5,76.5
+ parent: 2
+ - uid: 13193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,75.5
+ parent: 2
+ - uid: 13194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,72.5
+ parent: 2
+ - uid: 13195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,74.5
+ parent: 2
+ - uid: 13199
+ components:
+ - type: Transform
+ pos: 67.5,73.5
+ parent: 2
+ - uid: 13200
+ components:
+ - type: Transform
+ pos: 68.5,73.5
+ parent: 2
+ - uid: 13201
+ components:
+ - type: Transform
+ pos: 68.5,72.5
+ parent: 2
+ - uid: 13202
+ components:
+ - type: Transform
+ pos: 69.5,71.5
+ parent: 2
+ - uid: 13204
+ components:
+ - type: Transform
+ pos: 69.5,70.5
+ parent: 2
+ - uid: 13205
+ components:
+ - type: Transform
+ pos: 69.5,68.5
+ parent: 2
+ - uid: 13206
+ components:
+ - type: Transform
+ pos: 69.5,67.5
+ parent: 2
+ - uid: 13207
+ components:
+ - type: Transform
+ pos: 69.5,69.5
+ parent: 2
+ - uid: 13208
+ components:
+ - type: Transform
+ pos: 70.5,71.5
+ parent: 2
+ - uid: 13209
+ components:
+ - type: Transform
+ pos: 70.5,70.5
+ parent: 2
+ - uid: 13210
+ components:
+ - type: Transform
+ pos: 70.5,69.5
+ parent: 2
+ - uid: 13211
+ components:
+ - type: Transform
+ pos: 70.5,67.5
+ parent: 2
+ - uid: 13212
+ components:
+ - type: Transform
+ pos: 70.5,68.5
+ parent: 2
+ - uid: 13213
+ components:
+ - type: Transform
+ pos: 69.5,66.5
+ parent: 2
+ - uid: 13214
+ components:
+ - type: Transform
+ pos: 68.5,66.5
+ parent: 2
+ - uid: 13215
+ components:
+ - type: Transform
+ pos: 69.5,65.5
+ parent: 2
+ - uid: 13216
+ components:
+ - type: Transform
+ pos: 69.5,64.5
+ parent: 2
+ - uid: 13217
+ components:
+ - type: Transform
+ pos: 68.5,65.5
+ parent: 2
+ - uid: 13218
+ components:
+ - type: Transform
+ pos: 68.5,64.5
+ parent: 2
+ - uid: 13219
+ components:
+ - type: Transform
+ pos: 68.5,63.5
+ parent: 2
+ - uid: 13220
+ components:
+ - type: Transform
+ pos: 68.5,62.5
+ parent: 2
+ - uid: 13221
+ components:
+ - type: Transform
+ pos: 67.5,63.5
+ parent: 2
+ - uid: 13222
+ components:
+ - type: Transform
+ pos: 67.5,62.5
+ parent: 2
+ - uid: 13223
+ components:
+ - type: Transform
+ pos: 66.5,62.5
+ parent: 2
+ - uid: 13224
+ components:
+ - type: Transform
+ pos: 66.5,61.5
+ parent: 2
+ - uid: 13225
+ components:
+ - type: Transform
+ pos: 66.5,60.5
+ parent: 2
+ - uid: 13226
+ components:
+ - type: Transform
+ pos: 65.5,61.5
+ parent: 2
+ - uid: 13227
+ components:
+ - type: Transform
+ pos: 65.5,60.5
+ parent: 2
+ - uid: 13228
+ components:
+ - type: Transform
+ pos: 64.5,60.5
+ parent: 2
+ - uid: 13229
+ components:
+ - type: Transform
+ pos: 65.5,59.5
+ parent: 2
+ - uid: 13230
+ components:
+ - type: Transform
+ pos: 65.5,58.5
+ parent: 2
+ - uid: 13231
+ components:
+ - type: Transform
+ pos: 64.5,59.5
+ parent: 2
+ - uid: 13232
+ components:
+ - type: Transform
+ pos: 64.5,58.5
+ parent: 2
+ - uid: 13233
+ components:
+ - type: Transform
+ pos: 63.5,58.5
+ parent: 2
+ - uid: 13234
+ components:
+ - type: Transform
+ pos: 63.5,59.5
+ parent: 2
+ - uid: 13235
+ components:
+ - type: Transform
+ pos: 62.5,58.5
+ parent: 2
+ - uid: 13236
+ components:
+ - type: Transform
+ pos: 62.5,59.5
+ parent: 2
+ - uid: 13237
+ components:
+ - type: Transform
+ pos: 61.5,57.5
+ parent: 2
+ - uid: 13238
+ components:
+ - type: Transform
+ pos: 61.5,58.5
+ parent: 2
+ - uid: 13239
+ components:
+ - type: Transform
+ pos: 60.5,57.5
+ parent: 2
+ - uid: 13240
+ components:
+ - type: Transform
+ pos: 60.5,58.5
+ parent: 2
+ - uid: 13241
+ components:
+ - type: Transform
+ pos: 59.5,56.5
+ parent: 2
+ - uid: 13242
+ components:
+ - type: Transform
+ pos: 59.5,57.5
+ parent: 2
+ - uid: 13243
+ components:
+ - type: Transform
+ pos: 58.5,56.5
+ parent: 2
+ - uid: 13244
+ components:
+ - type: Transform
+ pos: 58.5,57.5
+ parent: 2
+ - uid: 13245
+ components:
+ - type: Transform
+ pos: 57.5,55.5
+ parent: 2
+ - uid: 13246
+ components:
+ - type: Transform
+ pos: 57.5,56.5
+ parent: 2
+ - uid: 13247
+ components:
+ - type: Transform
+ pos: 49.5,53.5
+ parent: 2
+ - uid: 13248
+ components:
+ - type: Transform
+ pos: 48.5,53.5
+ parent: 2
+ - uid: 13249
+ components:
+ - type: Transform
+ pos: 48.5,54.5
+ parent: 2
+ - uid: 13250
+ components:
+ - type: Transform
+ pos: 47.5,54.5
+ parent: 2
+ - uid: 13251
+ components:
+ - type: Transform
+ pos: 47.5,53.5
+ parent: 2
+ - uid: 13252
+ components:
+ - type: Transform
+ pos: 46.5,54.5
+ parent: 2
+ - uid: 13253
+ components:
+ - type: Transform
+ pos: 46.5,53.5
+ parent: 2
+ - uid: 13254
+ components:
+ - type: Transform
+ pos: 56.5,54.5
+ parent: 2
+ - uid: 13255
+ components:
+ - type: Transform
+ pos: 56.5,53.5
+ parent: 2
+ - uid: 13256
+ components:
+ - type: Transform
+ pos: 55.5,54.5
+ parent: 2
+ - uid: 13257
+ components:
+ - type: Transform
+ pos: 55.5,53.5
+ parent: 2
+ - uid: 13258
+ components:
+ - type: Transform
+ pos: 54.5,54.5
+ parent: 2
+ - uid: 13259
+ components:
+ - type: Transform
+ pos: 53.5,54.5
+ parent: 2
+ - uid: 13260
+ components:
+ - type: Transform
+ pos: 53.5,53.5
+ parent: 2
+ - uid: 13261
+ components:
+ - type: Transform
+ pos: 52.5,54.5
+ parent: 2
+ - uid: 13262
+ components:
+ - type: Transform
+ pos: 52.5,53.5
+ parent: 2
+ - uid: 13263
+ components:
+ - type: Transform
+ pos: 51.5,54.5
+ parent: 2
+ - uid: 13264
+ components:
+ - type: Transform
+ pos: 51.5,53.5
+ parent: 2
+ - uid: 13265
+ components:
+ - type: Transform
+ pos: 50.5,54.5
+ parent: 2
+ - uid: 13266
+ components:
+ - type: Transform
+ pos: 54.5,53.5
+ parent: 2
+ - uid: 13267
+ components:
+ - type: Transform
+ pos: 50.5,53.5
+ parent: 2
+ - uid: 13268
+ components:
+ - type: Transform
+ pos: 49.5,54.5
+ parent: 2
+ - uid: 13269
+ components:
+ - type: Transform
+ pos: 48.5,55.5
+ parent: 2
+ - uid: 13270
+ components:
+ - type: Transform
+ pos: 49.5,55.5
+ parent: 2
+ - uid: 13271
+ components:
+ - type: Transform
+ pos: 50.5,55.5
+ parent: 2
+ - uid: 13272
+ components:
+ - type: Transform
+ pos: 51.5,55.5
+ parent: 2
+ - uid: 13273
+ components:
+ - type: Transform
+ pos: 52.5,55.5
+ parent: 2
+ - uid: 13274
+ components:
+ - type: Transform
+ pos: 53.5,55.5
+ parent: 2
+ - uid: 13275
+ components:
+ - type: Transform
+ pos: 54.5,55.5
+ parent: 2
+ - uid: 13276
+ components:
+ - type: Transform
+ pos: 55.5,55.5
+ parent: 2
+ - uid: 13277
+ components:
+ - type: Transform
+ pos: 56.5,55.5
+ parent: 2
+ - uid: 13278
+ components:
+ - type: Transform
+ pos: 45.5,54.5
+ parent: 2
+ - uid: 13279
+ components:
+ - type: Transform
+ pos: 45.5,55.5
+ parent: 2
+ - uid: 13280
+ components:
+ - type: Transform
+ pos: 44.5,54.5
+ parent: 2
+ - uid: 13281
+ components:
+ - type: Transform
+ pos: 44.5,55.5
+ parent: 2
+ - uid: 13282
+ components:
+ - type: Transform
+ pos: 44.5,56.5
+ parent: 2
+ - uid: 13283
+ components:
+ - type: Transform
+ pos: 43.5,56.5
+ parent: 2
+ - uid: 13284
+ components:
+ - type: Transform
+ pos: 43.5,57.5
+ parent: 2
+ - uid: 13285
+ components:
+ - type: Transform
+ pos: 42.5,57.5
+ parent: 2
+ - uid: 13286
+ components:
+ - type: Transform
+ pos: 42.5,58.5
+ parent: 2
+ - uid: 13287
+ components:
+ - type: Transform
+ pos: 41.5,57.5
+ parent: 2
+ - uid: 13288
+ components:
+ - type: Transform
+ pos: 42.5,56.5
+ parent: 2
+ - uid: 13289
+ components:
+ - type: Transform
+ pos: 43.5,55.5
+ parent: 2
+ - uid: 13290
+ components:
+ - type: Transform
+ pos: 86.5,0.5
+ parent: 2
+ - uid: 13291
+ components:
+ - type: Transform
+ pos: 84.5,2.5
+ parent: 2
+ - uid: 13292
+ components:
+ - type: Transform
+ pos: 84.5,0.5
+ parent: 2
+ - uid: 13293
+ components:
+ - type: Transform
+ pos: 84.5,-0.5
+ parent: 2
+ - uid: 13294
+ components:
+ - type: Transform
+ pos: 85.5,2.5
+ parent: 2
+ - uid: 13295
+ components:
+ - type: Transform
+ pos: 85.5,1.5
+ parent: 2
+ - uid: 13296
+ components:
+ - type: Transform
+ pos: 85.5,0.5
+ parent: 2
+ - uid: 13297
+ components:
+ - type: Transform
+ pos: 84.5,1.5
+ parent: 2
+ - uid: 13298
+ components:
+ - type: Transform
+ pos: 86.5,2.5
+ parent: 2
+ - uid: 13299
+ components:
+ - type: Transform
+ pos: 85.5,-0.5
+ parent: 2
+ - uid: 13300
+ components:
+ - type: Transform
+ pos: 87.5,2.5
+ parent: 2
+ - uid: 13301
+ components:
+ - type: Transform
+ pos: 87.5,1.5
+ parent: 2
+ - uid: 13302
+ components:
+ - type: Transform
+ pos: 87.5,0.5
+ parent: 2
+ - uid: 13303
+ components:
+ - type: Transform
+ pos: 86.5,-0.5
+ parent: 2
+ - uid: 13304
+ components:
+ - type: Transform
+ pos: 87.5,-0.5
+ parent: 2
+ - uid: 13305
+ components:
+ - type: Transform
+ pos: 86.5,1.5
+ parent: 2
+ - uid: 13306
+ components:
+ - type: Transform
+ pos: 85.5,-1.5
+ parent: 2
+ - uid: 13307
+ components:
+ - type: Transform
+ pos: 86.5,-1.5
+ parent: 2
+ - uid: 13308
+ components:
+ - type: Transform
+ pos: 87.5,-1.5
+ parent: 2
+ - uid: 13309
+ components:
+ - type: Transform
+ pos: 86.5,-2.5
+ parent: 2
+ - uid: 13310
+ components:
+ - type: Transform
+ pos: 87.5,-2.5
+ parent: 2
+ - uid: 13311
+ components:
+ - type: Transform
+ pos: 87.5,-3.5
+ parent: 2
+ - uid: 13312
+ components:
+ - type: Transform
+ pos: 88.5,-0.5
+ parent: 2
+ - uid: 13313
+ components:
+ - type: Transform
+ pos: 88.5,0.5
+ parent: 2
+ - uid: 13314
+ components:
+ - type: Transform
+ pos: 88.5,2.5
+ parent: 2
+ - uid: 13315
+ components:
+ - type: Transform
+ pos: 88.5,1.5
+ parent: 2
+ - uid: 13316
+ components:
+ - type: Transform
+ pos: 89.5,1.5
+ parent: 2
+ - uid: 13317
+ components:
+ - type: Transform
+ pos: 89.5,2.5
+ parent: 2
+ - uid: 13318
+ components:
+ - type: Transform
+ pos: 90.5,2.5
+ parent: 2
+ - uid: 13319
+ components:
+ - type: Transform
+ pos: 86.5,3.5
+ parent: 2
+ - uid: 13320
+ components:
+ - type: Transform
+ pos: 85.5,3.5
+ parent: 2
+ - uid: 13321
+ components:
+ - type: Transform
+ pos: 84.5,3.5
+ parent: 2
+ - uid: 13322
+ components:
+ - type: Transform
+ pos: 83.5,1.5
+ parent: 2
+ - uid: 13323
+ components:
+ - type: Transform
+ pos: 83.5,2.5
+ parent: 2
+ - uid: 13324
+ components:
+ - type: Transform
+ pos: 83.5,3.5
+ parent: 2
+ - uid: 13325
+ components:
+ - type: Transform
+ pos: 88.5,3.5
+ parent: 2
+ - uid: 13326
+ components:
+ - type: Transform
+ pos: 87.5,3.5
+ parent: 2
+ - uid: 13327
+ components:
+ - type: Transform
+ pos: 85.5,4.5
+ parent: 2
+ - uid: 13328
+ components:
+ - type: Transform
+ pos: 86.5,4.5
+ parent: 2
+ - uid: 13329
+ components:
+ - type: Transform
+ pos: 87.5,4.5
+ parent: 2
+ - uid: 13330
+ components:
+ - type: Transform
+ pos: 87.5,5.5
+ parent: 2
+ - uid: 13331
+ components:
+ - type: Transform
+ pos: 88.5,4.5
+ parent: 2
+ - uid: 13332
+ components:
+ - type: Transform
+ pos: 89.5,3.5
+ parent: 2
+ - uid: 13333
+ components:
+ - type: Transform
+ pos: 82.5,2.5
+ parent: 2
+ - uid: 13334
+ components:
+ - type: Transform
+ pos: 77.5,-11.5
+ parent: 2
+ - uid: 13335
+ components:
+ - type: Transform
+ pos: 76.5,-12.5
+ parent: 2
+ - uid: 13336
+ components:
+ - type: Transform
+ pos: 75.5,-12.5
+ parent: 2
+ - uid: 13337
+ components:
+ - type: Transform
+ pos: 74.5,-13.5
+ parent: 2
+ - uid: 13338
+ components:
+ - type: Transform
+ pos: 73.5,-15.5
+ parent: 2
+ - uid: 13339
+ components:
+ - type: Transform
+ pos: 74.5,-14.5
+ parent: 2
+ - uid: 13340
+ components:
+ - type: Transform
+ pos: 72.5,-17.5
+ parent: 2
+ - uid: 13341
+ components:
+ - type: Transform
+ pos: 71.5,-20.5
+ parent: 2
+ - uid: 13342
+ components:
+ - type: Transform
+ pos: 78.5,-12.5
+ parent: 2
+ - uid: 13343
+ components:
+ - type: Transform
+ pos: 79.5,-13.5
+ parent: 2
+ - uid: 13344
+ components:
+ - type: Transform
+ pos: 78.5,-15.5
+ parent: 2
+ - uid: 13345
+ components:
+ - type: Transform
+ pos: 78.5,-17.5
+ parent: 2
+ - uid: 13346
+ components:
+ - type: Transform
+ pos: 77.5,-19.5
+ parent: 2
+ - uid: 13347
+ components:
+ - type: Transform
+ pos: 76.5,-21.5
+ parent: 2
+ - uid: 13348
+ components:
+ - type: Transform
+ pos: 75.5,-22.5
+ parent: 2
+ - uid: 13349
+ components:
+ - type: Transform
+ pos: 74.5,-22.5
+ parent: 2
+ - uid: 13350
+ components:
+ - type: Transform
+ pos: 73.5,-23.5
+ parent: 2
+ - uid: 13351
+ components:
+ - type: Transform
+ pos: 73.5,-22.5
+ parent: 2
+ - uid: 13352
+ components:
+ - type: Transform
+ pos: 72.5,-22.5
+ parent: 2
+ - uid: 13353
+ components:
+ - type: Transform
+ pos: 72.5,-21.5
+ parent: 2
+ - uid: 13354
+ components:
+ - type: Transform
+ pos: 72.5,-19.5
+ parent: 2
+ - uid: 13355
+ components:
+ - type: Transform
+ pos: 72.5,-18.5
+ parent: 2
+ - uid: 13356
+ components:
+ - type: Transform
+ pos: 73.5,-16.5
+ parent: 2
+ - uid: 13357
+ components:
+ - type: Transform
+ pos: 78.5,-14.5
+ parent: 2
+ - uid: 13358
+ components:
+ - type: Transform
+ pos: 79.5,-14.5
+ parent: 2
+ - uid: 13359
+ components:
+ - type: Transform
+ pos: 77.5,-18.5
+ parent: 2
+ - uid: 13360
+ components:
+ - type: Transform
+ pos: 78.5,-18.5
+ parent: 2
+ - uid: 13361
+ components:
+ - type: Transform
+ pos: 78.5,-16.5
+ parent: 2
+ - uid: 13362
+ components:
+ - type: Transform
+ pos: 76.5,-20.5
+ parent: 2
+ - uid: 13363
+ components:
+ - type: Transform
+ pos: 74.5,-19.5
+ parent: 2
+ - uid: 13364
+ components:
+ - type: Transform
+ pos: 74.5,-18.5
+ parent: 2
+ - uid: 13365
+ components:
+ - type: Transform
+ pos: 74.5,-17.5
+ parent: 2
+ - uid: 13366
+ components:
+ - type: Transform
+ pos: 73.5,-21.5
+ parent: 2
+ - uid: 13367
+ components:
+ - type: Transform
+ pos: 73.5,-20.5
+ parent: 2
+ - uid: 13368
+ components:
+ - type: Transform
+ pos: 73.5,-19.5
+ parent: 2
+ - uid: 13369
+ components:
+ - type: Transform
+ pos: 73.5,-18.5
+ parent: 2
+ - uid: 13370
+ components:
+ - type: Transform
+ pos: 73.5,-17.5
+ parent: 2
+ - uid: 13371
+ components:
+ - type: Transform
+ pos: 75.5,-21.5
+ parent: 2
+ - uid: 13372
+ components:
+ - type: Transform
+ pos: 75.5,-20.5
+ parent: 2
+ - uid: 13373
+ components:
+ - type: Transform
+ pos: 75.5,-19.5
+ parent: 2
+ - uid: 13374
+ components:
+ - type: Transform
+ pos: 75.5,-18.5
+ parent: 2
+ - uid: 13375
+ components:
+ - type: Transform
+ pos: 75.5,-17.5
+ parent: 2
+ - uid: 13376
+ components:
+ - type: Transform
+ pos: 74.5,-21.5
+ parent: 2
+ - uid: 13377
+ components:
+ - type: Transform
+ pos: 74.5,-20.5
+ parent: 2
+ - uid: 13378
+ components:
+ - type: Transform
+ pos: 72.5,-20.5
+ parent: 2
+ - uid: 13379
+ components:
+ - type: Transform
+ pos: 76.5,-19.5
+ parent: 2
+ - uid: 13380
+ components:
+ - type: Transform
+ pos: 76.5,-18.5
+ parent: 2
+ - uid: 13381
+ components:
+ - type: Transform
+ pos: 76.5,-17.5
+ parent: 2
+ - uid: 13382
+ components:
+ - type: Transform
+ pos: 77.5,-17.5
+ parent: 2
+ - uid: 13383
+ components:
+ - type: Transform
+ pos: 74.5,-15.5
+ parent: 2
+ - uid: 13384
+ components:
+ - type: Transform
+ pos: 77.5,-16.5
+ parent: 2
+ - uid: 13385
+ components:
+ - type: Transform
+ pos: 77.5,-15.5
+ parent: 2
+ - uid: 13386
+ components:
+ - type: Transform
+ pos: 76.5,-16.5
+ parent: 2
+ - uid: 13387
+ components:
+ - type: Transform
+ pos: 76.5,-15.5
+ parent: 2
+ - uid: 13388
+ components:
+ - type: Transform
+ pos: 75.5,-16.5
+ parent: 2
+ - uid: 13389
+ components:
+ - type: Transform
+ pos: 75.5,-15.5
+ parent: 2
+ - uid: 13390
+ components:
+ - type: Transform
+ pos: 74.5,-16.5
+ parent: 2
+ - uid: 13391
+ components:
+ - type: Transform
+ pos: 77.5,-14.5
+ parent: 2
+ - uid: 13392
+ components:
+ - type: Transform
+ pos: 77.5,-13.5
+ parent: 2
+ - uid: 13393
+ components:
+ - type: Transform
+ pos: 76.5,-14.5
+ parent: 2
+ - uid: 13394
+ components:
+ - type: Transform
+ pos: 76.5,-13.5
+ parent: 2
+ - uid: 13395
+ components:
+ - type: Transform
+ pos: 75.5,-14.5
+ parent: 2
+ - uid: 13396
+ components:
+ - type: Transform
+ pos: 75.5,-13.5
+ parent: 2
+ - uid: 13397
+ components:
+ - type: Transform
+ pos: 77.5,-12.5
+ parent: 2
+ - uid: 13398
+ components:
+ - type: Transform
+ pos: 78.5,-13.5
+ parent: 2
+ - uid: 13399
+ components:
+ - type: Transform
+ pos: 47.5,55.5
+ parent: 2
+ - uid: 13400
+ components:
+ - type: Transform
+ pos: 46.5,55.5
+ parent: 2
+ - uid: 13401
+ components:
+ - type: Transform
+ pos: 45.5,56.5
+ parent: 2
+ - uid: 13402
+ components:
+ - type: Transform
+ pos: 44.5,57.5
+ parent: 2
+ - uid: 13403
+ components:
+ - type: Transform
+ pos: 43.5,58.5
+ parent: 2
+ - uid: 13404
+ components:
+ - type: Transform
+ pos: 42.5,59.5
+ parent: 2
+ - uid: 13405
+ components:
+ - type: Transform
+ pos: 42.5,60.5
+ parent: 2
+ - uid: 13406
+ components:
+ - type: Transform
+ pos: 42.5,61.5
+ parent: 2
+ - uid: 13407
+ components:
+ - type: Transform
+ pos: 42.5,62.5
+ parent: 2
+ - uid: 13408
+ components:
+ - type: Transform
+ pos: 42.5,63.5
+ parent: 2
+ - uid: 13409
+ components:
+ - type: Transform
+ pos: 43.5,64.5
+ parent: 2
+ - uid: 13410
+ components:
+ - type: Transform
+ pos: 44.5,66.5
+ parent: 2
+ - uid: 13411
+ components:
+ - type: Transform
+ pos: 45.5,67.5
+ parent: 2
+ - uid: 13412
+ components:
+ - type: Transform
+ pos: 46.5,68.5
+ parent: 2
+ - uid: 13413
+ components:
+ - type: Transform
+ pos: 47.5,70.5
+ parent: 2
+ - uid: 13414
+ components:
+ - type: Transform
+ pos: 47.5,69.5
+ parent: 2
+ - uid: 13415
+ components:
+ - type: Transform
+ pos: 50.5,71.5
+ parent: 2
+ - uid: 13416
+ components:
+ - type: Transform
+ pos: 52.5,72.5
+ parent: 2
+ - uid: 13417
+ components:
+ - type: Transform
+ pos: 53.5,72.5
+ parent: 2
+ - uid: 13418
+ components:
+ - type: Transform
+ pos: 54.5,72.5
+ parent: 2
+ - uid: 13419
+ components:
+ - type: Transform
+ pos: 55.5,72.5
+ parent: 2
+ - uid: 13420
+ components:
+ - type: Transform
+ pos: 56.5,73.5
+ parent: 2
+ - uid: 13421
+ components:
+ - type: Transform
+ pos: 57.5,73.5
+ parent: 2
+ - uid: 13422
+ components:
+ - type: Transform
+ pos: 58.5,74.5
+ parent: 2
+ - uid: 13423
+ components:
+ - type: Transform
+ pos: 59.5,74.5
+ parent: 2
+ - uid: 13424
+ components:
+ - type: Transform
+ pos: 60.5,74.5
+ parent: 2
+ - uid: 13425
+ components:
+ - type: Transform
+ pos: 61.5,74.5
+ parent: 2
+ - uid: 13426
+ components:
+ - type: Transform
+ pos: 62.5,74.5
+ parent: 2
+ - uid: 13427
+ components:
+ - type: Transform
+ pos: 63.5,74.5
+ parent: 2
+ - uid: 13428
+ components:
+ - type: Transform
+ pos: 64.5,74.5
+ parent: 2
+ - uid: 13430
+ components:
+ - type: Transform
+ pos: 66.5,73.5
+ parent: 2
+ - uid: 13431
+ components:
+ - type: Transform
+ pos: 67.5,72.5
+ parent: 2
+ - uid: 13432
+ components:
+ - type: Transform
+ pos: 68.5,71.5
+ parent: 2
+ - uid: 13433
+ components:
+ - type: Transform
+ pos: 67.5,64.5
+ parent: 2
+ - uid: 13434
+ components:
+ - type: Transform
+ pos: 66.5,63.5
+ parent: 2
+ - uid: 13435
+ components:
+ - type: Transform
+ pos: 65.5,62.5
+ parent: 2
+ - uid: 13436
+ components:
+ - type: Transform
+ pos: 64.5,61.5
+ parent: 2
+ - uid: 13437
+ components:
+ - type: Transform
+ pos: 63.5,60.5
+ parent: 2
+ - uid: 13438
+ components:
+ - type: Transform
+ pos: 61.5,59.5
+ parent: 2
+ - uid: 13439
+ components:
+ - type: Transform
+ pos: 56.5,56.5
+ parent: 2
+ - uid: 13466
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -56.5,39.5
+ parent: 2
+ - uid: 13467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,40.5
+ parent: 2
+ - uid: 13468
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,43.5
+ parent: 2
+ - uid: 13469
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,44.5
+ parent: 2
+ - uid: 13470
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -50.5,47.5
+ parent: 2
+ - uid: 13471
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -49.5,45.5
+ parent: 2
+ - uid: 13472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -48.5,46.5
+ parent: 2
+ - uid: 13473
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -48.5,47.5
+ parent: 2
+ - uid: 13474
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -49.5,46.5
+ parent: 2
+ - uid: 13475
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -49.5,47.5
+ parent: 2
+ - uid: 13476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -50.5,45.5
+ parent: 2
+ - uid: 13477
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -50.5,46.5
+ parent: 2
+ - uid: 13478
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -47.5,46.5
+ parent: 2
+ - uid: 13479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -46.5,48.5
+ parent: 2
+ - uid: 13480
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -46.5,47.5
+ parent: 2
+ - uid: 13602
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,114.5
+ parent: 2
+ - uid: 13603
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,116.5
+ parent: 2
+ - uid: 13604
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,116.5
+ parent: 2
+ - uid: 13605
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,113.5
+ parent: 2
+ - uid: 13606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,114.5
+ parent: 2
+ - uid: 13607
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,115.5
+ parent: 2
+ - uid: 13608
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,116.5
+ parent: 2
+ - uid: 13609
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,115.5
+ parent: 2
+ - uid: 13610
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,115.5
+ parent: 2
+ - uid: 13611
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,116.5
+ parent: 2
+ - uid: 13612
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,117.5
+ parent: 2
+ - uid: 13613
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,118.5
+ parent: 2
+ - uid: 13614
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,117.5
+ parent: 2
+ - uid: 13615
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,118.5
+ parent: 2
+ - uid: 13616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,117.5
+ parent: 2
+ - uid: 13617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,106.5
+ parent: 2
+ - uid: 13618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,119.5
+ parent: 2
+ - uid: 13619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,116.5
+ parent: 2
+ - uid: 13620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,117.5
+ parent: 2
+ - uid: 13621
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,119.5
+ parent: 2
+ - uid: 13622
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,118.5
+ parent: 2
+ - uid: 13623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,117.5
+ parent: 2
+ - uid: 13624
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,118.5
+ parent: 2
+ - uid: 13625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,116.5
+ parent: 2
+ - uid: 13626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,119.5
+ parent: 2
+ - uid: 13627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,118.5
+ parent: 2
+ - uid: 13628
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,117.5
+ parent: 2
+ - uid: 13629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,116.5
+ parent: 2
+ - uid: 13630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,119.5
+ parent: 2
+ - uid: 13631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,118.5
+ parent: 2
+ - uid: 13632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,117.5
+ parent: 2
+ - uid: 13633
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,116.5
+ parent: 2
+ - uid: 13634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,110.5
+ parent: 2
+ - uid: 13635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,118.5
+ parent: 2
+ - uid: 13636
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,119.5
+ parent: 2
+ - uid: 13637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,120.5
+ parent: 2
+ - uid: 13638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,121.5
+ parent: 2
+ - uid: 13639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,122.5
+ parent: 2
+ - uid: 13640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,120.5
+ parent: 2
+ - uid: 13641
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,121.5
+ parent: 2
+ - uid: 13642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,122.5
+ parent: 2
+ - uid: 13643
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,120.5
+ parent: 2
+ - uid: 13644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,121.5
+ parent: 2
+ - uid: 13645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,122.5
+ parent: 2
+ - uid: 13646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,120.5
+ parent: 2
+ - uid: 13647
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,121.5
+ parent: 2
+ - uid: 13648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,120.5
+ parent: 2
+ - uid: 13649
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,119.5
+ parent: 2
+ - uid: 13650
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,117.5
+ parent: 2
+ - uid: 13651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,119.5
+ parent: 2
+ - uid: 13652
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,105.5
+ parent: 2
+ - uid: 13653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,105.5
+ parent: 2
+ - uid: 13654
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,106.5
+ parent: 2
+ - uid: 13655
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,106.5
+ parent: 2
+ - uid: 13656
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,108.5
+ parent: 2
+ - uid: 13657
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,109.5
+ parent: 2
+ - uid: 13658
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,107.5
+ parent: 2
+ - uid: 13659
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,108.5
+ parent: 2
+ - uid: 13660
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,107.5
+ parent: 2
+ - uid: 13661
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,110.5
+ parent: 2
+ - uid: 13662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,107.5
+ parent: 2
+ - uid: 13663
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,123.5
+ parent: 2
+ - uid: 13664
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,123.5
+ parent: 2
+ - uid: 13665
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,108.5
+ parent: 2
+ - uid: 13666
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,109.5
+ parent: 2
+ - uid: 13667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,115.5
+ parent: 2
+ - uid: 13668
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,114.5
+ parent: 2
+ - uid: 13669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,115.5
+ parent: 2
+ - uid: 13670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,114.5
+ parent: 2
+ - uid: 13671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,115.5
+ parent: 2
+ - uid: 13672
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,114.5
+ parent: 2
+ - uid: 13673
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,114.5
+ parent: 2
+ - uid: 13674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,113.5
+ parent: 2
+ - uid: 13675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,112.5
+ parent: 2
+ - uid: 13676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,111.5
+ parent: 2
+ - uid: 13677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,113.5
+ parent: 2
+ - uid: 13678
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,112.5
+ parent: 2
+ - uid: 13679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,111.5
+ parent: 2
+ - uid: 13680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,113.5
+ parent: 2
+ - uid: 13681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,112.5
+ parent: 2
+ - uid: 13682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,111.5
+ parent: 2
+ - uid: 13683
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,112.5
+ parent: 2
+ - uid: 13684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,111.5
+ parent: 2
+ - uid: 13685
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,112.5
+ parent: 2
+ - uid: 13686
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,111.5
+ parent: 2
+ - uid: 13687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,110.5
+ parent: 2
+ - uid: 13688
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,109.5
+ parent: 2
+ - uid: 13689
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,110.5
+ parent: 2
+ - uid: 13690
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,109.5
+ parent: 2
+ - uid: 13691
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,110.5
+ parent: 2
+ - uid: 13692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,109.5
+ parent: 2
+ - uid: 13693
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,110.5
+ parent: 2
+ - uid: 13694
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,109.5
+ parent: 2
+ - uid: 13695
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,111.5
+ parent: 2
+ - uid: 13696
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,110.5
+ parent: 2
+ - uid: 13697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,109.5
+ parent: 2
+ - uid: 13698
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,111.5
+ parent: 2
+ - uid: 13699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,110.5
+ parent: 2
+ - uid: 13700
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,109.5
+ parent: 2
+ - uid: 13701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,108.5
+ parent: 2
+ - uid: 13702
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,108.5
+ parent: 2
+ - uid: 13703
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,108.5
+ parent: 2
+ - uid: 13704
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,108.5
+ parent: 2
+ - uid: 13705
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,108.5
+ parent: 2
+ - uid: 13706
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,109.5
+ parent: 2
+ - uid: 13707
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,110.5
+ parent: 2
+ - uid: 13708
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,111.5
+ parent: 2
+ - uid: 13709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,112.5
+ parent: 2
+ - uid: 13710
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,113.5
+ parent: 2
+ - uid: 13711
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,114.5
+ parent: 2
+ - uid: 13712
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,112.5
+ parent: 2
+ - uid: 13713
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,113.5
+ parent: 2
+ - uid: 13714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,114.5
+ parent: 2
+ - uid: 13715
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,112.5
+ parent: 2
+ - uid: 13716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,105.5
+ parent: 2
+ - uid: 13717
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,108.5
+ parent: 2
+ - uid: 13718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,107.5
+ parent: 2
+ - uid: 13719
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,106.5
+ parent: 2
+ - uid: 13720
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,105.5
+ parent: 2
+ - uid: 13721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,107.5
+ parent: 2
+ - uid: 13722
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,106.5
+ parent: 2
+ - uid: 13723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,107.5
+ parent: 2
+ - uid: 13724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,106.5
+ parent: 2
+ - uid: 13725
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,104.5
+ parent: 2
+ - uid: 13726
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,103.5
+ parent: 2
+ - uid: 13727
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,103.5
+ parent: 2
+ - uid: 13728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,104.5
+ parent: 2
+ - uid: 13729
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,106.5
+ parent: 2
+ - uid: 13730
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,106.5
+ parent: 2
+ - uid: 13731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,107.5
+ parent: 2
+ - uid: 13732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,109.5
+ parent: 2
+ - uid: 13733
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,111.5
+ parent: 2
+ - uid: 13734
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,112.5
+ parent: 2
+ - uid: 13735
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,102.5
+ parent: 2
+ - uid: 13736
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,101.5
+ parent: 2
+ - uid: 13737
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,102.5
+ parent: 2
+ - uid: 13738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,101.5
+ parent: 2
+ - uid: 13739
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,104.5
+ parent: 2
+ - uid: 13740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,103.5
+ parent: 2
+ - uid: 13741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,102.5
+ parent: 2
+ - uid: 13742
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,101.5
+ parent: 2
+ - uid: 13743
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,103.5
+ parent: 2
+ - uid: 13744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,102.5
+ parent: 2
+ - uid: 13745
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,101.5
+ parent: 2
+ - uid: 13746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,103.5
+ parent: 2
+ - uid: 13747
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,102.5
+ parent: 2
+ - uid: 13748
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,101.5
+ parent: 2
+ - uid: 13749
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,104.5
+ parent: 2
+ - uid: 13750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,105.5
+ parent: 2
+ - uid: 13751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,100.5
+ parent: 2
+ - uid: 13752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,100.5
+ parent: 2
+ - uid: 13753
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,100.5
+ parent: 2
+ - uid: 13754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,99.5
+ parent: 2
+ - uid: 13755
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,99.5
+ parent: 2
+ - uid: 13756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,99.5
+ parent: 2
+ - uid: 13757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,98.5
+ parent: 2
+ - uid: 13758
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,98.5
+ parent: 2
+ - uid: 13759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,77.5
+ parent: 2
+ - uid: 13760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,75.5
+ parent: 2
+ - uid: 13761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,77.5
+ parent: 2
+ - uid: 13762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,77.5
+ parent: 2
+ - uid: 13763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,77.5
+ parent: 2
+ - uid: 13764
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,76.5
+ parent: 2
+ - uid: 13765
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,77.5
+ parent: 2
+ - uid: 13766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,76.5
+ parent: 2
+ - uid: 13767
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,74.5
+ parent: 2
+ - uid: 13768
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,77.5
+ parent: 2
+ - uid: 13769
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,76.5
+ parent: 2
+ - uid: 13770
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,75.5
+ parent: 2
+ - uid: 13771
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,74.5
+ parent: 2
+ - uid: 13772
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,80.5
+ parent: 2
+ - uid: 13773
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,78.5
+ parent: 2
+ - uid: 13774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,79.5
+ parent: 2
+ - uid: 13775
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,80.5
+ parent: 2
+ - uid: 13776
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,78.5
+ parent: 2
+ - uid: 13777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,79.5
+ parent: 2
+ - uid: 13778
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,80.5
+ parent: 2
+ - uid: 13779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,78.5
+ parent: 2
+ - uid: 13780
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,79.5
+ parent: 2
+ - uid: 13781
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,80.5
+ parent: 2
+ - uid: 13782
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,78.5
+ parent: 2
+ - uid: 13783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,79.5
+ parent: 2
+ - uid: 13784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,80.5
+ parent: 2
+ - uid: 13785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,78.5
+ parent: 2
+ - uid: 13786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,79.5
+ parent: 2
+ - uid: 13787
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,80.5
+ parent: 2
+ - uid: 13788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,78.5
+ parent: 2
+ - uid: 13789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,79.5
+ parent: 2
+ - uid: 13790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,78.5
+ parent: 2
+ - uid: 13791
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,77.5
+ parent: 2
+ - uid: 13792
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,78.5
+ parent: 2
+ - uid: 13793
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,77.5
+ parent: 2
+ - uid: 13794
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,77.5
+ parent: 2
+ - uid: 13795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,78.5
+ parent: 2
+ - uid: 13796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,81.5
+ parent: 2
+ - uid: 13797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,81.5
+ parent: 2
+ - uid: 13798
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,79.5
+ parent: 2
+ - uid: 13799
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,80.5
+ parent: 2
+ - uid: 13800
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,81.5
+ parent: 2
+ - uid: 13801
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,81.5
+ parent: 2
+ - uid: 13802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,81.5
+ parent: 2
+ - uid: 13803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,81.5
+ parent: 2
+ - uid: 13804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,79.5
+ parent: 2
+ - uid: 13805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,77.5
+ parent: 2
+ - uid: 13806
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,73.5
+ parent: 2
+ - uid: 13807
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,75.5
+ parent: 2
+ - uid: 13808
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,73.5
+ parent: 2
+ - uid: 13809
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,74.5
+ parent: 2
+ - uid: 13810
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,72.5
+ parent: 2
+ - uid: 13811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,75.5
+ parent: 2
+ - uid: 13812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,74.5
+ parent: 2
+ - uid: 13813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,73.5
+ parent: 2
+ - uid: 13814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,72.5
+ parent: 2
+ - uid: 13815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,75.5
+ parent: 2
+ - uid: 13816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,74.5
+ parent: 2
+ - uid: 13817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,73.5
+ parent: 2
+ - uid: 13818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,72.5
+ parent: 2
+ - uid: 13819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,69.5
+ parent: 2
+ - uid: 13820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,70.5
+ parent: 2
+ - uid: 13821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,71.5
+ parent: 2
+ - uid: 13822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,76.5
+ parent: 2
+ - uid: 13823
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,76.5
+ parent: 2
+ - uid: 13824
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,77.5
+ parent: 2
+ - uid: 13825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,78.5
+ parent: 2
+ - uid: 13826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,79.5
+ parent: 2
+ - uid: 13827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,77.5
+ parent: 2
+ - uid: 13828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,78.5
+ parent: 2
+ - uid: 13829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,79.5
+ parent: 2
+ - uid: 13830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,77.5
+ parent: 2
+ - uid: 13831
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,76.5
+ parent: 2
+ - uid: 13832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,77.5
+ parent: 2
+ - uid: 13833
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,76.5
+ parent: 2
+ - uid: 13834
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,75.5
+ parent: 2
+ - uid: 13835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,74.5
+ parent: 2
+ - uid: 13836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,73.5
+ parent: 2
+ - uid: 13837
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,78.5
+ parent: 2
+ - uid: 13838
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,81.5
+ parent: 2
+ - uid: 13839
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,82.5
+ parent: 2
+ - uid: 13840
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,82.5
+ parent: 2
+ - uid: 13841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,82.5
+ parent: 2
+ - uid: 13842
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,84.5
+ parent: 2
+ - uid: 13843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,84.5
+ parent: 2
+ - uid: 13844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,82.5
+ parent: 2
+ - uid: 13845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,83.5
+ parent: 2
+ - uid: 13846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,83.5
+ parent: 2
+ - uid: 13847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,83.5
+ parent: 2
+ - uid: 13848
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,83.5
+ parent: 2
+ - uid: 13849
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,82.5
+ parent: 2
+ - uid: 13850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,84.5
+ parent: 2
+ - uid: 13851
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,80.5
+ parent: 2
+ - uid: 13852
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,77.5
+ parent: 2
+ - uid: 13853
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,76.5
+ parent: 2
+ - uid: 13854
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,76.5
+ parent: 2
+ - uid: 13855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,76.5
+ parent: 2
+ - uid: 13856
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,75.5
+ parent: 2
+ - uid: 13857
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,75.5
+ parent: 2
+ - uid: 13858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,74.5
+ parent: 2
+ - uid: 13859
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,75.5
+ parent: 2
+ - uid: 13860
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,74.5
+ parent: 2
+ - uid: 13861
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,72.5
+ parent: 2
+ - uid: 13862
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,71.5
+ parent: 2
+ - uid: 13863
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,78.5
+ parent: 2
+ - uid: 13864
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,79.5
+ parent: 2
+ - uid: 13865
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,79.5
+ parent: 2
+ - uid: 13866
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,80.5
+ parent: 2
+ - uid: 13867
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,80.5
+ parent: 2
+ - uid: 13868
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,80.5
+ parent: 2
+ - uid: 13869
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,78.5
+ parent: 2
+ - uid: 13870
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,79.5
+ parent: 2
+ - uid: 13871
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,78.5
+ parent: 2
+ - uid: 13872
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,78.5
+ parent: 2
+ - uid: 13873
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,79.5
+ parent: 2
+ - uid: 13874
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,78.5
+ parent: 2
+ - uid: 13875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,79.5
+ parent: 2
+ - uid: 13876
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,78.5
+ parent: 2
+ - uid: 13877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,79.5
+ parent: 2
+ - uid: 13878
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,78.5
+ parent: 2
+ - uid: 13879
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,79.5
+ parent: 2
+ - uid: 13880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,78.5
+ parent: 2
+ - uid: 13881
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,79.5
+ parent: 2
+ - uid: 13882
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,78.5
+ parent: 2
+ - uid: 13883
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,79.5
+ parent: 2
+ - uid: 13884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,78.5
+ parent: 2
+ - uid: 13885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,79.5
+ parent: 2
+ - uid: 13886
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,80.5
+ parent: 2
+ - uid: 13887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,80.5
+ parent: 2
+ - uid: 13888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,80.5
+ parent: 2
+ - uid: 13889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,80.5
+ parent: 2
+ - uid: 13890
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,77.5
+ parent: 2
+ - uid: 13891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,76.5
+ parent: 2
+ - uid: 13892
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,77.5
+ parent: 2
+ - uid: 13893
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,76.5
+ parent: 2
+ - uid: 13894
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,77.5
+ parent: 2
+ - uid: 13895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,76.5
+ parent: 2
+ - uid: 13896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,77.5
+ parent: 2
+ - uid: 13897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,76.5
+ parent: 2
+ - uid: 13898
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,77.5
+ parent: 2
+ - uid: 13899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,76.5
+ parent: 2
+ - uid: 13900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,78.5
+ parent: 2
+ - uid: 13901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,77.5
+ parent: 2
+ - uid: 13902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,76.5
+ parent: 2
+ - uid: 13903
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,78.5
+ parent: 2
+ - uid: 13904
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,77.5
+ parent: 2
+ - uid: 13905
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,76.5
+ parent: 2
+ - uid: 13906
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,78.5
+ parent: 2
+ - uid: 13907
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,77.5
+ parent: 2
+ - uid: 13908
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,76.5
+ parent: 2
+ - uid: 13909
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,78.5
+ parent: 2
+ - uid: 13910
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,77.5
+ parent: 2
+ - uid: 13911
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,76.5
+ parent: 2
+ - uid: 13912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,77.5
+ parent: 2
+ - uid: 13913
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,77.5
+ parent: 2
+ - uid: 13914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,79.5
+ parent: 2
+ - uid: 13915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,79.5
+ parent: 2
+ - uid: 13916
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,79.5
+ parent: 2
+ - uid: 13917
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,81.5
+ parent: 2
+ - uid: 13918
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,81.5
+ parent: 2
+ - uid: 13919
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,81.5
+ parent: 2
+ - uid: 13920
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,79.5
+ parent: 2
+ - uid: 13921
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,80.5
+ parent: 2
+ - uid: 13922
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,81.5
+ parent: 2
+ - uid: 13923
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,79.5
+ parent: 2
+ - uid: 13924
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,80.5
+ parent: 2
+ - uid: 13925
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,81.5
+ parent: 2
+ - uid: 13926
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,79.5
+ parent: 2
+ - uid: 13927
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,80.5
+ parent: 2
+ - uid: 13928
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,81.5
+ parent: 2
+ - uid: 13929
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,79.5
+ parent: 2
+ - uid: 13930
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,80.5
+ parent: 2
+ - uid: 13931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,81.5
+ parent: 2
+ - uid: 13932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,79.5
+ parent: 2
+ - uid: 13933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,80.5
+ parent: 2
+ - uid: 13934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,81.5
+ parent: 2
+ - uid: 13935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,82.5
+ parent: 2
+ - uid: 13936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,82.5
+ parent: 2
+ - uid: 13937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,81.5
+ parent: 2
+ - uid: 13938
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,82.5
+ parent: 2
+ - uid: 13939
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,81.5
+ parent: 2
+ - uid: 13940
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,82.5
+ parent: 2
+ - uid: 13941
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,81.5
+ parent: 2
+ - uid: 13942
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,82.5
+ parent: 2
+ - uid: 13943
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,77.5
+ parent: 2
+ - uid: 13944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,78.5
+ parent: 2
+ - uid: 13945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,77.5
+ parent: 2
+ - uid: 13946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,78.5
+ parent: 2
+ - uid: 13947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,77.5
+ parent: 2
+ - uid: 13948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,78.5
+ parent: 2
+ - uid: 13949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,77.5
+ parent: 2
+ - uid: 13950
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,77.5
+ parent: 2
+ - uid: 13951
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,77.5
+ parent: 2
+ - uid: 13952
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,76.5
+ parent: 2
+ - uid: 13953
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,75.5
+ parent: 2
+ - uid: 13954
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,76.5
+ parent: 2
+ - uid: 13955
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,75.5
+ parent: 2
+ - uid: 13956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,76.5
+ parent: 2
+ - uid: 13957
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,75.5
+ parent: 2
+ - uid: 13958
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,76.5
+ parent: 2
+ - uid: 13959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,75.5
+ parent: 2
+ - uid: 13960
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,75.5
+ parent: 2
+ - uid: 13961
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,75.5
+ parent: 2
+ - uid: 13962
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,75.5
+ parent: 2
+ - uid: 13963
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,75.5
+ parent: 2
+ - uid: 13964
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,75.5
+ parent: 2
+ - uid: 13965
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,74.5
+ parent: 2
+ - uid: 13966
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,73.5
+ parent: 2
+ - uid: 13967
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,75.5
+ parent: 2
+ - uid: 13968
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,74.5
+ parent: 2
+ - uid: 13969
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,73.5
+ parent: 2
+ - uid: 13970
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,75.5
+ parent: 2
+ - uid: 13971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,74.5
+ parent: 2
+ - uid: 13972
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,73.5
+ parent: 2
+ - uid: 13973
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,74.5
+ parent: 2
+ - uid: 13974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,73.5
+ parent: 2
+ - uid: 13975
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,74.5
+ parent: 2
+ - uid: 13976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,73.5
+ parent: 2
+ - uid: 13977
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,74.5
+ parent: 2
+ - uid: 13978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,73.5
+ parent: 2
+ - uid: 13979
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,74.5
+ parent: 2
+ - uid: 13980
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,73.5
+ parent: 2
+ - uid: 13981
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,74.5
+ parent: 2
+ - uid: 13982
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,73.5
+ parent: 2
+ - uid: 13983
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,74.5
+ parent: 2
+ - uid: 13984
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,73.5
+ parent: 2
+ - uid: 13985
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,75.5
+ parent: 2
+ - uid: 13986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,72.5
+ parent: 2
+ - uid: 13987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,72.5
+ parent: 2
+ - uid: 13988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,72.5
+ parent: 2
+ - uid: 13989
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,72.5
+ parent: 2
+ - uid: 13990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,75.5
+ parent: 2
+ - uid: 13991
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,74.5
+ parent: 2
+ - uid: 13992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,72.5
+ parent: 2
+ - uid: 13993
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,73.5
+ parent: 2
+ - uid: 13994
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,74.5
+ parent: 2
+ - uid: 13995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,76.5
+ parent: 2
+ - uid: 13996
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,78.5
+ parent: 2
+ - uid: 13997
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,71.5
+ parent: 2
+ - uid: 13998
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,70.5
+ parent: 2
+ - uid: 13999
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,71.5
+ parent: 2
+ - uid: 14000
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,70.5
+ parent: 2
+ - uid: 14001
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,72.5
+ parent: 2
+ - uid: 14002
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,71.5
+ parent: 2
+ - uid: 14003
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,70.5
+ parent: 2
+ - uid: 14004
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,72.5
+ parent: 2
+ - uid: 14005
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,71.5
+ parent: 2
+ - uid: 14006
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,70.5
+ parent: 2
+ - uid: 14007
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,72.5
+ parent: 2
+ - uid: 14008
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,71.5
+ parent: 2
+ - uid: 14009
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,70.5
+ parent: 2
+ - uid: 14010
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,72.5
+ parent: 2
+ - uid: 14011
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,71.5
+ parent: 2
+ - uid: 14012
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,70.5
+ parent: 2
+ - uid: 14013
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,72.5
+ parent: 2
+ - uid: 14014
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,71.5
+ parent: 2
+ - uid: 14015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,70.5
+ parent: 2
+ - uid: 14016
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,71.5
+ parent: 2
+ - uid: 14017
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,69.5
+ parent: 2
+ - uid: 14018
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,67.5
+ parent: 2
+ - uid: 14019
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,69.5
+ parent: 2
+ - uid: 14020
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,67.5
+ parent: 2
+ - uid: 14021
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,69.5
+ parent: 2
+ - uid: 14022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,68.5
+ parent: 2
+ - uid: 14023
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,69.5
+ parent: 2
+ - uid: 14024
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,68.5
+ parent: 2
+ - uid: 14025
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,70.5
+ parent: 2
+ - uid: 14026
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,69.5
+ parent: 2
+ - uid: 14027
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,68.5
+ parent: 2
+ - uid: 14028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,70.5
+ parent: 2
+ - uid: 14029
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,69.5
+ parent: 2
+ - uid: 14030
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,68.5
+ parent: 2
+ - uid: 14031
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,69.5
+ parent: 2
+ - uid: 14032
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,67.5
+ parent: 2
+ - uid: 14033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,68.5
+ parent: 2
+ - uid: 14034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,69.5
+ parent: 2
+ - uid: 14035
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,67.5
+ parent: 2
+ - uid: 14036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,68.5
+ parent: 2
+ - uid: 14037
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,69.5
+ parent: 2
+ - uid: 14038
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,73.5
+ parent: 2
+ - uid: 14039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,71.5
+ parent: 2
+ - uid: 14040
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,72.5
+ parent: 2
+ - uid: 14041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,73.5
+ parent: 2
+ - uid: 14042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,70.5
+ parent: 2
+ - uid: 14043
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,70.5
+ parent: 2
+ - uid: 14044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,71.5
+ parent: 2
+ - uid: 14045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,73.5
+ parent: 2
+ - uid: 14046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,72.5
+ parent: 2
+ - uid: 14047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,71.5
+ parent: 2
+ - uid: 14048
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,72.5
+ parent: 2
+ - uid: 14049
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,73.5
+ parent: 2
+ - uid: 14050
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,71.5
+ parent: 2
+ - uid: 14051
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,72.5
+ parent: 2
+ - uid: 14052
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,73.5
+ parent: 2
+ - uid: 14053
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,73.5
+ parent: 2
+ - uid: 14054
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,73.5
+ parent: 2
+ - uid: 14055
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,73.5
+ parent: 2
+ - uid: 14056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,76.5
+ parent: 2
+ - uid: 14057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,74.5
+ parent: 2
+ - uid: 14058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,75.5
+ parent: 2
+ - uid: 14059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,76.5
+ parent: 2
+ - uid: 14060
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,74.5
+ parent: 2
+ - uid: 14061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,75.5
+ parent: 2
+ - uid: 14062
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,76.5
+ parent: 2
+ - uid: 14063
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,73.5
+ parent: 2
+ - uid: 14064
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,74.5
+ parent: 2
+ - uid: 14065
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,75.5
+ parent: 2
+ - uid: 14066
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,76.5
+ parent: 2
+ - uid: 14067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,74.5
+ parent: 2
+ - uid: 14068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,75.5
+ parent: 2
+ - uid: 14069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,76.5
+ parent: 2
+ - uid: 14070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,74.5
+ parent: 2
+ - uid: 14071
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,75.5
+ parent: 2
+ - uid: 14072
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,76.5
+ parent: 2
+ - uid: 14073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,75.5
+ parent: 2
+ - uid: 14074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,76.5
+ parent: 2
+ - uid: 14075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,74.5
+ parent: 2
+ - uid: 14076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,74.5
+ parent: 2
+ - uid: 14077
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,75.5
+ parent: 2
+ - uid: 14078
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,78.5
+ parent: 2
+ - uid: 14079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,77.5
+ parent: 2
+ - uid: 14080
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,78.5
+ parent: 2
+ - uid: 14081
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,77.5
+ parent: 2
+ - uid: 14082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,78.5
+ parent: 2
+ - uid: 14083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,77.5
+ parent: 2
+ - uid: 14084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,78.5
+ parent: 2
+ - uid: 14085
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,77.5
+ parent: 2
+ - uid: 14086
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,78.5
+ parent: 2
+ - uid: 14087
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,77.5
+ parent: 2
+ - uid: 14088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,75.5
+ parent: 2
+ - uid: 14089
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,74.5
+ parent: 2
+ - uid: 14090
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,74.5
+ parent: 2
+ - uid: 14091
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,75.5
+ parent: 2
+ - uid: 14092
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,73.5
+ parent: 2
+ - uid: 14093
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,72.5
+ parent: 2
+ - uid: 14094
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,71.5
+ parent: 2
+ - uid: 14095
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,75.5
+ parent: 2
+ - uid: 14096
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,74.5
+ parent: 2
+ - uid: 14097
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,70.5
+ parent: 2
+ - uid: 14098
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,69.5
+ parent: 2
+ - uid: 14099
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,68.5
+ parent: 2
+ - uid: 14100
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,71.5
+ parent: 2
+ - uid: 14101
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,70.5
+ parent: 2
+ - uid: 14102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,69.5
+ parent: 2
+ - uid: 14103
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,68.5
+ parent: 2
+ - uid: 14104
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,76.5
+ parent: 2
+ - uid: 14105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,76.5
+ parent: 2
+ - uid: 14106
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,77.5
+ parent: 2
+ - uid: 14107
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,77.5
+ parent: 2
+ - uid: 14108
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,77.5
+ parent: 2
+ - uid: 14109
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,79.5
+ parent: 2
+ - uid: 14110
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,79.5
+ parent: 2
+ - uid: 14111
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,80.5
+ parent: 2
+ - uid: 14112
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,80.5
+ parent: 2
+ - uid: 14113
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,80.5
+ parent: 2
+ - uid: 14114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,80.5
+ parent: 2
+ - uid: 14115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,80.5
+ parent: 2
+ - uid: 14116
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,72.5
+ parent: 2
+ - uid: 14117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,72.5
+ parent: 2
+ - uid: 14118
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,72.5
+ parent: 2
+ - uid: 14119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,71.5
+ parent: 2
+ - uid: 14120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,71.5
+ parent: 2
+ - uid: 14609
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,15.5
+ parent: 2
+ - uid: 14668
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,17.5
+ parent: 2
+ - uid: 14774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,16.5
+ parent: 2
+ - uid: 14776
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,18.5
+ parent: 2
+ - uid: 14781
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,14.5
+ parent: 2
+ - uid: 14782
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,13.5
+ parent: 2
+ - uid: 14783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,16.5
+ parent: 2
+ - uid: 14784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,15.5
+ parent: 2
+ - uid: 14785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,18.5
+ parent: 2
+ - uid: 14786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,17.5
+ parent: 2
+ - uid: 14791
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,13.5
+ parent: 2
+ - uid: 14793
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,14.5
+ parent: 2
+ - uid: 14794
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,15.5
+ parent: 2
+ - uid: 14795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,16.5
+ parent: 2
+ - uid: 14796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,17.5
+ parent: 2
+ - uid: 14803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,13.5
+ parent: 2
+ - uid: 14804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,14.5
+ parent: 2
+ - uid: 14805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,15.5
+ parent: 2
+ - uid: 14806
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,16.5
+ parent: 2
+ - uid: 14814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,13.5
+ parent: 2
+ - uid: 14815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,14.5
+ parent: 2
+ - uid: 14917
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,12.5
+ parent: 2
+ - uid: 14920
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,12.5
+ parent: 2
+ - uid: 14923
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,12.5
+ parent: 2
+ - uid: 15067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,28.5
+ parent: 2
+ - uid: 15068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,29.5
+ parent: 2
+ - uid: 15069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,28.5
+ parent: 2
+ - uid: 15070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,29.5
+ parent: 2
+ - uid: 15071
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,28.5
+ parent: 2
+ - uid: 15072
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,29.5
+ parent: 2
+ - uid: 15075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,28.5
+ parent: 2
+ - uid: 15076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,29.5
+ parent: 2
+ - uid: 15080
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,29.5
+ parent: 2
+ - uid: 15118
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,28.5
+ parent: 2
+ - uid: 15119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,29.5
+ parent: 2
+ - uid: 15120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,28.5
+ parent: 2
+ - uid: 15121
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,29.5
+ parent: 2
+ - uid: 15124
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,29.5
+ parent: 2
+ - uid: 15128
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,30.5
+ parent: 2
+ - uid: 15129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,30.5
+ parent: 2
+ - uid: 15130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,28.5
+ parent: 2
+ - uid: 15131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,29.5
+ parent: 2
+ - uid: 15132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,30.5
+ parent: 2
+ - uid: 15133
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,30.5
+ parent: 2
+ - uid: 15134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,30.5
+ parent: 2
+ - uid: 15135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,30.5
+ parent: 2
+ - uid: 15289
+ components:
+ - type: Transform
+ pos: 38.5,3.5
+ parent: 2
+ - uid: 15307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,1.5
+ parent: 2
+ - uid: 15308
+ components:
+ - type: Transform
+ pos: 36.5,-0.5
+ parent: 2
+ - uid: 15309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,1.5
+ parent: 2
+ - uid: 15310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,0.5
+ parent: 2
+ - uid: 15311
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,1.5
+ parent: 2
+ - uid: 15312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,0.5
+ parent: 2
+ - uid: 15315
+ components:
+ - type: Transform
+ pos: 37.5,-1.5
+ parent: 2
+ - uid: 15317
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,-0.5
+ parent: 2
+ - uid: 15320
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-0.5
+ parent: 2
+ - uid: 15321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-1.5
+ parent: 2
+ - uid: 15322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-2.5
+ parent: 2
+ - uid: 15323
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,-1.5
+ parent: 2
+ - uid: 15324
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,-2.5
+ parent: 2
+ - uid: 15325
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,-3.5
+ parent: 2
+ - uid: 15326
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,-3.5
+ parent: 2
+ - uid: 15327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,-2.5
+ parent: 2
+ - uid: 15328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,-1.5
+ parent: 2
+ - uid: 15329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,0.5
+ parent: 2
+ - uid: 15330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,1.5
+ parent: 2
+ - uid: 15331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,-0.5
+ parent: 2
+ - uid: 15332
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-3.5
+ parent: 2
+ - uid: 15333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-4.5
+ parent: 2
+ - uid: 15334
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-1.5
+ parent: 2
+ - uid: 15336
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,2.5
+ parent: 2
+ - uid: 15337
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,2.5
+ parent: 2
+ - uid: 15338
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,3.5
+ parent: 2
+ - uid: 15339
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,2.5
+ parent: 2
+ - uid: 15340
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,3.5
+ parent: 2
+ - uid: 15402
+ components:
+ - type: Transform
+ pos: 91.5,19.5
+ parent: 2
+ - uid: 15403
+ components:
+ - type: Transform
+ pos: 91.5,18.5
+ parent: 2
+ - uid: 15404
+ components:
+ - type: Transform
+ pos: 91.5,17.5
+ parent: 2
+ - uid: 15405
+ components:
+ - type: Transform
+ pos: 91.5,16.5
+ parent: 2
+ - uid: 15406
+ components:
+ - type: Transform
+ pos: 91.5,15.5
+ parent: 2
+ - uid: 15407
+ components:
+ - type: Transform
+ pos: 91.5,14.5
+ parent: 2
+ - uid: 15408
+ components:
+ - type: Transform
+ pos: 90.5,19.5
+ parent: 2
+ - uid: 15409
+ components:
+ - type: Transform
+ pos: 90.5,18.5
+ parent: 2
+ - uid: 15410
+ components:
+ - type: Transform
+ pos: 90.5,17.5
+ parent: 2
+ - uid: 15411
+ components:
+ - type: Transform
+ pos: 90.5,16.5
+ parent: 2
+ - uid: 15412
+ components:
+ - type: Transform
+ pos: 90.5,15.5
+ parent: 2
+ - uid: 15413
+ components:
+ - type: Transform
+ pos: 92.5,15.5
+ parent: 2
+ - uid: 15414
+ components:
+ - type: Transform
+ pos: 92.5,14.5
+ parent: 2
+ - uid: 15415
+ components:
+ - type: Transform
+ pos: 92.5,13.5
+ parent: 2
+ - uid: 15416
+ components:
+ - type: Transform
+ pos: 92.5,12.5
+ parent: 2
+ - uid: 15417
+ components:
+ - type: Transform
+ pos: 92.5,11.5
+ parent: 2
+ - uid: 15418
+ components:
+ - type: Transform
+ pos: 91.5,13.5
+ parent: 2
+ - uid: 15419
+ components:
+ - type: Transform
+ pos: 91.5,12.5
+ parent: 2
+ - uid: 15420
+ components:
+ - type: Transform
+ pos: 91.5,11.5
+ parent: 2
+ - uid: 15421
+ components:
+ - type: Transform
+ pos: 91.5,10.5
+ parent: 2
+ - uid: 15422
+ components:
+ - type: Transform
+ pos: 91.5,9.5
+ parent: 2
+ - uid: 15423
+ components:
+ - type: Transform
+ pos: 89.5,9.5
+ parent: 2
+ - uid: 15424
+ components:
+ - type: Transform
+ pos: 90.5,11.5
+ parent: 2
+ - uid: 15425
+ components:
+ - type: Transform
+ pos: 90.5,10.5
+ parent: 2
+ - uid: 15426
+ components:
+ - type: Transform
+ pos: 90.5,9.5
+ parent: 2
+ - uid: 15427
+ components:
+ - type: Transform
+ pos: 90.5,8.5
+ parent: 2
+ - uid: 15428
+ components:
+ - type: Transform
+ pos: 90.5,7.5
+ parent: 2
+ - uid: 15429
+ components:
+ - type: Transform
+ pos: 89.5,10.5
+ parent: 2
+ - uid: 15430
+ components:
+ - type: Transform
+ pos: 89.5,8.5
+ parent: 2
+ - uid: 15431
+ components:
+ - type: Transform
+ pos: 89.5,7.5
+ parent: 2
+ - uid: 15432
+ components:
+ - type: Transform
+ pos: 89.5,6.5
+ parent: 2
+ - uid: 15433
+ components:
+ - type: Transform
+ pos: 90.5,12.5
+ parent: 2
+ - uid: 15434
+ components:
+ - type: Transform
+ pos: 90.5,20.5
+ parent: 2
+ - uid: 15528
+ components:
+ - type: Transform
+ pos: -21.5,25.5
+ parent: 2
+ - uid: 15531
+ components:
+ - type: Transform
+ pos: -21.5,26.5
+ parent: 2
+ - uid: 15532
+ components:
+ - type: Transform
+ pos: -21.5,27.5
+ parent: 2
+ - uid: 15533
+ components:
+ - type: Transform
+ pos: -22.5,25.5
+ parent: 2
+ - uid: 15534
+ components:
+ - type: Transform
+ pos: -22.5,26.5
+ parent: 2
+ - uid: 15535
+ components:
+ - type: Transform
+ pos: -22.5,27.5
+ parent: 2
+ - uid: 15536
+ components:
+ - type: Transform
+ pos: -20.5,27.5
+ parent: 2
+ - uid: 15537
+ components:
+ - type: Transform
+ pos: -20.5,28.5
+ parent: 2
+ - uid: 15538
+ components:
+ - type: Transform
+ pos: -21.5,28.5
+ parent: 2
+ - uid: 15539
+ components:
+ - type: Transform
+ pos: -23.5,24.5
+ parent: 2
+ - uid: 15540
+ components:
+ - type: Transform
+ pos: -20.5,25.5
+ parent: 2
+ - uid: 15541
+ components:
+ - type: Transform
+ pos: -21.5,24.5
+ parent: 2
+ - uid: 15542
+ components:
+ - type: Transform
+ pos: -22.5,24.5
+ parent: 2
+ - uid: 15543
+ components:
+ - type: Transform
+ pos: -20.5,26.5
+ parent: 2
+ - uid: 15544
+ components:
+ - type: Transform
+ pos: -23.5,25.5
+ parent: 2
+ - uid: 15545
+ components:
+ - type: Transform
+ pos: -23.5,26.5
+ parent: 2
+ - uid: 15564
+ components:
+ - type: Transform
+ pos: 32.5,27.5
+ parent: 2
+ - uid: 15565
+ components:
+ - type: Transform
+ pos: 32.5,28.5
+ parent: 2
+ - uid: 15566
+ components:
+ - type: Transform
+ pos: 31.5,27.5
+ parent: 2
+ - uid: 15567
+ components:
+ - type: Transform
+ pos: 31.5,28.5
+ parent: 2
+ - uid: 15568
+ components:
+ - type: Transform
+ pos: 33.5,27.5
+ parent: 2
+ - uid: 15569
+ components:
+ - type: Transform
+ pos: 33.5,28.5
+ parent: 2
+ - uid: 15570
+ components:
+ - type: Transform
+ pos: 33.5,29.5
+ parent: 2
+ - uid: 15571
+ components:
+ - type: Transform
+ pos: 32.5,29.5
+ parent: 2
+ - uid: 15573
+ components:
+ - type: Transform
+ pos: 34.5,28.5
+ parent: 2
+ - uid: 15574
+ components:
+ - type: Transform
+ pos: 34.5,29.5
+ parent: 2
+ - uid: 15575
+ components:
+ - type: Transform
+ pos: 31.5,26.5
+ parent: 2
+ - uid: 15576
+ components:
+ - type: Transform
+ pos: 30.5,27.5
+ parent: 2
+ - uid: 15577
+ components:
+ - type: Transform
+ pos: 30.5,26.5
+ parent: 2
+ - uid: 15578
+ components:
+ - type: Transform
+ pos: 30.5,28.5
+ parent: 2
+ - uid: 15912
+ components:
+ - type: Transform
+ pos: 20.5,-5.5
+ parent: 2
+ - uid: 15913
+ components:
+ - type: Transform
+ pos: 20.5,-4.5
+ parent: 2
+ - uid: 15914
+ components:
+ - type: Transform
+ pos: 19.5,-4.5
+ parent: 2
+ - uid: 15915
+ components:
+ - type: Transform
+ pos: 19.5,-3.5
+ parent: 2
+ - uid: 15916
+ components:
+ - type: Transform
+ pos: 19.5,-5.5
+ parent: 2
+ - uid: 15917
+ components:
+ - type: Transform
+ pos: 19.5,-6.5
+ parent: 2
+ - uid: 15918
+ components:
+ - type: Transform
+ pos: 20.5,-7.5
+ parent: 2
+ - uid: 15919
+ components:
+ - type: Transform
+ pos: 20.5,-6.5
+ parent: 2
+ - uid: 15920
+ components:
+ - type: Transform
+ pos: 20.5,-8.5
+ parent: 2
+ - uid: 15921
+ components:
+ - type: Transform
+ pos: 14.5,0.5
+ parent: 2
+ - uid: 15922
+ components:
+ - type: Transform
+ pos: 15.5,0.5
+ parent: 2
+ - uid: 15923
+ components:
+ - type: Transform
+ pos: 16.5,0.5
+ parent: 2
+ - uid: 15924
+ components:
+ - type: Transform
+ pos: 17.5,0.5
+ parent: 2
+ - uid: 15926
+ components:
+ - type: Transform
+ pos: 16.5,1.5
+ parent: 2
+ - uid: 15927
+ components:
+ - type: Transform
+ pos: 15.5,1.5
+ parent: 2
+ - uid: 15928
+ components:
+ - type: Transform
+ pos: 14.5,1.5
+ parent: 2
+ - uid: 15929
+ components:
+ - type: Transform
+ pos: 13.5,1.5
+ parent: 2
+ - uid: 15960
+ components:
+ - type: Transform
+ pos: 6.5,-44.5
+ parent: 2
+ - uid: 15961
+ components:
+ - type: Transform
+ pos: 7.5,-45.5
+ parent: 2
+ - uid: 15962
+ components:
+ - type: Transform
+ pos: 8.5,-45.5
+ parent: 2
+ - uid: 15963
+ components:
+ - type: Transform
+ pos: 9.5,-45.5
+ parent: 2
+ - uid: 15964
+ components:
+ - type: Transform
+ pos: 10.5,-46.5
+ parent: 2
+ - uid: 15965
+ components:
+ - type: Transform
+ pos: 8.5,-46.5
+ parent: 2
+ - uid: 15966
+ components:
+ - type: Transform
+ pos: 9.5,-46.5
+ parent: 2
+ - uid: 15967
+ components:
+ - type: Transform
+ pos: 7.5,-44.5
+ parent: 2
+ - uid: 15968
+ components:
+ - type: Transform
+ pos: 5.5,-43.5
+ parent: 2
+ - uid: 15969
+ components:
+ - type: Transform
+ pos: 6.5,-43.5
+ parent: 2
+ - uid: 15970
+ components:
+ - type: Transform
+ pos: 5.5,-44.5
+ parent: 2
+ - uid: 15971
+ components:
+ - type: Transform
+ pos: 6.5,-45.5
+ parent: 2
+ - uid: 15972
+ components:
+ - type: Transform
+ pos: 7.5,-46.5
+ parent: 2
+ - uid: 15973
+ components:
+ - type: Transform
+ pos: 5.5,-42.5
+ parent: 2
+ - uid: 15974
+ components:
+ - type: Transform
+ pos: 4.5,-42.5
+ parent: 2
+ - uid: 15975
+ components:
+ - type: Transform
+ pos: 4.5,-41.5
+ parent: 2
+ - uid: 15976
+ components:
+ - type: Transform
+ pos: 3.5,-41.5
+ parent: 2
+ - uid: 15990
+ components:
+ - type: Transform
+ pos: 38.5,4.5
+ parent: 2
+ - uid: 15991
+ components:
+ - type: Transform
+ pos: 39.5,4.5
+ parent: 2
+ - uid: 15992
+ components:
+ - type: Transform
+ pos: 40.5,5.5
+ parent: 2
+ - uid: 15993
+ components:
+ - type: Transform
+ pos: 41.5,5.5
+ parent: 2
+ - uid: 15994
+ components:
+ - type: Transform
+ pos: 39.5,5.5
+ parent: 2
+- proto: CP14BiomeSpawnerSwamp
+ entities:
+ - uid: 3835
+ components:
+ - type: Transform
+ pos: 98.5,76.5
+ parent: 2
+ - uid: 3941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,88.5
+ parent: 2
+ - uid: 3942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,91.5
+ parent: 2
+ - uid: 3943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,90.5
+ parent: 2
+ - uid: 3944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,89.5
+ parent: 2
+ - uid: 3945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,88.5
+ parent: 2
+ - uid: 3946
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,87.5
+ parent: 2
+ - uid: 3947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,86.5
+ parent: 2
+ - uid: 3948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,91.5
+ parent: 2
+ - uid: 3949
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,90.5
+ parent: 2
+ - uid: 3950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,89.5
+ parent: 2
+ - uid: 3951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,88.5
+ parent: 2
+ - uid: 3952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,87.5
+ parent: 2
+ - uid: 3953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,86.5
+ parent: 2
+ - uid: 3954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,91.5
+ parent: 2
+ - uid: 3955
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,90.5
+ parent: 2
+ - uid: 3956
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,89.5
+ parent: 2
+ - uid: 3957
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,88.5
+ parent: 2
+ - uid: 3958
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,87.5
+ parent: 2
+ - uid: 3959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,86.5
+ parent: 2
+ - uid: 3960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,91.5
+ parent: 2
+ - uid: 3961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,90.5
+ parent: 2
+ - uid: 3962
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,89.5
+ parent: 2
+ - uid: 3963
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,88.5
+ parent: 2
+ - uid: 3964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,87.5
+ parent: 2
+ - uid: 3965
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,90.5
+ parent: 2
+ - uid: 3966
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,89.5
+ parent: 2
+ - uid: 3967
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,88.5
+ parent: 2
+ - uid: 3968
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,87.5
+ parent: 2
+ - uid: 3969
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,86.5
+ parent: 2
+ - uid: 3970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,91.5
+ parent: 2
+ - uid: 3971
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,90.5
+ parent: 2
+ - uid: 3972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,89.5
+ parent: 2
+ - uid: 3973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,86.5
+ parent: 2
+ - uid: 3974
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,91.5
+ parent: 2
+ - uid: 3975
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,90.5
+ parent: 2
+ - uid: 3976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,89.5
+ parent: 2
+ - uid: 3977
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,88.5
+ parent: 2
+ - uid: 3978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,87.5
+ parent: 2
+ - uid: 3979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,86.5
+ parent: 2
+ - uid: 3980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,91.5
+ parent: 2
+ - uid: 3981
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,88.5
+ parent: 2
+ - uid: 3982
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,87.5
+ parent: 2
+ - uid: 3983
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,86.5
+ parent: 2
+ - uid: 3984
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,91.5
+ parent: 2
+ - uid: 3985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,90.5
+ parent: 2
+ - uid: 3986
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,89.5
+ parent: 2
+ - uid: 3987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,88.5
+ parent: 2
+ - uid: 3988
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,87.5
+ parent: 2
+ - uid: 3989
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,90.5
+ parent: 2
+ - uid: 3990
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,89.5
+ parent: 2
+ - uid: 3991
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,88.5
+ parent: 2
+ - uid: 3992
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,87.5
+ parent: 2
+ - uid: 3993
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,86.5
+ parent: 2
+ - uid: 3994
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,91.5
+ parent: 2
+ - uid: 3995
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,90.5
+ parent: 2
+ - uid: 3996
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,89.5
+ parent: 2
+ - uid: 3997
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,86.5
+ parent: 2
+ - uid: 3998
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,91.5
+ parent: 2
+ - uid: 3999
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,90.5
+ parent: 2
+ - uid: 4000
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,89.5
+ parent: 2
+ - uid: 4001
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,88.5
+ parent: 2
+ - uid: 4002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,87.5
+ parent: 2
+ - uid: 4003
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,86.5
+ parent: 2
+ - uid: 4004
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,91.5
+ parent: 2
+ - uid: 4005
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,86.5
+ parent: 2
+ - uid: 4006
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,91.5
+ parent: 2
+ - uid: 4008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,89.5
+ parent: 2
+ - uid: 4009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,88.5
+ parent: 2
+ - uid: 4010
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,87.5
+ parent: 2
+ - uid: 4011
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,86.5
+ parent: 2
+ - uid: 4012
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,91.5
+ parent: 2
+ - uid: 4013
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,88.5
+ parent: 2
+ - uid: 4014
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,87.5
+ parent: 2
+ - uid: 4015
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,86.5
+ parent: 2
+ - uid: 4016
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,91.5
+ parent: 2
+ - uid: 4019
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,88.5
+ parent: 2
+ - uid: 4020
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,87.5
+ parent: 2
+ - uid: 4021
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,90.5
+ parent: 2
+ - uid: 4022
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,89.5
+ parent: 2
+ - uid: 4023
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,88.5
+ parent: 2
+ - uid: 4024
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,87.5
+ parent: 2
+ - uid: 4025
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,86.5
+ parent: 2
+ - uid: 4026
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,91.5
+ parent: 2
+ - uid: 4027
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,90.5
+ parent: 2
+ - uid: 4028
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,89.5
+ parent: 2
+ - uid: 4029
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,86.5
+ parent: 2
+ - uid: 4030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,91.5
+ parent: 2
+ - uid: 4031
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,90.5
+ parent: 2
+ - uid: 4032
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,89.5
+ parent: 2
+ - uid: 4033
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,88.5
+ parent: 2
+ - uid: 4034
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,87.5
+ parent: 2
+ - uid: 4035
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,86.5
+ parent: 2
+ - uid: 4036
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,91.5
+ parent: 2
+ - uid: 4037
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,88.5
+ parent: 2
+ - uid: 4038
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,87.5
+ parent: 2
+ - uid: 4039
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,86.5
+ parent: 2
+ - uid: 4040
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,91.5
+ parent: 2
+ - uid: 4041
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,90.5
+ parent: 2
+ - uid: 4042
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,89.5
+ parent: 2
+ - uid: 4043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,88.5
+ parent: 2
+ - uid: 4044
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,87.5
+ parent: 2
+ - uid: 4045
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,90.5
+ parent: 2
+ - uid: 4046
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,89.5
+ parent: 2
+ - uid: 4047
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,88.5
+ parent: 2
+ - uid: 4048
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,87.5
+ parent: 2
+ - uid: 4049
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,86.5
+ parent: 2
+ - uid: 4050
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,91.5
+ parent: 2
+ - uid: 4051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,90.5
+ parent: 2
+ - uid: 4052
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,89.5
+ parent: 2
+ - uid: 4053
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,86.5
+ parent: 2
+ - uid: 4054
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,91.5
+ parent: 2
+ - uid: 4055
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,90.5
+ parent: 2
+ - uid: 4056
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,89.5
+ parent: 2
+ - uid: 4057
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,88.5
+ parent: 2
+ - uid: 4058
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,87.5
+ parent: 2
+ - uid: 4059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,86.5
+ parent: 2
+ - uid: 4060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,91.5
+ parent: 2
+ - uid: 4061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,87.5
+ parent: 2
+ - uid: 4062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,90.5
+ parent: 2
+ - uid: 4063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,89.5
+ parent: 2
+ - uid: 4064
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,88.5
+ parent: 2
+ - uid: 4065
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,87.5
+ parent: 2
+ - uid: 4066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,86.5
+ parent: 2
+ - uid: 4067
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,91.5
+ parent: 2
+ - uid: 4068
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,90.5
+ parent: 2
+ - uid: 4069
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,87.5
+ parent: 2
+ - uid: 4070
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,86.5
+ parent: 2
+ - uid: 4071
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,87.5
+ parent: 2
+ - uid: 4072
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,89.5
+ parent: 2
+ - uid: 4073
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,88.5
+ parent: 2
+ - uid: 4074
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,87.5
+ parent: 2
+ - uid: 4075
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,86.5
+ parent: 2
+ - uid: 4076
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,91.5
+ parent: 2
+ - uid: 4077
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,90.5
+ parent: 2
+ - uid: 4078
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,89.5
+ parent: 2
+ - uid: 4079
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,88.5
+ parent: 2
+ - uid: 4080
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,91.5
+ parent: 2
+ - uid: 4081
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,90.5
+ parent: 2
+ - uid: 4082
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,89.5
+ parent: 2
+ - uid: 4083
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,88.5
+ parent: 2
+ - uid: 4084
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,87.5
+ parent: 2
+ - uid: 4085
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,86.5
+ parent: 2
+ - uid: 4086
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,91.5
+ parent: 2
+ - uid: 4087
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,90.5
+ parent: 2
+ - uid: 4088
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,88.5
+ parent: 2
+ - uid: 4089
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,87.5
+ parent: 2
+ - uid: 4090
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,86.5
+ parent: 2
+ - uid: 4091
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,91.5
+ parent: 2
+ - uid: 4092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,90.5
+ parent: 2
+ - uid: 4093
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,89.5
+ parent: 2
+ - uid: 4094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,88.5
+ parent: 2
+ - uid: 4095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,86.5
+ parent: 2
+ - uid: 4096
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,89.5
+ parent: 2
+ - uid: 4097
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,88.5
+ parent: 2
+ - uid: 4098
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,87.5
+ parent: 2
+ - uid: 4099
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,86.5
+ parent: 2
+ - uid: 4100
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,91.5
+ parent: 2
+ - uid: 4101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,90.5
+ parent: 2
+ - uid: 4102
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,89.5
+ parent: 2
+ - uid: 4104
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,85.5
+ parent: 2
+ - uid: 4107
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,87.5
+ parent: 2
+ - uid: 4114
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,86.5
+ parent: 2
+ - uid: 4126
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,84.5
+ parent: 2
+ - uid: 4127
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,85.5
+ parent: 2
+ - uid: 4128
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,84.5
+ parent: 2
+ - uid: 4129
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,85.5
+ parent: 2
+ - uid: 4130
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,84.5
+ parent: 2
+ - uid: 4131
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,85.5
+ parent: 2
+ - uid: 4132
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,84.5
+ parent: 2
+ - uid: 4133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,85.5
+ parent: 2
+ - uid: 4134
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,84.5
+ parent: 2
+ - uid: 4135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,85.5
+ parent: 2
+ - uid: 4136
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,84.5
+ parent: 2
+ - uid: 4137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,85.5
+ parent: 2
+ - uid: 4138
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,84.5
+ parent: 2
+ - uid: 4139
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,85.5
+ parent: 2
+ - uid: 4140
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,84.5
+ parent: 2
+ - uid: 4141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,85.5
+ parent: 2
+ - uid: 4142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,84.5
+ parent: 2
+ - uid: 4143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,85.5
+ parent: 2
+ - uid: 4144
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,84.5
+ parent: 2
+ - uid: 4145
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,85.5
+ parent: 2
+ - uid: 4146
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,84.5
+ parent: 2
+ - uid: 4147
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,85.5
+ parent: 2
+ - uid: 4148
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,84.5
+ parent: 2
+ - uid: 4149
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,85.5
+ parent: 2
+ - uid: 4150
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,84.5
+ parent: 2
+ - uid: 4151
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,85.5
+ parent: 2
+ - uid: 4152
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,84.5
+ parent: 2
+ - uid: 4153
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,85.5
+ parent: 2
+ - uid: 4154
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,84.5
+ parent: 2
+ - uid: 4155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,85.5
+ parent: 2
+ - uid: 4156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,84.5
+ parent: 2
+ - uid: 4157
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,85.5
+ parent: 2
+ - uid: 4158
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,84.5
+ parent: 2
+ - uid: 4159
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,85.5
+ parent: 2
+ - uid: 4160
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,84.5
+ parent: 2
+ - uid: 4161
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,85.5
+ parent: 2
+ - uid: 4162
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,84.5
+ parent: 2
+ - uid: 4163
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,85.5
+ parent: 2
+ - uid: 4164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,84.5
+ parent: 2
+ - uid: 4165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,85.5
+ parent: 2
+ - uid: 4166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,84.5
+ parent: 2
+ - uid: 4167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,85.5
+ parent: 2
+ - uid: 4168
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,84.5
+ parent: 2
+ - uid: 4169
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,85.5
+ parent: 2
+ - uid: 4170
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,84.5
+ parent: 2
+ - uid: 4171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,85.5
+ parent: 2
+ - uid: 4172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,84.5
+ parent: 2
+ - uid: 4173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,85.5
+ parent: 2
+ - uid: 4174
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,84.5
+ parent: 2
+ - uid: 4175
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,85.5
+ parent: 2
+ - uid: 4176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,84.5
+ parent: 2
+ - uid: 4177
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,85.5
+ parent: 2
+ - uid: 4179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,83.5
+ parent: 2
+ - uid: 4180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,83.5
+ parent: 2
+ - uid: 4181
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,83.5
+ parent: 2
+ - uid: 4182
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,83.5
+ parent: 2
+ - uid: 4183
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,83.5
+ parent: 2
+ - uid: 4184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,83.5
+ parent: 2
+ - uid: 4185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,83.5
+ parent: 2
+ - uid: 4186
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,83.5
+ parent: 2
+ - uid: 4187
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,83.5
+ parent: 2
+ - uid: 4188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,83.5
+ parent: 2
+ - uid: 4189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,83.5
+ parent: 2
+ - uid: 4190
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,83.5
+ parent: 2
+ - uid: 4191
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,83.5
+ parent: 2
+ - uid: 4192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,83.5
+ parent: 2
+ - uid: 4193
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,83.5
+ parent: 2
+ - uid: 4194
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,83.5
+ parent: 2
+ - uid: 4195
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,83.5
+ parent: 2
+ - uid: 4196
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,83.5
+ parent: 2
+ - uid: 4197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,83.5
+ parent: 2
+ - uid: 4198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,83.5
+ parent: 2
+ - uid: 4199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,83.5
+ parent: 2
+ - uid: 4200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,83.5
+ parent: 2
+ - uid: 4201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,83.5
+ parent: 2
+ - uid: 4202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,83.5
+ parent: 2
+ - uid: 4203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,83.5
+ parent: 2
+ - uid: 4230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,82.5
+ parent: 2
+ - uid: 4231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,82.5
+ parent: 2
+ - uid: 4232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,82.5
+ parent: 2
+ - uid: 4233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,82.5
+ parent: 2
+ - uid: 4234
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,82.5
+ parent: 2
+ - uid: 4235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,82.5
+ parent: 2
+ - uid: 4236
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,82.5
+ parent: 2
+ - uid: 4237
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,82.5
+ parent: 2
+ - uid: 4238
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,82.5
+ parent: 2
+ - uid: 4239
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,82.5
+ parent: 2
+ - uid: 4240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,82.5
+ parent: 2
+ - uid: 4241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,82.5
+ parent: 2
+ - uid: 4242
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,82.5
+ parent: 2
+ - uid: 4243
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,82.5
+ parent: 2
+ - uid: 4244
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,82.5
+ parent: 2
+ - uid: 4245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,82.5
+ parent: 2
+ - uid: 4246
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,82.5
+ parent: 2
+ - uid: 4247
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,82.5
+ parent: 2
+ - uid: 4248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,82.5
+ parent: 2
+ - uid: 4249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,82.5
+ parent: 2
+ - uid: 4250
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,82.5
+ parent: 2
+ - uid: 4251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,82.5
+ parent: 2
+ - uid: 4252
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,82.5
+ parent: 2
+ - uid: 4276
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,92.5
+ parent: 2
+ - uid: 4277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,93.5
+ parent: 2
+ - uid: 4278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,92.5
+ parent: 2
+ - uid: 4279
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,92.5
+ parent: 2
+ - uid: 4280
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,93.5
+ parent: 2
+ - uid: 4281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,92.5
+ parent: 2
+ - uid: 4282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,93.5
+ parent: 2
+ - uid: 4283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,92.5
+ parent: 2
+ - uid: 4284
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,93.5
+ parent: 2
+ - uid: 4285
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,92.5
+ parent: 2
+ - uid: 4286
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,93.5
+ parent: 2
+ - uid: 4287
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,92.5
+ parent: 2
+ - uid: 4288
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,93.5
+ parent: 2
+ - uid: 4289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,92.5
+ parent: 2
+ - uid: 4290
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,93.5
+ parent: 2
+ - uid: 4291
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,92.5
+ parent: 2
+ - uid: 4292
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,93.5
+ parent: 2
+ - uid: 4293
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,92.5
+ parent: 2
+ - uid: 4294
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,93.5
+ parent: 2
+ - uid: 4295
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,93.5
+ parent: 2
+ - uid: 4296
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,92.5
+ parent: 2
+ - uid: 4297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,93.5
+ parent: 2
+ - uid: 4298
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,92.5
+ parent: 2
+ - uid: 4299
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,93.5
+ parent: 2
+ - uid: 4300
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,92.5
+ parent: 2
+ - uid: 4301
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,93.5
+ parent: 2
+ - uid: 4302
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,93.5
+ parent: 2
+ - uid: 4303
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,92.5
+ parent: 2
+ - uid: 4304
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,93.5
+ parent: 2
+ - uid: 4305
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,92.5
+ parent: 2
+ - uid: 4306
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,93.5
+ parent: 2
+ - uid: 4307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,92.5
+ parent: 2
+ - uid: 4308
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,93.5
+ parent: 2
+ - uid: 4309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,92.5
+ parent: 2
+ - uid: 4310
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,92.5
+ parent: 2
+ - uid: 4311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,93.5
+ parent: 2
+ - uid: 4312
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,92.5
+ parent: 2
+ - uid: 4313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,93.5
+ parent: 2
+ - uid: 4314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,92.5
+ parent: 2
+ - uid: 4315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,93.5
+ parent: 2
+ - uid: 4316
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,92.5
+ parent: 2
+ - uid: 4317
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,93.5
+ parent: 2
+ - uid: 4318
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,93.5
+ parent: 2
+ - uid: 4319
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,92.5
+ parent: 2
+ - uid: 4320
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,93.5
+ parent: 2
+ - uid: 4321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,92.5
+ parent: 2
+ - uid: 4322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,93.5
+ parent: 2
+ - uid: 4323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,92.5
+ parent: 2
+ - uid: 4324
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,92.5
+ parent: 2
+ - uid: 4325
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,93.5
+ parent: 2
+ - uid: 4367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,98.5
+ parent: 2
+ - uid: 4372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,95.5
+ parent: 2
+ - uid: 4373
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,96.5
+ parent: 2
+ - uid: 4374
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,97.5
+ parent: 2
+ - uid: 4375
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,98.5
+ parent: 2
+ - uid: 4376
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,99.5
+ parent: 2
+ - uid: 4377
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,100.5
+ parent: 2
+ - uid: 4378
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,101.5
+ parent: 2
+ - uid: 4379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,100.5
+ parent: 2
+ - uid: 4380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,101.5
+ parent: 2
+ - uid: 4381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,102.5
+ parent: 2
+ - uid: 4382
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,103.5
+ parent: 2
+ - uid: 4383
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,94.5
+ parent: 2
+ - uid: 4384
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,95.5
+ parent: 2
+ - uid: 4385
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,96.5
+ parent: 2
+ - uid: 4386
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,97.5
+ parent: 2
+ - uid: 4387
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,102.5
+ parent: 2
+ - uid: 4388
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,103.5
+ parent: 2
+ - uid: 4389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,94.5
+ parent: 2
+ - uid: 4390
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,95.5
+ parent: 2
+ - uid: 4391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,96.5
+ parent: 2
+ - uid: 4392
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,97.5
+ parent: 2
+ - uid: 4393
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,98.5
+ parent: 2
+ - uid: 4394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,99.5
+ parent: 2
+ - uid: 4395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,94.5
+ parent: 2
+ - uid: 4396
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,95.5
+ parent: 2
+ - uid: 4397
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,96.5
+ parent: 2
+ - uid: 4398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,97.5
+ parent: 2
+ - uid: 4399
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,98.5
+ parent: 2
+ - uid: 4400
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,99.5
+ parent: 2
+ - uid: 4401
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,100.5
+ parent: 2
+ - uid: 4402
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,101.5
+ parent: 2
+ - uid: 4403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,96.5
+ parent: 2
+ - uid: 4404
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,97.5
+ parent: 2
+ - uid: 4405
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,98.5
+ parent: 2
+ - uid: 4406
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,99.5
+ parent: 2
+ - uid: 4407
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,100.5
+ parent: 2
+ - uid: 4408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,101.5
+ parent: 2
+ - uid: 4409
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,102.5
+ parent: 2
+ - uid: 4410
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,103.5
+ parent: 2
+ - uid: 4411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,98.5
+ parent: 2
+ - uid: 4412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,99.5
+ parent: 2
+ - uid: 4413
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,100.5
+ parent: 2
+ - uid: 4414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,101.5
+ parent: 2
+ - uid: 4415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,102.5
+ parent: 2
+ - uid: 4416
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,103.5
+ parent: 2
+ - uid: 4417
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,94.5
+ parent: 2
+ - uid: 4418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,95.5
+ parent: 2
+ - uid: 4419
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,100.5
+ parent: 2
+ - uid: 4420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,101.5
+ parent: 2
+ - uid: 4421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,102.5
+ parent: 2
+ - uid: 4422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,103.5
+ parent: 2
+ - uid: 4423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,94.5
+ parent: 2
+ - uid: 4424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,95.5
+ parent: 2
+ - uid: 4425
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,96.5
+ parent: 2
+ - uid: 4426
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,94.5
+ parent: 2
+ - uid: 4427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,102.5
+ parent: 2
+ - uid: 4428
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,103.5
+ parent: 2
+ - uid: 4429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,94.5
+ parent: 2
+ - uid: 4430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,95.5
+ parent: 2
+ - uid: 4431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,96.5
+ parent: 2
+ - uid: 4432
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,97.5
+ parent: 2
+ - uid: 4433
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,98.5
+ parent: 2
+ - uid: 4434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,99.5
+ parent: 2
+ - uid: 4435
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,96.5
+ parent: 2
+ - uid: 4436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,97.5
+ parent: 2
+ - uid: 4437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,98.5
+ parent: 2
+ - uid: 4438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,99.5
+ parent: 2
+ - uid: 4439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,100.5
+ parent: 2
+ - uid: 4440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,101.5
+ parent: 2
+ - uid: 4441
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,102.5
+ parent: 2
+ - uid: 4442
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,98.5
+ parent: 2
+ - uid: 4443
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,99.5
+ parent: 2
+ - uid: 4444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,100.5
+ parent: 2
+ - uid: 4445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,101.5
+ parent: 2
+ - uid: 4446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,102.5
+ parent: 2
+ - uid: 4447
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,103.5
+ parent: 2
+ - uid: 4448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,94.5
+ parent: 2
+ - uid: 4449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,95.5
+ parent: 2
+ - uid: 4450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,100.5
+ parent: 2
+ - uid: 4451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,101.5
+ parent: 2
+ - uid: 4452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,102.5
+ parent: 2
+ - uid: 4453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,103.5
+ parent: 2
+ - uid: 4454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,94.5
+ parent: 2
+ - uid: 4455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,95.5
+ parent: 2
+ - uid: 4456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,96.5
+ parent: 2
+ - uid: 4457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,97.5
+ parent: 2
+ - uid: 4458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,102.5
+ parent: 2
+ - uid: 4459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,103.5
+ parent: 2
+ - uid: 4460
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,94.5
+ parent: 2
+ - uid: 4461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,95.5
+ parent: 2
+ - uid: 4462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,96.5
+ parent: 2
+ - uid: 4463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,97.5
+ parent: 2
+ - uid: 4464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,98.5
+ parent: 2
+ - uid: 4465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,99.5
+ parent: 2
+ - uid: 4466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,94.5
+ parent: 2
+ - uid: 4467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,95.5
+ parent: 2
+ - uid: 4468
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,96.5
+ parent: 2
+ - uid: 4469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,97.5
+ parent: 2
+ - uid: 4470
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,98.5
+ parent: 2
+ - uid: 4471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,99.5
+ parent: 2
+ - uid: 4472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,100.5
+ parent: 2
+ - uid: 4473
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,101.5
+ parent: 2
+ - uid: 4474
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,96.5
+ parent: 2
+ - uid: 4475
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,97.5
+ parent: 2
+ - uid: 4476
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,98.5
+ parent: 2
+ - uid: 4477
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,99.5
+ parent: 2
+ - uid: 4478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,100.5
+ parent: 2
+ - uid: 4479
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,101.5
+ parent: 2
+ - uid: 4480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,102.5
+ parent: 2
+ - uid: 4481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,103.5
+ parent: 2
+ - uid: 4482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,98.5
+ parent: 2
+ - uid: 4483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,99.5
+ parent: 2
+ - uid: 4484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,100.5
+ parent: 2
+ - uid: 4485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,101.5
+ parent: 2
+ - uid: 4486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,102.5
+ parent: 2
+ - uid: 4487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,103.5
+ parent: 2
+ - uid: 4488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,94.5
+ parent: 2
+ - uid: 4489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,95.5
+ parent: 2
+ - uid: 4490
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,100.5
+ parent: 2
+ - uid: 4491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,101.5
+ parent: 2
+ - uid: 4492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,102.5
+ parent: 2
+ - uid: 4493
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,103.5
+ parent: 2
+ - uid: 4494
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,94.5
+ parent: 2
+ - uid: 4495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,95.5
+ parent: 2
+ - uid: 4496
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,96.5
+ parent: 2
+ - uid: 4497
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,97.5
+ parent: 2
+ - uid: 4498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,99.5
+ parent: 2
+ - uid: 4500
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,100.5
+ parent: 2
+ - uid: 4501
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,101.5
+ parent: 2
+ - uid: 4502
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,102.5
+ parent: 2
+ - uid: 4503
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,103.5
+ parent: 2
+ - uid: 4504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,97.5
+ parent: 2
+ - uid: 4505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,103.5
+ parent: 2
+ - uid: 4506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,94.5
+ parent: 2
+ - uid: 4507
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,95.5
+ parent: 2
+ - uid: 4508
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,96.5
+ parent: 2
+ - uid: 4509
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,97.5
+ parent: 2
+ - uid: 4510
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,98.5
+ parent: 2
+ - uid: 4511
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,99.5
+ parent: 2
+ - uid: 4514
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,99.5
+ parent: 2
+ - uid: 4515
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,98.5
+ parent: 2
+ - uid: 4516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,97.5
+ parent: 2
+ - uid: 4517
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,96.5
+ parent: 2
+ - uid: 4518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,95.5
+ parent: 2
+ - uid: 4519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,94.5
+ parent: 2
+ - uid: 4520
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,94.5
+ parent: 2
+ - uid: 4521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,96.5
+ parent: 2
+ - uid: 4522
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,95.5
+ parent: 2
+ - uid: 4523
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,94.5
+ parent: 2
+ - uid: 4524
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,94.5
+ parent: 2
+ - uid: 4525
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,95.5
+ parent: 2
+ - uid: 4526
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,96.5
+ parent: 2
+ - uid: 4527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,96.5
+ parent: 2
+ - uid: 4528
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,95.5
+ parent: 2
+ - uid: 4529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,97.5
+ parent: 2
+ - uid: 4531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,97.5
+ parent: 2
+ - uid: 4533
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,98.5
+ parent: 2
+ - uid: 4534
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,94.5
+ parent: 2
+ - uid: 4535
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,95.5
+ parent: 2
+ - uid: 4536
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,94.5
+ parent: 2
+ - uid: 4537
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,96.5
+ parent: 2
+ - uid: 4539
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,95.5
+ parent: 2
+ - uid: 4540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,96.5
+ parent: 2
+ - uid: 4541
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,96.5
+ parent: 2
+ - uid: 4543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,100.5
+ parent: 2
+ - uid: 4544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,97.5
+ parent: 2
+ - uid: 4545
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,98.5
+ parent: 2
+ - uid: 4546
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,99.5
+ parent: 2
+ - uid: 4547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,100.5
+ parent: 2
+ - uid: 4548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,97.5
+ parent: 2
+ - uid: 4549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,98.5
+ parent: 2
+ - uid: 4550
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,99.5
+ parent: 2
+ - uid: 4551
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,100.5
+ parent: 2
+ - uid: 4552
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,97.5
+ parent: 2
+ - uid: 4553
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,98.5
+ parent: 2
+ - uid: 4554
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,99.5
+ parent: 2
+ - uid: 4555
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,101.5
+ parent: 2
+ - uid: 4556
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,101.5
+ parent: 2
+ - uid: 4557
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,102.5
+ parent: 2
+ - uid: 4558
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,96.5
+ parent: 2
+ - uid: 4559
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,95.5
+ parent: 2
+ - uid: 4560
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,94.5
+ parent: 2
+ - uid: 4561
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,94.5
+ parent: 2
+ - uid: 4562
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,99.5
+ parent: 2
+ - uid: 4563
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,99.5
+ parent: 2
+ - uid: 4564
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,98.5
+ parent: 2
+ - uid: 4565
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,97.5
+ parent: 2
+ - uid: 4566
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,96.5
+ parent: 2
+ - uid: 4567
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,95.5
+ parent: 2
+ - uid: 4568
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,98.5
+ parent: 2
+ - uid: 4569
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,97.5
+ parent: 2
+ - uid: 4570
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,103.5
+ parent: 2
+ - uid: 4572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,104.5
+ parent: 2
+ - uid: 4573
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,105.5
+ parent: 2
+ - uid: 4574
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,107.5
+ parent: 2
+ - uid: 4575
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,107.5
+ parent: 2
+ - uid: 4576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,104.5
+ parent: 2
+ - uid: 4577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,105.5
+ parent: 2
+ - uid: 4578
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,106.5
+ parent: 2
+ - uid: 4579
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,107.5
+ parent: 2
+ - uid: 4580
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,106.5
+ parent: 2
+ - uid: 4581
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,104.5
+ parent: 2
+ - uid: 4582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,106.5
+ parent: 2
+ - uid: 4583
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,107.5
+ parent: 2
+ - uid: 4584
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,104.5
+ parent: 2
+ - uid: 4585
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,105.5
+ parent: 2
+ - uid: 4586
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,105.5
+ parent: 2
+ - uid: 4587
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,106.5
+ parent: 2
+ - uid: 4588
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,107.5
+ parent: 2
+ - uid: 4589
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,104.5
+ parent: 2
+ - uid: 4590
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,105.5
+ parent: 2
+ - uid: 4591
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,106.5
+ parent: 2
+ - uid: 4592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,107.5
+ parent: 2
+ - uid: 4593
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,105.5
+ parent: 2
+ - uid: 4594
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,106.5
+ parent: 2
+ - uid: 4595
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,104.5
+ parent: 2
+ - uid: 4596
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,104.5
+ parent: 2
+ - uid: 4597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,107.5
+ parent: 2
+ - uid: 4598
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,105.5
+ parent: 2
+ - uid: 4599
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,106.5
+ parent: 2
+ - uid: 4600
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,107.5
+ parent: 2
+ - uid: 4601
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,104.5
+ parent: 2
+ - uid: 4602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,105.5
+ parent: 2
+ - uid: 4603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,106.5
+ parent: 2
+ - uid: 4605
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,104.5
+ parent: 2
+ - uid: 4607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,105.5
+ parent: 2
+ - uid: 4608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,107.5
+ parent: 2
+ - uid: 4609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,104.5
+ parent: 2
+ - uid: 4610
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,105.5
+ parent: 2
+ - uid: 4611
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,106.5
+ parent: 2
+ - uid: 4612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,104.5
+ parent: 2
+ - uid: 4613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,107.5
+ parent: 2
+ - uid: 4614
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,105.5
+ parent: 2
+ - uid: 4615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,106.5
+ parent: 2
+ - uid: 4616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,107.5
+ parent: 2
+ - uid: 4617
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,104.5
+ parent: 2
+ - uid: 4618
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,105.5
+ parent: 2
+ - uid: 4619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,106.5
+ parent: 2
+ - uid: 4620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,107.5
+ parent: 2
+ - uid: 4621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,105.5
+ parent: 2
+ - uid: 4622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,106.5
+ parent: 2
+ - uid: 4623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,104.5
+ parent: 2
+ - uid: 4627
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,104.5
+ parent: 2
+ - uid: 4629
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,108.5
+ parent: 2
+ - uid: 4630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,108.5
+ parent: 2
+ - uid: 4631
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,108.5
+ parent: 2
+ - uid: 4632
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,109.5
+ parent: 2
+ - uid: 4633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,110.5
+ parent: 2
+ - uid: 4634
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,109.5
+ parent: 2
+ - uid: 4731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,81.5
+ parent: 2
+ - uid: 4732
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,81.5
+ parent: 2
+ - uid: 4733
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,79.5
+ parent: 2
+ - uid: 4734
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,81.5
+ parent: 2
+ - uid: 4735
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,80.5
+ parent: 2
+ - uid: 4736
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,79.5
+ parent: 2
+ - uid: 4738
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,81.5
+ parent: 2
+ - uid: 4739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,79.5
+ parent: 2
+ - uid: 4741
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,80.5
+ parent: 2
+ - uid: 4742
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,79.5
+ parent: 2
+ - uid: 4744
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,81.5
+ parent: 2
+ - uid: 4745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,80.5
+ parent: 2
+ - uid: 4746
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,79.5
+ parent: 2
+ - uid: 4747
+ components:
+ - type: Transform
+ pos: 99.5,77.5
+ parent: 2
+ - uid: 4748
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,79.5
+ parent: 2
+ - uid: 4749
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,81.5
+ parent: 2
+ - uid: 4750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,80.5
+ parent: 2
+ - uid: 4751
+ components:
+ - type: Transform
+ pos: 97.5,76.5
+ parent: 2
+ - uid: 4752
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,81.5
+ parent: 2
+ - uid: 4753
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,80.5
+ parent: 2
+ - uid: 4754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,79.5
+ parent: 2
+ - uid: 4756
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,81.5
+ parent: 2
+ - uid: 4757
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,81.5
+ parent: 2
+ - uid: 4758
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,79.5
+ parent: 2
+ - uid: 4759
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,80.5
+ parent: 2
+ - uid: 4761
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,81.5
+ parent: 2
+ - uid: 4762
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,80.5
+ parent: 2
+ - uid: 4763
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,79.5
+ parent: 2
+ - uid: 4765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,80.5
+ parent: 2
+ - uid: 4766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,81.5
+ parent: 2
+ - uid: 4767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,79.5
+ parent: 2
+ - uid: 4768
+ components:
+ - type: Transform
+ pos: 85.5,78.5
+ parent: 2
+ - uid: 4769
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,81.5
+ parent: 2
+ - uid: 4770
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,80.5
+ parent: 2
+ - uid: 4771
+ components:
+ - type: Transform
+ pos: 86.5,78.5
+ parent: 2
+ - uid: 4772
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,80.5
+ parent: 2
+ - uid: 4773
+ components:
+ - type: Transform
+ pos: 99.5,78.5
+ parent: 2
+ - uid: 4774
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,81.5
+ parent: 2
+ - uid: 4775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,80.5
+ parent: 2
+ - uid: 4776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,79.5
+ parent: 2
+ - uid: 4777
+ components:
+ - type: Transform
+ pos: 100.5,78.5
+ parent: 2
+ - uid: 4778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,81.5
+ parent: 2
+ - uid: 4779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,79.5
+ parent: 2
+ - uid: 4780
+ components:
+ - type: Transform
+ pos: 97.5,78.5
+ parent: 2
+ - uid: 4781
+ components:
+ - type: Transform
+ pos: 98.5,78.5
+ parent: 2
+ - uid: 4782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,81.5
+ parent: 2
+ - uid: 4783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,80.5
+ parent: 2
+ - uid: 4784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,79.5
+ parent: 2
+ - uid: 4785
+ components:
+ - type: Transform
+ pos: 88.5,78.5
+ parent: 2
+ - uid: 4786
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,81.5
+ parent: 2
+ - uid: 4787
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,79.5
+ parent: 2
+ - uid: 4788
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,80.5
+ parent: 2
+ - uid: 4789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,81.5
+ parent: 2
+ - uid: 4790
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,80.5
+ parent: 2
+ - uid: 4791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,79.5
+ parent: 2
+ - uid: 4792
+ components:
+ - type: Transform
+ pos: 96.5,78.5
+ parent: 2
+ - uid: 4793
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,81.5
+ parent: 2
+ - uid: 4794
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,80.5
+ parent: 2
+ - uid: 4795
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,80.5
+ parent: 2
+ - uid: 4796
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,79.5
+ parent: 2
+ - uid: 4820
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,81.5
+ parent: 2
+ - uid: 4821
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,80.5
+ parent: 2
+ - uid: 4822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,79.5
+ parent: 2
+ - uid: 4823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,81.5
+ parent: 2
+ - uid: 4824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,80.5
+ parent: 2
+ - uid: 4825
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,79.5
+ parent: 2
+ - uid: 4827
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,81.5
+ parent: 2
+ - uid: 4833
+ components:
+ - type: Transform
+ pos: 94.5,78.5
+ parent: 2
+ - uid: 4841
+ components:
+ - type: Transform
+ pos: 95.5,78.5
+ parent: 2
+ - uid: 4860
+ components:
+ - type: Transform
+ pos: 90.5,78.5
+ parent: 2
+ - uid: 4861
+ components:
+ - type: Transform
+ pos: 91.5,78.5
+ parent: 2
+ - uid: 4862
+ components:
+ - type: Transform
+ pos: 93.5,78.5
+ parent: 2
+ - uid: 4883
+ components:
+ - type: Transform
+ pos: 92.5,78.5
+ parent: 2
+ - uid: 4884
+ components:
+ - type: Transform
+ pos: 89.5,78.5
+ parent: 2
+ - uid: 4885
+ components:
+ - type: Transform
+ pos: 87.5,78.5
+ parent: 2
+ - uid: 4886
+ components:
+ - type: Transform
+ pos: 98.5,77.5
+ parent: 2
+ - uid: 4913
+ components:
+ - type: Transform
+ pos: 97.5,77.5
+ parent: 2
+ - uid: 4914
+ components:
+ - type: Transform
+ pos: 96.5,77.5
+ parent: 2
+ - uid: 6183
+ components:
+ - type: Transform
+ pos: -102.5,-25.5
+ parent: 2
+ - uid: 6184
+ components:
+ - type: Transform
+ pos: -102.5,-26.5
+ parent: 2
+ - uid: 6185
+ components:
+ - type: Transform
+ pos: -104.5,-25.5
+ parent: 2
+ - uid: 6186
+ components:
+ - type: Transform
+ pos: -104.5,-24.5
+ parent: 2
+ - uid: 6187
+ components:
+ - type: Transform
+ pos: -104.5,-26.5
+ parent: 2
+ - uid: 6188
+ components:
+ - type: Transform
+ pos: -103.5,-24.5
+ parent: 2
+ - uid: 6189
+ components:
+ - type: Transform
+ pos: -103.5,-25.5
+ parent: 2
+ - uid: 6190
+ components:
+ - type: Transform
+ pos: -103.5,-26.5
+ parent: 2
+ - uid: 6191
+ components:
+ - type: Transform
+ pos: -102.5,-24.5
+ parent: 2
+ - uid: 6192
+ components:
+ - type: Transform
+ pos: -103.5,-23.5
+ parent: 2
+ - uid: 6193
+ components:
+ - type: Transform
+ pos: -102.5,-23.5
+ parent: 2
+ - uid: 6194
+ components:
+ - type: Transform
+ pos: -101.5,-23.5
+ parent: 2
+ - uid: 6195
+ components:
+ - type: Transform
+ pos: -100.5,-28.5
+ parent: 2
+ - uid: 6196
+ components:
+ - type: Transform
+ pos: -103.5,-27.5
+ parent: 2
+ - uid: 6197
+ components:
+ - type: Transform
+ pos: -103.5,-28.5
+ parent: 2
+ - uid: 6198
+ components:
+ - type: Transform
+ pos: -102.5,-27.5
+ parent: 2
+ - uid: 6199
+ components:
+ - type: Transform
+ pos: -102.5,-28.5
+ parent: 2
+ - uid: 6200
+ components:
+ - type: Transform
+ pos: -101.5,-27.5
+ parent: 2
+ - uid: 6201
+ components:
+ - type: Transform
+ pos: -101.5,-28.5
+ parent: 2
+ - uid: 6202
+ components:
+ - type: Transform
+ pos: -100.5,-27.5
+ parent: 2
+ - uid: 6203
+ components:
+ - type: Transform
+ pos: -101.5,-29.5
+ parent: 2
+ - uid: 6204
+ components:
+ - type: Transform
+ pos: -101.5,-30.5
+ parent: 2
+ - uid: 6205
+ components:
+ - type: Transform
+ pos: -100.5,-29.5
+ parent: 2
+ - uid: 6206
+ components:
+ - type: Transform
+ pos: -100.5,-30.5
+ parent: 2
+ - uid: 6207
+ components:
+ - type: Transform
+ pos: -99.5,-30.5
+ parent: 2
+ - uid: 6208
+ components:
+ - type: Transform
+ pos: -99.5,-29.5
+ parent: 2
+ - uid: 6209
+ components:
+ - type: Transform
+ pos: -100.5,-31.5
+ parent: 2
+ - uid: 6210
+ components:
+ - type: Transform
+ pos: -99.5,-31.5
+ parent: 2
+ - uid: 6211
+ components:
+ - type: Transform
+ pos: -98.5,-31.5
+ parent: 2
+ - uid: 6212
+ components:
+ - type: Transform
+ pos: -96.5,-29.5
+ parent: 2
+ - uid: 6213
+ components:
+ - type: Transform
+ pos: -97.5,-32.5
+ parent: 2
+ - uid: 6214
+ components:
+ - type: Transform
+ pos: -97.5,-31.5
+ parent: 2
+ - uid: 6215
+ components:
+ - type: Transform
+ pos: -97.5,-30.5
+ parent: 2
+ - uid: 6216
+ components:
+ - type: Transform
+ pos: -97.5,-29.5
+ parent: 2
+ - uid: 6217
+ components:
+ - type: Transform
+ pos: -96.5,-32.5
+ parent: 2
+ - uid: 6218
+ components:
+ - type: Transform
+ pos: -96.5,-31.5
+ parent: 2
+ - uid: 6219
+ components:
+ - type: Transform
+ pos: -96.5,-30.5
+ parent: 2
+ - uid: 6220
+ components:
+ - type: Transform
+ pos: -94.5,-27.5
+ parent: 2
+ - uid: 6221
+ components:
+ - type: Transform
+ pos: -93.5,-30.5
+ parent: 2
+ - uid: 6222
+ components:
+ - type: Transform
+ pos: -93.5,-29.5
+ parent: 2
+ - uid: 6223
+ components:
+ - type: Transform
+ pos: -93.5,-28.5
+ parent: 2
+ - uid: 6224
+ components:
+ - type: Transform
+ pos: -93.5,-27.5
+ parent: 2
+ - uid: 6225
+ components:
+ - type: Transform
+ pos: -95.5,-30.5
+ parent: 2
+ - uid: 6226
+ components:
+ - type: Transform
+ pos: -95.5,-29.5
+ parent: 2
+ - uid: 6227
+ components:
+ - type: Transform
+ pos: -95.5,-28.5
+ parent: 2
+ - uid: 6228
+ components:
+ - type: Transform
+ pos: -95.5,-27.5
+ parent: 2
+ - uid: 6229
+ components:
+ - type: Transform
+ pos: -94.5,-30.5
+ parent: 2
+ - uid: 6230
+ components:
+ - type: Transform
+ pos: -94.5,-29.5
+ parent: 2
+ - uid: 6231
+ components:
+ - type: Transform
+ pos: -94.5,-28.5
+ parent: 2
+ - uid: 6232
+ components:
+ - type: Transform
+ pos: -98.5,-30.5
+ parent: 2
+ - uid: 6233
+ components:
+ - type: Transform
+ pos: -98.5,-29.5
+ parent: 2
+ - uid: 6234
+ components:
+ - type: Transform
+ pos: -98.5,-28.5
+ parent: 2
+ - uid: 6235
+ components:
+ - type: Transform
+ pos: -98.5,-27.5
+ parent: 2
+ - uid: 6236
+ components:
+ - type: Transform
+ pos: -98.5,-26.5
+ parent: 2
+ - uid: 6237
+ components:
+ - type: Transform
+ pos: -98.5,-25.5
+ parent: 2
+ - uid: 6238
+ components:
+ - type: Transform
+ pos: -99.5,-28.5
+ parent: 2
+ - uid: 6239
+ components:
+ - type: Transform
+ pos: -99.5,-27.5
+ parent: 2
+ - uid: 6240
+ components:
+ - type: Transform
+ pos: -99.5,-26.5
+ parent: 2
+ - uid: 6241
+ components:
+ - type: Transform
+ pos: -99.5,-24.5
+ parent: 2
+ - uid: 6242
+ components:
+ - type: Transform
+ pos: -99.5,-25.5
+ parent: 2
+ - uid: 6243
+ components:
+ - type: Transform
+ pos: -101.5,-26.5
+ parent: 2
+ - uid: 6244
+ components:
+ - type: Transform
+ pos: -101.5,-25.5
+ parent: 2
+ - uid: 6245
+ components:
+ - type: Transform
+ pos: -101.5,-24.5
+ parent: 2
+ - uid: 6246
+ components:
+ - type: Transform
+ pos: -100.5,-25.5
+ parent: 2
+ - uid: 6247
+ components:
+ - type: Transform
+ pos: -100.5,-24.5
+ parent: 2
+ - uid: 6248
+ components:
+ - type: Transform
+ pos: -100.5,-26.5
+ parent: 2
+ - uid: 6249
+ components:
+ - type: Transform
+ pos: -99.5,-22.5
+ parent: 2
+ - uid: 6250
+ components:
+ - type: Transform
+ pos: -100.5,-20.5
+ parent: 2
+ - uid: 6251
+ components:
+ - type: Transform
+ pos: -99.5,-21.5
+ parent: 2
+ - uid: 6252
+ components:
+ - type: Transform
+ pos: -99.5,-20.5
+ parent: 2
+ - uid: 6253
+ components:
+ - type: Transform
+ pos: -100.5,-21.5
+ parent: 2
+ - uid: 6254
+ components:
+ - type: Transform
+ pos: -102.5,-22.5
+ parent: 2
+ - uid: 6255
+ components:
+ - type: Transform
+ pos: -102.5,-21.5
+ parent: 2
+ - uid: 6256
+ components:
+ - type: Transform
+ pos: -102.5,-20.5
+ parent: 2
+ - uid: 6257
+ components:
+ - type: Transform
+ pos: -101.5,-22.5
+ parent: 2
+ - uid: 6258
+ components:
+ - type: Transform
+ pos: -101.5,-21.5
+ parent: 2
+ - uid: 6259
+ components:
+ - type: Transform
+ pos: -101.5,-20.5
+ parent: 2
+ - uid: 6260
+ components:
+ - type: Transform
+ pos: -100.5,-22.5
+ parent: 2
+ - uid: 6261
+ components:
+ - type: Transform
+ pos: -99.5,-23.5
+ parent: 2
+ - uid: 6262
+ components:
+ - type: Transform
+ pos: -98.5,-23.5
+ parent: 2
+ - uid: 6263
+ components:
+ - type: Transform
+ pos: -100.5,-23.5
+ parent: 2
+ - uid: 6264
+ components:
+ - type: Transform
+ pos: -100.5,-19.5
+ parent: 2
+ - uid: 6265
+ components:
+ - type: Transform
+ pos: -99.5,-19.5
+ parent: 2
+ - uid: 6266
+ components:
+ - type: Transform
+ pos: -98.5,-19.5
+ parent: 2
+ - uid: 6267
+ components:
+ - type: Transform
+ pos: -98.5,-20.5
+ parent: 2
+ - uid: 6268
+ components:
+ - type: Transform
+ pos: -98.5,-21.5
+ parent: 2
+ - uid: 6269
+ components:
+ - type: Transform
+ pos: -98.5,-22.5
+ parent: 2
+ - uid: 6270
+ components:
+ - type: Transform
+ pos: -97.5,-21.5
+ parent: 2
+ - uid: 6271
+ components:
+ - type: Transform
+ pos: -97.5,-22.5
+ parent: 2
+ - uid: 6272
+ components:
+ - type: Transform
+ pos: -97.5,-23.5
+ parent: 2
+ - uid: 6273
+ components:
+ - type: Transform
+ pos: -97.5,-24.5
+ parent: 2
+ - uid: 6274
+ components:
+ - type: Transform
+ pos: -98.5,-24.5
+ parent: 2
+ - uid: 6275
+ components:
+ - type: Transform
+ pos: -97.5,-25.5
+ parent: 2
+ - uid: 6276
+ components:
+ - type: Transform
+ pos: -97.5,-26.5
+ parent: 2
+ - uid: 6277
+ components:
+ - type: Transform
+ pos: -97.5,-27.5
+ parent: 2
+ - uid: 6278
+ components:
+ - type: Transform
+ pos: -97.5,-28.5
+ parent: 2
+ - uid: 6279
+ components:
+ - type: Transform
+ pos: -96.5,-25.5
+ parent: 2
+ - uid: 6280
+ components:
+ - type: Transform
+ pos: -96.5,-26.5
+ parent: 2
+ - uid: 6281
+ components:
+ - type: Transform
+ pos: -96.5,-27.5
+ parent: 2
+ - uid: 6282
+ components:
+ - type: Transform
+ pos: -96.5,-28.5
+ parent: 2
+ - uid: 6283
+ components:
+ - type: Transform
+ pos: -94.5,-26.5
+ parent: 2
+ - uid: 6284
+ components:
+ - type: Transform
+ pos: -94.5,-25.5
+ parent: 2
+ - uid: 6285
+ components:
+ - type: Transform
+ pos: -94.5,-24.5
+ parent: 2
+ - uid: 6286
+ components:
+ - type: Transform
+ pos: -95.5,-25.5
+ parent: 2
+ - uid: 6287
+ components:
+ - type: Transform
+ pos: -95.5,-24.5
+ parent: 2
+ - uid: 6288
+ components:
+ - type: Transform
+ pos: -95.5,-26.5
+ parent: 2
+ - uid: 6289
+ components:
+ - type: Transform
+ pos: -96.5,-24.5
+ parent: 2
+ - uid: 6290
+ components:
+ - type: Transform
+ pos: -96.5,-22.5
+ parent: 2
+ - uid: 6291
+ components:
+ - type: Transform
+ pos: -96.5,-23.5
+ parent: 2
+ - uid: 6292
+ components:
+ - type: Transform
+ pos: -95.5,-23.5
+ parent: 2
+ - uid: 8940
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,-18.5
+ parent: 2
+ - uid: 8941
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,-18.5
+ parent: 2
+ - uid: 8942
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -100.5,-18.5
+ parent: 2
+ - uid: 8943
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,-17.5
+ parent: 2
+ - uid: 8944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,-16.5
+ parent: 2
+ - uid: 8945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-19.5
+ parent: 2
+ - uid: 8946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,-20.5
+ parent: 2
+ - uid: 8947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,-21.5
+ parent: 2
+ - uid: 8948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,-22.5
+ parent: 2
+ - uid: 10071
+ components:
+ - type: Transform
+ pos: 91.5,110.5
+ parent: 2
+ - uid: 10075
+ components:
+ - type: Transform
+ pos: 91.5,111.5
+ parent: 2
+ - uid: 10076
+ components:
+ - type: Transform
+ pos: 91.5,112.5
+ parent: 2
+ - uid: 10077
+ components:
+ - type: Transform
+ pos: 92.5,108.5
+ parent: 2
+ - uid: 10078
+ components:
+ - type: Transform
+ pos: 92.5,109.5
+ parent: 2
+ - uid: 10079
+ components:
+ - type: Transform
+ pos: 92.5,110.5
+ parent: 2
+ - uid: 10080
+ components:
+ - type: Transform
+ pos: 92.5,111.5
+ parent: 2
+ - uid: 10081
+ components:
+ - type: Transform
+ pos: 92.5,112.5
+ parent: 2
+ - uid: 10082
+ components:
+ - type: Transform
+ pos: 91.5,108.5
+ parent: 2
+ - uid: 10083
+ components:
+ - type: Transform
+ pos: 93.5,108.5
+ parent: 2
+ - uid: 10084
+ components:
+ - type: Transform
+ pos: 91.5,109.5
+ parent: 2
+ - uid: 10085
+ components:
+ - type: Transform
+ pos: 94.5,109.5
+ parent: 2
+ - uid: 10086
+ components:
+ - type: Transform
+ pos: 94.5,111.5
+ parent: 2
+ - uid: 10087
+ components:
+ - type: Transform
+ pos: 94.5,110.5
+ parent: 2
+ - uid: 10088
+ components:
+ - type: Transform
+ pos: 94.5,112.5
+ parent: 2
+ - uid: 10089
+ components:
+ - type: Transform
+ pos: 93.5,109.5
+ parent: 2
+ - uid: 10090
+ components:
+ - type: Transform
+ pos: 93.5,110.5
+ parent: 2
+ - uid: 10091
+ components:
+ - type: Transform
+ pos: 93.5,111.5
+ parent: 2
+ - uid: 10092
+ components:
+ - type: Transform
+ pos: 93.5,112.5
+ parent: 2
+ - uid: 10093
+ components:
+ - type: Transform
+ pos: 96.5,112.5
+ parent: 2
+ - uid: 10094
+ components:
+ - type: Transform
+ pos: 95.5,108.5
+ parent: 2
+ - uid: 10095
+ components:
+ - type: Transform
+ pos: 95.5,109.5
+ parent: 2
+ - uid: 10096
+ components:
+ - type: Transform
+ pos: 95.5,110.5
+ parent: 2
+ - uid: 10097
+ components:
+ - type: Transform
+ pos: 95.5,111.5
+ parent: 2
+ - uid: 10098
+ components:
+ - type: Transform
+ pos: 95.5,112.5
+ parent: 2
+ - uid: 10099
+ components:
+ - type: Transform
+ pos: 94.5,108.5
+ parent: 2
+ - uid: 10100
+ components:
+ - type: Transform
+ pos: 96.5,111.5
+ parent: 2
+ - uid: 10101
+ components:
+ - type: Transform
+ pos: 97.5,108.5
+ parent: 2
+ - uid: 10102
+ components:
+ - type: Transform
+ pos: 97.5,109.5
+ parent: 2
+ - uid: 10103
+ components:
+ - type: Transform
+ pos: 97.5,110.5
+ parent: 2
+ - uid: 10104
+ components:
+ - type: Transform
+ pos: 97.5,111.5
+ parent: 2
+ - uid: 10105
+ components:
+ - type: Transform
+ pos: 97.5,112.5
+ parent: 2
+ - uid: 10106
+ components:
+ - type: Transform
+ pos: 96.5,108.5
+ parent: 2
+ - uid: 10107
+ components:
+ - type: Transform
+ pos: 96.5,109.5
+ parent: 2
+ - uid: 10108
+ components:
+ - type: Transform
+ pos: 96.5,110.5
+ parent: 2
+ - uid: 10109
+ components:
+ - type: Transform
+ pos: 99.5,111.5
+ parent: 2
+ - uid: 10110
+ components:
+ - type: Transform
+ pos: 99.5,112.5
+ parent: 2
+ - uid: 10111
+ components:
+ - type: Transform
+ pos: 98.5,108.5
+ parent: 2
+ - uid: 10112
+ components:
+ - type: Transform
+ pos: 98.5,109.5
+ parent: 2
+ - uid: 10113
+ components:
+ - type: Transform
+ pos: 98.5,110.5
+ parent: 2
+ - uid: 10114
+ components:
+ - type: Transform
+ pos: 98.5,111.5
+ parent: 2
+ - uid: 10115
+ components:
+ - type: Transform
+ pos: 98.5,112.5
+ parent: 2
+ - uid: 10116
+ components:
+ - type: Transform
+ pos: 99.5,110.5
+ parent: 2
+ - uid: 10117
+ components:
+ - type: Transform
+ pos: 100.5,108.5
+ parent: 2
+ - uid: 10118
+ components:
+ - type: Transform
+ pos: 100.5,109.5
+ parent: 2
+ - uid: 10119
+ components:
+ - type: Transform
+ pos: 100.5,110.5
+ parent: 2
+ - uid: 10120
+ components:
+ - type: Transform
+ pos: 100.5,111.5
+ parent: 2
+ - uid: 10122
+ components:
+ - type: Transform
+ pos: 99.5,108.5
+ parent: 2
+ - uid: 10123
+ components:
+ - type: Transform
+ pos: 99.5,109.5
+ parent: 2
+ - uid: 10124
+ components:
+ - type: Transform
+ pos: 90.5,112.5
+ parent: 2
+ - uid: 13481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,113.5
+ parent: 2
+ - uid: 13482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,113.5
+ parent: 2
+ - uid: 13483
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,113.5
+ parent: 2
+ - uid: 13484
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,113.5
+ parent: 2
+ - uid: 13485
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,113.5
+ parent: 2
+ - uid: 13486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,113.5
+ parent: 2
+ - uid: 13487
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,113.5
+ parent: 2
+ - uid: 13488
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,113.5
+ parent: 2
+ - uid: 13489
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,114.5
+ parent: 2
+ - uid: 13490
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,114.5
+ parent: 2
+ - uid: 13491
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,114.5
+ parent: 2
+ - uid: 13492
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,114.5
+ parent: 2
+ - uid: 13493
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,114.5
+ parent: 2
+ - uid: 13494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,114.5
+ parent: 2
+ - uid: 13495
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,115.5
+ parent: 2
+ - uid: 13496
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,115.5
+ parent: 2
+ - uid: 13497
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,115.5
+ parent: 2
+ - uid: 13498
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,115.5
+ parent: 2
+ - uid: 13499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,115.5
+ parent: 2
+ - uid: 13500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,114.5
+ parent: 2
+ - uid: 13501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,115.5
+ parent: 2
+ - uid: 13502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,116.5
+ parent: 2
+ - uid: 13503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,116.5
+ parent: 2
+ - uid: 13504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,121.5
+ parent: 2
+ - uid: 13505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,121.5
+ parent: 2
+ - uid: 13506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,116.5
+ parent: 2
+ - uid: 13507
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,117.5
+ parent: 2
+ - uid: 13508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,118.5
+ parent: 2
+ - uid: 13509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,119.5
+ parent: 2
+ - uid: 13510
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,120.5
+ parent: 2
+ - uid: 13511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,121.5
+ parent: 2
+ - uid: 13512
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,116.5
+ parent: 2
+ - uid: 13513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,117.5
+ parent: 2
+ - uid: 13514
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,118.5
+ parent: 2
+ - uid: 13515
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,119.5
+ parent: 2
+ - uid: 13516
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,120.5
+ parent: 2
+ - uid: 13517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,121.5
+ parent: 2
+ - uid: 13518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,115.5
+ parent: 2
+ - uid: 13519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,116.5
+ parent: 2
+ - uid: 13520
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,117.5
+ parent: 2
+ - uid: 13521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,118.5
+ parent: 2
+ - uid: 13522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,119.5
+ parent: 2
+ - uid: 13523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,120.5
+ parent: 2
+ - uid: 13524
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,117.5
+ parent: 2
+ - uid: 13525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,118.5
+ parent: 2
+ - uid: 13526
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,119.5
+ parent: 2
+ - uid: 13527
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,120.5
+ parent: 2
+ - uid: 13528
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,121.5
+ parent: 2
+ - uid: 13529
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,117.5
+ parent: 2
+ - uid: 13530
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,118.5
+ parent: 2
+ - uid: 13531
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,119.5
+ parent: 2
+ - uid: 13532
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,120.5
+ parent: 2
+ - uid: 13533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,121.5
+ parent: 2
+ - uid: 13534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,116.5
+ parent: 2
+ - uid: 13535
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,117.5
+ parent: 2
+ - uid: 13536
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,118.5
+ parent: 2
+ - uid: 13537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,119.5
+ parent: 2
+ - uid: 13538
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,120.5
+ parent: 2
+ - uid: 13539
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,117.5
+ parent: 2
+ - uid: 13540
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,119.5
+ parent: 2
+ - uid: 13541
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,118.5
+ parent: 2
+ - uid: 13542
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,120.5
+ parent: 2
+ - uid: 13543
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,121.5
+ parent: 2
+ - uid: 13544
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,122.5
+ parent: 2
+ - uid: 13545
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,123.5
+ parent: 2
+ - uid: 13546
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,122.5
+ parent: 2
+ - uid: 13547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,123.5
+ parent: 2
+ - uid: 13548
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,122.5
+ parent: 2
+ - uid: 13549
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,123.5
+ parent: 2
+ - uid: 13550
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,122.5
+ parent: 2
+ - uid: 13551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,123.5
+ parent: 2
+ - uid: 13552
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,122.5
+ parent: 2
+ - uid: 13553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,123.5
+ parent: 2
+ - uid: 13554
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,122.5
+ parent: 2
+ - uid: 13555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,121.5
+ parent: 2
+ - uid: 13556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,120.5
+ parent: 2
+ - uid: 13557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,122.5
+ parent: 2
+ - uid: 13558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,122.5
+ parent: 2
+ - uid: 13559
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,124.5
+ parent: 2
+ - uid: 13560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,124.5
+ parent: 2
+ - uid: 13561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,124.5
+ parent: 2
+ - uid: 13562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,123.5
+ parent: 2
+ - uid: 13563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,124.5
+ parent: 2
+ - uid: 13564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,123.5
+ parent: 2
+ - uid: 13565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,123.5
+ parent: 2
+ - uid: 13566
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,125.5
+ parent: 2
+ - uid: 13567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,124.5
+ parent: 2
+ - uid: 13568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,125.5
+ parent: 2
+ - uid: 13569
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,124.5
+ parent: 2
+ - uid: 13570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,125.5
+ parent: 2
+ - uid: 13571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,124.5
+ parent: 2
+ - uid: 13572
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,125.5
+ parent: 2
+ - uid: 13573
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,124.5
+ parent: 2
+ - uid: 13574
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,123.5
+ parent: 2
+ - uid: 13575
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,122.5
+ parent: 2
+ - uid: 13576
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,121.5
+ parent: 2
+ - uid: 13577
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,120.5
+ parent: 2
+ - uid: 13578
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,119.5
+ parent: 2
+ - uid: 13579
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,124.5
+ parent: 2
+ - uid: 13580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,123.5
+ parent: 2
+ - uid: 13581
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,122.5
+ parent: 2
+ - uid: 13582
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,121.5
+ parent: 2
+ - uid: 13583
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,120.5
+ parent: 2
+ - uid: 13584
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,119.5
+ parent: 2
+ - uid: 13585
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,124.5
+ parent: 2
+ - uid: 13586
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,123.5
+ parent: 2
+ - uid: 13587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,122.5
+ parent: 2
+ - uid: 13588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,121.5
+ parent: 2
+ - uid: 13589
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,120.5
+ parent: 2
+ - uid: 13590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,119.5
+ parent: 2
+ - uid: 13591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,125.5
+ parent: 2
+ - uid: 13592
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,126.5
+ parent: 2
+ - uid: 13593
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,126.5
+ parent: 2
+ - uid: 13594
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,125.5
+ parent: 2
+ - uid: 13595
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,118.5
+ parent: 2
+ - uid: 13596
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,118.5
+ parent: 2
+ - uid: 13597
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,117.5
+ parent: 2
+ - uid: 13598
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,116.5
+ parent: 2
+ - uid: 13599
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,115.5
+ parent: 2
+ - uid: 13600
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,116.5
+ parent: 2
+ - uid: 13601
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,117.5
+ parent: 2
+- proto: CP14BlueBottle
+ entities:
+ - uid: 10072
+ components:
+ - type: Transform
+ rot: 6.283185307179586 rad
+ pos: 36.98452,-65.53377
+ parent: 2
+- proto: CP14Bonfire
+ entities:
+ - uid: 709
+ components:
+ - type: Transform
+ pos: 9.5,29.5
+ parent: 2
+- proto: CP14BookKnowledgeClothingSewing
+ entities:
+ - uid: 14134
+ components:
+ - type: Transform
+ pos: -29.079868,-22.234352
+ parent: 2
+- proto: CP14BowCombat
+ entities:
+ - uid: 17728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.633556,-12.251799
+ parent: 2
+ - uid: 17729
+ components:
+ - type: Transform
+ pos: -36.414806,-12.267424
+ parent: 2
+- proto: CP14BrassChest
+ entities:
+ - uid: 14420
+ components:
+ - type: Transform
+ pos: -5.5,-23.5
+ parent: 2
+- proto: CP14BrassChestFilledFarmSeeds
+ entities:
+ - uid: 14548
+ components:
+ - type: Transform
+ pos: 8.5,38.5
+ parent: 2
+- proto: CP14BrassChestFilledWood
+ entities:
+ - uid: 13198
+ components:
+ - type: Transform
+ pos: -12.5,4.5
+ parent: 2
+- proto: CP14Bucket
+ entities:
+ - uid: 14417
+ components:
+ - type: Transform
+ pos: -9.628431,-21.130474
+ parent: 2
+ - uid: 14556
+ components:
+ - type: Transform
+ pos: 8.3563595,33.943676
+ parent: 2
+- proto: CP14Candle
+ entities:
+ - uid: 1464
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.321799,-22.075478
+ parent: 2
+- proto: CP14CandleInfinite
+ entities:
+ - uid: 15466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.2694063,-16.374914
+ parent: 2
+- proto: CP14CandleSmall
+ entities:
+ - uid: 1468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5233345,-22.055344
+ parent: 2
+- proto: CP14CashConverter
+ entities:
+ - uid: 14286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-10.5
+ parent: 2
+ - uid: 14289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-16.5
+ parent: 2
+ - uid: 14424
+ components:
+ - type: Transform
+ pos: -7.5,-18.5
+ parent: 2
+- proto: CP14Cauldron
+ entities:
+ - uid: 15601
+ components:
+ - type: Transform
+ pos: 30.559532,23.83569
+ parent: 2
+ - type: CollisionWake
+ enabled: False
+- proto: CP14ChairWooden
+ entities:
+ - uid: 277
+ components:
+ - type: Transform
+ pos: 11.5,24.5
+ parent: 2
+ - uid: 278
+ components:
+ - type: Transform
+ pos: 12.5,24.5
+ parent: 2
+ - uid: 281
+ components:
+ - type: Transform
+ pos: 17.5,24.5
+ parent: 2
+ - uid: 282
+ components:
+ - type: Transform
+ pos: 18.5,24.5
+ parent: 2
+ - uid: 1609
+ components:
+ - type: Transform
+ pos: -21.050007,19.194178
+ parent: 2
+ - uid: 1613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.738386,19.334803
+ parent: 2
+ - uid: 1614
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.88975,20.188847
+ parent: 2
+ - uid: 1623
+ components:
+ - type: Transform
+ pos: -14.465112,26.229828
+ parent: 2
+ - uid: 1629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.591718,27.17671
+ parent: 2
+ - uid: 1632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.0421276,23.078985
+ parent: 2
+ - uid: 1637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.489958,22.718721
+ parent: 2
+ - uid: 1642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.16383,22.849745
+ parent: 2
+ - uid: 1654
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.964016,18.941383
+ parent: 2
+ - uid: 1655
+ components:
+ - type: Transform
+ pos: 0.6766092,18.441383
+ parent: 2
+ - uid: 1656
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.1766093,18.894508
+ parent: 2
+ - uid: 1661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5418305,9.160321
+ parent: 2
+ - uid: 1667
+ components:
+ - type: Transform
+ pos: 1.279888,9.490674
+ parent: 2
+ - uid: 14297
+ components:
+ - type: Transform
+ pos: -26.5,-12.5
+ parent: 2
+ - uid: 14361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,-11.5
+ parent: 2
+ - uid: 14362
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,-11.5
+ parent: 2
+ - uid: 14405
+ components:
+ - type: Transform
+ pos: -14.350229,-6.6092134
+ parent: 2
+ - uid: 14429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.832203,-17.231798
+ parent: 2
+ - uid: 14557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,22.5
+ parent: 2
+ - uid: 14558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,22.5
+ parent: 2
+ - uid: 14559
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,22.5
+ parent: 2
+ - uid: 14560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,22.5
+ parent: 2
+ - uid: 14561
+ components:
+ - type: Transform
+ pos: 14.5,26.5
+ parent: 2
+ - uid: 14564
+ components:
+ - type: Transform
+ pos: 15.5,26.5
+ parent: 2
+ - uid: 14565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,24.5
+ parent: 2
+ - uid: 14566
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,24.5
+ parent: 2
+ - uid: 14567
+ components:
+ - type: Transform
+ pos: 18.5,27.5
+ parent: 2
+ - uid: 17667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.82198,-3.0809808
+ parent: 2
+ - uid: 17670
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.70404,-4.2976713
+ parent: 2
+- proto: CP14Cliff
+ entities:
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 21.5,-47.5
+ parent: 2
+ - uid: 592
+ components:
+ - type: Transform
+ pos: 27.5,-47.5
+ parent: 2
+ - uid: 596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-55.5
+ parent: 2
+ - uid: 598
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-48.5
+ parent: 2
+ - uid: 599
+ components:
+ - type: Transform
+ pos: 30.5,-49.5
+ parent: 2
+ - uid: 600
+ components:
+ - type: Transform
+ pos: 29.5,-49.5
+ parent: 2
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 34.5,-54.5
+ parent: 2
+ - uid: 604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-50.5
+ parent: 2
+ - uid: 607
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-58.5
+ parent: 2
+ - uid: 612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,-62.5
+ parent: 2
+ - uid: 613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-60.5
+ parent: 2
+ - uid: 617
+ components:
+ - type: Transform
+ pos: 35.5,-67.5
+ parent: 2
+ - uid: 619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-64.5
+ parent: 2
+ - uid: 620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-65.5
+ parent: 2
+ - uid: 621
+ components:
+ - type: Transform
+ pos: 33.5,-66.5
+ parent: 2
+ - uid: 623
+ components:
+ - type: Transform
+ pos: 36.5,-67.5
+ parent: 2
+ - uid: 624
+ components:
+ - type: Transform
+ pos: 37.5,-67.5
+ parent: 2
+ - uid: 625
+ components:
+ - type: Transform
+ pos: 38.5,-67.5
+ parent: 2
+ - uid: 626
+ components:
+ - type: Transform
+ pos: 39.5,-67.5
+ parent: 2
+ - uid: 627
+ components:
+ - type: Transform
+ pos: 41.5,-66.5
+ parent: 2
+ - uid: 628
+ components:
+ - type: Transform
+ pos: 42.5,-66.5
+ parent: 2
+ - uid: 631
+ components:
+ - type: Transform
+ pos: 24.5,-48.5
+ parent: 2
+ - uid: 634
+ components:
+ - type: Transform
+ pos: 23.5,-48.5
+ parent: 2
+ - uid: 635
+ components:
+ - type: Transform
+ pos: 25.5,-48.5
+ parent: 2
+ - uid: 637
+ components:
+ - type: Transform
+ pos: 44.5,-65.5
+ parent: 2
+ - uid: 638
+ components:
+ - type: Transform
+ pos: 45.5,-65.5
+ parent: 2
+ - uid: 639
+ components:
+ - type: Transform
+ pos: 46.5,-65.5
+ parent: 2
+ - uid: 643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -100.5,40.5
+ parent: 2
+ - uid: 671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -109.5,38.5
+ parent: 2
+ - uid: 974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -111.5,37.5
+ parent: 2
+ - uid: 1002
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -112.5,37.5
+ parent: 2
+ - uid: 1262
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -113.5,37.5
+ parent: 2
+ - uid: 1674
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,13.5
+ parent: 2
+ - uid: 1764
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,7.5
+ parent: 2
+ - uid: 1765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,6.5
+ parent: 2
+ - uid: 1766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,5.5
+ parent: 2
+ - uid: 1767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,4.5
+ parent: 2
+ - uid: 1768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,3.5
+ parent: 2
+ - uid: 1777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,13.5
+ parent: 2
+ - uid: 1778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,14.5
+ parent: 2
+ - uid: 1779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,15.5
+ parent: 2
+ - uid: 1814
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,7.5
+ parent: 2
+ - uid: 1815
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,6.5
+ parent: 2
+ - uid: 1816
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,5.5
+ parent: 2
+ - uid: 1817
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,4.5
+ parent: 2
+ - uid: 1818
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,3.5
+ parent: 2
+ - uid: 1819
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,2.5
+ parent: 2
+ - uid: 1821
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,1.5
+ parent: 2
+ - uid: 1869
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-1.5
+ parent: 2
+ - uid: 1870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-2.5
+ parent: 2
+ - uid: 1965
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,2.5
+ parent: 2
+ - uid: 1966
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,1.5
+ parent: 2
+ - uid: 1994
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-8.5
+ parent: 2
+ - uid: 1995
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-7.5
+ parent: 2
+ - uid: 1996
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,-5.5
+ parent: 2
+ - uid: 1997
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,-4.5
+ parent: 2
+ - uid: 1998
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,-3.5
+ parent: 2
+ - uid: 1999
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,-2.5
+ parent: 2
+ - uid: 2000
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,-0.5
+ parent: 2
+ - uid: 2136
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-5.5
+ parent: 2
+ - uid: 2137
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-4.5
+ parent: 2
+ - uid: 2148
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-6.5
+ parent: 2
+ - uid: 2149
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-8.5
+ parent: 2
+ - uid: 2150
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-9.5
+ parent: 2
+ - uid: 2151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-10.5
+ parent: 2
+ - uid: 2152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-7.5
+ parent: 2
+ - uid: 2253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,15.5
+ parent: 2
+ - uid: 2259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,14.5
+ parent: 2
+ - uid: 2264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,18.5
+ parent: 2
+ - uid: 2265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,16.5
+ parent: 2
+ - uid: 2275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,17.5
+ parent: 2
+ - uid: 2287
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,19.5
+ parent: 2
+ - uid: 2290
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,21.5
+ parent: 2
+ - uid: 2291
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,22.5
+ parent: 2
+ - uid: 2292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,23.5
+ parent: 2
+ - uid: 2296
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -99.5,37.5
+ parent: 2
+ - uid: 2297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -100.5,38.5
+ parent: 2
+ - uid: 2299
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,25.5
+ parent: 2
+ - uid: 2300
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -100.5,39.5
+ parent: 2
+ - uid: 2301
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -101.5,41.5
+ parent: 2
+ - uid: 2302
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -106.5,39.5
+ parent: 2
+ - uid: 2303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -104.5,42.5
+ parent: 2
+ - uid: 2304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -107.5,38.5
+ parent: 2
+ - uid: 2305
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -108.5,38.5
+ parent: 2
+ - uid: 2306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,37.5
+ parent: 2
+ - uid: 2307
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,38.5
+ parent: 2
+ - uid: 2308
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,39.5
+ parent: 2
+ - uid: 2309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,41.5
+ parent: 2
+ - uid: 2314
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,37.5
+ parent: 2
+ - uid: 2316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -102.5,41.5
+ parent: 2
+ - uid: 2317
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -106.5,40.5
+ parent: 2
+ - uid: 2319
+ components:
+ - type: Transform
+ pos: -94.5,26.5
+ parent: 2
+ - uid: 2327
+ components:
+ - type: Transform
+ pos: -95.5,26.5
+ parent: 2
+ - uid: 2347
+ components:
+ - type: Transform
+ pos: -100.5,24.5
+ parent: 2
+ - uid: 2348
+ components:
+ - type: Transform
+ pos: -101.5,24.5
+ parent: 2
+ - uid: 2358
+ components:
+ - type: Transform
+ pos: -102.5,24.5
+ parent: 2
+ - uid: 2363
+ components:
+ - type: Transform
+ pos: -99.5,24.5
+ parent: 2
+ - uid: 2364
+ components:
+ - type: Transform
+ pos: -97.5,25.5
+ parent: 2
+ - uid: 2377
+ components:
+ - type: Transform
+ pos: -103.5,55.5
+ parent: 2
+ - uid: 2587
+ components:
+ - type: Transform
+ pos: -107.5,56.5
+ parent: 2
+ - uid: 2589
+ components:
+ - type: Transform
+ pos: -109.5,57.5
+ parent: 2
+ - uid: 2736
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,52.5
+ parent: 2
+ - uid: 2841
+ components:
+ - type: Transform
+ pos: -101.5,54.5
+ parent: 2
+ - uid: 2844
+ components:
+ - type: Transform
+ pos: -111.5,57.5
+ parent: 2
+ - uid: 2852
+ components:
+ - type: Transform
+ pos: -110.5,57.5
+ parent: 2
+ - uid: 2853
+ components:
+ - type: Transform
+ pos: -99.5,53.5
+ parent: 2
+ - uid: 2895
+ components:
+ - type: Transform
+ pos: -106.5,56.5
+ parent: 2
+ - uid: 2897
+ components:
+ - type: Transform
+ pos: -104.5,55.5
+ parent: 2
+ - uid: 6167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-19.5
+ parent: 2
+ - uid: 6170
+ components:
+ - type: Transform
+ pos: -89.5,-20.5
+ parent: 2
+ - uid: 6171
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-21.5
+ parent: 2
+ - uid: 6172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-22.5
+ parent: 2
+ - uid: 6173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-23.5
+ parent: 2
+ - uid: 6174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-24.5
+ parent: 2
+ - uid: 6175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-26.5
+ parent: 2
+ - uid: 6176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-27.5
+ parent: 2
+ - uid: 6177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-28.5
+ parent: 2
+ - uid: 6178
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-29.5
+ parent: 2
+ - uid: 6182
+ components:
+ - type: Transform
+ pos: -87.5,-25.5
+ parent: 2
+ - uid: 8826
+ components:
+ - type: Transform
+ pos: -41.5,-33.5
+ parent: 2
+ - uid: 8827
+ components:
+ - type: Transform
+ pos: -42.5,-33.5
+ parent: 2
+ - uid: 8828
+ components:
+ - type: Transform
+ pos: -43.5,-33.5
+ parent: 2
+ - uid: 8829
+ components:
+ - type: Transform
+ pos: -44.5,-33.5
+ parent: 2
+ - uid: 8837
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-29.5
+ parent: 2
+ - uid: 8838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-28.5
+ parent: 2
+ - uid: 8840
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-26.5
+ parent: 2
+ - uid: 8841
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-25.5
+ parent: 2
+ - uid: 8850
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-29.5
+ parent: 2
+ - uid: 8851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-28.5
+ parent: 2
+ - uid: 8852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-27.5
+ parent: 2
+ - uid: 8853
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-26.5
+ parent: 2
+ - uid: 15168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,31.5
+ parent: 2
+ - uid: 15169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,31.5
+ parent: 2
+ - uid: 15170
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,31.5
+ parent: 2
+ - uid: 15171
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,31.5
+ parent: 2
+ - uid: 15172
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,31.5
+ parent: 2
+ - uid: 15173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,31.5
+ parent: 2
+ - uid: 15174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,31.5
+ parent: 2
+ - uid: 15175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,31.5
+ parent: 2
+ - uid: 15176
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,31.5
+ parent: 2
+ - uid: 15177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,31.5
+ parent: 2
+ - uid: 15178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,31.5
+ parent: 2
+ - uid: 15179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,31.5
+ parent: 2
+ - uid: 15180
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,31.5
+ parent: 2
+ - uid: 15181
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,31.5
+ parent: 2
+ - uid: 15182
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,31.5
+ parent: 2
+ - uid: 15183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,31.5
+ parent: 2
+ - uid: 15184
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,31.5
+ parent: 2
+ - uid: 15185
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,31.5
+ parent: 2
+ - uid: 15186
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,31.5
+ parent: 2
+ - uid: 15188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,32.5
+ parent: 2
+ - uid: 15190
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,33.5
+ parent: 2
+- proto: CP14CliffCorner
+ entities:
+ - uid: 464
+ components:
+ - type: Transform
+ pos: -110.5,37.5
+ parent: 2
+ - uid: 523
+ components:
+ - type: Transform
+ pos: -105.5,41.5
+ parent: 2
+ - uid: 589
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-47.5
+ parent: 2
+ - uid: 590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,-47.5
+ parent: 2
+ - uid: 593
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-49.5
+ parent: 2
+ - uid: 594
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-47.5
+ parent: 2
+ - uid: 597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,-54.5
+ parent: 2
+ - uid: 602
+ components:
+ - type: Transform
+ pos: 35.5,-56.5
+ parent: 2
+ - uid: 606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,-57.5
+ parent: 2
+ - uid: 608
+ components:
+ - type: Transform
+ pos: 35.5,-59.5
+ parent: 2
+ - uid: 609
+ components:
+ - type: Transform
+ pos: 34.5,-61.5
+ parent: 2
+ - uid: 610
+ components:
+ - type: Transform
+ pos: 33.5,-63.5
+ parent: 2
+ - uid: 611
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,-66.5
+ parent: 2
+ - uid: 629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,-66.5
+ parent: 2
+ - uid: 636
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,-65.5
+ parent: 2
+ - uid: 641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,-65.5
+ parent: 2
+ - uid: 1250
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,37.5
+ parent: 2
+ - uid: 1258
+ components:
+ - type: Transform
+ pos: -106.5,38.5
+ parent: 2
+ - uid: 1822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,0.5
+ parent: 2
+ - uid: 1865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -89.5,-0.5
+ parent: 2
+ - uid: 1866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -88.5,-3.5
+ parent: 2
+ - uid: 1967
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -97.5,0.5
+ parent: 2
+ - uid: 1968
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -96.5,-1.5
+ parent: 2
+ - uid: 1992
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-6.5
+ parent: 2
+ - uid: 2289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,20.5
+ parent: 2
+ - uid: 2293
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,24.5
+ parent: 2
+ - uid: 2294
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -103.5,41.5
+ parent: 2
+ - uid: 2298
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,26.5
+ parent: 2
+ - uid: 2315
+ components:
+ - type: Transform
+ pos: -96.5,37.5
+ parent: 2
+ - uid: 2318
+ components:
+ - type: Transform
+ pos: -95.5,40.5
+ parent: 2
+ - uid: 2320
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,26.5
+ parent: 2
+ - uid: 2365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,25.5
+ parent: 2
+ - uid: 2421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -100.5,54.5
+ parent: 2
+ - uid: 2423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -102.5,55.5
+ parent: 2
+ - uid: 2734
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -98.5,53.5
+ parent: 2
+ - uid: 2840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -108.5,57.5
+ parent: 2
+ - uid: 2843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -112.5,57.5
+ parent: 2
+ - uid: 2894
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -105.5,56.5
+ parent: 2
+ - uid: 6169
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -88.5,-20.5
+ parent: 2
+ - uid: 6180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -86.5,-25.5
+ parent: 2
+ - uid: 8831
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -45.5,-32.5
+ parent: 2
+ - uid: 8832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -46.5,-31.5
+ parent: 2
+ - uid: 8833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -47.5,-30.5
+ parent: 2
+ - uid: 8839
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -48.5,-27.5
+ parent: 2
+ - uid: 8845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,-32.5
+ parent: 2
+ - uid: 8846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,-31.5
+ parent: 2
+ - uid: 8847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.5,-30.5
+ parent: 2
+ - uid: 15167
+ components:
+ - type: Transform
+ pos: 58.5,31.5
+ parent: 2
+ - uid: 15187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,31.5
+ parent: 2
+- proto: CP14CliffCornerSmall
+ entities:
+ - uid: 462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -106.5,41.5
+ parent: 2
+ - uid: 472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -103.5,42.5
+ parent: 2
+ - uid: 578
+ components:
+ - type: Transform
+ pos: 26.5,-48.5
+ parent: 2
+ - uid: 587
+ components:
+ - type: Transform
+ pos: 43.5,-66.5
+ parent: 2
+ - uid: 588
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-48.5
+ parent: 2
+ - uid: 601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-49.5
+ parent: 2
+ - uid: 614
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-59.5
+ parent: 2
+ - uid: 615
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,-61.5
+ parent: 2
+ - uid: 616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,-63.5
+ parent: 2
+ - uid: 618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-66.5
+ parent: 2
+ - uid: 622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-67.5
+ parent: 2
+ - uid: 630
+ components:
+ - type: Transform
+ pos: 40.5,-67.5
+ parent: 2
+ - uid: 632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-57.5
+ parent: 2
+ - uid: 633
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-56.5
+ parent: 2
+ - uid: 668
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,42.5
+ parent: 2
+ - uid: 1181
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -100.5,41.5
+ parent: 2
+ - uid: 1263
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -110.5,38.5
+ parent: 2
+ - uid: 1820
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -91.5,0.5
+ parent: 2
+ - uid: 1867
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-3.5
+ parent: 2
+ - uid: 1868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-0.5
+ parent: 2
+ - uid: 2001
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-6.5
+ parent: 2
+ - uid: 2002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,-1.5
+ parent: 2
+ - uid: 2003
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,0.5
+ parent: 2
+ - uid: 2288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -92.5,20.5
+ parent: 2
+ - uid: 2295
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -93.5,24.5
+ parent: 2
+ - uid: 2312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,42.5
+ parent: 2
+ - uid: 2313
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,40.5
+ parent: 2
+ - uid: 2366
+ components:
+ - type: Transform
+ pos: -98.5,24.5
+ parent: 2
+ - uid: 2367
+ components:
+ - type: Transform
+ pos: -96.5,25.5
+ parent: 2
+ - uid: 2420
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -105.5,55.5
+ parent: 2
+ - uid: 2422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,56.5
+ parent: 2
+ - uid: 2582
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,54.5
+ parent: 2
+ - uid: 2775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -100.5,53.5
+ parent: 2
+ - uid: 5454
+ components:
+ - type: Transform
+ pos: -39.5,-32.5
+ parent: 2
+ - uid: 6168
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-20.5
+ parent: 2
+ - uid: 6181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-25.5
+ parent: 2
+ - uid: 8830
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-33.5
+ parent: 2
+ - uid: 8834
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-30.5
+ parent: 2
+ - uid: 8835
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-31.5
+ parent: 2
+ - uid: 8836
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-32.5
+ parent: 2
+ - uid: 8843
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-27.5
+ parent: 2
+ - uid: 8844
+ components:
+ - type: Transform
+ pos: -40.5,-33.5
+ parent: 2
+ - uid: 8848
+ components:
+ - type: Transform
+ pos: -38.5,-31.5
+ parent: 2
+ - uid: 8849
+ components:
+ - type: Transform
+ pos: -37.5,-30.5
+ parent: 2
+ - uid: 15189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,33.5
+ parent: 2
+ - uid: 15192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,32.5
+ parent: 2
+- proto: CP14CliffEndLeft
+ entities:
+ - uid: 605
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-51.5
+ parent: 2
+ - uid: 640
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,-66.5
+ parent: 2
+ - uid: 1564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -114.5,37.5
+ parent: 2
+ - uid: 1792
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -97.5,16.5
+ parent: 2
+ - uid: 2131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-11.5
+ parent: 2
+ - uid: 2588
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -98.5,51.5
+ parent: 2
+ - uid: 6179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-30.5
+ parent: 2
+ - uid: 8854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-25.5
+ parent: 2
+ - uid: 15191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,33.5
+ parent: 2
+- proto: CP14CliffEndRight
+ entities:
+ - uid: 586
+ components:
+ - type: Transform
+ pos: 20.5,-47.5
+ parent: 2
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 33.5,-54.5
+ parent: 2
+ - uid: 1993
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-9.5
+ parent: 2
+ - uid: 2311
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,42.5
+ parent: 2
+ - uid: 2357
+ components:
+ - type: Transform
+ pos: -103.5,24.5
+ parent: 2
+ - uid: 2842
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -112.5,56.5
+ parent: 2
+ - uid: 6166
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-18.5
+ parent: 2
+ - uid: 8842
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-24.5
+ parent: 2
+ - uid: 15193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,32.5
+ parent: 2
+- proto: CP14ClothingBeltQuiver
+ entities:
+ - uid: 1588
+ components:
+ - type: Transform
+ pos: -46.426495,-4.3665786
+ parent: 2
+ - uid: 17726
+ components:
+ - type: Transform
+ pos: -37.477306,-12.283049
+ parent: 2
+ - uid: 17727
+ components:
+ - type: Transform
+ pos: -37.164806,-12.267424
+ parent: 2
+- proto: CP14ClothingCloakBlue
+ entities:
+ - uid: 14310
+ components:
+ - type: Transform
+ parent: 14309
+ - type: Physics
+ canCollide: False
+ - uid: 14315
+ components:
+ - type: Transform
+ parent: 14314
+ - type: Physics
+ canCollide: False
+- proto: CP14ClothingCloakCaptainJacket
+ entities:
+ - uid: 367
+ components:
+ - type: Transform
+ parent: 307
+ - type: Physics
+ canCollide: False
+- proto: CP14ClothingCloakFurcapeBlue
+ entities:
+ - uid: 279
+ components:
+ - type: Transform
+ pos: 18.502169,26.684319
+ parent: 2
+- proto: CP14ClothingEyesAlchemyMonocle
+ entities:
+ - uid: 15597
+ components:
+ - type: Transform
+ pos: 32.2174,21.74631
+ parent: 2
+- proto: CP14ClothingHeadBeretMercenary
+ entities:
+ - uid: 14313
+ components:
+ - type: Transform
+ parent: 14309
+ - type: Physics
+ canCollide: False
+ - uid: 14318
+ components:
+ - type: Transform
+ parent: 14314
+ - type: Physics
+ canCollide: False
+- proto: CP14ClothingHeadBowlerGolden
+ entities:
+ - uid: 10517
+ components:
+ - type: Transform
+ pos: -112.660484,46.248337
+ parent: 2
+- proto: CP14ClothingHeadCaptainCap
+ entities:
+ - uid: 471
+ components:
+ - type: Transform
+ parent: 307
+ - type: Physics
+ canCollide: False
+- proto: CP14ClothingHeadWreath
+ entities:
+ - uid: 10073
+ components:
+ - type: Transform
+ pos: 36.826706,-65.32897
+ parent: 2
+- proto: CP14ClothingMaskSinner
+ entities:
+ - uid: 15598
+ components:
+ - type: Transform
+ pos: 32.7174,21.12131
+ parent: 2
+ - uid: 17771
+ components:
+ - type: Transform
+ pos: -41.699837,-14.104057
+ parent: 2
+ - uid: 17772
+ components:
+ - type: Transform
+ pos: -41.262337,-14.048502
+ parent: 2
+ - uid: 17773
+ components:
+ - type: Transform
+ pos: -41.227615,-14.395723
+ parent: 2
+ - uid: 17774
+ components:
+ - type: Transform
+ pos: -41.623447,-14.423502
+ parent: 2
+- proto: CP14ClothingPantsAristocratic
+ entities:
+ - uid: 16015
+ components:
+ - type: Transform
+ parent: 16013
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: CP14ClothingPantsBrown
+ entities:
+ - uid: 16016
+ components:
+ - type: Transform
+ parent: 16013
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: CP14ClothingPantsGreen
+ entities:
+ - uid: 16018
+ components:
+ - type: Transform
+ parent: 16013
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: CP14ClothingPantsMercenaryTrousers
+ entities:
+ - uid: 14311
+ components:
+ - type: Transform
+ parent: 14309
+ - type: Physics
+ canCollide: False
+ - uid: 14316
+ components:
+ - type: Transform
+ parent: 14314
+ - type: Physics
+ canCollide: False
+- proto: CP14ClothingShirtCottonBlueCollar
+ entities:
+ - uid: 16017
+ components:
+ - type: Transform
+ parent: 16013
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: CP14ClothingShirtCottonWhite
+ entities:
+ - uid: 16014
+ components:
+ - type: Transform
+ parent: 16013
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: CP14ClothingShirtMercenary
+ entities:
+ - uid: 14312
+ components:
+ - type: Transform
+ parent: 14309
+ - type: Physics
+ canCollide: False
+ - uid: 14317
+ components:
+ - type: Transform
+ parent: 14314
+ - type: Physics
+ canCollide: False
+- proto: CP14CopperCoin5
+ entities:
+ - uid: 14296
+ components:
+ - type: Transform
+ pos: -25.574732,-13.313344
+ parent: 2
+- proto: CP14CraneBarrelAleBloodyTear
+ entities:
+ - uid: 16011
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,33.5
+ parent: 2
+- proto: CP14CraneBarrelAleBottomless
+ entities:
+ - uid: 16012
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,33.5
+ parent: 2
+- proto: CP14CraneBarrelBeerBlowLaw
+ entities:
+ - uid: 14220
+ components:
+ - type: Transform
+ pos: 15.5,36.5
+ parent: 2
+- proto: CP14CraneBarrelBeerBreeze
+ entities:
+ - uid: 16008
+ components:
+ - type: Transform
+ pos: 16.5,36.5
+ parent: 2
+- proto: CP14CraneBarrelBeerGerbil
+ entities:
+ - uid: 16009
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,33.5
+ parent: 2
+- proto: CP14CraneBarrelDwarfBeer
+ entities:
+ - uid: 16010
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,33.5
+ parent: 2
+- proto: CP14CraneBarrelWineDurandate
+ entities:
+ - uid: 16005
+ components:
+ - type: Transform
+ pos: 12.5,36.5
+ parent: 2
+- proto: CP14CraneBarrelWineLeeks
+ entities:
+ - uid: 14199
+ components:
+ - type: Transform
+ pos: 13.5,36.5
+ parent: 2
+- proto: CP14CraneBarrelWineZellasianPleasure
+ entities:
+ - uid: 14149
+ components:
+ - type: Transform
+ pos: 14.5,36.5
+ parent: 2
+ - uid: 14435
+ components:
+ - type: Transform
+ pos: -8.5,-23.5
+ parent: 2
+- proto: CP14CrayonBlack
+ entities:
+ - uid: 1508
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.82234,-9.22944
+ parent: 2
+- proto: CP14Crossbolt
+ entities:
+ - uid: 1585
+ components:
+ - type: Transform
+ pos: -47.69212,-4.4447036
+ parent: 2
+ - uid: 1586
+ components:
+ - type: Transform
+ pos: -47.69212,-4.3978286
+ parent: 2
+ - uid: 1587
+ components:
+ - type: Transform
+ pos: -47.69212,-4.3978286
+ parent: 2
+ - uid: 17730
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.87723,-14.225464
+ parent: 2
+ - uid: 17731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.786953,-14.211575
+ parent: 2
+ - uid: 17732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.821674,-14.218519
+ parent: 2
+ - uid: 17733
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.759174,-14.204631
+ parent: 2
+ - uid: 17734
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.710564,-14.211575
+ parent: 2
+ - uid: 17735
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.668896,-14.225464
+ parent: 2
+ - uid: 17736
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.613342,-14.225464
+ parent: 2
+ - uid: 17737
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.557785,-14.225464
+ parent: 2
+ - uid: 17738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.884174,-14.371297
+ parent: 2
+ - uid: 17739
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.849453,-14.371297
+ parent: 2
+ - uid: 17740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.835564,-14.371297
+ parent: 2
+ - uid: 17741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.786953,-14.371297
+ parent: 2
+ - uid: 17742
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.78001,-14.371297
+ parent: 2
+ - uid: 17743
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.71751,-14.371297
+ parent: 2
+ - uid: 17744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.68973,-14.371297
+ parent: 2
+ - uid: 17745
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.62723,-14.364353
+ parent: 2
+ - uid: 17746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.613342,-14.364353
+ parent: 2
+ - uid: 17747
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.738342,-14.364353
+ parent: 2
+ - uid: 17748
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.65501,-14.357409
+ parent: 2
+ - uid: 17749
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.793896,-14.350464
+ parent: 2
+ - uid: 17750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.571674,-14.357409
+ parent: 2
+ - uid: 17751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.571674,-14.239353
+ parent: 2
+ - uid: 17752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.64112,-14.225464
+ parent: 2
+ - uid: 17753
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.849453,-14.225464
+ parent: 2
+ - uid: 17754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.78001,-14.169909
+ parent: 2
+ - uid: 17755
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.661953,-14.162964
+ parent: 2
+ - uid: 17756
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.65501,-14.211575
+ parent: 2
+ - uid: 17757
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.78001,-14.239353
+ parent: 2
+ - uid: 17758
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.800842,-14.322686
+ parent: 2
+ - uid: 17759
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.64112,-14.336575
+ parent: 2
+- proto: CP14CrystalElementalDarknessBig
+ entities:
+ - uid: 13443
+ components:
+ - type: Transform
+ pos: -48.601112,5.2443924
+ parent: 2
+ - uid: 13446
+ components:
+ - type: Transform
+ pos: -45.897987,1.9787674
+ parent: 2
+- proto: CP14CrystalElementalDarknessMedium
+ entities:
+ - uid: 13444
+ components:
+ - type: Transform
+ pos: -46.569862,4.8068924
+ parent: 2
+ - uid: 13449
+ components:
+ - type: Transform
+ pos: -48.444862,2.4943924
+ parent: 2
+- proto: CP14CrystalElementalDarknessSmall
+ entities:
+ - uid: 13448
+ components:
+ - type: Transform
+ pos: -47.444862,5.3225174
+ parent: 2
+ - uid: 13450
+ components:
+ - type: Transform
+ pos: -47.804237,1.7756424
+ parent: 2
+- proto: CP14CrystalElementalHealingMedium
+ entities:
+ - uid: 14479
+ components:
+ - type: Transform
+ pos: 2.5575833,-7.520762
+ parent: 2
+- proto: CP14CrystalElementalHealingSmall
+ entities:
+ - uid: 14478
+ components:
+ - type: Transform
+ pos: 0.46383393,-3.6145117
+ parent: 2
+- proto: CP14CrystalShardElectric
+ entities:
+ - uid: 14492
+ components:
+ - type: Transform
+ pos: -13.2431965,-12.490309
+ parent: 2
+- proto: CP14CrystalSmall
+ entities:
+ - uid: 14491
+ components:
+ - type: Transform
+ pos: -15.6963215,-9.318434
+ parent: 2
+- proto: CP14CurtainsBlue
+ entities:
+ - uid: 14138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-22.5
+ parent: 2
+ - uid: 14139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-22.5
+ parent: 2
+ - uid: 14140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -28.5,-22.5
+ parent: 2
+- proto: CP14CurtainsBlueOpened
+ entities:
+ - uid: 14381
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.5,-7.5
+ parent: 2
+ - uid: 14382
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-7.5
+ parent: 2
+ - uid: 14383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-7.5
+ parent: 2
+ - uid: 14384
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-10.5
+ parent: 2
+- proto: CP14CurtainsRed
+ entities:
+ - uid: 15579
+ components:
+ - type: Transform
+ pos: 31.5,23.5
+ parent: 2
+ - uid: 15580
+ components:
+ - type: Transform
+ pos: 32.5,23.5
+ parent: 2
+- proto: CP14CurtainsWhiteOpened
+ entities:
+ - uid: 14385
+ components:
+ - type: Transform
+ pos: -4.5,-16.5
+ parent: 2
+ - uid: 14386
+ components:
+ - type: Transform
+ pos: -2.5,-16.5
+ parent: 2
+ - uid: 14387
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-23.5
+ parent: 2
+ - uid: 14434
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-22.5
+ parent: 2
+- proto: CP14DemiplaneKeyT1
+ entities:
+ - uid: 209
+ components:
+ - type: Transform
+ pos: -18.742619,-4.197493
+ parent: 2
+ - uid: 14393
+ components:
+ - type: Transform
+ pos: -18.461369,-4.275618
+ parent: 2
+ - uid: 14394
+ components:
+ - type: Transform
+ pos: -18.133244,-4.275618
+ parent: 2
+ - uid: 14395
+ components:
+ - type: Transform
+ pos: -18.726994,-4.400618
+ parent: 2
+ - uid: 14396
+ components:
+ - type: Transform
+ pos: -18.492619,-4.400618
+ parent: 2
+ - uid: 14397
+ components:
+ - type: Transform
+ pos: -18.226994,-4.525618
+ parent: 2
+ - uid: 14398
+ components:
+ - type: Transform
+ pos: -18.680119,-4.713118
+ parent: 2
+ - uid: 14399
+ components:
+ - type: Transform
+ pos: -18.351994,-4.775618
+ parent: 2
+- proto: CP14DemiplaneLinkCrystal
+ entities:
+ - uid: 1599
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,3.5
+ parent: 2
+- proto: CP14EnergyCrystalMedium
+ entities:
+ - uid: 15581
+ components:
+ - type: Transform
+ pos: 31.207539,20.642757
+ parent: 2
+- proto: CP14FenceIronGrilleGate
+ entities:
+ - uid: 14308
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-7.5
+ parent: 2
+- proto: CP14FenceIronGrilleGateDemiplaneCrystal
+ entities:
+ - uid: 36
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,3.5
+ parent: 2
+- proto: CP14FenceIronGrilleStraight
+ entities:
+ - uid: 167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-14.5
+ parent: 2
+ - uid: 185
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,5.5
+ parent: 2
+ - uid: 567
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-21.5
+ parent: 2
+ - uid: 569
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-22.5
+ parent: 2
+ - uid: 570
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-23.5
+ parent: 2
+ - uid: 571
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-24.5
+ parent: 2
+ - uid: 572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-25.5
+ parent: 2
+ - uid: 644
+ components:
+ - type: Transform
+ pos: 11.5,-26.5
+ parent: 2
+ - uid: 645
+ components:
+ - type: Transform
+ pos: 12.5,-26.5
+ parent: 2
+ - uid: 646
+ components:
+ - type: Transform
+ pos: 13.5,-26.5
+ parent: 2
+ - uid: 647
+ components:
+ - type: Transform
+ pos: 15.5,-26.5
+ parent: 2
+ - uid: 648
+ components:
+ - type: Transform
+ pos: 16.5,-26.5
+ parent: 2
+ - uid: 649
+ components:
+ - type: Transform
+ pos: 17.5,-26.5
+ parent: 2
+ - uid: 650
+ components:
+ - type: Transform
+ pos: 18.5,-26.5
+ parent: 2
+ - uid: 651
+ components:
+ - type: Transform
+ pos: 19.5,-26.5
+ parent: 2
+ - uid: 652
+ components:
+ - type: Transform
+ pos: 20.5,-26.5
+ parent: 2
+ - uid: 653
+ components:
+ - type: Transform
+ pos: 21.5,-26.5
+ parent: 2
+ - uid: 654
+ components:
+ - type: Transform
+ pos: 22.5,-26.5
+ parent: 2
+ - uid: 655
+ components:
+ - type: Transform
+ pos: 23.5,-26.5
+ parent: 2
+ - uid: 656
+ components:
+ - type: Transform
+ pos: 24.5,-26.5
+ parent: 2
+ - uid: 657
+ components:
+ - type: Transform
+ pos: 25.5,-26.5
+ parent: 2
+ - uid: 658
+ components:
+ - type: Transform
+ pos: 26.5,-26.5
+ parent: 2
+ - uid: 659
+ components:
+ - type: Transform
+ pos: 27.5,-26.5
+ parent: 2
+ - uid: 660
+ components:
+ - type: Transform
+ pos: 14.5,-26.5
+ parent: 2
+ - uid: 691
+ components:
+ - type: Transform
+ pos: 23.5,-7.5
+ parent: 2
+ - uid: 692
+ components:
+ - type: Transform
+ pos: 24.5,-7.5
+ parent: 2
+ - uid: 693
+ components:
+ - type: Transform
+ pos: 25.5,-7.5
+ parent: 2
+ - uid: 694
+ components:
+ - type: Transform
+ pos: 26.5,-7.5
+ parent: 2
+ - uid: 695
+ components:
+ - type: Transform
+ pos: 27.5,-7.5
+ parent: 2
+ - uid: 696
+ components:
+ - type: Transform
+ pos: 28.5,-7.5
+ parent: 2
+ - uid: 697
+ components:
+ - type: Transform
+ pos: 29.5,-7.5
+ parent: 2
+ - uid: 698
+ components:
+ - type: Transform
+ pos: 30.5,-7.5
+ parent: 2
+ - uid: 699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-6.5
+ parent: 2
+ - uid: 700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-5.5
+ parent: 2
+ - uid: 701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-2.5
+ parent: 2
+ - uid: 702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-1.5
+ parent: 2
+ - uid: 703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-0.5
+ parent: 2
+ - uid: 704
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,0.5
+ parent: 2
+ - uid: 705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,1.5
+ parent: 2
+ - uid: 706
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,2.5
+ parent: 2
+ - uid: 713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-2.5
+ parent: 2
+ - uid: 714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-3.5
+ parent: 2
+ - uid: 715
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-4.5
+ parent: 2
+ - uid: 716
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-5.5
+ parent: 2
+ - uid: 717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-6.5
+ parent: 2
+ - uid: 770
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,6.5
+ parent: 2
+ - uid: 1201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-11.5
+ parent: 2
+ - uid: 1202
+ components:
+ - type: Transform
+ pos: 12.5,-10.5
+ parent: 2
+ - uid: 1203
+ components:
+ - type: Transform
+ pos: 13.5,-10.5
+ parent: 2
+ - uid: 1204
+ components:
+ - type: Transform
+ pos: 14.5,-10.5
+ parent: 2
+ - uid: 1205
+ components:
+ - type: Transform
+ pos: 15.5,-10.5
+ parent: 2
+ - uid: 1206
+ components:
+ - type: Transform
+ pos: 16.5,-10.5
+ parent: 2
+ - uid: 1207
+ components:
+ - type: Transform
+ pos: 11.5,-10.5
+ parent: 2
+ - uid: 1208
+ components:
+ - type: Transform
+ pos: 17.5,-10.5
+ parent: 2
+ - uid: 1209
+ components:
+ - type: Transform
+ pos: 19.5,-10.5
+ parent: 2
+ - uid: 1210
+ components:
+ - type: Transform
+ pos: 18.5,-10.5
+ parent: 2
+ - uid: 1211
+ components:
+ - type: Transform
+ pos: 20.5,-10.5
+ parent: 2
+ - uid: 1212
+ components:
+ - type: Transform
+ pos: 21.5,-10.5
+ parent: 2
+ - uid: 1213
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-9.5
+ parent: 2
+ - uid: 1214
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-8.5
+ parent: 2
+ - uid: 1234
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-3.5
+ parent: 2
+ - uid: 1257
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,6.5
+ parent: 2
+ - uid: 1265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-3.5
+ parent: 2
+ - uid: 1275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-2.5
+ parent: 2
+ - uid: 1276
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-1.5
+ parent: 2
+ - uid: 1286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-26.5
+ parent: 2
+ - uid: 1305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-0.5
+ parent: 2
+ - uid: 1350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-4.5
+ parent: 2
+ - uid: 1351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-5.5
+ parent: 2
+ - uid: 1437
+ components:
+ - type: Transform
+ pos: 33.5,-7.5
+ parent: 2
+ - uid: 1438
+ components:
+ - type: Transform
+ pos: 32.5,-7.5
+ parent: 2
+ - uid: 1439
+ components:
+ - type: Transform
+ pos: 34.5,-7.5
+ parent: 2
+ - uid: 1440
+ components:
+ - type: Transform
+ pos: 35.5,-7.5
+ parent: 2
+ - uid: 1575
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -42.5,0.5
+ parent: 2
+ - uid: 1581
+ components:
+ - type: Transform
+ pos: -43.5,0.5
+ parent: 2
+ - uid: 1590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,4.5
+ parent: 2
+ - uid: 1591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,1.5
+ parent: 2
+ - uid: 13458
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,2.5
+ parent: 2
+ - uid: 14299
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-8.5
+ parent: 2
+ - uid: 14306
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-6.5
+ parent: 2
+- proto: CP14FenceIronGrilleWindowStraight
+ entities:
+ - uid: 14145
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-13.5
+ parent: 2
+ - uid: 14146
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-13.5
+ parent: 2
+ - uid: 14147
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,-13.5
+ parent: 2
+ - uid: 14356
+ components:
+ - type: Transform
+ pos: -17.5,-8.5
+ parent: 2
+ - uid: 14357
+ components:
+ - type: Transform
+ pos: -18.5,-8.5
+ parent: 2
+ - uid: 14366
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-17.5
+ parent: 2
+ - uid: 14367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-18.5
+ parent: 2
+ - uid: 14437
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-9.5
+ parent: 2
+ - uid: 14439
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-10.5
+ parent: 2
+ - uid: 14440
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-11.5
+ parent: 2
+ - uid: 14493
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,5.5
+ parent: 2
+ - uid: 14494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,4.5
+ parent: 2
+ - uid: 14507
+ components:
+ - type: Transform
+ pos: -4.5,-1.5
+ parent: 2
+ - uid: 14508
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 2
+ - uid: 16461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-2.5
+ parent: 2
+ - uid: 17664
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,-2.5
+ parent: 2
+- proto: CP14FenceWoodCorner
+ entities:
+ - uid: 5
+ components:
+ - type: Transform
+ pos: -10.5,-12.5
+ parent: 2
+ - uid: 5294
+ components:
+ - type: Transform
+ pos: -4.5,64.5
+ parent: 2
+ - uid: 5295
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,64.5
+ parent: 2
+ - uid: 5313
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,77.5
+ parent: 2
+ - uid: 5320
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,78.5
+ parent: 2
+- proto: CP14FenceWoodGate
+ entities:
+ - uid: 5293
+ components:
+ - type: Transform
+ pos: -5.5,64.5
+ parent: 2
+- proto: CP14FenceWoodSmallCorner
+ entities:
+ - uid: 5403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-3.5
+ parent: 2
+ - uid: 15488
+ components:
+ - type: Transform
+ pos: -21.5,-42.5
+ parent: 2
+ - uid: 15489
+ components:
+ - type: Transform
+ pos: -9.5,-42.5
+ parent: 2
+ - uid: 15490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-42.5
+ parent: 2
+ - uid: 15491
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-42.5
+ parent: 2
+ - uid: 15514
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,37.5
+ parent: 2
+ - uid: 15515
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,37.5
+ parent: 2
+ - uid: 15516
+ components:
+ - type: Transform
+ pos: 26.5,33.5
+ parent: 2
+ - uid: 15517
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,33.5
+ parent: 2
+- proto: CP14FenceWoodSmallGate
+ entities:
+ - uid: 14485
+ components:
+ - type: Transform
+ pos: -14.5,-12.5
+ parent: 2
+- proto: CP14FenceWoodSmallStraight
+ entities:
+ - uid: 1229
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-7.5
+ parent: 2
+ - uid: 1230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-6.5
+ parent: 2
+ - uid: 1566
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-3.5
+ parent: 2
+ - uid: 1672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,85.5
+ parent: 2
+ - uid: 1676
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,87.5
+ parent: 2
+ - uid: 1678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,89.5
+ parent: 2
+ - uid: 1680
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,91.5
+ parent: 2
+ - uid: 1682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,93.5
+ parent: 2
+ - uid: 1684
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,93.5
+ parent: 2
+ - uid: 1691
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,91.5
+ parent: 2
+ - uid: 1699
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,89.5
+ parent: 2
+ - uid: 1700
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,85.5
+ parent: 2
+ - uid: 1702
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,87.5
+ parent: 2
+ - uid: 5005
+ components:
+ - type: Transform
+ pos: -91.5,9.5
+ parent: 2
+ - uid: 5006
+ components:
+ - type: Transform
+ pos: -93.5,9.5
+ parent: 2
+ - uid: 5007
+ components:
+ - type: Transform
+ pos: -92.5,9.5
+ parent: 2
+ - uid: 5008
+ components:
+ - type: Transform
+ pos: -94.5,9.5
+ parent: 2
+ - uid: 5009
+ components:
+ - type: Transform
+ pos: -95.5,9.5
+ parent: 2
+ - uid: 5010
+ components:
+ - type: Transform
+ pos: -96.5,9.5
+ parent: 2
+ - uid: 5011
+ components:
+ - type: Transform
+ pos: -90.5,9.5
+ parent: 2
+ - uid: 5012
+ components:
+ - type: Transform
+ pos: -97.5,9.5
+ parent: 2
+ - uid: 5013
+ components:
+ - type: Transform
+ pos: -98.5,9.5
+ parent: 2
+ - uid: 5014
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,11.5
+ parent: 2
+ - uid: 5015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,11.5
+ parent: 2
+ - uid: 5016
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,11.5
+ parent: 2
+ - uid: 5017
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,11.5
+ parent: 2
+ - uid: 5018
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,11.5
+ parent: 2
+ - uid: 5019
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,11.5
+ parent: 2
+ - uid: 5020
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,11.5
+ parent: 2
+ - uid: 5021
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,11.5
+ parent: 2
+ - uid: 5022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -90.5,11.5
+ parent: 2
+ - uid: 5396
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-4.5
+ parent: 2
+ - uid: 5397
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-5.5
+ parent: 2
+ - uid: 5398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-3.5
+ parent: 2
+ - uid: 5402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-3.5
+ parent: 2
+ - uid: 14319
+ components:
+ - type: Transform
+ pos: -32.5,-4.5
+ parent: 2
+ - uid: 14569
+ components:
+ - type: Transform
+ pos: -29.5,-27.5
+ parent: 2
+ - uid: 15474
+ components:
+ - type: Transform
+ pos: -28.5,-27.5
+ parent: 2
+ - uid: 15475
+ components:
+ - type: Transform
+ pos: -27.5,-27.5
+ parent: 2
+ - uid: 15476
+ components:
+ - type: Transform
+ pos: -26.5,-27.5
+ parent: 2
+ - uid: 15477
+ components:
+ - type: Transform
+ pos: -25.5,-27.5
+ parent: 2
+ - uid: 15478
+ components:
+ - type: Transform
+ pos: -24.5,-27.5
+ parent: 2
+ - uid: 15479
+ components:
+ - type: Transform
+ pos: -20.5,-27.5
+ parent: 2
+ - uid: 15480
+ components:
+ - type: Transform
+ pos: -19.5,-27.5
+ parent: 2
+ - uid: 15481
+ components:
+ - type: Transform
+ pos: -18.5,-27.5
+ parent: 2
+ - uid: 15482
+ components:
+ - type: Transform
+ pos: -17.5,-27.5
+ parent: 2
+ - uid: 15483
+ components:
+ - type: Transform
+ pos: -16.5,-27.5
+ parent: 2
+ - uid: 15484
+ components:
+ - type: Transform
+ pos: -15.5,-27.5
+ parent: 2
+ - uid: 15485
+ components:
+ - type: Transform
+ pos: -14.5,-27.5
+ parent: 2
+ - uid: 15486
+ components:
+ - type: Transform
+ pos: -13.5,-27.5
+ parent: 2
+ - uid: 15487
+ components:
+ - type: Transform
+ pos: -12.5,-27.5
+ parent: 2
+ - uid: 15492
+ components:
+ - type: Transform
+ pos: -22.5,-42.5
+ parent: 2
+ - uid: 15493
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-41.5
+ parent: 2
+ - uid: 15494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-40.5
+ parent: 2
+ - uid: 15495
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-41.5
+ parent: 2
+ - uid: 15496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-40.5
+ parent: 2
+ - uid: 15497
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-40.5
+ parent: 2
+ - uid: 15498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-41.5
+ parent: 2
+ - uid: 15499
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-40.5
+ parent: 2
+ - uid: 15500
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-41.5
+ parent: 2
+ - uid: 15501
+ components:
+ - type: Transform
+ pos: -10.5,-42.5
+ parent: 2
+- proto: CP14FenceWoodStraight
+ entities:
+ - uid: 8
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-8.5
+ parent: 2
+ - uid: 9
+ components:
+ - type: Transform
+ pos: -18.5,4.5
+ parent: 2
+ - uid: 10
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,2.5
+ parent: 2
+ - uid: 11
+ components:
+ - type: Transform
+ pos: -19.5,4.5
+ parent: 2
+ - uid: 12
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-9.5
+ parent: 2
+ - uid: 13
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-10.5
+ parent: 2
+ - uid: 14
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-11.5
+ parent: 2
+ - uid: 15
+ components:
+ - type: Transform
+ pos: -11.5,-12.5
+ parent: 2
+ - uid: 16
+ components:
+ - type: Transform
+ pos: -12.5,-12.5
+ parent: 2
+ - uid: 17
+ components:
+ - type: Transform
+ pos: -13.5,-12.5
+ parent: 2
+ - uid: 18
+ components:
+ - type: Transform
+ pos: -17.5,4.5
+ parent: 2
+ - uid: 19
+ components:
+ - type: Transform
+ pos: -15.5,-12.5
+ parent: 2
+ - uid: 29
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,3.5
+ parent: 2
+ - uid: 30
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-7.5
+ parent: 2
+ - uid: 31
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,1.5
+ parent: 2
+ - uid: 568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,-20.5
+ parent: 2
+ - uid: 1217
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-19.5
+ parent: 2
+ - uid: 1218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-18.5
+ parent: 2
+ - uid: 1219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-17.5
+ parent: 2
+ - uid: 1220
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-16.5
+ parent: 2
+ - uid: 1488
+ components:
+ - type: Transform
+ pos: 9.5,-20.5
+ parent: 2
+ - uid: 1489
+ components:
+ - type: Transform
+ pos: 7.5,-20.5
+ parent: 2
+ - uid: 1490
+ components:
+ - type: Transform
+ pos: 8.5,-20.5
+ parent: 2
+ - uid: 1569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,6.5
+ parent: 2
+ - uid: 1570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,9.5
+ parent: 2
+ - uid: 5296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,65.5
+ parent: 2
+ - uid: 5297
+ components:
+ - type: Transform
+ pos: -10.5,64.5
+ parent: 2
+ - uid: 5298
+ components:
+ - type: Transform
+ pos: -9.5,64.5
+ parent: 2
+ - uid: 5299
+ components:
+ - type: Transform
+ pos: -8.5,64.5
+ parent: 2
+ - uid: 5300
+ components:
+ - type: Transform
+ pos: -7.5,64.5
+ parent: 2
+ - uid: 5301
+ components:
+ - type: Transform
+ pos: -6.5,64.5
+ parent: 2
+ - uid: 5302
+ components:
+ - type: Transform
+ pos: -3.5,65.5
+ parent: 2
+ - uid: 5303
+ components:
+ - type: Transform
+ pos: -2.5,65.5
+ parent: 2
+ - uid: 5304
+ components:
+ - type: Transform
+ pos: -1.5,65.5
+ parent: 2
+ - uid: 5305
+ components:
+ - type: Transform
+ pos: -0.5,65.5
+ parent: 2
+ - uid: 5306
+ components:
+ - type: Transform
+ pos: 0.5,65.5
+ parent: 2
+ - uid: 5307
+ components:
+ - type: Transform
+ pos: 1.5,65.5
+ parent: 2
+ - uid: 5308
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,73.5
+ parent: 2
+ - uid: 5309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,74.5
+ parent: 2
+ - uid: 5310
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,75.5
+ parent: 2
+ - uid: 5311
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,76.5
+ parent: 2
+ - uid: 5312
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,72.5
+ parent: 2
+ - uid: 5314
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,77.5
+ parent: 2
+ - uid: 5315
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,77.5
+ parent: 2
+ - uid: 5316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,77.5
+ parent: 2
+ - uid: 5317
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,78.5
+ parent: 2
+ - uid: 5318
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,77.5
+ parent: 2
+ - uid: 5321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,78.5
+ parent: 2
+ - uid: 5322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,78.5
+ parent: 2
+ - uid: 5323
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,78.5
+ parent: 2
+ - uid: 5324
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,78.5
+ parent: 2
+ - uid: 5325
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,78.5
+ parent: 2
+ - uid: 5326
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,78.5
+ parent: 2
+ - uid: 5327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,78.5
+ parent: 2
+ - uid: 5328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,78.5
+ parent: 2
+ - uid: 5329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,78.5
+ parent: 2
+ - uid: 5399
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-4.5
+ parent: 2
+ - uid: 5400
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-2.5
+ parent: 2
+ - uid: 5401
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-3.5
+ parent: 2
+ - uid: 5404
+ components:
+ - type: Transform
+ pos: -7.5,5.5
+ parent: 2
+ - uid: 14218
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,38.5
+ parent: 2
+ - uid: 14550
+ components:
+ - type: Transform
+ pos: 9.5,27.5
+ parent: 2
+ - uid: 14551
+ components:
+ - type: Transform
+ pos: 8.5,27.5
+ parent: 2
+ - uid: 14552
+ components:
+ - type: Transform
+ pos: 7.5,27.5
+ parent: 2
+ - uid: 14553
+ components:
+ - type: Transform
+ pos: 6.5,27.5
+ parent: 2
+- proto: CP14FloorWater
+ entities:
+ - uid: 1000
+ components:
+ - type: Transform
+ pos: -112.5,52.5
+ parent: 2
+ - uid: 1004
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,7.5
+ parent: 2
+ - uid: 1005
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,6.5
+ parent: 2
+ - uid: 1685
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,8.5
+ parent: 2
+ - uid: 1686
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,7.5
+ parent: 2
+ - uid: 1687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,8.5
+ parent: 2
+ - uid: 1696
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,8.5
+ parent: 2
+ - uid: 1706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,7.5
+ parent: 2
+ - uid: 1707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,5.5
+ parent: 2
+ - uid: 1708
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,6.5
+ parent: 2
+ - uid: 1709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,5.5
+ parent: 2
+ - uid: 1710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,4.5
+ parent: 2
+ - uid: 1711
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,6.5
+ parent: 2
+ - uid: 1712
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,5.5
+ parent: 2
+ - uid: 1713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,4.5
+ parent: 2
+ - uid: 1714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,5.5
+ parent: 2
+ - uid: 1715
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,4.5
+ parent: 2
+ - uid: 1716
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,5.5
+ parent: 2
+ - uid: 1717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,4.5
+ parent: 2
+ - uid: 1718
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,3.5
+ parent: 2
+ - uid: 1719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,12.5
+ parent: 2
+ - uid: 1720
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,13.5
+ parent: 2
+ - uid: 1721
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,14.5
+ parent: 2
+ - uid: 1722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,15.5
+ parent: 2
+ - uid: 1723
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,13.5
+ parent: 2
+ - uid: 1724
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,14.5
+ parent: 2
+ - uid: 1725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,15.5
+ parent: 2
+ - uid: 1726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,16.5
+ parent: 2
+ - uid: 1727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,13.5
+ parent: 2
+ - uid: 1728
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,14.5
+ parent: 2
+ - uid: 1729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,15.5
+ parent: 2
+ - uid: 1730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,16.5
+ parent: 2
+ - uid: 1739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,14.5
+ parent: 2
+ - uid: 1740
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,16.5
+ parent: 2
+ - uid: 1741
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,17.5
+ parent: 2
+ - uid: 1743
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,16.5
+ parent: 2
+ - uid: 1744
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,17.5
+ parent: 2
+ - uid: 1745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,18.5
+ parent: 2
+ - uid: 1746
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,19.5
+ parent: 2
+ - uid: 1749
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,17.5
+ parent: 2
+ - uid: 1754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,17.5
+ parent: 2
+ - uid: 1755
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,18.5
+ parent: 2
+ - uid: 1756
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,19.5
+ parent: 2
+ - uid: 1757
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,19.5
+ parent: 2
+ - uid: 1758
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,17.5
+ parent: 2
+ - uid: 1759
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,18.5
+ parent: 2
+ - uid: 2004
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,0.5
+ parent: 2
+ - uid: 2005
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,3.5
+ parent: 2
+ - uid: 2006
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,2.5
+ parent: 2
+ - uid: 2007
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,1.5
+ parent: 2
+ - uid: 2009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-1.5
+ parent: 2
+ - uid: 2010
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,2.5
+ parent: 2
+ - uid: 2011
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,1.5
+ parent: 2
+ - uid: 2012
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,0.5
+ parent: 2
+ - uid: 2013
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-0.5
+ parent: 2
+ - uid: 2014
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-1.5
+ parent: 2
+ - uid: 2015
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,2.5
+ parent: 2
+ - uid: 2016
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,1.5
+ parent: 2
+ - uid: 2017
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,0.5
+ parent: 2
+ - uid: 2018
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,-0.5
+ parent: 2
+ - uid: 2019
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,-1.5
+ parent: 2
+ - uid: 2020
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,2.5
+ parent: 2
+ - uid: 2021
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,1.5
+ parent: 2
+ - uid: 2022
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,0.5
+ parent: 2
+ - uid: 2023
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,3.5
+ parent: 2
+ - uid: 2024
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,3.5
+ parent: 2
+ - uid: 2025
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,3.5
+ parent: 2
+ - uid: 2026
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,4.5
+ parent: 2
+ - uid: 2031
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,1.5
+ parent: 2
+ - uid: 2032
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,0.5
+ parent: 2
+ - uid: 2033
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-1.5
+ parent: 2
+ - uid: 2034
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-1.5
+ parent: 2
+ - uid: 2037
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-3.5
+ parent: 2
+ - uid: 2038
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-4.5
+ parent: 2
+ - uid: 2039
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-5.5
+ parent: 2
+ - uid: 2040
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-2.5
+ parent: 2
+ - uid: 2041
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-3.5
+ parent: 2
+ - uid: 2044
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-2.5
+ parent: 2
+ - uid: 2045
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-2.5
+ parent: 2
+ - uid: 2046
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-3.5
+ parent: 2
+ - uid: 2049
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-2.5
+ parent: 2
+ - uid: 2050
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-3.5
+ parent: 2
+ - uid: 2051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-4.5
+ parent: 2
+ - uid: 2058
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-6.5
+ parent: 2
+ - uid: 2069
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-7.5
+ parent: 2
+ - uid: 2070
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-8.5
+ parent: 2
+ - uid: 2071
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-6.5
+ parent: 2
+ - uid: 2075
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-7.5
+ parent: 2
+ - uid: 2379
+ components:
+ - type: Transform
+ pos: -103.5,45.5
+ parent: 2
+ - uid: 2380
+ components:
+ - type: Transform
+ pos: -103.5,46.5
+ parent: 2
+ - uid: 2381
+ components:
+ - type: Transform
+ pos: -105.5,44.5
+ parent: 2
+ - uid: 2382
+ components:
+ - type: Transform
+ pos: -105.5,45.5
+ parent: 2
+ - uid: 2383
+ components:
+ - type: Transform
+ pos: -106.5,43.5
+ parent: 2
+ - uid: 2384
+ components:
+ - type: Transform
+ pos: -105.5,46.5
+ parent: 2
+ - uid: 2385
+ components:
+ - type: Transform
+ pos: -104.5,44.5
+ parent: 2
+ - uid: 2386
+ components:
+ - type: Transform
+ pos: -104.5,45.5
+ parent: 2
+ - uid: 2387
+ components:
+ - type: Transform
+ pos: -104.5,43.5
+ parent: 2
+ - uid: 2388
+ components:
+ - type: Transform
+ pos: -103.5,43.5
+ parent: 2
+ - uid: 2389
+ components:
+ - type: Transform
+ pos: -104.5,46.5
+ parent: 2
+ - uid: 2390
+ components:
+ - type: Transform
+ pos: -103.5,44.5
+ parent: 2
+ - uid: 2391
+ components:
+ - type: Transform
+ pos: -107.5,43.5
+ parent: 2
+ - uid: 2392
+ components:
+ - type: Transform
+ pos: -107.5,44.5
+ parent: 2
+ - uid: 2393
+ components:
+ - type: Transform
+ pos: -107.5,45.5
+ parent: 2
+ - uid: 2394
+ components:
+ - type: Transform
+ pos: -107.5,46.5
+ parent: 2
+ - uid: 2395
+ components:
+ - type: Transform
+ pos: -106.5,45.5
+ parent: 2
+ - uid: 2396
+ components:
+ - type: Transform
+ pos: -106.5,44.5
+ parent: 2
+ - uid: 2398
+ components:
+ - type: Transform
+ pos: -105.5,43.5
+ parent: 2
+ - uid: 2399
+ components:
+ - type: Transform
+ pos: -106.5,42.5
+ parent: 2
+ - uid: 2400
+ components:
+ - type: Transform
+ pos: -107.5,42.5
+ parent: 2
+ - uid: 2401
+ components:
+ - type: Transform
+ pos: -107.5,40.5
+ parent: 2
+ - uid: 2402
+ components:
+ - type: Transform
+ pos: -107.5,41.5
+ parent: 2
+ - uid: 2403
+ components:
+ - type: Transform
+ pos: -108.5,40.5
+ parent: 2
+ - uid: 2404
+ components:
+ - type: Transform
+ pos: -108.5,41.5
+ parent: 2
+ - uid: 2405
+ components:
+ - type: Transform
+ pos: -108.5,42.5
+ parent: 2
+ - uid: 2406
+ components:
+ - type: Transform
+ pos: -109.5,42.5
+ parent: 2
+ - uid: 2407
+ components:
+ - type: Transform
+ pos: -109.5,41.5
+ parent: 2
+ - uid: 2408
+ components:
+ - type: Transform
+ pos: -109.5,40.5
+ parent: 2
+ - uid: 2409
+ components:
+ - type: Transform
+ pos: -107.5,39.5
+ parent: 2
+ - uid: 2410
+ components:
+ - type: Transform
+ pos: -108.5,39.5
+ parent: 2
+ - uid: 2411
+ components:
+ - type: Transform
+ pos: -109.5,39.5
+ parent: 2
+ - uid: 2412
+ components:
+ - type: Transform
+ pos: -111.5,39.5
+ parent: 2
+ - uid: 2413
+ components:
+ - type: Transform
+ pos: -110.5,39.5
+ parent: 2
+ - uid: 2414
+ components:
+ - type: Transform
+ pos: -111.5,38.5
+ parent: 2
+ - uid: 2415
+ components:
+ - type: Transform
+ pos: -112.5,38.5
+ parent: 2
+ - uid: 2416
+ components:
+ - type: Transform
+ pos: -113.5,38.5
+ parent: 2
+ - uid: 2417
+ components:
+ - type: Transform
+ pos: -114.5,38.5
+ parent: 2
+ - uid: 2418
+ components:
+ - type: Transform
+ pos: -115.5,38.5
+ parent: 2
+ - uid: 2419
+ components:
+ - type: Transform
+ pos: -116.5,39.5
+ parent: 2
+ - uid: 2426
+ components:
+ - type: Transform
+ pos: -106.5,50.5
+ parent: 2
+ - uid: 2428
+ components:
+ - type: Transform
+ pos: -108.5,43.5
+ parent: 2
+ - uid: 2429
+ components:
+ - type: Transform
+ pos: -110.5,41.5
+ parent: 2
+ - uid: 2430
+ components:
+ - type: Transform
+ pos: -111.5,41.5
+ parent: 2
+ - uid: 2431
+ components:
+ - type: Transform
+ pos: -112.5,41.5
+ parent: 2
+ - uid: 2432
+ components:
+ - type: Transform
+ pos: -113.5,41.5
+ parent: 2
+ - uid: 2433
+ components:
+ - type: Transform
+ pos: -114.5,41.5
+ parent: 2
+ - uid: 2434
+ components:
+ - type: Transform
+ pos: -115.5,41.5
+ parent: 2
+ - uid: 2435
+ components:
+ - type: Transform
+ pos: -116.5,42.5
+ parent: 2
+ - uid: 2436
+ components:
+ - type: Transform
+ pos: -115.5,42.5
+ parent: 2
+ - uid: 2437
+ components:
+ - type: Transform
+ pos: -116.5,43.5
+ parent: 2
+ - uid: 2441
+ components:
+ - type: Transform
+ pos: -117.5,44.5
+ parent: 2
+ - uid: 2442
+ components:
+ - type: Transform
+ pos: -117.5,45.5
+ parent: 2
+ - uid: 2443
+ components:
+ - type: Transform
+ pos: -117.5,46.5
+ parent: 2
+ - uid: 2448
+ components:
+ - type: Transform
+ pos: -114.5,49.5
+ parent: 2
+ - uid: 2449
+ components:
+ - type: Transform
+ pos: -113.5,49.5
+ parent: 2
+ - uid: 2450
+ components:
+ - type: Transform
+ pos: -113.5,50.5
+ parent: 2
+ - uid: 2451
+ components:
+ - type: Transform
+ pos: -112.5,49.5
+ parent: 2
+ - uid: 2452
+ components:
+ - type: Transform
+ pos: -112.5,50.5
+ parent: 2
+ - uid: 2453
+ components:
+ - type: Transform
+ pos: -111.5,49.5
+ parent: 2
+ - uid: 2455
+ components:
+ - type: Transform
+ pos: -110.5,49.5
+ parent: 2
+ - uid: 2456
+ components:
+ - type: Transform
+ pos: -111.5,50.5
+ parent: 2
+ - uid: 2457
+ components:
+ - type: Transform
+ pos: -110.5,48.5
+ parent: 2
+ - uid: 2458
+ components:
+ - type: Transform
+ pos: -109.5,48.5
+ parent: 2
+ - uid: 2459
+ components:
+ - type: Transform
+ pos: -108.5,48.5
+ parent: 2
+ - uid: 2460
+ components:
+ - type: Transform
+ pos: -108.5,47.5
+ parent: 2
+ - uid: 2461
+ components:
+ - type: Transform
+ pos: -107.5,47.5
+ parent: 2
+ - uid: 2491
+ components:
+ - type: Transform
+ pos: -120.5,44.5
+ parent: 2
+ - uid: 2492
+ components:
+ - type: Transform
+ pos: -120.5,43.5
+ parent: 2
+ - uid: 2493
+ components:
+ - type: Transform
+ pos: -120.5,42.5
+ parent: 2
+ - uid: 2494
+ components:
+ - type: Transform
+ pos: -119.5,42.5
+ parent: 2
+ - uid: 2495
+ components:
+ - type: Transform
+ pos: -119.5,41.5
+ parent: 2
+ - uid: 2496
+ components:
+ - type: Transform
+ pos: -119.5,44.5
+ parent: 2
+ - uid: 2497
+ components:
+ - type: Transform
+ pos: -118.5,44.5
+ parent: 2
+ - uid: 2498
+ components:
+ - type: Transform
+ pos: -118.5,45.5
+ parent: 2
+ - uid: 2499
+ components:
+ - type: Transform
+ pos: -118.5,46.5
+ parent: 2
+ - uid: 2500
+ components:
+ - type: Transform
+ pos: -118.5,47.5
+ parent: 2
+ - uid: 2501
+ components:
+ - type: Transform
+ pos: -119.5,46.5
+ parent: 2
+ - uid: 2502
+ components:
+ - type: Transform
+ pos: -105.5,50.5
+ parent: 2
+ - uid: 2503
+ components:
+ - type: Transform
+ pos: -106.5,49.5
+ parent: 2
+ - uid: 2504
+ components:
+ - type: Transform
+ pos: -105.5,49.5
+ parent: 2
+ - uid: 2505
+ components:
+ - type: Transform
+ pos: -109.5,51.5
+ parent: 2
+ - uid: 2506
+ components:
+ - type: Transform
+ pos: -109.5,50.5
+ parent: 2
+ - uid: 2507
+ components:
+ - type: Transform
+ pos: -108.5,51.5
+ parent: 2
+ - uid: 2508
+ components:
+ - type: Transform
+ pos: -114.5,52.5
+ parent: 2
+ - uid: 2509
+ components:
+ - type: Transform
+ pos: -113.5,52.5
+ parent: 2
+ - uid: 2510
+ components:
+ - type: Transform
+ pos: -116.5,48.5
+ parent: 2
+ - uid: 2511
+ components:
+ - type: Transform
+ pos: -116.5,50.5
+ parent: 2
+ - uid: 2512
+ components:
+ - type: Transform
+ pos: -114.5,50.5
+ parent: 2
+ - uid: 2513
+ components:
+ - type: Transform
+ pos: -115.5,50.5
+ parent: 2
+ - uid: 2514
+ components:
+ - type: Transform
+ pos: -115.5,51.5
+ parent: 2
+ - uid: 2515
+ components:
+ - type: Transform
+ pos: -114.5,51.5
+ parent: 2
+ - uid: 2516
+ components:
+ - type: Transform
+ pos: -113.5,51.5
+ parent: 2
+ - uid: 2517
+ components:
+ - type: Transform
+ pos: -112.5,51.5
+ parent: 2
+ - uid: 2518
+ components:
+ - type: Transform
+ pos: -111.5,51.5
+ parent: 2
+ - uid: 2519
+ components:
+ - type: Transform
+ pos: -110.5,51.5
+ parent: 2
+ - uid: 2520
+ components:
+ - type: Transform
+ pos: -117.5,50.5
+ parent: 2
+ - uid: 2521
+ components:
+ - type: Transform
+ pos: -116.5,51.5
+ parent: 2
+ - uid: 2522
+ components:
+ - type: Transform
+ pos: -111.5,52.5
+ parent: 2
+ - uid: 2523
+ components:
+ - type: Transform
+ pos: -110.5,52.5
+ parent: 2
+ - uid: 2524
+ components:
+ - type: Transform
+ pos: -109.5,52.5
+ parent: 2
+ - uid: 2525
+ components:
+ - type: Transform
+ pos: -108.5,52.5
+ parent: 2
+ - uid: 2526
+ components:
+ - type: Transform
+ pos: -108.5,50.5
+ parent: 2
+ - uid: 2527
+ components:
+ - type: Transform
+ pos: -107.5,51.5
+ parent: 2
+ - uid: 2528
+ components:
+ - type: Transform
+ pos: -107.5,50.5
+ parent: 2
+ - uid: 2529
+ components:
+ - type: Transform
+ pos: -104.5,49.5
+ parent: 2
+ - uid: 2530
+ components:
+ - type: Transform
+ pos: -104.5,48.5
+ parent: 2
+ - uid: 2531
+ components:
+ - type: Transform
+ pos: -104.5,47.5
+ parent: 2
+ - uid: 2532
+ components:
+ - type: Transform
+ pos: -103.5,49.5
+ parent: 2
+ - uid: 2533
+ components:
+ - type: Transform
+ pos: -103.5,47.5
+ parent: 2
+ - uid: 2534
+ components:
+ - type: Transform
+ pos: -103.5,48.5
+ parent: 2
+ - uid: 2535
+ components:
+ - type: Transform
+ pos: -105.5,48.5
+ parent: 2
+ - uid: 2536
+ components:
+ - type: Transform
+ pos: -106.5,47.5
+ parent: 2
+ - uid: 2537
+ components:
+ - type: Transform
+ pos: -102.5,47.5
+ parent: 2
+ - uid: 2538
+ components:
+ - type: Transform
+ pos: -102.5,46.5
+ parent: 2
+ - uid: 2539
+ components:
+ - type: Transform
+ pos: -102.5,45.5
+ parent: 2
+ - uid: 2540
+ components:
+ - type: Transform
+ pos: -102.5,44.5
+ parent: 2
+ - uid: 2541
+ components:
+ - type: Transform
+ pos: -102.5,43.5
+ parent: 2
+ - uid: 2542
+ components:
+ - type: Transform
+ pos: -101.5,47.5
+ parent: 2
+ - uid: 2543
+ components:
+ - type: Transform
+ pos: -101.5,46.5
+ parent: 2
+ - uid: 2544
+ components:
+ - type: Transform
+ pos: -101.5,45.5
+ parent: 2
+ - uid: 2545
+ components:
+ - type: Transform
+ pos: -101.5,44.5
+ parent: 2
+ - uid: 2546
+ components:
+ - type: Transform
+ pos: -101.5,43.5
+ parent: 2
+ - uid: 2547
+ components:
+ - type: Transform
+ pos: -101.5,42.5
+ parent: 2
+ - uid: 2548
+ components:
+ - type: Transform
+ pos: -102.5,42.5
+ parent: 2
+ - uid: 2549
+ components:
+ - type: Transform
+ pos: -100.5,44.5
+ parent: 2
+ - uid: 2550
+ components:
+ - type: Transform
+ pos: -100.5,43.5
+ parent: 2
+ - uid: 2564
+ components:
+ - type: Transform
+ pos: -98.5,40.5
+ parent: 2
+ - uid: 2565
+ components:
+ - type: Transform
+ pos: -98.5,42.5
+ parent: 2
+ - uid: 2566
+ components:
+ - type: Transform
+ pos: -98.5,41.5
+ parent: 2
+ - uid: 2567
+ components:
+ - type: Transform
+ pos: -100.5,42.5
+ parent: 2
+ - uid: 2568
+ components:
+ - type: Transform
+ pos: -99.5,41.5
+ parent: 2
+ - uid: 2569
+ components:
+ - type: Transform
+ pos: -99.5,40.5
+ parent: 2
+ - uid: 2570
+ components:
+ - type: Transform
+ pos: -99.5,39.5
+ parent: 2
+ - uid: 2571
+ components:
+ - type: Transform
+ pos: -99.5,38.5
+ parent: 2
+ - uid: 2572
+ components:
+ - type: Transform
+ pos: -98.5,39.5
+ parent: 2
+ - uid: 2573
+ components:
+ - type: Transform
+ pos: -98.5,38.5
+ parent: 2
+ - uid: 2574
+ components:
+ - type: Transform
+ pos: -97.5,38.5
+ parent: 2
+ - uid: 2575
+ components:
+ - type: Transform
+ pos: -97.5,39.5
+ parent: 2
+ - uid: 2576
+ components:
+ - type: Transform
+ pos: -97.5,40.5
+ parent: 2
+ - uid: 2577
+ components:
+ - type: Transform
+ pos: -96.5,41.5
+ parent: 2
+ - uid: 2578
+ components:
+ - type: Transform
+ pos: -96.5,43.5
+ parent: 2
+ - uid: 2898
+ components:
+ - type: Transform
+ pos: -100.5,47.5
+ parent: 2
+ - uid: 2900
+ components:
+ - type: Transform
+ pos: -102.5,48.5
+ parent: 2
+ - uid: 2901
+ components:
+ - type: Transform
+ pos: -97.5,45.5
+ parent: 2
+ - uid: 3037
+ components:
+ - type: Transform
+ pos: -113.5,40.5
+ parent: 2
+ - uid: 3038
+ components:
+ - type: Transform
+ pos: -112.5,40.5
+ parent: 2
+ - uid: 3041
+ components:
+ - type: Transform
+ pos: -115.5,40.5
+ parent: 2
+ - uid: 3043
+ components:
+ - type: Transform
+ pos: -116.5,40.5
+ parent: 2
+ - uid: 3044
+ components:
+ - type: Transform
+ pos: -110.5,40.5
+ parent: 2
+ - uid: 3046
+ components:
+ - type: Transform
+ pos: -115.5,39.5
+ parent: 2
+ - uid: 3047
+ components:
+ - type: Transform
+ pos: -111.5,40.5
+ parent: 2
+ - uid: 3048
+ components:
+ - type: Transform
+ pos: -99.5,46.5
+ parent: 2
+ - uid: 3049
+ components:
+ - type: Transform
+ pos: -114.5,40.5
+ parent: 2
+ - uid: 3050
+ components:
+ - type: Transform
+ pos: -96.5,44.5
+ parent: 2
+ - uid: 3055
+ components:
+ - type: Transform
+ pos: -116.5,41.5
+ parent: 2
+ - uid: 3058
+ components:
+ - type: Transform
+ pos: -113.5,39.5
+ parent: 2
+ - uid: 3059
+ components:
+ - type: Transform
+ pos: -112.5,39.5
+ parent: 2
+ - uid: 3062
+ components:
+ - type: Transform
+ pos: -114.5,39.5
+ parent: 2
+ - uid: 3063
+ components:
+ - type: Transform
+ pos: -117.5,39.5
+ parent: 2
+ - uid: 3066
+ components:
+ - type: Transform
+ pos: -117.5,40.5
+ parent: 2
+ - uid: 3068
+ components:
+ - type: Transform
+ pos: -98.5,45.5
+ parent: 2
+ - uid: 3070
+ components:
+ - type: Transform
+ pos: -118.5,40.5
+ parent: 2
+ - uid: 3075
+ components:
+ - type: Transform
+ pos: -116.5,38.5
+ parent: 2
+ - uid: 3076
+ components:
+ - type: Transform
+ pos: -117.5,38.5
+ parent: 2
+ - uid: 3082
+ components:
+ - type: Transform
+ pos: -118.5,39.5
+ parent: 2
+ - uid: 5066
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,87.5
+ parent: 2
+ - uid: 5067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,87.5
+ parent: 2
+ - uid: 5068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,87.5
+ parent: 2
+ - uid: 5069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,89.5
+ parent: 2
+ - uid: 5070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,88.5
+ parent: 2
+ - uid: 5071
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,89.5
+ parent: 2
+ - uid: 5072
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,90.5
+ parent: 2
+ - uid: 5073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,90.5
+ parent: 2
+ - uid: 5074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,90.5
+ parent: 2
+ - uid: 5075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,90.5
+ parent: 2
+ - uid: 5076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,90.5
+ parent: 2
+ - uid: 5077
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,90.5
+ parent: 2
+ - uid: 5078
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,90.5
+ parent: 2
+ - uid: 5079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,88.5
+ parent: 2
+ - uid: 5080
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,87.5
+ parent: 2
+ - uid: 5081
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,88.5
+ parent: 2
+ - uid: 5082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,89.5
+ parent: 2
+ - uid: 5083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,91.5
+ parent: 2
+ - uid: 5084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,91.5
+ parent: 2
+ - uid: 5085
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,91.5
+ parent: 2
+ - uid: 5086
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,90.5
+ parent: 2
+ - uid: 5087
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,90.5
+ parent: 2
+ - uid: 5088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,90.5
+ parent: 2
+ - uid: 5089
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,90.5
+ parent: 2
+ - uid: 5090
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,89.5
+ parent: 2
+ - uid: 5091
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,88.5
+ parent: 2
+ - uid: 5092
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,87.5
+ parent: 2
+ - uid: 5093
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,87.5
+ parent: 2
+ - uid: 5094
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,87.5
+ parent: 2
+ - uid: 5095
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,87.5
+ parent: 2
+ - uid: 5096
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,87.5
+ parent: 2
+ - uid: 5097
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,88.5
+ parent: 2
+ - uid: 5098
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,88.5
+ parent: 2
+ - uid: 5099
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,88.5
+ parent: 2
+ - uid: 5100
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,88.5
+ parent: 2
+ - uid: 5101
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,89.5
+ parent: 2
+ - uid: 5102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,89.5
+ parent: 2
+ - uid: 5103
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,89.5
+ parent: 2
+ - uid: 5104
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,89.5
+ parent: 2
+ - uid: 5105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,87.5
+ parent: 2
+ - uid: 5106
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,87.5
+ parent: 2
+ - uid: 5107
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,87.5
+ parent: 2
+ - uid: 5111
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,86.5
+ parent: 2
+ - uid: 5112
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,86.5
+ parent: 2
+ - uid: 5113
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,86.5
+ parent: 2
+ - uid: 5114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,86.5
+ parent: 2
+ - uid: 5115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,86.5
+ parent: 2
+ - uid: 5130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,88.5
+ parent: 2
+ - uid: 5131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,87.5
+ parent: 2
+ - uid: 5132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,86.5
+ parent: 2
+ - uid: 5133
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,87.5
+ parent: 2
+ - uid: 5134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,86.5
+ parent: 2
+ - uid: 5135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,85.5
+ parent: 2
+ - uid: 5136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,86.5
+ parent: 2
+ - uid: 5137
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,85.5
+ parent: 2
+ - uid: 5138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,88.5
+ parent: 2
+ - uid: 5139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,88.5
+ parent: 2
+ - uid: 5140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,87.5
+ parent: 2
+ - uid: 5141
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,88.5
+ parent: 2
+ - uid: 5142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,86.5
+ parent: 2
+ - uid: 5143
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,85.5
+ parent: 2
+ - uid: 5148
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,85.5
+ parent: 2
+ - uid: 5149
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,85.5
+ parent: 2
+ - uid: 5150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,85.5
+ parent: 2
+ - uid: 5152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,86.5
+ parent: 2
+ - uid: 5153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,86.5
+ parent: 2
+ - uid: 5154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,86.5
+ parent: 2
+ - uid: 5155
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,86.5
+ parent: 2
+ - uid: 5156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,87.5
+ parent: 2
+ - uid: 5157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,87.5
+ parent: 2
+ - uid: 5158
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,87.5
+ parent: 2
+ - uid: 5159
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,84.5
+ parent: 2
+ - uid: 5160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,84.5
+ parent: 2
+ - uid: 5161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,84.5
+ parent: 2
+ - uid: 5163
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,84.5
+ parent: 2
+ - uid: 5164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,85.5
+ parent: 2
+ - uid: 5165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,85.5
+ parent: 2
+ - uid: 5166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,85.5
+ parent: 2
+ - uid: 5176
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,83.5
+ parent: 2
+ - uid: 5177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,85.5
+ parent: 2
+ - uid: 5178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,85.5
+ parent: 2
+ - uid: 5179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,84.5
+ parent: 2
+ - uid: 5180
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,83.5
+ parent: 2
+ - uid: 6305
+ components:
+ - type: Transform
+ pos: -90.5,-27.5
+ parent: 2
+ - uid: 6306
+ components:
+ - type: Transform
+ pos: -89.5,-28.5
+ parent: 2
+ - uid: 6307
+ components:
+ - type: Transform
+ pos: -88.5,-27.5
+ parent: 2
+ - uid: 6308
+ components:
+ - type: Transform
+ pos: -89.5,-26.5
+ parent: 2
+ - uid: 6309
+ components:
+ - type: Transform
+ pos: -89.5,-25.5
+ parent: 2
+ - uid: 6310
+ components:
+ - type: Transform
+ pos: -87.5,-29.5
+ parent: 2
+ - uid: 6311
+ components:
+ - type: Transform
+ pos: -87.5,-30.5
+ parent: 2
+ - uid: 6312
+ components:
+ - type: Transform
+ pos: -87.5,-31.5
+ parent: 2
+ - uid: 6313
+ components:
+ - type: Transform
+ pos: -89.5,-29.5
+ parent: 2
+ - uid: 6314
+ components:
+ - type: Transform
+ pos: -90.5,-29.5
+ parent: 2
+ - uid: 6315
+ components:
+ - type: Transform
+ pos: -91.5,-29.5
+ parent: 2
+ - uid: 6316
+ components:
+ - type: Transform
+ pos: -90.5,-30.5
+ parent: 2
+ - uid: 6317
+ components:
+ - type: Transform
+ pos: -91.5,-30.5
+ parent: 2
+ - uid: 6318
+ components:
+ - type: Transform
+ pos: -91.5,-28.5
+ parent: 2
+ - uid: 6319
+ components:
+ - type: Transform
+ pos: -91.5,-27.5
+ parent: 2
+ - uid: 6320
+ components:
+ - type: Transform
+ pos: -91.5,-26.5
+ parent: 2
+ - uid: 6321
+ components:
+ - type: Transform
+ pos: -90.5,-26.5
+ parent: 2
+ - uid: 6322
+ components:
+ - type: Transform
+ pos: -90.5,-25.5
+ parent: 2
+ - uid: 6323
+ components:
+ - type: Transform
+ pos: -90.5,-24.5
+ parent: 2
+ - uid: 6324
+ components:
+ - type: Transform
+ pos: -90.5,-23.5
+ parent: 2
+ - uid: 6325
+ components:
+ - type: Transform
+ pos: -89.5,-23.5
+ parent: 2
+ - uid: 6326
+ components:
+ - type: Transform
+ pos: -91.5,-25.5
+ parent: 2
+ - uid: 6327
+ components:
+ - type: Transform
+ pos: -91.5,-24.5
+ parent: 2
+ - uid: 6328
+ components:
+ - type: Transform
+ pos: -91.5,-23.5
+ parent: 2
+ - uid: 6329
+ components:
+ - type: Transform
+ pos: -91.5,-22.5
+ parent: 2
+ - uid: 6330
+ components:
+ - type: Transform
+ pos: -90.5,-22.5
+ parent: 2
+ - uid: 6331
+ components:
+ - type: Transform
+ pos: -92.5,-25.5
+ parent: 2
+ - uid: 6332
+ components:
+ - type: Transform
+ pos: -92.5,-24.5
+ parent: 2
+ - uid: 6333
+ components:
+ - type: Transform
+ pos: -92.5,-23.5
+ parent: 2
+ - uid: 6334
+ components:
+ - type: Transform
+ pos: -93.5,-23.5
+ parent: 2
+ - uid: 14273
+ components:
+ - type: Transform
+ pos: 7.5,33.5
+ parent: 2
+ - uid: 14274
+ components:
+ - type: Transform
+ pos: 6.5,34.5
+ parent: 2
+ - uid: 14275
+ components:
+ - type: Transform
+ pos: 7.5,34.5
+ parent: 2
+ - uid: 14276
+ components:
+ - type: Transform
+ pos: 6.5,33.5
+ parent: 2
+ - uid: 14287
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,32.5
+ parent: 2
+ - uid: 14288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,32.5
+ parent: 2
+- proto: CP14FloorWaterAirLily
+ entities:
+ - uid: 1742
+ components:
+ - type: Transform
+ pos: -93.5,19.5
+ parent: 2
+ - uid: 1762
+ components:
+ - type: Transform
+ pos: -95.5,21.5
+ parent: 2
+ - uid: 2052
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-5.5
+ parent: 2
+ - uid: 2068
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-6.5
+ parent: 2
+ - uid: 2397
+ components:
+ - type: Transform
+ pos: -106.5,46.5
+ parent: 2
+ - uid: 2454
+ components:
+ - type: Transform
+ pos: -110.5,50.5
+ parent: 2
+ - uid: 2485
+ components:
+ - type: Transform
+ pos: -107.5,49.5
+ parent: 2
+ - uid: 2486
+ components:
+ - type: Transform
+ pos: -105.5,47.5
+ parent: 2
+ - uid: 2487
+ components:
+ - type: Transform
+ pos: -117.5,43.5
+ parent: 2
+ - uid: 2488
+ components:
+ - type: Transform
+ pos: -119.5,45.5
+ parent: 2
+ - uid: 2489
+ components:
+ - type: Transform
+ pos: -117.5,48.5
+ parent: 2
+ - uid: 2490
+ components:
+ - type: Transform
+ pos: -116.5,49.5
+ parent: 2
+ - uid: 5061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,87.5
+ parent: 2
+ - uid: 5062
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,89.5
+ parent: 2
+ - uid: 5063
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,88.5
+ parent: 2
+ - uid: 5064
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,89.5
+ parent: 2
+ - uid: 5065
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,88.5
+ parent: 2
+ - uid: 5129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,86.5
+ parent: 2
+ - uid: 5151
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,85.5
+ parent: 2
+ - uid: 6304
+ components:
+ - type: Transform
+ pos: -90.5,-28.5
+ parent: 2
+- proto: CP14FloorWaterLilies
+ entities:
+ - uid: 1688
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,7.5
+ parent: 2
+ - uid: 1698
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,6.5
+ parent: 2
+ - uid: 1747
+ components:
+ - type: Transform
+ pos: -95.5,18.5
+ parent: 2
+ - uid: 1751
+ components:
+ - type: Transform
+ pos: -93.5,20.5
+ parent: 2
+ - uid: 2008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-0.5
+ parent: 2
+ - uid: 2027
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,2.5
+ parent: 2
+ - uid: 2028
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-0.5
+ parent: 2
+ - uid: 2029
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-1.5
+ parent: 2
+ - uid: 2030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-0.5
+ parent: 2
+ - uid: 2056
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -89.5,-7.5
+ parent: 2
+ - uid: 2072
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-7.5
+ parent: 2
+ - uid: 2074
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-6.5
+ parent: 2
+ - uid: 2475
+ components:
+ - type: Transform
+ pos: -118.5,42.5
+ parent: 2
+ - uid: 2476
+ components:
+ - type: Transform
+ pos: -119.5,43.5
+ parent: 2
+ - uid: 2477
+ components:
+ - type: Transform
+ pos: -117.5,41.5
+ parent: 2
+ - uid: 2478
+ components:
+ - type: Transform
+ pos: -118.5,41.5
+ parent: 2
+ - uid: 2479
+ components:
+ - type: Transform
+ pos: -117.5,42.5
+ parent: 2
+ - uid: 2480
+ components:
+ - type: Transform
+ pos: -118.5,43.5
+ parent: 2
+ - uid: 2481
+ components:
+ - type: Transform
+ pos: -109.5,49.5
+ parent: 2
+ - uid: 2482
+ components:
+ - type: Transform
+ pos: -106.5,48.5
+ parent: 2
+ - uid: 2483
+ components:
+ - type: Transform
+ pos: -107.5,48.5
+ parent: 2
+ - uid: 2484
+ components:
+ - type: Transform
+ pos: -108.5,49.5
+ parent: 2
+ - uid: 2561
+ components:
+ - type: Transform
+ pos: -97.5,43.5
+ parent: 2
+ - uid: 2562
+ components:
+ - type: Transform
+ pos: -99.5,42.5
+ parent: 2
+ - uid: 2563
+ components:
+ - type: Transform
+ pos: -99.5,43.5
+ parent: 2
+ - uid: 5052
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,88.5
+ parent: 2
+ - uid: 5053
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,89.5
+ parent: 2
+ - uid: 5054
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,89.5
+ parent: 2
+ - uid: 5055
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,88.5
+ parent: 2
+ - uid: 5056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,88.5
+ parent: 2
+ - uid: 5057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,88.5
+ parent: 2
+ - uid: 5058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,88.5
+ parent: 2
+ - uid: 5059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,89.5
+ parent: 2
+ - uid: 5060
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,89.5
+ parent: 2
+ - uid: 5127
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,87.5
+ parent: 2
+ - uid: 5128
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,88.5
+ parent: 2
+ - uid: 5162
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,84.5
+ parent: 2
+ - uid: 5172
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,84.5
+ parent: 2
+ - uid: 6301
+ components:
+ - type: Transform
+ pos: -89.5,-24.5
+ parent: 2
+ - uid: 6302
+ components:
+ - type: Transform
+ pos: -89.5,-27.5
+ parent: 2
+- proto: CP14FloorWaterReeds
+ entities:
+ - uid: 1689
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,6.5
+ parent: 2
+ - uid: 1690
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,7.5
+ parent: 2
+ - uid: 1731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,12.5
+ parent: 2
+ - uid: 1732
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,13.5
+ parent: 2
+ - uid: 1733
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,14.5
+ parent: 2
+ - uid: 1734
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,12.5
+ parent: 2
+ - uid: 1735
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,13.5
+ parent: 2
+ - uid: 1736
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,15.5
+ parent: 2
+ - uid: 1737
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,15.5
+ parent: 2
+ - uid: 1738
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -96.5,16.5
+ parent: 2
+ - uid: 1748
+ components:
+ - type: Transform
+ pos: -93.5,21.5
+ parent: 2
+ - uid: 1750
+ components:
+ - type: Transform
+ pos: -94.5,21.5
+ parent: 2
+ - uid: 1752
+ components:
+ - type: Transform
+ pos: -93.5,18.5
+ parent: 2
+ - uid: 1753
+ components:
+ - type: Transform
+ pos: -96.5,19.5
+ parent: 2
+ - uid: 1760
+ components:
+ - type: Transform
+ pos: -96.5,20.5
+ parent: 2
+ - uid: 1761
+ components:
+ - type: Transform
+ pos: -94.5,20.5
+ parent: 2
+ - uid: 1763
+ components:
+ - type: Transform
+ pos: -95.5,20.5
+ parent: 2
+ - uid: 2035
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-2.5
+ parent: 2
+ - uid: 2036
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-3.5
+ parent: 2
+ - uid: 2042
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-4.5
+ parent: 2
+ - uid: 2043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-5.5
+ parent: 2
+ - uid: 2047
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-4.5
+ parent: 2
+ - uid: 2048
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-5.5
+ parent: 2
+ - uid: 2053
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-4.5
+ parent: 2
+ - uid: 2054
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -89.5,-5.5
+ parent: 2
+ - uid: 2055
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -89.5,-6.5
+ parent: 2
+ - uid: 2057
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-5.5
+ parent: 2
+ - uid: 2059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,-7.5
+ parent: 2
+ - uid: 2073
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -92.5,-8.5
+ parent: 2
+ - uid: 2076
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,-8.5
+ parent: 2
+ - uid: 2077
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -93.5,-9.5
+ parent: 2
+ - uid: 2438
+ components:
+ - type: Transform
+ pos: -114.5,48.5
+ parent: 2
+ - uid: 2439
+ components:
+ - type: Transform
+ pos: -115.5,47.5
+ parent: 2
+ - uid: 2440
+ components:
+ - type: Transform
+ pos: -115.5,48.5
+ parent: 2
+ - uid: 2444
+ components:
+ - type: Transform
+ pos: -116.5,44.5
+ parent: 2
+ - uid: 2445
+ components:
+ - type: Transform
+ pos: -116.5,47.5
+ parent: 2
+ - uid: 2446
+ components:
+ - type: Transform
+ pos: -116.5,45.5
+ parent: 2
+ - uid: 2447
+ components:
+ - type: Transform
+ pos: -116.5,46.5
+ parent: 2
+ - uid: 2462
+ components:
+ - type: Transform
+ pos: -120.5,45.5
+ parent: 2
+ - uid: 2463
+ components:
+ - type: Transform
+ pos: -121.5,44.5
+ parent: 2
+ - uid: 2464
+ components:
+ - type: Transform
+ pos: -121.5,45.5
+ parent: 2
+ - uid: 2465
+ components:
+ - type: Transform
+ pos: -121.5,46.5
+ parent: 2
+ - uid: 2466
+ components:
+ - type: Transform
+ pos: -120.5,46.5
+ parent: 2
+ - uid: 2467
+ components:
+ - type: Transform
+ pos: -119.5,47.5
+ parent: 2
+ - uid: 2468
+ components:
+ - type: Transform
+ pos: -120.5,47.5
+ parent: 2
+ - uid: 2469
+ components:
+ - type: Transform
+ pos: -118.5,48.5
+ parent: 2
+ - uid: 2470
+ components:
+ - type: Transform
+ pos: -117.5,49.5
+ parent: 2
+ - uid: 2471
+ components:
+ - type: Transform
+ pos: -118.5,49.5
+ parent: 2
+ - uid: 2472
+ components:
+ - type: Transform
+ pos: -119.5,48.5
+ parent: 2
+ - uid: 2473
+ components:
+ - type: Transform
+ pos: -115.5,49.5
+ parent: 2
+ - uid: 2474
+ components:
+ - type: Transform
+ pos: -117.5,47.5
+ parent: 2
+ - uid: 2551
+ components:
+ - type: Transform
+ pos: -100.5,45.5
+ parent: 2
+ - uid: 2552
+ components:
+ - type: Transform
+ pos: -99.5,44.5
+ parent: 2
+ - uid: 2553
+ components:
+ - type: Transform
+ pos: -98.5,43.5
+ parent: 2
+ - uid: 2554
+ components:
+ - type: Transform
+ pos: -98.5,44.5
+ parent: 2
+ - uid: 2555
+ components:
+ - type: Transform
+ pos: -97.5,44.5
+ parent: 2
+ - uid: 2556
+ components:
+ - type: Transform
+ pos: -99.5,45.5
+ parent: 2
+ - uid: 2557
+ components:
+ - type: Transform
+ pos: -100.5,46.5
+ parent: 2
+ - uid: 2558
+ components:
+ - type: Transform
+ pos: -96.5,42.5
+ parent: 2
+ - uid: 2559
+ components:
+ - type: Transform
+ pos: -97.5,41.5
+ parent: 2
+ - uid: 2560
+ components:
+ - type: Transform
+ pos: -97.5,42.5
+ parent: 2
+ - uid: 5023
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,89.5
+ parent: 2
+ - uid: 5024
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,87.5
+ parent: 2
+ - uid: 5025
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,88.5
+ parent: 2
+ - uid: 5026
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,87.5
+ parent: 2
+ - uid: 5027
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,87.5
+ parent: 2
+ - uid: 5028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,87.5
+ parent: 2
+ - uid: 5029
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,89.5
+ parent: 2
+ - uid: 5031
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,90.5
+ parent: 2
+ - uid: 5032
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,89.5
+ parent: 2
+ - uid: 5034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,88.5
+ parent: 2
+ - uid: 5037
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,88.5
+ parent: 2
+ - uid: 5038
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,90.5
+ parent: 2
+ - uid: 5039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,90.5
+ parent: 2
+ - uid: 5040
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,90.5
+ parent: 2
+ - uid: 5041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,89.5
+ parent: 2
+ - uid: 5042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,90.5
+ parent: 2
+ - uid: 5043
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,89.5
+ parent: 2
+ - uid: 5044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,89.5
+ parent: 2
+ - uid: 5045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,89.5
+ parent: 2
+ - uid: 5046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,87.5
+ parent: 2
+ - uid: 5047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,90.5
+ parent: 2
+ - uid: 5048
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,87.5
+ parent: 2
+ - uid: 5049
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,87.5
+ parent: 2
+ - uid: 5050
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,88.5
+ parent: 2
+ - uid: 5051
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,87.5
+ parent: 2
+ - uid: 5108
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,87.5
+ parent: 2
+ - uid: 5109
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,88.5
+ parent: 2
+ - uid: 5110
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,88.5
+ parent: 2
+ - uid: 5116
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,85.5
+ parent: 2
+ - uid: 5117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,85.5
+ parent: 2
+ - uid: 5118
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,86.5
+ parent: 2
+ - uid: 5119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,88.5
+ parent: 2
+ - uid: 5120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,87.5
+ parent: 2
+ - uid: 5121
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,85.5
+ parent: 2
+ - uid: 5122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,85.5
+ parent: 2
+ - uid: 5123
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,87.5
+ parent: 2
+ - uid: 5124
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,88.5
+ parent: 2
+ - uid: 5125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,86.5
+ parent: 2
+ - uid: 5126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,85.5
+ parent: 2
+ - uid: 5144
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,84.5
+ parent: 2
+ - uid: 5145
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,84.5
+ parent: 2
+ - uid: 5146
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,84.5
+ parent: 2
+ - uid: 5147
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,84.5
+ parent: 2
+ - uid: 5167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,83.5
+ parent: 2
+ - uid: 5168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,83.5
+ parent: 2
+ - uid: 5169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,83.5
+ parent: 2
+ - uid: 5170
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,83.5
+ parent: 2
+ - uid: 5171
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,84.5
+ parent: 2
+ - uid: 5173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,84.5
+ parent: 2
+ - uid: 5174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,85.5
+ parent: 2
+ - uid: 5175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,85.5
+ parent: 2
+ - uid: 6293
+ components:
+ - type: Transform
+ pos: -87.5,-26.5
+ parent: 2
+ - uid: 6294
+ components:
+ - type: Transform
+ pos: -87.5,-27.5
+ parent: 2
+ - uid: 6295
+ components:
+ - type: Transform
+ pos: -87.5,-28.5
+ parent: 2
+ - uid: 6296
+ components:
+ - type: Transform
+ pos: -88.5,-29.5
+ parent: 2
+ - uid: 6297
+ components:
+ - type: Transform
+ pos: -88.5,-28.5
+ parent: 2
+ - uid: 6298
+ components:
+ - type: Transform
+ pos: -89.5,-30.5
+ parent: 2
+ - uid: 6299
+ components:
+ - type: Transform
+ pos: -89.5,-31.5
+ parent: 2
+ - uid: 6300
+ components:
+ - type: Transform
+ pos: -88.5,-31.5
+ parent: 2
+ - uid: 6303
+ components:
+ - type: Transform
+ pos: -88.5,-26.5
+ parent: 2
+ - uid: 6335
+ components:
+ - type: Transform
+ pos: -94.5,-23.5
+ parent: 2
+ - uid: 6336
+ components:
+ - type: Transform
+ pos: -93.5,-24.5
+ parent: 2
+ - uid: 6337
+ components:
+ - type: Transform
+ pos: -93.5,-25.5
+ parent: 2
+ - uid: 6338
+ components:
+ - type: Transform
+ pos: -93.5,-26.5
+ parent: 2
+ - uid: 6339
+ components:
+ - type: Transform
+ pos: -92.5,-26.5
+ parent: 2
+ - uid: 6340
+ components:
+ - type: Transform
+ pos: -92.5,-27.5
+ parent: 2
+ - uid: 6341
+ components:
+ - type: Transform
+ pos: -92.5,-28.5
+ parent: 2
+ - uid: 6342
+ components:
+ - type: Transform
+ pos: -92.5,-29.5
+ parent: 2
+ - uid: 6343
+ components:
+ - type: Transform
+ pos: -92.5,-30.5
+ parent: 2
+ - uid: 6344
+ components:
+ - type: Transform
+ pos: -93.5,-31.5
+ parent: 2
+ - uid: 6345
+ components:
+ - type: Transform
+ pos: -92.5,-31.5
+ parent: 2
+ - uid: 6346
+ components:
+ - type: Transform
+ pos: -92.5,-22.5
+ parent: 2
+ - uid: 6347
+ components:
+ - type: Transform
+ pos: -93.5,-22.5
+ parent: 2
+ - uid: 6348
+ components:
+ - type: Transform
+ pos: -91.5,-21.5
+ parent: 2
+ - uid: 6349
+ components:
+ - type: Transform
+ pos: -90.5,-21.5
+ parent: 2
+ - uid: 6350
+ components:
+ - type: Transform
+ pos: -89.5,-22.5
+ parent: 2
+ - uid: 6351
+ components:
+ - type: Transform
+ pos: -89.5,-21.5
+ parent: 2
+ - uid: 6352
+ components:
+ - type: Transform
+ pos: -92.5,-21.5
+ parent: 2
+ - uid: 6353
+ components:
+ - type: Transform
+ pos: -91.5,-20.5
+ parent: 2
+ - uid: 6354
+ components:
+ - type: Transform
+ pos: -91.5,-19.5
+ parent: 2
+ - uid: 6355
+ components:
+ - type: Transform
+ pos: -93.5,-21.5
+ parent: 2
+ - uid: 6356
+ components:
+ - type: Transform
+ pos: -93.5,-20.5
+ parent: 2
+ - uid: 6357
+ components:
+ - type: Transform
+ pos: -92.5,-20.5
+ parent: 2
+ - uid: 6358
+ components:
+ - type: Transform
+ pos: -94.5,-22.5
+ parent: 2
+ - uid: 6359
+ components:
+ - type: Transform
+ pos: -94.5,-21.5
+ parent: 2
+- proto: CP14FloraTreeGreen
+ entities:
+ - uid: 15529
+ components:
+ - type: Transform
+ pos: -18.5,10.5
+ parent: 2
+ - uid: 15530
+ components:
+ - type: Transform
+ pos: -19.5,7.5
+ parent: 2
+ - uid: 17830
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-3.5
+ parent: 2
+ - uid: 17831
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-1.5
+ parent: 2
+ - uid: 17832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,0.5
+ parent: 2
+ - uid: 17833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,16.5
+ parent: 2
+ - uid: 17834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,25.5
+ parent: 2
+- proto: CP14FloraTreeGreenLarge
+ entities:
+ - uid: 579
+ components:
+ - type: Transform
+ pos: 38.5,-64.5
+ parent: 2
+ - uid: 10498
+ components:
+ - type: Transform
+ pos: -111.5,46.5
+ parent: 2
+ - uid: 14489
+ components:
+ - type: Transform
+ pos: -10.5,-12.5
+ parent: 2
+ - uid: 15546
+ components:
+ - type: Transform
+ pos: -20.5,27.5
+ parent: 2
+ - uid: 15889
+ components:
+ - type: Transform
+ pos: 13.5,-20.5
+ parent: 2
+ - uid: 15890
+ components:
+ - type: Transform
+ pos: 17.5,-25.5
+ parent: 2
+ - uid: 15891
+ components:
+ - type: Transform
+ pos: 19.5,-21.5
+ parent: 2
+ - uid: 15892
+ components:
+ - type: Transform
+ pos: 27.5,-25.5
+ parent: 2
+ - uid: 15984
+ components:
+ - type: Transform
+ pos: 9.5,18.5
+ parent: 2
+ - uid: 17826
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-9.5
+ parent: 2
+ - uid: 17827
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-16.5
+ parent: 2
+ - uid: 17828
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-12.5
+ parent: 2
+ - uid: 17829
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-11.5
+ parent: 2
+- proto: CP14FoodApple
+ entities:
+ - uid: 14217
+ components:
+ - type: Transform
+ pos: -27.36371,-13.285341
+ parent: 2
+- proto: CP14FoodCheeseWheel
+ entities:
+ - uid: 14135
+ components:
+ - type: Transform
+ pos: -28.392368,-22.234352
+ parent: 2
+ - uid: 14136
+ components:
+ - type: Transform
+ pos: -28.345493,-22.265602
+ parent: 2
+- proto: CP14FoodPieFish
+ entities:
+ - uid: 15997
+ components:
+ - type: Transform
+ pos: 14.174076,28.835197
+ parent: 2
+- proto: CP14FoodPiePumpkin
+ entities:
+ - uid: 15998
+ components:
+ - type: Transform
+ pos: 14.986576,28.600822
+ parent: 2
+- proto: CP14FrameWooden
+ entities:
+ - uid: 1496
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,5.5
+ parent: 2
+ - uid: 1563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,8.5
+ parent: 2
+ - uid: 1677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,88.5
+ parent: 2
+ - uid: 1679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,90.5
+ parent: 2
+ - uid: 1683
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,92.5
+ parent: 2
+ - uid: 1692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,12.5
+ parent: 2
+ - uid: 1693
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -93.5,12.5
+ parent: 2
+ - uid: 1697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,8.5
+ parent: 2
+ - uid: 1701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,86.5
+ parent: 2
+ - uid: 1703
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,90.5
+ parent: 2
+ - uid: 5239
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,65.5
+ parent: 2
+ - uid: 5241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,74.5
+ parent: 2
+ - uid: 5242
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,73.5
+ parent: 2
+ - uid: 5243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,66.5
+ parent: 2
+ - uid: 5245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,65.5
+ parent: 2
+ - uid: 5319
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,71.5
+ parent: 2
+ - uid: 5330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,66.5
+ parent: 2
+- proto: CP14FrameWoodenCrushedLow
+ entities:
+ - uid: 1266
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,7.5
+ parent: 2
+ - uid: 1267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,8.5
+ parent: 2
+ - uid: 1681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,92.5
+ parent: 2
+ - uid: 1704
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,88.5
+ parent: 2
+- proto: CP14FrameWoodenCrushedMedium
+ entities:
+ - uid: 1268
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -28.5,5.5
+ parent: 2
+ - uid: 1675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,86.5
+ parent: 2
+- proto: CP14GatherableBloodFlower
+ entities:
+ - uid: 1460
+ components:
+ - type: Transform
+ pos: 31.5,-9.5
+ parent: 2
+ - uid: 1463
+ components:
+ - type: Transform
+ pos: 28.5,-10.5
+ parent: 2
+ - uid: 1472
+ components:
+ - type: Transform
+ pos: 14.5,-19.5
+ parent: 2
+ - uid: 1516
+ components:
+ - type: Transform
+ pos: 39.5,-14.5
+ parent: 2
+ - uid: 10074
+ components:
+ - type: Transform
+ pos: 37.5,-65.5
+ parent: 2
+ - uid: 14473
+ components:
+ - type: Transform
+ pos: 2.5,-4.5
+ parent: 2
+ - uid: 14474
+ components:
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 2
+ - uid: 14487
+ components:
+ - type: Transform
+ pos: -13.5,-9.5
+ parent: 2
+- proto: CP14GatherableBlueAmanita
+ entities:
+ - uid: 1461
+ components:
+ - type: Transform
+ pos: 33.5,-10.5
+ parent: 2
+ - uid: 1474
+ components:
+ - type: Transform
+ pos: 12.5,-24.5
+ parent: 2
+ - uid: 1515
+ components:
+ - type: Transform
+ pos: 42.5,-15.5
+ parent: 2
+ - uid: 14472
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 2
+ - uid: 14475
+ components:
+ - type: Transform
+ pos: 2.5,-4.5
+ parent: 2
+ - uid: 14476
+ components:
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 2
+- proto: CP14GatherableDayflin
+ entities:
+ - uid: 1442
+ components:
+ - type: Transform
+ pos: 29.5,-8.5
+ parent: 2
+ - uid: 1473
+ components:
+ - type: Transform
+ pos: 17.5,-21.5
+ parent: 2
+ - uid: 1517
+ components:
+ - type: Transform
+ pos: 40.5,-16.5
+ parent: 2
+ - uid: 12349
+ components:
+ - type: Transform
+ pos: 47.5,60.5
+ parent: 2
+ - uid: 12691
+ components:
+ - type: Transform
+ pos: 51.5,64.5
+ parent: 2
+ - uid: 12692
+ components:
+ - type: Transform
+ pos: 58.5,62.5
+ parent: 2
+ - uid: 12714
+ components:
+ - type: Transform
+ pos: 57.5,68.5
+ parent: 2
+ - uid: 12716
+ components:
+ - type: Transform
+ pos: 60.5,64.5
+ parent: 2
+ - uid: 12722
+ components:
+ - type: Transform
+ pos: 51.5,59.5
+ parent: 2
+ - uid: 12726
+ components:
+ - type: Transform
+ pos: 64.5,67.5
+ parent: 2
+ - uid: 12727
+ components:
+ - type: Transform
+ pos: 53.5,68.5
+ parent: 2
+ - uid: 12730
+ components:
+ - type: Transform
+ pos: 53.5,65.5
+ parent: 2
+ - uid: 12731
+ components:
+ - type: Transform
+ pos: 50.5,62.5
+ parent: 2
+ - uid: 12732
+ components:
+ - type: Transform
+ pos: 60.5,67.5
+ parent: 2
+ - uid: 12735
+ components:
+ - type: Transform
+ pos: 56.5,64.5
+ parent: 2
+ - uid: 12751
+ components:
+ - type: Transform
+ pos: 54.5,60.5
+ parent: 2
+ - uid: 14471
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 2
+ - uid: 14477
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 2
+ - uid: 14490
+ components:
+ - type: Transform
+ pos: -15.5,-12.5
+ parent: 2
+- proto: CP14GatherableWildSage
+ entities:
+ - uid: 1462
+ components:
+ - type: Transform
+ pos: 34.5,-8.5
+ parent: 2
+ - uid: 1518
+ components:
+ - type: Transform
+ pos: 41.5,-12.5
+ parent: 2
+- proto: CP14GoldCoin1
+ entities:
+ - uid: 14425
+ components:
+ - type: Transform
+ pos: -6.7452936,-18.274258
+ parent: 2
+- proto: CP14HighBush
+ entities:
+ - uid: 580
+ components:
+ - type: Transform
+ pos: 35.003105,-63.509827
+ parent: 2
+ - uid: 581
+ components:
+ - type: Transform
+ pos: 36.409355,-63.509827
+ parent: 2
+ - uid: 582
+ components:
+ - type: Transform
+ pos: 37.159355,-62.71295
+ parent: 2
+ - uid: 583
+ components:
+ - type: Transform
+ pos: 39.23748,-63.947327
+ parent: 2
+ - uid: 584
+ components:
+ - type: Transform
+ pos: 39.878105,-62.634827
+ parent: 2
+ - uid: 585
+ components:
+ - type: Transform
+ pos: 40.159355,-64.79108
+ parent: 2
+- proto: CP14IronCabinet
+ entities:
+ - uid: 14324
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -30.5,-8.5
+ parent: 2
+- proto: CP14IronDoorBankCommandantRoom
+ entities:
+ - uid: 276
+ components:
+ - type: Transform
+ pos: -7.5,-15.5
+ parent: 2
+ - uid: 14413
+ components:
+ - type: Transform
+ pos: -7.5,-22.5
+ parent: 2
+ - uid: 14415
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-20.5
+ parent: 2
+- proto: CP14IronDoorBankStaff
+ entities:
+ - uid: 96
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,-4.5
+ parent: 2
+ - uid: 14141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-21.5
+ parent: 2
+ - uid: 14142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-18.5
+ parent: 2
+ - uid: 14148
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,-13.5
+ parent: 2
+ - uid: 14215
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,-9.5
+ parent: 2
+- proto: CP14IronDoorBankVault
+ entities:
+ - uid: 15316
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-2.5
+ parent: 2
+- proto: CP14IronDoorBlacksmith1
+ entities:
+ - uid: 14462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,10.5
+ parent: 2
+ - uid: 14463
+ components:
+ - type: Transform
+ pos: -15.5,3.5
+ parent: 2
+ - uid: 14464
+ components:
+ - type: Transform
+ pos: -14.5,6.5
+ parent: 2
+- proto: CP14IronDoorBlacksmith2
+ entities:
+ - uid: 275
+ components:
+ - type: Transform
+ pos: -18.5,-22.5
+ parent: 2
+ - uid: 14368
+ components:
+ - type: Transform
+ pos: -17.5,-15.5
+ parent: 2
+ - uid: 14369
+ components:
+ - type: Transform
+ pos: -18.5,-24.5
+ parent: 2
+- proto: CP14IronDoorGuard
+ entities:
+ - uid: 208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-10.5
+ parent: 2
+ - uid: 216
+ components:
+ - type: Transform
+ pos: -46.5,-10.5
+ parent: 2
+ - uid: 17709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,-6.5
+ parent: 2
+- proto: CP14IronDoorGuardCommandantRoom
+ entities:
+ - uid: 17710
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-6.5
+ parent: 2
+ - uid: 17712
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-11.5
+ parent: 2
+- proto: CP14IronDoorGuardGuildmaster
+ entities:
+ - uid: 13197
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-10.5
+ parent: 2
+ - uid: 14355
+ components:
+ - type: Transform
+ pos: -11.5,-6.5
+ parent: 2
+ - uid: 14370
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-3.5
+ parent: 2
+- proto: CP14IronDoorGuardWeaponStorage
+ entities:
+ - uid: 17711
+ components:
+ - type: Transform
+ pos: -40.5,-10.5
+ parent: 2
+- proto: CP14IronDoorWindowedBankEntrance
+ entities:
+ - uid: 14144
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-16.5
+ parent: 2
+- proto: CP14IronDoorWindowedGuardEntrance
+ entities:
+ - uid: 17679
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-0.5
+ parent: 2
+- proto: CP14IronDoorWindowedMirroredBankEntrance
+ entities:
+ - uid: 14143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-15.5
+ parent: 2
+- proto: CP14IronDoorWindowedMirroredGuardEntrance
+ entities:
+ - uid: 17678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-1.5
+ parent: 2
+- proto: CP14LaddersDownWoodAutoLink
+ entities:
+ - uid: 34
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,10.5
+ parent: 2
+ - uid: 35
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-23.5
+ parent: 2
+ - uid: 1277
+ components:
+ - type: Transform
+ pos: -28.5,11.5
+ parent: 2
+ - uid: 1278
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -28.5,7.5
+ parent: 2
+ - uid: 1279
+ components:
+ - type: Transform
+ pos: -17.5,27.5
+ parent: 2
+ - uid: 1495
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -28.5,19.5
+ parent: 2
+ - uid: 1561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,11.5
+ parent: 2
+ - uid: 1562
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 2
+ - uid: 5237
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,73.5
+ parent: 2
+ - uid: 5383
+ components:
+ - type: Transform
+ pos: 10.5,-0.5
+ parent: 2
+ - uid: 5384
+ components:
+ - type: Transform
+ pos: 10.5,-4.5
+ parent: 2
+- proto: CP14Lamppost
+ entities:
+ - uid: 576
+ components:
+ - type: Transform
+ pos: -22.5,-41.5
+ parent: 2
+ - uid: 577
+ components:
+ - type: Transform
+ pos: -10.5,-41.5
+ parent: 2
+- proto: CP14LargeWoodenCrate
+ entities:
+ - uid: 708
+ components:
+ - type: Transform
+ pos: -12.234201,-12.25851
+ parent: 2
+ - uid: 14321
+ components:
+ - type: Transform
+ pos: -32.5,-5.5
+ parent: 2
+ - uid: 14326
+ components:
+ - type: Transform
+ pos: -33.5,-12.5
+ parent: 2
+ - uid: 14354
+ components:
+ - type: Transform
+ pos: -7.5,7.5
+ parent: 2
+ - uid: 14568
+ components:
+ - type: Transform
+ pos: -30.967737,-26.469633
+ parent: 2
+ - uid: 15518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,38.5
+ parent: 2
+ - uid: 15519
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,38.5
+ parent: 2
+ - uid: 15521
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-41.5
+ parent: 2
+ - uid: 15522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.274534,-42.072918
+ parent: 2
+ - uid: 15523
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.626575,-42.026043
+ parent: 2
+ - uid: 15524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.376575,-41.197918
+ parent: 2
+- proto: CP14Lighter
+ entities:
+ - uid: 15600
+ components:
+ - type: Transform
+ pos: 31.789822,23.572264
+ parent: 2
+- proto: CP14Lighthouse
+ entities:
+ - uid: 8878
+ components:
+ - type: Transform
+ pos: -43.5,-28.5
+ parent: 2
+- proto: CP14MagicHealingStaff
+ entities:
+ - uid: 14459
+ components:
+ - type: Transform
+ pos: -18.513802,-5.2892327
+ parent: 2
+- proto: CP14Mannequin
+ entities:
+ - uid: 307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-18.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ shirt: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ pants: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ gloves: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ shoes: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ cloak: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 367
+ eyes: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ belt1: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ belt2: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ neck: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ back: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ mask: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ head: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 471
+ keys: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ - uid: 14309
+ components:
+ - type: Transform
+ pos: -30.5,-5.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ shirt: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 14312
+ pants: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 14311
+ gloves: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ shoes: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ cloak: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 14310
+ eyes: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ belt1: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ belt2: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ neck: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ back: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ mask: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ head: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 14313
+ keys: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ - uid: 14314
+ components:
+ - type: Transform
+ pos: -28.5,-5.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ shirt: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 14317
+ pants: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 14316
+ gloves: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ shoes: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ cloak: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 14315
+ eyes: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ belt1: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ belt2: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ neck: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ back: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ mask: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ head: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: 14318
+ keys: !type:ContainerSlot
+ showEnts: False
+ occludes: False
+ ent: null
+ - uid: 14400
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,-7.5
+ parent: 2
+- proto: CP14ModularBladeGoldPickaxe
+ entities:
+ - uid: 14497
+ components:
+ - type: Transform
+ pos: -9.672732,5.9367447
+ parent: 2
+ - uid: 14498
+ components:
+ - type: Transform
+ pos: -9.391482,5.8429947
+ parent: 2
+- proto: CP14ModularBladeIronSword
+ entities:
+ - uid: 14495
+ components:
+ - type: Transform
+ pos: -9.469607,6.3273697
+ parent: 2
+ - uid: 14496
+ components:
+ - type: Transform
+ pos: -9.235232,6.4211197
+ parent: 2
+- proto: CP14ModularGardeSturdyCopper
+ entities:
+ - uid: 14499
+ components:
+ - type: Transform
+ pos: -9.641482,5.3429947
+ parent: 2
+ - uid: 14500
+ components:
+ - type: Transform
+ pos: -9.453982,5.3429947
+ parent: 2
+ - uid: 14501
+ components:
+ - type: Transform
+ pos: -9.282107,5.3429947
+ parent: 2
+ - uid: 14502
+ components:
+ - type: Transform
+ pos: -9.797732,5.3586197
+ parent: 2
+- proto: CP14ModularGripIronLong
+ entities:
+ - uid: 14577
+ components:
+ - type: Transform
+ pos: -10.876527,4.8133364
+ parent: 2
+ - uid: 14588
+ components:
+ - type: Transform
+ pos: -10.595277,4.8133364
+ parent: 2
+- proto: CP14ModularGripLucens
+ entities:
+ - uid: 14595
+ components:
+ - type: Transform
+ pos: -9.282777,4.8289614
+ parent: 2
+- proto: CP14ModularGripWooden
+ entities:
+ - uid: 14590
+ components:
+ - type: Transform
+ pos: -9.876527,4.7508364
+ parent: 2
+ - uid: 14591
+ components:
+ - type: Transform
+ pos: -9.626527,4.7977114
+ parent: 2
+- proto: CP14ModularGuardHalberd
+ entities:
+ - uid: 17775
+ components:
+ - type: Transform
+ pos: -41.54706,-12.972113
+ parent: 2
+ - uid: 17776
+ components:
+ - type: Transform
+ pos: -41.588726,-13.208224
+ parent: 2
+- proto: CP14ModularIronDagger
+ entities:
+ - uid: 17762
+ components:
+ - type: Transform
+ pos: -37.56282,-14.409365
+ parent: 2
+ - uid: 17763
+ components:
+ - type: Transform
+ pos: -37.34754,-14.395475
+ parent: 2
+ - uid: 17764
+ components:
+ - type: Transform
+ pos: -37.04199,-14.381587
+ parent: 2
+- proto: CP14ModularIronSpear
+ entities:
+ - uid: 17767
+ components:
+ - type: Transform
+ pos: -41.741505,-12.216709
+ parent: 2
+ - uid: 17768
+ components:
+ - type: Transform
+ pos: -41.567894,-12.202821
+ parent: 2
+ - uid: 17769
+ components:
+ - type: Transform
+ pos: -41.73456,-12.452821
+ parent: 2
+ - uid: 17770
+ components:
+ - type: Transform
+ pos: -41.59567,-12.376431
+ parent: 2
+- proto: CP14Mortar
+ entities:
+ - uid: 14505
+ components:
+ - type: Transform
+ pos: -3.5238276,-11.370038
+ parent: 2
+ - uid: 15588
+ components:
+ - type: Transform
+ pos: 32.691067,21.63964
+ parent: 2
+- proto: CP14Paper
+ entities:
+ - uid: 1507
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.399113,-9.330111
+ parent: 2
+ - uid: 1509
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.419266,-9.410648
+ parent: 2
+ - uid: 14129
+ components:
+ - type: Transform
+ pos: -29.626743,-21.546852
+ parent: 2
+ - uid: 14130
+ components:
+ - type: Transform
+ pos: -29.314243,-21.578102
+ parent: 2
+ - uid: 14131
+ components:
+ - type: Transform
+ pos: -29.189243,-21.437477
+ parent: 2
+ - uid: 14132
+ components:
+ - type: Transform
+ pos: -29.392368,-21.437477
+ parent: 2
+ - uid: 14232
+ components:
+ - type: Transform
+ pos: -27.620035,-10.22982
+ parent: 2
+ - uid: 14233
+ components:
+ - type: Transform
+ pos: -27.63566,-10.26107
+ parent: 2
+ - uid: 14234
+ components:
+ - type: Transform
+ pos: -27.401285,-10.26107
+ parent: 2
+ - uid: 14235
+ components:
+ - type: Transform
+ pos: -27.213785,-10.26107
+ parent: 2
+ - uid: 14236
+ components:
+ - type: Transform
+ pos: -27.213785,-10.26107
+ parent: 2
+ - uid: 14290
+ components:
+ - type: Transform
+ pos: -29.668482,-17.032093
+ parent: 2
+ - uid: 14291
+ components:
+ - type: Transform
+ pos: -29.262232,-17.032093
+ parent: 2
+ - uid: 14292
+ components:
+ - type: Transform
+ pos: -29.434107,-17.250843
+ parent: 2
+ - uid: 14406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.568979,-7.3279634
+ parent: 2
+ - uid: 14407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.365854,-7.3279634
+ parent: 2
+ - uid: 14408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.225229,-7.2967134
+ parent: 2
+ - uid: 14430
+ components:
+ - type: Transform
+ pos: -2.6759527,-16.341173
+ parent: 2
+ - uid: 14431
+ components:
+ - type: Transform
+ pos: -2.8947027,-16.294298
+ parent: 2
+ - uid: 17662
+ components:
+ - type: Transform
+ pos: -35.948105,-2.3668041
+ parent: 2
+ - uid: 17665
+ components:
+ - type: Transform
+ pos: -35.791855,-2.4293041
+ parent: 2
+- proto: CP14PaperFolderBlue
+ entities:
+ - uid: 14293
+ components:
+ - type: Transform
+ pos: -29.199732,-17.360218
+ parent: 2
+ - uid: 14295
+ components:
+ - type: Transform
+ pos: -26.309107,-10.407094
+ parent: 2
+ - uid: 14409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.537729,-7.2498384
+ parent: 2
+ - uid: 14433
+ components:
+ - type: Transform
+ pos: -3.675953,-16.200548
+ parent: 2
+- proto: CP14PaperFolderRed
+ entities:
+ - uid: 14294
+ components:
+ - type: Transform
+ pos: -26.371607,-10.266469
+ parent: 2
+ - uid: 14410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.397104,-7.2967134
+ parent: 2
+- proto: CP14PenFeather
+ entities:
+ - uid: 14133
+ components:
+ - type: Transform
+ pos: -29.767368,-21.359352
+ parent: 2
+ - uid: 14241
+ components:
+ - type: Transform
+ pos: -26.870035,-10.370445
+ parent: 2
+ - uid: 14432
+ components:
+ - type: Transform
+ pos: -2.2697027,-16.263048
+ parent: 2
+ - uid: 17666
+ components:
+ - type: Transform
+ pos: -36.43248,-2.3980541
+ parent: 2
+- proto: CP14Pestle
+ entities:
+ - uid: 14504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.1957026,-11.135663
+ parent: 2
+ - uid: 15596
+ components:
+ - type: Transform
+ pos: 32.135574,21.199434
+ parent: 2
+- proto: CP14PlantCabbage
+ entities:
+ - uid: 14298
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,38.5
+ parent: 2
+- proto: CP14PlantPotato
+ entities:
+ - uid: 14307
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,37.5
+ parent: 2
+- proto: CP14PlantPotatoDeath
+ entities:
+ - uid: 14503
+ components:
+ - type: Transform
+ pos: -10.5,-7.5
+ parent: 2
+- proto: CP14Plate
+ entities:
+ - uid: 14327
+ components:
+ - type: Transform
+ pos: 11.285028,31.768314
+ parent: 2
+ - uid: 14328
+ components:
+ - type: Transform
+ pos: 11.363736,31.67982
+ parent: 2
+ - uid: 14329
+ components:
+ - type: Transform
+ pos: 11.471958,31.601156
+ parent: 2
+ - uid: 14330
+ components:
+ - type: Transform
+ pos: 11.7277565,31.856812
+ parent: 2
+ - uid: 14331
+ components:
+ - type: Transform
+ pos: 11.845817,31.768314
+ parent: 2
+ - uid: 14332
+ components:
+ - type: Transform
+ pos: 12.003231,31.689651
+ parent: 2
+- proto: CP14RandomBushOffsetSpawner
+ entities:
+ - uid: 79
+ components:
+ - type: Transform
+ pos: -25.5,21.5
+ parent: 2
+ - uid: 102
+ components:
+ - type: Transform
+ pos: -26.5,21.5
+ parent: 2
+ - uid: 707
+ components:
+ - type: Transform
+ pos: -41.5,1.5
+ parent: 2
+ - uid: 13459
+ components:
+ - type: Transform
+ pos: -48.5,-0.5
+ parent: 2
+ - uid: 14320
+ components:
+ - type: Transform
+ pos: -32.5,-8.5
+ parent: 2
+ - uid: 14322
+ components:
+ - type: Transform
+ pos: -32.5,-7.5
+ parent: 2
+ - uid: 14323
+ components:
+ - type: Transform
+ pos: -32.5,-6.5
+ parent: 2
+ - uid: 14351
+ components:
+ - type: Transform
+ pos: -6.5,6.5
+ parent: 2
+ - uid: 14523
+ components:
+ - type: Transform
+ pos: -5.5,6.5
+ parent: 2
+ - uid: 14524
+ components:
+ - type: Transform
+ pos: -1.5,9.5
+ parent: 2
+ - uid: 14525
+ components:
+ - type: Transform
+ pos: -1.5,8.5
+ parent: 2
+ - uid: 14526
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 2
+ - uid: 14527
+ components:
+ - type: Transform
+ pos: -1.5,6.5
+ parent: 2
+ - uid: 14528
+ components:
+ - type: Transform
+ pos: -0.5,-17.5
+ parent: 2
+ - uid: 14529
+ components:
+ - type: Transform
+ pos: -0.5,-16.5
+ parent: 2
+ - uid: 14530
+ components:
+ - type: Transform
+ pos: -0.5,-18.5
+ parent: 2
+ - uid: 14531
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 2
+ - uid: 14532
+ components:
+ - type: Transform
+ pos: -19.5,3.5
+ parent: 2
+ - uid: 14533
+ components:
+ - type: Transform
+ pos: -19.5,2.5
+ parent: 2
+ - uid: 14534
+ components:
+ - type: Transform
+ pos: -18.5,3.5
+ parent: 2
+ - uid: 14535
+ components:
+ - type: Transform
+ pos: -16.5,-2.5
+ parent: 2
+ - uid: 14536
+ components:
+ - type: Transform
+ pos: -17.5,-2.5
+ parent: 2
+ - uid: 14537
+ components:
+ - type: Transform
+ pos: -11.5,-20.5
+ parent: 2
+ - uid: 14538
+ components:
+ - type: Transform
+ pos: -11.5,-2.5
+ parent: 2
+ - uid: 14539
+ components:
+ - type: Transform
+ pos: -11.5,-0.5
+ parent: 2
+ - uid: 14540
+ components:
+ - type: Transform
+ pos: -30.5,9.5
+ parent: 2
+ - uid: 14541
+ components:
+ - type: Transform
+ pos: -29.5,9.5
+ parent: 2
+ - uid: 14542
+ components:
+ - type: Transform
+ pos: -30.5,10.5
+ parent: 2
+ - uid: 14543
+ components:
+ - type: Transform
+ pos: -28.5,15.5
+ parent: 2
+ - uid: 14544
+ components:
+ - type: Transform
+ pos: -29.5,15.5
+ parent: 2
+ - uid: 14545
+ components:
+ - type: Transform
+ pos: -30.5,13.5
+ parent: 2
+ - uid: 14546
+ components:
+ - type: Transform
+ pos: -30.5,18.5
+ parent: 2
+ - uid: 14547
+ components:
+ - type: Transform
+ pos: -30.5,19.5
+ parent: 2
+ - uid: 14589
+ components:
+ - type: Transform
+ pos: -17.5,6.5
+ parent: 2
+ - uid: 14592
+ components:
+ - type: Transform
+ pos: -17.5,5.5
+ parent: 2
+ - uid: 14593
+ components:
+ - type: Transform
+ pos: -17.5,8.5
+ parent: 2
+ - uid: 14596
+ components:
+ - type: Transform
+ pos: -18.5,5.5
+ parent: 2
+ - uid: 15335
+ components:
+ - type: Transform
+ pos: -8.5,10.5
+ parent: 2
+ - uid: 15503
+ components:
+ - type: Transform
+ pos: 22.5,31.5
+ parent: 2
+ - uid: 15504
+ components:
+ - type: Transform
+ pos: 22.5,30.5
+ parent: 2
+ - uid: 15505
+ components:
+ - type: Transform
+ pos: 21.5,30.5
+ parent: 2
+ - uid: 15506
+ components:
+ - type: Transform
+ pos: 20.5,31.5
+ parent: 2
+ - uid: 15507
+ components:
+ - type: Transform
+ pos: 21.5,31.5
+ parent: 2
+ - uid: 15508
+ components:
+ - type: Transform
+ pos: 23.5,30.5
+ parent: 2
+ - uid: 15509
+ components:
+ - type: Transform
+ pos: 28.5,30.5
+ parent: 2
+ - uid: 15510
+ components:
+ - type: Transform
+ pos: 27.5,30.5
+ parent: 2
+ - uid: 15511
+ components:
+ - type: Transform
+ pos: 27.5,31.5
+ parent: 2
+ - uid: 15512
+ components:
+ - type: Transform
+ pos: 26.5,30.5
+ parent: 2
+ - uid: 15513
+ components:
+ - type: Transform
+ pos: 12.5,38.5
+ parent: 2
+ - uid: 15979
+ components:
+ - type: Transform
+ pos: 9.5,20.5
+ parent: 2
+ - uid: 15980
+ components:
+ - type: Transform
+ pos: 10.5,18.5
+ parent: 2
+ - uid: 15981
+ components:
+ - type: Transform
+ pos: 9.5,19.5
+ parent: 2
+ - uid: 15982
+ components:
+ - type: Transform
+ pos: 9.5,17.5
+ parent: 2
+ - uid: 15983
+ components:
+ - type: Transform
+ pos: 8.5,18.5
+ parent: 2
+ - uid: 15985
+ components:
+ - type: Transform
+ pos: 25.5,18.5
+ parent: 2
+ - uid: 15986
+ components:
+ - type: Transform
+ pos: 24.5,17.5
+ parent: 2
+ - uid: 15987
+ components:
+ - type: Transform
+ pos: 25.5,17.5
+ parent: 2
+ - uid: 15988
+ components:
+ - type: Transform
+ pos: 24.5,18.5
+ parent: 2
+ - uid: 15989
+ components:
+ - type: Transform
+ pos: 26.5,17.5
+ parent: 2
+- proto: CP14RockBig
+ entities:
+ - uid: 5260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,24.5
+ parent: 2
+ - uid: 5267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,39.5
+ parent: 2
+ - uid: 5268
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -131.5,49.5
+ parent: 2
+ - uid: 5269
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -118.5,37.5
+ parent: 2
+ - uid: 5270
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -113.5,20.5
+ parent: 2
+ - uid: 5271
+ components:
+ - type: Transform
+ pos: -116.5,30.5
+ parent: 2
+ - uid: 5272
+ components:
+ - type: Transform
+ pos: -106.5,57.5
+ parent: 2
+ - uid: 5275
+ components:
+ - type: Transform
+ pos: -81.5,58.5
+ parent: 2
+ - uid: 5276
+ components:
+ - type: Transform
+ pos: -71.5,62.5
+ parent: 2
+ - uid: 5281
+ components:
+ - type: Transform
+ pos: -96.5,73.5
+ parent: 2
+ - uid: 5283
+ components:
+ - type: Transform
+ pos: -107.5,80.5
+ parent: 2
+ - uid: 5287
+ components:
+ - type: Transform
+ pos: -118.5,60.5
+ parent: 2
+ - uid: 5289
+ components:
+ - type: Transform
+ pos: -95.5,36.5
+ parent: 2
+- proto: CP14RockSmall
+ entities:
+ - uid: 5248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,23.5
+ parent: 2
+ - uid: 5261
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -94.5,22.5
+ parent: 2
+ - uid: 5262
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -107.5,25.5
+ parent: 2
+ - uid: 5263
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -123.5,35.5
+ parent: 2
+ - uid: 5264
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -133.5,40.5
+ parent: 2
+ - uid: 5265
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,45.5
+ parent: 2
+ - uid: 5266
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -128.5,52.5
+ parent: 2
+ - uid: 5273
+ components:
+ - type: Transform
+ pos: -97.5,53.5
+ parent: 2
+ - uid: 5274
+ components:
+ - type: Transform
+ pos: -92.5,46.5
+ parent: 2
+ - uid: 5277
+ components:
+ - type: Transform
+ pos: -67.5,63.5
+ parent: 2
+ - uid: 5278
+ components:
+ - type: Transform
+ pos: -78.5,65.5
+ parent: 2
+ - uid: 5279
+ components:
+ - type: Transform
+ pos: -89.5,68.5
+ parent: 2
+ - uid: 5280
+ components:
+ - type: Transform
+ pos: -87.5,73.5
+ parent: 2
+ - uid: 5282
+ components:
+ - type: Transform
+ pos: -104.5,75.5
+ parent: 2
+ - uid: 5284
+ components:
+ - type: Transform
+ pos: -105.5,82.5
+ parent: 2
+ - uid: 5285
+ components:
+ - type: Transform
+ pos: -110.5,79.5
+ parent: 2
+ - uid: 5286
+ components:
+ - type: Transform
+ pos: -116.5,71.5
+ parent: 2
+ - uid: 5288
+ components:
+ - type: Transform
+ pos: -114.5,56.5
+ parent: 2
+ - uid: 5290
+ components:
+ - type: Transform
+ pos: -93.5,28.5
+ parent: 2
+ - uid: 5291
+ components:
+ - type: Transform
+ pos: -86.5,30.5
+ parent: 2
+ - uid: 5292
+ components:
+ - type: Transform
+ pos: -91.5,33.5
+ parent: 2
+- proto: CP14RoofStone
+ entities:
+ - uid: 5455
+ components:
+ - type: Transform
+ pos: -33.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5456
+ components:
+ - type: Transform
+ pos: -31.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5457
+ components:
+ - type: Transform
+ pos: -34.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5458
+ components:
+ - type: Transform
+ pos: -33.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5459
+ components:
+ - type: Transform
+ pos: -34.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5460
+ components:
+ - type: Transform
+ pos: -33.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5461
+ components:
+ - type: Transform
+ pos: -33.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5462
+ components:
+ - type: Transform
+ pos: -32.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5463
+ components:
+ - type: Transform
+ pos: -32.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5464
+ components:
+ - type: Transform
+ pos: -32.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5465
+ components:
+ - type: Transform
+ pos: -32.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5466
+ components:
+ - type: Transform
+ pos: -35.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5467
+ components:
+ - type: Transform
+ pos: -35.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5468
+ components:
+ - type: Transform
+ pos: -35.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5469
+ components:
+ - type: Transform
+ pos: -35.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5470
+ components:
+ - type: Transform
+ pos: -35.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5471
+ components:
+ - type: Transform
+ pos: -36.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5472
+ components:
+ - type: Transform
+ pos: -34.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5473
+ components:
+ - type: Transform
+ pos: -34.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5474
+ components:
+ - type: Transform
+ pos: -34.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5475
+ components:
+ - type: Transform
+ pos: -37.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5476
+ components:
+ - type: Transform
+ pos: -38.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5477
+ components:
+ - type: Transform
+ pos: -37.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5478
+ components:
+ - type: Transform
+ pos: -37.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5479
+ components:
+ - type: Transform
+ pos: -37.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5480
+ components:
+ - type: Transform
+ pos: -36.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5481
+ components:
+ - type: Transform
+ pos: -36.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5482
+ components:
+ - type: Transform
+ pos: -36.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5483
+ components:
+ - type: Transform
+ pos: -36.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5484
+ components:
+ - type: Transform
+ pos: -39.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5485
+ components:
+ - type: Transform
+ pos: -39.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5486
+ components:
+ - type: Transform
+ pos: -39.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5487
+ components:
+ - type: Transform
+ pos: -39.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5488
+ components:
+ - type: Transform
+ pos: -38.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5489
+ components:
+ - type: Transform
+ pos: -38.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5490
+ components:
+ - type: Transform
+ pos: -38.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5491
+ components:
+ - type: Transform
+ pos: -38.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5492
+ components:
+ - type: Transform
+ pos: -37.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5493
+ components:
+ - type: Transform
+ pos: -41.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5494
+ components:
+ - type: Transform
+ pos: -41.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5495
+ components:
+ - type: Transform
+ pos: -41.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5496
+ components:
+ - type: Transform
+ pos: -40.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5497
+ components:
+ - type: Transform
+ pos: -40.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5498
+ components:
+ - type: Transform
+ pos: -40.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5499
+ components:
+ - type: Transform
+ pos: -40.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5500
+ components:
+ - type: Transform
+ pos: -40.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5501
+ components:
+ - type: Transform
+ pos: -39.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5502
+ components:
+ - type: Transform
+ pos: -43.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5503
+ components:
+ - type: Transform
+ pos: -43.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5504
+ components:
+ - type: Transform
+ pos: -42.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5505
+ components:
+ - type: Transform
+ pos: -42.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5506
+ components:
+ - type: Transform
+ pos: -42.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5507
+ components:
+ - type: Transform
+ pos: -42.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5508
+ components:
+ - type: Transform
+ pos: -41.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5509
+ components:
+ - type: Transform
+ pos: -42.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5510
+ components:
+ - type: Transform
+ pos: -41.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5511
+ components:
+ - type: Transform
+ pos: -44.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5512
+ components:
+ - type: Transform
+ pos: -44.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5513
+ components:
+ - type: Transform
+ pos: -44.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5514
+ components:
+ - type: Transform
+ pos: -44.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5515
+ components:
+ - type: Transform
+ pos: -44.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5516
+ components:
+ - type: Transform
+ pos: -43.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5517
+ components:
+ - type: Transform
+ pos: -43.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5518
+ components:
+ - type: Transform
+ pos: -43.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5519
+ components:
+ - type: Transform
+ pos: -31.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5520
+ components:
+ - type: Transform
+ pos: -31.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5521
+ components:
+ - type: Transform
+ pos: -31.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5522
+ components:
+ - type: Transform
+ pos: -31.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5523
+ components:
+ - type: Transform
+ pos: -33.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5524
+ components:
+ - type: Transform
+ pos: -32.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14200
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14201
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14617
+ components:
+ - type: Transform
+ pos: 31.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14635
+ components:
+ - type: Transform
+ pos: 31.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14648
+ components:
+ - type: Transform
+ pos: 17.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14649
+ components:
+ - type: Transform
+ pos: 17.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14650
+ components:
+ - type: Transform
+ pos: 17.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14651
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14652
+ components:
+ - type: Transform
+ pos: 18.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14653
+ components:
+ - type: Transform
+ pos: 18.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14654
+ components:
+ - type: Transform
+ pos: 18.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14655
+ components:
+ - type: Transform
+ pos: 19.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14656
+ components:
+ - type: Transform
+ pos: 19.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14657
+ components:
+ - type: Transform
+ pos: 19.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14658
+ components:
+ - type: Transform
+ pos: 19.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14659
+ components:
+ - type: Transform
+ pos: 20.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14660
+ components:
+ - type: Transform
+ pos: 20.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14661
+ components:
+ - type: Transform
+ pos: 20.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14662
+ components:
+ - type: Transform
+ pos: 20.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14663
+ components:
+ - type: Transform
+ pos: 18.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14664
+ components:
+ - type: Transform
+ pos: 21.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14665
+ components:
+ - type: Transform
+ pos: 21.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14666
+ components:
+ - type: Transform
+ pos: 21.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14667
+ components:
+ - type: Transform
+ pos: 22.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14670
+ components:
+ - type: Transform
+ pos: 23.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14672
+ components:
+ - type: Transform
+ pos: 24.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14673
+ components:
+ - type: Transform
+ pos: 24.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14674
+ components:
+ - type: Transform
+ pos: 22.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14675
+ components:
+ - type: Transform
+ pos: 25.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14676
+ components:
+ - type: Transform
+ pos: 25.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14677
+ components:
+ - type: Transform
+ pos: 25.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14678
+ components:
+ - type: Transform
+ pos: 26.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14679
+ components:
+ - type: Transform
+ pos: 26.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14680
+ components:
+ - type: Transform
+ pos: 26.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14681
+ components:
+ - type: Transform
+ pos: 27.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14682
+ components:
+ - type: Transform
+ pos: 27.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14683
+ components:
+ - type: Transform
+ pos: 27.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14684
+ components:
+ - type: Transform
+ pos: 28.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14685
+ components:
+ - type: Transform
+ pos: 28.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14686
+ components:
+ - type: Transform
+ pos: 28.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14687
+ components:
+ - type: Transform
+ pos: 29.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14688
+ components:
+ - type: Transform
+ pos: 29.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14689
+ components:
+ - type: Transform
+ pos: 29.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14690
+ components:
+ - type: Transform
+ pos: 30.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14691
+ components:
+ - type: Transform
+ pos: 31.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14693
+ components:
+ - type: Transform
+ pos: 31.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14694
+ components:
+ - type: Transform
+ pos: 31.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14696
+ components:
+ - type: Transform
+ pos: 23.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14697
+ components:
+ - type: Transform
+ pos: 31.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14698
+ components:
+ - type: Transform
+ pos: 31.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14699
+ components:
+ - type: Transform
+ pos: 31.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14700
+ components:
+ - type: Transform
+ pos: 31.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14701
+ components:
+ - type: Transform
+ pos: 30.5,15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14702
+ components:
+ - type: Transform
+ pos: 30.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14703
+ components:
+ - type: Transform
+ pos: 30.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14704
+ components:
+ - type: Transform
+ pos: 30.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14705
+ components:
+ - type: Transform
+ pos: 30.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14706
+ components:
+ - type: Transform
+ pos: 30.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14707
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14708
+ components:
+ - type: Transform
+ pos: 30.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14709
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14710
+ components:
+ - type: Transform
+ pos: 29.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14711
+ components:
+ - type: Transform
+ pos: 29.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14712
+ components:
+ - type: Transform
+ pos: 29.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14713
+ components:
+ - type: Transform
+ pos: 29.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14714
+ components:
+ - type: Transform
+ pos: 29.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14715
+ components:
+ - type: Transform
+ pos: 28.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14716
+ components:
+ - type: Transform
+ pos: 28.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14717
+ components:
+ - type: Transform
+ pos: 27.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14718
+ components:
+ - type: Transform
+ pos: 26.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14719
+ components:
+ - type: Transform
+ pos: 27.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14720
+ components:
+ - type: Transform
+ pos: 28.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14721
+ components:
+ - type: Transform
+ pos: 24.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14722
+ components:
+ - type: Transform
+ pos: 24.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14723
+ components:
+ - type: Transform
+ pos: 24.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14724
+ components:
+ - type: Transform
+ pos: 24.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14725
+ components:
+ - type: Transform
+ pos: 25.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14726
+ components:
+ - type: Transform
+ pos: 25.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14727
+ components:
+ - type: Transform
+ pos: 25.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14728
+ components:
+ - type: Transform
+ pos: 26.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14729
+ components:
+ - type: Transform
+ pos: 26.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14730
+ components:
+ - type: Transform
+ pos: 26.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14731
+ components:
+ - type: Transform
+ pos: 26.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14732
+ components:
+ - type: Transform
+ pos: 25.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14733
+ components:
+ - type: Transform
+ pos: 24.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14734
+ components:
+ - type: Transform
+ pos: 24.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14735
+ components:
+ - type: Transform
+ pos: 25.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14736
+ components:
+ - type: Transform
+ pos: 25.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14737
+ components:
+ - type: Transform
+ pos: 26.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14738
+ components:
+ - type: Transform
+ pos: 26.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14739
+ components:
+ - type: Transform
+ pos: 27.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14740
+ components:
+ - type: Transform
+ pos: 27.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14741
+ components:
+ - type: Transform
+ pos: 28.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14742
+ components:
+ - type: Transform
+ pos: 29.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14743
+ components:
+ - type: Transform
+ pos: 29.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14744
+ components:
+ - type: Transform
+ pos: 30.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14745
+ components:
+ - type: Transform
+ pos: 30.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14746
+ components:
+ - type: Transform
+ pos: 28.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14747
+ components:
+ - type: Transform
+ pos: 30.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14748
+ components:
+ - type: Transform
+ pos: 29.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14749
+ components:
+ - type: Transform
+ pos: 28.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14750
+ components:
+ - type: Transform
+ pos: 27.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14751
+ components:
+ - type: Transform
+ pos: 29.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14752
+ components:
+ - type: Transform
+ pos: 28.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14753
+ components:
+ - type: Transform
+ pos: 27.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14754
+ components:
+ - type: Transform
+ pos: 27.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14755
+ components:
+ - type: Transform
+ pos: 28.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14756
+ components:
+ - type: Transform
+ pos: 19.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14757
+ components:
+ - type: Transform
+ pos: 19.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14758
+ components:
+ - type: Transform
+ pos: 18.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14759
+ components:
+ - type: Transform
+ pos: 18.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14760
+ components:
+ - type: Transform
+ pos: 17.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14761
+ components:
+ - type: Transform
+ pos: 17.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14762
+ components:
+ - type: Transform
+ pos: 17.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14763
+ components:
+ - type: Transform
+ pos: 18.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14764
+ components:
+ - type: Transform
+ pos: 18.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14765
+ components:
+ - type: Transform
+ pos: 17.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14766
+ components:
+ - type: Transform
+ pos: 20.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16027
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16028
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16029
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16030
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16031
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16032
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16033
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16034
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16035
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16036
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16037
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16038
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16039
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16040
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16041
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16042
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16043
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16044
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16045
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16048
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16050
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16051
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16052
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16053
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16054
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16055
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16056
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16057
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16058
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16059
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16060
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16061
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16062
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16063
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16064
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16065
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16067
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16068
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16069
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16071
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16073
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16074
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16075
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16076
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16077
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16078
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16079
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16080
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16081
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16082
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16084
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16085
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16086
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16087
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16088
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16089
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16090
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16091
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16092
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16093
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16094
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16095
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16096
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16097
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16098
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16099
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16100
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16101
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16105
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16106
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16107
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16109
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16112
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16113
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16116
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16132
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16133
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16134
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16135
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16136
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16137
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16138
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16139
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16140
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16141
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16142
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16143
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16144
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16148
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16149
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16150
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16158
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16160
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16161
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16162
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16164
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16166
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16168
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16171
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16178
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16184
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16185
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16188
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16189
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16190
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16191
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16192
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16193
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16194
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16195
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16196
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16197
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16198
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16199
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16200
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16201
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16202
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16203
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16205
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16208
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16209
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16211
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16212
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16213
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16214
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16216
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16218
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16219
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16221
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16222
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16223
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16226
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16231
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16232
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16233
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16234
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16235
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16236
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16237
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16238
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16239
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16240
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16241
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16242
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16243
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16244
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16245
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16246
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16247
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16248
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16249
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16250
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16251
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16255
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16257
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16260
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16261
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16266
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16268
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16269
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16270
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16272
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16273
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16274
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16276
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16277
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16278
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16279
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16280
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16282
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16285
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16287
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16289
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16290
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16291
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16293
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16294
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16295
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16297
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16298
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16299
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16300
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16301
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16302
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16303
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16304
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16307
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16308
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16310
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16311
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16312
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16313
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16314
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16315
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16316
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16317
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16318
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16319
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16321
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16322
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16323
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16326
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16327
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16328
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16329
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16330
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16331
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16332
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16333
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16337
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16340
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16341
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16352
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16353
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16355
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16363
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16364
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16369
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16372
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16373
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16377
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16378
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16379
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16380
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16381
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16382
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16383
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16384
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16387
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16388
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16389
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16390
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16391
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16393
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16394
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16406
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16409
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16411
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16415
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16418
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16419
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16420
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16421
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16424
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16426
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16429
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16430
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16431
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16432
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16433
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16434
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16435
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16436
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16437
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16438
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16439
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16440
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16441
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16442
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16443
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16444
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16446
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16447
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16448
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16449
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16450
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16457
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16458
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16459
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16462
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16463
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16464
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16466
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16467
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16469
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16470
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16471
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16472
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16476
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16479
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16480
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16481
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16488
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16489
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16491
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16493
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16495
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16498
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16502
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16505
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16506
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16508
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16511
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16512
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16516
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16517
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16519
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16520
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16521
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16523
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16527
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16528
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16532
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16534
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16535
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16536
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17554
+ components:
+ - type: Transform
+ pos: 5.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17555
+ components:
+ - type: Transform
+ pos: 5.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17556
+ components:
+ - type: Transform
+ pos: 5.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17557
+ components:
+ - type: Transform
+ pos: 5.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17558
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17559
+ components:
+ - type: Transform
+ pos: 5.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17560
+ components:
+ - type: Transform
+ pos: 6.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17561
+ components:
+ - type: Transform
+ pos: 6.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17562
+ components:
+ - type: Transform
+ pos: 6.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17563
+ components:
+ - type: Transform
+ pos: 6.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17564
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17565
+ components:
+ - type: Transform
+ pos: 6.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17566
+ components:
+ - type: Transform
+ pos: 7.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17567
+ components:
+ - type: Transform
+ pos: 7.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17568
+ components:
+ - type: Transform
+ pos: 7.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17569
+ components:
+ - type: Transform
+ pos: 7.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17570
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17571
+ components:
+ - type: Transform
+ pos: 7.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17572
+ components:
+ - type: Transform
+ pos: 8.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17573
+ components:
+ - type: Transform
+ pos: 8.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17574
+ components:
+ - type: Transform
+ pos: 8.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17575
+ components:
+ - type: Transform
+ pos: 8.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17576
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17577
+ components:
+ - type: Transform
+ pos: 8.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17578
+ components:
+ - type: Transform
+ pos: 9.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17579
+ components:
+ - type: Transform
+ pos: 9.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17580
+ components:
+ - type: Transform
+ pos: 9.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17581
+ components:
+ - type: Transform
+ pos: 9.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17582
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17583
+ components:
+ - type: Transform
+ pos: 9.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17584
+ components:
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17585
+ components:
+ - type: Transform
+ pos: 6.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17586
+ components:
+ - type: Transform
+ pos: 6.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17587
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17588
+ components:
+ - type: Transform
+ pos: 6.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17589
+ components:
+ - type: Transform
+ pos: 6.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17590
+ components:
+ - type: Transform
+ pos: 6.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17591
+ components:
+ - type: Transform
+ pos: 6.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17592
+ components:
+ - type: Transform
+ pos: 6.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17593
+ components:
+ - type: Transform
+ pos: 7.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17594
+ components:
+ - type: Transform
+ pos: 7.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17595
+ components:
+ - type: Transform
+ pos: 7.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17596
+ components:
+ - type: Transform
+ pos: 7.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17597
+ components:
+ - type: Transform
+ pos: 7.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17598
+ components:
+ - type: Transform
+ pos: 7.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17599
+ components:
+ - type: Transform
+ pos: 7.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17600
+ components:
+ - type: Transform
+ pos: 7.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17601
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17602
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17603
+ components:
+ - type: Transform
+ pos: 7.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17604
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17605
+ components:
+ - type: Transform
+ pos: 8.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17606
+ components:
+ - type: Transform
+ pos: 8.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17607
+ components:
+ - type: Transform
+ pos: 8.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17608
+ components:
+ - type: Transform
+ pos: 8.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17609
+ components:
+ - type: Transform
+ pos: 8.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17610
+ components:
+ - type: Transform
+ pos: 8.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17611
+ components:
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17612
+ components:
+ - type: Transform
+ pos: 9.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17613
+ components:
+ - type: Transform
+ pos: 9.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17614
+ components:
+ - type: Transform
+ pos: 9.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17615
+ components:
+ - type: Transform
+ pos: 9.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17616
+ components:
+ - type: Transform
+ pos: 9.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17617
+ components:
+ - type: Transform
+ pos: 9.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17618
+ components:
+ - type: Transform
+ pos: 9.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17619
+ components:
+ - type: Transform
+ pos: 9.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17620
+ components:
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17621
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17622
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17623
+ components:
+ - type: Transform
+ pos: 10.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17624
+ components:
+ - type: Transform
+ pos: 10.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17625
+ components:
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17626
+ components:
+ - type: Transform
+ pos: 10.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17627
+ components:
+ - type: Transform
+ pos: 10.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17628
+ components:
+ - type: Transform
+ pos: 10.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17629
+ components:
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17630
+ components:
+ - type: Transform
+ pos: 11.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17631
+ components:
+ - type: Transform
+ pos: 11.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17632
+ components:
+ - type: Transform
+ pos: 11.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17633
+ components:
+ - type: Transform
+ pos: 11.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17634
+ components:
+ - type: Transform
+ pos: 11.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17635
+ components:
+ - type: Transform
+ pos: 11.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17636
+ components:
+ - type: Transform
+ pos: 11.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17637
+ components:
+ - type: Transform
+ pos: 11.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17638
+ components:
+ - type: Transform
+ pos: 13.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17639
+ components:
+ - type: Transform
+ pos: 13.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17640
+ components:
+ - type: Transform
+ pos: 14.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17641
+ components:
+ - type: Transform
+ pos: 14.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17642
+ components:
+ - type: Transform
+ pos: 15.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17643
+ components:
+ - type: Transform
+ pos: 16.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17644
+ components:
+ - type: Transform
+ pos: 17.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17645
+ components:
+ - type: Transform
+ pos: 17.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17646
+ components:
+ - type: Transform
+ pos: 16.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17647
+ components:
+ - type: Transform
+ pos: 17.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17648
+ components:
+ - type: Transform
+ pos: 17.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17649
+ components:
+ - type: Transform
+ pos: 17.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17650
+ components:
+ - type: Transform
+ pos: 17.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17651
+ components:
+ - type: Transform
+ pos: 15.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17652
+ components:
+ - type: Transform
+ pos: 13.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17653
+ components:
+ - type: Transform
+ pos: 13.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17654
+ components:
+ - type: Transform
+ pos: 13.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17655
+ components:
+ - type: Transform
+ pos: 13.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17656
+ components:
+ - type: Transform
+ pos: 14.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17657
+ components:
+ - type: Transform
+ pos: 15.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17658
+ components:
+ - type: Transform
+ pos: 16.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17659
+ components:
+ - type: Transform
+ pos: 16.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17660
+ components:
+ - type: Transform
+ pos: 14.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17661
+ components:
+ - type: Transform
+ pos: 14.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17668
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17676
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17677
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17680
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17683
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17684
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17690
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17693
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17695
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17704
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17706
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17708
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14RoofWooden
+ entities:
+ - uid: 5331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,66.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5332
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,67.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,68.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5334
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,69.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5335
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,70.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5336
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,71.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5337
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,70.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5338
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,66.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5339
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,67.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5340
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,68.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5341
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,69.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,70.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5343
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,71.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5344
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,66.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5345
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,67.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,68.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,69.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5348
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,70.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5349
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,71.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5350
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,66.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5351
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,67.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5352
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,68.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,69.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,70.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5355
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,71.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5356
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,66.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5357
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,67.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5358
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,68.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5359
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,69.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5360
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,71.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,66.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5362
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,67.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,68.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5364
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,69.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,70.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5366
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,71.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5367
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,66.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,67.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5369
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,68.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5370
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,69.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5371
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,70.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5372
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,71.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16549
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16550
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16551
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16552
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16553
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16554
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16555
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16556
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16558
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16572
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16573
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16574
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16576
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16577
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16578
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16579
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16580
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16581
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16582
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16583
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16584
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16585
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16586
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16587
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16588
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16589
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16594
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16597
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16598
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16599
+ components:
+ - type: Transform
+ pos: -22.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16600
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16603
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16605
+ components:
+ - type: Transform
+ pos: -22.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16606
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16607
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16609
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16611
+ components:
+ - type: Transform
+ pos: -22.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16615
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16616
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16617
+ components:
+ - type: Transform
+ pos: -22.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16623
+ components:
+ - type: Transform
+ pos: -22.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16626
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16628
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16629
+ components:
+ - type: Transform
+ pos: -21.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16630
+ components:
+ - type: Transform
+ pos: -21.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16631
+ components:
+ - type: Transform
+ pos: -21.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16632
+ components:
+ - type: Transform
+ pos: -21.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16633
+ components:
+ - type: Transform
+ pos: -21.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16634
+ components:
+ - type: Transform
+ pos: -20.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16635
+ components:
+ - type: Transform
+ pos: -20.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16636
+ components:
+ - type: Transform
+ pos: -20.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16637
+ components:
+ - type: Transform
+ pos: -20.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16638
+ components:
+ - type: Transform
+ pos: -20.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16639
+ components:
+ - type: Transform
+ pos: -19.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16640
+ components:
+ - type: Transform
+ pos: -19.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16641
+ components:
+ - type: Transform
+ pos: -19.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16642
+ components:
+ - type: Transform
+ pos: -19.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16643
+ components:
+ - type: Transform
+ pos: -19.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16644
+ components:
+ - type: Transform
+ pos: -18.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16645
+ components:
+ - type: Transform
+ pos: -18.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16646
+ components:
+ - type: Transform
+ pos: -18.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16647
+ components:
+ - type: Transform
+ pos: -18.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16648
+ components:
+ - type: Transform
+ pos: -18.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16649
+ components:
+ - type: Transform
+ pos: -17.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16650
+ components:
+ - type: Transform
+ pos: -17.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16651
+ components:
+ - type: Transform
+ pos: -17.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16652
+ components:
+ - type: Transform
+ pos: -17.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16653
+ components:
+ - type: Transform
+ pos: -17.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16654
+ components:
+ - type: Transform
+ pos: -16.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16655
+ components:
+ - type: Transform
+ pos: -16.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16656
+ components:
+ - type: Transform
+ pos: -16.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16657
+ components:
+ - type: Transform
+ pos: -16.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16658
+ components:
+ - type: Transform
+ pos: -16.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16659
+ components:
+ - type: Transform
+ pos: -15.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16660
+ components:
+ - type: Transform
+ pos: -15.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16661
+ components:
+ - type: Transform
+ pos: -15.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16662
+ components:
+ - type: Transform
+ pos: -15.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16663
+ components:
+ - type: Transform
+ pos: -15.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16664
+ components:
+ - type: Transform
+ pos: -14.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16665
+ components:
+ - type: Transform
+ pos: -14.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16666
+ components:
+ - type: Transform
+ pos: -14.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16667
+ components:
+ - type: Transform
+ pos: -14.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16668
+ components:
+ - type: Transform
+ pos: -14.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16669
+ components:
+ - type: Transform
+ pos: -13.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16670
+ components:
+ - type: Transform
+ pos: -13.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16671
+ components:
+ - type: Transform
+ pos: -13.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16672
+ components:
+ - type: Transform
+ pos: -13.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16673
+ components:
+ - type: Transform
+ pos: -13.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16674
+ components:
+ - type: Transform
+ pos: -12.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16675
+ components:
+ - type: Transform
+ pos: -12.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16676
+ components:
+ - type: Transform
+ pos: -12.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16677
+ components:
+ - type: Transform
+ pos: -12.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16678
+ components:
+ - type: Transform
+ pos: -12.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16679
+ components:
+ - type: Transform
+ pos: -11.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16680
+ components:
+ - type: Transform
+ pos: -11.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16681
+ components:
+ - type: Transform
+ pos: -11.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16682
+ components:
+ - type: Transform
+ pos: -11.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16683
+ components:
+ - type: Transform
+ pos: -11.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16684
+ components:
+ - type: Transform
+ pos: -10.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16685
+ components:
+ - type: Transform
+ pos: -10.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16686
+ components:
+ - type: Transform
+ pos: -10.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16687
+ components:
+ - type: Transform
+ pos: -10.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16688
+ components:
+ - type: Transform
+ pos: -10.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16689
+ components:
+ - type: Transform
+ pos: -9.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16690
+ components:
+ - type: Transform
+ pos: -9.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16691
+ components:
+ - type: Transform
+ pos: -9.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16692
+ components:
+ - type: Transform
+ pos: -9.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16693
+ components:
+ - type: Transform
+ pos: -9.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16694
+ components:
+ - type: Transform
+ pos: -10.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16695
+ components:
+ - type: Transform
+ pos: -10.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16696
+ components:
+ - type: Transform
+ pos: -10.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16697
+ components:
+ - type: Transform
+ pos: -10.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16698
+ components:
+ - type: Transform
+ pos: -11.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16699
+ components:
+ - type: Transform
+ pos: -11.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16700
+ components:
+ - type: Transform
+ pos: -11.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16701
+ components:
+ - type: Transform
+ pos: -11.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16702
+ components:
+ - type: Transform
+ pos: -11.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16703
+ components:
+ - type: Transform
+ pos: -12.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16704
+ components:
+ - type: Transform
+ pos: -10.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16705
+ components:
+ - type: Transform
+ pos: -12.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16706
+ components:
+ - type: Transform
+ pos: -12.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16707
+ components:
+ - type: Transform
+ pos: -12.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16708
+ components:
+ - type: Transform
+ pos: -12.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16709
+ components:
+ - type: Transform
+ pos: -13.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16710
+ components:
+ - type: Transform
+ pos: -13.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16711
+ components:
+ - type: Transform
+ pos: -13.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16712
+ components:
+ - type: Transform
+ pos: -13.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16713
+ components:
+ - type: Transform
+ pos: -13.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16714
+ components:
+ - type: Transform
+ pos: -14.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16715
+ components:
+ - type: Transform
+ pos: -14.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16716
+ components:
+ - type: Transform
+ pos: -14.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16717
+ components:
+ - type: Transform
+ pos: -14.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16718
+ components:
+ - type: Transform
+ pos: -14.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16719
+ components:
+ - type: Transform
+ pos: -15.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16720
+ components:
+ - type: Transform
+ pos: -15.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16721
+ components:
+ - type: Transform
+ pos: -15.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16722
+ components:
+ - type: Transform
+ pos: -15.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16723
+ components:
+ - type: Transform
+ pos: -15.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16724
+ components:
+ - type: Transform
+ pos: -16.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16725
+ components:
+ - type: Transform
+ pos: -16.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16726
+ components:
+ - type: Transform
+ pos: -16.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16727
+ components:
+ - type: Transform
+ pos: -16.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16728
+ components:
+ - type: Transform
+ pos: -16.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16729
+ components:
+ - type: Transform
+ pos: -17.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16730
+ components:
+ - type: Transform
+ pos: -17.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16731
+ components:
+ - type: Transform
+ pos: -17.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16732
+ components:
+ - type: Transform
+ pos: -17.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16733
+ components:
+ - type: Transform
+ pos: -17.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16734
+ components:
+ - type: Transform
+ pos: -18.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16735
+ components:
+ - type: Transform
+ pos: -18.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16736
+ components:
+ - type: Transform
+ pos: -18.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16737
+ components:
+ - type: Transform
+ pos: -18.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16738
+ components:
+ - type: Transform
+ pos: -18.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16739
+ components:
+ - type: Transform
+ pos: -6.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16740
+ components:
+ - type: Transform
+ pos: -6.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16741
+ components:
+ - type: Transform
+ pos: -6.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16742
+ components:
+ - type: Transform
+ pos: -6.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16743
+ components:
+ - type: Transform
+ pos: -6.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16744
+ components:
+ - type: Transform
+ pos: -6.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16745
+ components:
+ - type: Transform
+ pos: -6.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16746
+ components:
+ - type: Transform
+ pos: -6.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16747
+ components:
+ - type: Transform
+ pos: -6.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16748
+ components:
+ - type: Transform
+ pos: -5.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16749
+ components:
+ - type: Transform
+ pos: -5.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16750
+ components:
+ - type: Transform
+ pos: -5.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16751
+ components:
+ - type: Transform
+ pos: -5.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16752
+ components:
+ - type: Transform
+ pos: -5.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16753
+ components:
+ - type: Transform
+ pos: -5.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16754
+ components:
+ - type: Transform
+ pos: -5.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16755
+ components:
+ - type: Transform
+ pos: -5.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16756
+ components:
+ - type: Transform
+ pos: -5.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16757
+ components:
+ - type: Transform
+ pos: -4.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16758
+ components:
+ - type: Transform
+ pos: -4.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16759
+ components:
+ - type: Transform
+ pos: -4.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16760
+ components:
+ - type: Transform
+ pos: -4.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16761
+ components:
+ - type: Transform
+ pos: -4.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16762
+ components:
+ - type: Transform
+ pos: -4.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16763
+ components:
+ - type: Transform
+ pos: -4.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16764
+ components:
+ - type: Transform
+ pos: -4.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16765
+ components:
+ - type: Transform
+ pos: -4.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16766
+ components:
+ - type: Transform
+ pos: -3.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16767
+ components:
+ - type: Transform
+ pos: -3.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16768
+ components:
+ - type: Transform
+ pos: -3.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16769
+ components:
+ - type: Transform
+ pos: -3.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16770
+ components:
+ - type: Transform
+ pos: -3.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16771
+ components:
+ - type: Transform
+ pos: -3.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16772
+ components:
+ - type: Transform
+ pos: -3.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16773
+ components:
+ - type: Transform
+ pos: -3.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16774
+ components:
+ - type: Transform
+ pos: -3.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16775
+ components:
+ - type: Transform
+ pos: -2.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16776
+ components:
+ - type: Transform
+ pos: -2.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16777
+ components:
+ - type: Transform
+ pos: -2.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16778
+ components:
+ - type: Transform
+ pos: -2.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16779
+ components:
+ - type: Transform
+ pos: -2.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16780
+ components:
+ - type: Transform
+ pos: -2.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16781
+ components:
+ - type: Transform
+ pos: -2.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16782
+ components:
+ - type: Transform
+ pos: -2.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16783
+ components:
+ - type: Transform
+ pos: -2.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16784
+ components:
+ - type: Transform
+ pos: -1.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16785
+ components:
+ - type: Transform
+ pos: -1.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16786
+ components:
+ - type: Transform
+ pos: -1.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16787
+ components:
+ - type: Transform
+ pos: -1.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16788
+ components:
+ - type: Transform
+ pos: -1.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16789
+ components:
+ - type: Transform
+ pos: -1.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16790
+ components:
+ - type: Transform
+ pos: -1.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16791
+ components:
+ - type: Transform
+ pos: -1.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16792
+ components:
+ - type: Transform
+ pos: -1.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16793
+ components:
+ - type: Transform
+ pos: -0.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16794
+ components:
+ - type: Transform
+ pos: -0.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16795
+ components:
+ - type: Transform
+ pos: -0.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16796
+ components:
+ - type: Transform
+ pos: -0.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16797
+ components:
+ - type: Transform
+ pos: -0.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16798
+ components:
+ - type: Transform
+ pos: -0.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16799
+ components:
+ - type: Transform
+ pos: -0.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16800
+ components:
+ - type: Transform
+ pos: -0.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16801
+ components:
+ - type: Transform
+ pos: -0.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16802
+ components:
+ - type: Transform
+ pos: 0.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16803
+ components:
+ - type: Transform
+ pos: 0.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16804
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16805
+ components:
+ - type: Transform
+ pos: 0.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16806
+ components:
+ - type: Transform
+ pos: 0.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16807
+ components:
+ - type: Transform
+ pos: 0.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16808
+ components:
+ - type: Transform
+ pos: 0.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16809
+ components:
+ - type: Transform
+ pos: 0.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16810
+ components:
+ - type: Transform
+ pos: 0.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16811
+ components:
+ - type: Transform
+ pos: 1.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16812
+ components:
+ - type: Transform
+ pos: 1.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16813
+ components:
+ - type: Transform
+ pos: 1.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16814
+ components:
+ - type: Transform
+ pos: 1.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16815
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16816
+ components:
+ - type: Transform
+ pos: 1.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16817
+ components:
+ - type: Transform
+ pos: 1.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16818
+ components:
+ - type: Transform
+ pos: 1.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16819
+ components:
+ - type: Transform
+ pos: 1.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16820
+ components:
+ - type: Transform
+ pos: 2.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16821
+ components:
+ - type: Transform
+ pos: 2.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16822
+ components:
+ - type: Transform
+ pos: 2.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16823
+ components:
+ - type: Transform
+ pos: 2.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16824
+ components:
+ - type: Transform
+ pos: 2.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16825
+ components:
+ - type: Transform
+ pos: 2.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16826
+ components:
+ - type: Transform
+ pos: 2.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16827
+ components:
+ - type: Transform
+ pos: 2.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16828
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16829
+ components:
+ - type: Transform
+ pos: 3.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16830
+ components:
+ - type: Transform
+ pos: 3.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16831
+ components:
+ - type: Transform
+ pos: 3.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16832
+ components:
+ - type: Transform
+ pos: 3.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16833
+ components:
+ - type: Transform
+ pos: 3.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16834
+ components:
+ - type: Transform
+ pos: 3.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16835
+ components:
+ - type: Transform
+ pos: 3.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16836
+ components:
+ - type: Transform
+ pos: 3.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16837
+ components:
+ - type: Transform
+ pos: 3.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16838
+ components:
+ - type: Transform
+ pos: 4.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16839
+ components:
+ - type: Transform
+ pos: 4.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16840
+ components:
+ - type: Transform
+ pos: 4.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16841
+ components:
+ - type: Transform
+ pos: 4.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16842
+ components:
+ - type: Transform
+ pos: 4.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16843
+ components:
+ - type: Transform
+ pos: 4.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16844
+ components:
+ - type: Transform
+ pos: 4.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16845
+ components:
+ - type: Transform
+ pos: 4.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16846
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16847
+ components:
+ - type: Transform
+ pos: 5.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16848
+ components:
+ - type: Transform
+ pos: 5.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16849
+ components:
+ - type: Transform
+ pos: 5.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16850
+ components:
+ - type: Transform
+ pos: 5.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16851
+ components:
+ - type: Transform
+ pos: 5.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16852
+ components:
+ - type: Transform
+ pos: 5.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16853
+ components:
+ - type: Transform
+ pos: 5.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16854
+ components:
+ - type: Transform
+ pos: 5.5,17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16855
+ components:
+ - type: Transform
+ pos: 5.5,16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16856
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16857
+ components:
+ - type: Transform
+ pos: -2.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16858
+ components:
+ - type: Transform
+ pos: -2.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16859
+ components:
+ - type: Transform
+ pos: -2.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16860
+ components:
+ - type: Transform
+ pos: -2.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16861
+ components:
+ - type: Transform
+ pos: -2.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16862
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16863
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16864
+ components:
+ - type: Transform
+ pos: -3.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16865
+ components:
+ - type: Transform
+ pos: -3.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16866
+ components:
+ - type: Transform
+ pos: -3.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16867
+ components:
+ - type: Transform
+ pos: -3.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16868
+ components:
+ - type: Transform
+ pos: -4.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16869
+ components:
+ - type: Transform
+ pos: -4.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16870
+ components:
+ - type: Transform
+ pos: -4.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16871
+ components:
+ - type: Transform
+ pos: -4.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16872
+ components:
+ - type: Transform
+ pos: -4.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16873
+ components:
+ - type: Transform
+ pos: -4.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16874
+ components:
+ - type: Transform
+ pos: -5.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16875
+ components:
+ - type: Transform
+ pos: -5.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16876
+ components:
+ - type: Transform
+ pos: -5.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16877
+ components:
+ - type: Transform
+ pos: -5.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16878
+ components:
+ - type: Transform
+ pos: -5.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16879
+ components:
+ - type: Transform
+ pos: -5.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16880
+ components:
+ - type: Transform
+ pos: -6.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16881
+ components:
+ - type: Transform
+ pos: -6.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16882
+ components:
+ - type: Transform
+ pos: -6.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16883
+ components:
+ - type: Transform
+ pos: -6.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16884
+ components:
+ - type: Transform
+ pos: -6.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16885
+ components:
+ - type: Transform
+ pos: -6.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16886
+ components:
+ - type: Transform
+ pos: -0.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16887
+ components:
+ - type: Transform
+ pos: -0.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16888
+ components:
+ - type: Transform
+ pos: -0.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16889
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16890
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16891
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16892
+ components:
+ - type: Transform
+ pos: 0.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16893
+ components:
+ - type: Transform
+ pos: 0.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16894
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16895
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16896
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16897
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16898
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16899
+ components:
+ - type: Transform
+ pos: 1.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16900
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16901
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16902
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16903
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16904
+ components:
+ - type: Transform
+ pos: 2.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16905
+ components:
+ - type: Transform
+ pos: 2.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16906
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16907
+ components:
+ - type: Transform
+ pos: 2.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16908
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16909
+ components:
+ - type: Transform
+ pos: 2.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16910
+ components:
+ - type: Transform
+ pos: 3.5,12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16911
+ components:
+ - type: Transform
+ pos: 3.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16912
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16913
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16914
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16915
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16916
+ components:
+ - type: Transform
+ pos: -6.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16917
+ components:
+ - type: Transform
+ pos: -6.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16918
+ components:
+ - type: Transform
+ pos: -6.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16919
+ components:
+ - type: Transform
+ pos: -6.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16920
+ components:
+ - type: Transform
+ pos: -6.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16921
+ components:
+ - type: Transform
+ pos: -6.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16922
+ components:
+ - type: Transform
+ pos: -6.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16923
+ components:
+ - type: Transform
+ pos: -6.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16924
+ components:
+ - type: Transform
+ pos: -5.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16925
+ components:
+ - type: Transform
+ pos: -5.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16926
+ components:
+ - type: Transform
+ pos: -5.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16927
+ components:
+ - type: Transform
+ pos: -5.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16928
+ components:
+ - type: Transform
+ pos: -5.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16929
+ components:
+ - type: Transform
+ pos: -5.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16930
+ components:
+ - type: Transform
+ pos: -5.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16931
+ components:
+ - type: Transform
+ pos: -5.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16932
+ components:
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16933
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16934
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16935
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16936
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16937
+ components:
+ - type: Transform
+ pos: -4.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16938
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16939
+ components:
+ - type: Transform
+ pos: -4.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16940
+ components:
+ - type: Transform
+ pos: -3.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16941
+ components:
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16942
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16943
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16944
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16945
+ components:
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16946
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16947
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16948
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16949
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16950
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16951
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16952
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16953
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16954
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16955
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16956
+ components:
+ - type: Transform
+ pos: -1.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16957
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16958
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16959
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16960
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16961
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16962
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16963
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16964
+ components:
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16965
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16966
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16967
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16968
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16969
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16970
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16971
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16972
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16973
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16974
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16975
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16976
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16977
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16978
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16979
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16980
+ components:
+ - type: Transform
+ pos: 1.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16981
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16982
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16983
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16984
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16985
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16986
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16987
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16988
+ components:
+ - type: Transform
+ pos: 2.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16989
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16990
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16991
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16992
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16993
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16994
+ components:
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16995
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16996
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16997
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16998
+ components:
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16999
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17000
+ components:
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17001
+ components:
+ - type: Transform
+ pos: -0.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17002
+ components:
+ - type: Transform
+ pos: -0.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17003
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17004
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17005
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17006
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17007
+ components:
+ - type: Transform
+ pos: -1.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17008
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17009
+ components:
+ - type: Transform
+ pos: -1.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17010
+ components:
+ - type: Transform
+ pos: -1.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17011
+ components:
+ - type: Transform
+ pos: -1.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17012
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17013
+ components:
+ - type: Transform
+ pos: -2.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17014
+ components:
+ - type: Transform
+ pos: -2.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17015
+ components:
+ - type: Transform
+ pos: -2.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17016
+ components:
+ - type: Transform
+ pos: -2.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17017
+ components:
+ - type: Transform
+ pos: -2.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17018
+ components:
+ - type: Transform
+ pos: -2.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17019
+ components:
+ - type: Transform
+ pos: -2.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17020
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17021
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17022
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17023
+ components:
+ - type: Transform
+ pos: -3.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17024
+ components:
+ - type: Transform
+ pos: -3.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17025
+ components:
+ - type: Transform
+ pos: -3.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17026
+ components:
+ - type: Transform
+ pos: -3.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17027
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17028
+ components:
+ - type: Transform
+ pos: -4.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17029
+ components:
+ - type: Transform
+ pos: -4.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17030
+ components:
+ - type: Transform
+ pos: -4.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17031
+ components:
+ - type: Transform
+ pos: -4.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17032
+ components:
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17033
+ components:
+ - type: Transform
+ pos: -4.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17034
+ components:
+ - type: Transform
+ pos: -4.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17035
+ components:
+ - type: Transform
+ pos: -4.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17036
+ components:
+ - type: Transform
+ pos: -5.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17037
+ components:
+ - type: Transform
+ pos: -5.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17038
+ components:
+ - type: Transform
+ pos: -5.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17039
+ components:
+ - type: Transform
+ pos: -5.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17040
+ components:
+ - type: Transform
+ pos: -5.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17041
+ components:
+ - type: Transform
+ pos: -6.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17042
+ components:
+ - type: Transform
+ pos: -6.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17043
+ components:
+ - type: Transform
+ pos: -6.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17044
+ components:
+ - type: Transform
+ pos: -6.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17045
+ components:
+ - type: Transform
+ pos: -6.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17046
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17047
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17048
+ components:
+ - type: Transform
+ pos: 0.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17049
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17050
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17051
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17052
+ components:
+ - type: Transform
+ pos: 1.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17053
+ components:
+ - type: Transform
+ pos: 1.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17054
+ components:
+ - type: Transform
+ pos: 1.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17055
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17056
+ components:
+ - type: Transform
+ pos: 2.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17057
+ components:
+ - type: Transform
+ pos: 2.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17058
+ components:
+ - type: Transform
+ pos: 2.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17059
+ components:
+ - type: Transform
+ pos: 2.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17060
+ components:
+ - type: Transform
+ pos: 2.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17061
+ components:
+ - type: Transform
+ pos: 3.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17062
+ components:
+ - type: Transform
+ pos: 3.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17063
+ components:
+ - type: Transform
+ pos: 3.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17064
+ components:
+ - type: Transform
+ pos: 3.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17065
+ components:
+ - type: Transform
+ pos: 3.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17066
+ components:
+ - type: Transform
+ pos: -2.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17067
+ components:
+ - type: Transform
+ pos: -1.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17068
+ components:
+ - type: Transform
+ pos: -1.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17069
+ components:
+ - type: Transform
+ pos: -1.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17070
+ components:
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17071
+ components:
+ - type: Transform
+ pos: -1.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17072
+ components:
+ - type: Transform
+ pos: -1.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17073
+ components:
+ - type: Transform
+ pos: -1.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17074
+ components:
+ - type: Transform
+ pos: -1.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17075
+ components:
+ - type: Transform
+ pos: -2.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17076
+ components:
+ - type: Transform
+ pos: -2.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17077
+ components:
+ - type: Transform
+ pos: -2.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17078
+ components:
+ - type: Transform
+ pos: -2.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17079
+ components:
+ - type: Transform
+ pos: -2.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17080
+ components:
+ - type: Transform
+ pos: -2.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17081
+ components:
+ - type: Transform
+ pos: -2.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17082
+ components:
+ - type: Transform
+ pos: -3.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17083
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17084
+ components:
+ - type: Transform
+ pos: -3.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17085
+ components:
+ - type: Transform
+ pos: -3.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17086
+ components:
+ - type: Transform
+ pos: -3.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17087
+ components:
+ - type: Transform
+ pos: -3.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17088
+ components:
+ - type: Transform
+ pos: -3.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17089
+ components:
+ - type: Transform
+ pos: -3.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17090
+ components:
+ - type: Transform
+ pos: -4.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17091
+ components:
+ - type: Transform
+ pos: -4.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17092
+ components:
+ - type: Transform
+ pos: -4.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17093
+ components:
+ - type: Transform
+ pos: -4.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17094
+ components:
+ - type: Transform
+ pos: -4.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17095
+ components:
+ - type: Transform
+ pos: -4.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17096
+ components:
+ - type: Transform
+ pos: -4.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17097
+ components:
+ - type: Transform
+ pos: -4.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17098
+ components:
+ - type: Transform
+ pos: -5.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17099
+ components:
+ - type: Transform
+ pos: -5.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17100
+ components:
+ - type: Transform
+ pos: -5.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17101
+ components:
+ - type: Transform
+ pos: -5.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17102
+ components:
+ - type: Transform
+ pos: -5.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17103
+ components:
+ - type: Transform
+ pos: -5.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17104
+ components:
+ - type: Transform
+ pos: -5.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17105
+ components:
+ - type: Transform
+ pos: -5.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17106
+ components:
+ - type: Transform
+ pos: -6.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17107
+ components:
+ - type: Transform
+ pos: -6.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17108
+ components:
+ - type: Transform
+ pos: -6.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17109
+ components:
+ - type: Transform
+ pos: -6.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17110
+ components:
+ - type: Transform
+ pos: -6.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17111
+ components:
+ - type: Transform
+ pos: -6.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17112
+ components:
+ - type: Transform
+ pos: -6.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17113
+ components:
+ - type: Transform
+ pos: -6.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17114
+ components:
+ - type: Transform
+ pos: -7.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17115
+ components:
+ - type: Transform
+ pos: -7.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17116
+ components:
+ - type: Transform
+ pos: -7.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17117
+ components:
+ - type: Transform
+ pos: -7.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17118
+ components:
+ - type: Transform
+ pos: -7.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17119
+ components:
+ - type: Transform
+ pos: -7.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17120
+ components:
+ - type: Transform
+ pos: -7.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17121
+ components:
+ - type: Transform
+ pos: -7.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17122
+ components:
+ - type: Transform
+ pos: -8.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17123
+ components:
+ - type: Transform
+ pos: -8.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17124
+ components:
+ - type: Transform
+ pos: -8.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17125
+ components:
+ - type: Transform
+ pos: -8.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17126
+ components:
+ - type: Transform
+ pos: -8.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17127
+ components:
+ - type: Transform
+ pos: -8.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17128
+ components:
+ - type: Transform
+ pos: -8.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17129
+ components:
+ - type: Transform
+ pos: -8.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17130
+ components:
+ - type: Transform
+ pos: -10.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17131
+ components:
+ - type: Transform
+ pos: -10.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17132
+ components:
+ - type: Transform
+ pos: -10.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17133
+ components:
+ - type: Transform
+ pos: -10.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17134
+ components:
+ - type: Transform
+ pos: -9.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17135
+ components:
+ - type: Transform
+ pos: -9.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17136
+ components:
+ - type: Transform
+ pos: -9.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17137
+ components:
+ - type: Transform
+ pos: -9.5,-22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17138
+ components:
+ - type: Transform
+ pos: -6.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17139
+ components:
+ - type: Transform
+ pos: -6.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17140
+ components:
+ - type: Transform
+ pos: -6.5,-25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17141
+ components:
+ - type: Transform
+ pos: -5.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17142
+ components:
+ - type: Transform
+ pos: -5.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17143
+ components:
+ - type: Transform
+ pos: -5.5,-25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17144
+ components:
+ - type: Transform
+ pos: -4.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17145
+ components:
+ - type: Transform
+ pos: -4.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17146
+ components:
+ - type: Transform
+ pos: -4.5,-25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17147
+ components:
+ - type: Transform
+ pos: -3.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17148
+ components:
+ - type: Transform
+ pos: -3.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17149
+ components:
+ - type: Transform
+ pos: -3.5,-25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17150
+ components:
+ - type: Transform
+ pos: -2.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17151
+ components:
+ - type: Transform
+ pos: -2.5,-24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17152
+ components:
+ - type: Transform
+ pos: -2.5,-25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17153
+ components:
+ - type: Transform
+ pos: 0.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17154
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17155
+ components:
+ - type: Transform
+ pos: 0.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17156
+ components:
+ - type: Transform
+ pos: 0.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17157
+ components:
+ - type: Transform
+ pos: 1.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17158
+ components:
+ - type: Transform
+ pos: 0.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17159
+ components:
+ - type: Transform
+ pos: 1.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17160
+ components:
+ - type: Transform
+ pos: 1.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17161
+ components:
+ - type: Transform
+ pos: 1.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17162
+ components:
+ - type: Transform
+ pos: 1.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17163
+ components:
+ - type: Transform
+ pos: 0.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17164
+ components:
+ - type: Transform
+ pos: 1.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17165
+ components:
+ - type: Transform
+ pos: 2.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17166
+ components:
+ - type: Transform
+ pos: 2.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17167
+ components:
+ - type: Transform
+ pos: 2.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17168
+ components:
+ - type: Transform
+ pos: 2.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17169
+ components:
+ - type: Transform
+ pos: 2.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17170
+ components:
+ - type: Transform
+ pos: 2.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17171
+ components:
+ - type: Transform
+ pos: 3.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17172
+ components:
+ - type: Transform
+ pos: 3.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17173
+ components:
+ - type: Transform
+ pos: 3.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17174
+ components:
+ - type: Transform
+ pos: 3.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17175
+ components:
+ - type: Transform
+ pos: 3.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17176
+ components:
+ - type: Transform
+ pos: 3.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17177
+ components:
+ - type: Transform
+ pos: 4.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17178
+ components:
+ - type: Transform
+ pos: 4.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17179
+ components:
+ - type: Transform
+ pos: 4.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17180
+ components:
+ - type: Transform
+ pos: 4.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17181
+ components:
+ - type: Transform
+ pos: 4.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17182
+ components:
+ - type: Transform
+ pos: 4.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17183
+ components:
+ - type: Transform
+ pos: 5.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17184
+ components:
+ - type: Transform
+ pos: 5.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17185
+ components:
+ - type: Transform
+ pos: 5.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17186
+ components:
+ - type: Transform
+ pos: 5.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17187
+ components:
+ - type: Transform
+ pos: 5.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17188
+ components:
+ - type: Transform
+ pos: 5.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17189
+ components:
+ - type: Transform
+ pos: 6.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17190
+ components:
+ - type: Transform
+ pos: 6.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17191
+ components:
+ - type: Transform
+ pos: 6.5,-18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17192
+ components:
+ - type: Transform
+ pos: 6.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17193
+ components:
+ - type: Transform
+ pos: 6.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17194
+ components:
+ - type: Transform
+ pos: 6.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17195
+ components:
+ - type: Transform
+ pos: 22.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17196
+ components:
+ - type: Transform
+ pos: 22.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17197
+ components:
+ - type: Transform
+ pos: 22.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17198
+ components:
+ - type: Transform
+ pos: 22.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17199
+ components:
+ - type: Transform
+ pos: 22.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17200
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17201
+ components:
+ - type: Transform
+ pos: 21.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17202
+ components:
+ - type: Transform
+ pos: 21.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17203
+ components:
+ - type: Transform
+ pos: 21.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17204
+ components:
+ - type: Transform
+ pos: 21.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17205
+ components:
+ - type: Transform
+ pos: 20.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17206
+ components:
+ - type: Transform
+ pos: 20.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17207
+ components:
+ - type: Transform
+ pos: 20.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17208
+ components:
+ - type: Transform
+ pos: 20.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17209
+ components:
+ - type: Transform
+ pos: 20.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17210
+ components:
+ - type: Transform
+ pos: 19.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17211
+ components:
+ - type: Transform
+ pos: 19.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17212
+ components:
+ - type: Transform
+ pos: 19.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17213
+ components:
+ - type: Transform
+ pos: 19.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17214
+ components:
+ - type: Transform
+ pos: 19.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17215
+ components:
+ - type: Transform
+ pos: 19.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17216
+ components:
+ - type: Transform
+ pos: 19.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17217
+ components:
+ - type: Transform
+ pos: 19.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17218
+ components:
+ - type: Transform
+ pos: 19.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17219
+ components:
+ - type: Transform
+ pos: 19.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17220
+ components:
+ - type: Transform
+ pos: 19.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17221
+ components:
+ - type: Transform
+ pos: 19.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17222
+ components:
+ - type: Transform
+ pos: 19.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17223
+ components:
+ - type: Transform
+ pos: 19.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17224
+ components:
+ - type: Transform
+ pos: 19.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17225
+ components:
+ - type: Transform
+ pos: 19.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17226
+ components:
+ - type: Transform
+ pos: 19.5,32.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17227
+ components:
+ - type: Transform
+ pos: 18.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17228
+ components:
+ - type: Transform
+ pos: 18.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17229
+ components:
+ - type: Transform
+ pos: 18.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17230
+ components:
+ - type: Transform
+ pos: 18.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17231
+ components:
+ - type: Transform
+ pos: 18.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17232
+ components:
+ - type: Transform
+ pos: 18.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17233
+ components:
+ - type: Transform
+ pos: 18.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17234
+ components:
+ - type: Transform
+ pos: 18.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17235
+ components:
+ - type: Transform
+ pos: 18.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17236
+ components:
+ - type: Transform
+ pos: 18.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17237
+ components:
+ - type: Transform
+ pos: 18.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17238
+ components:
+ - type: Transform
+ pos: 18.5,32.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17239
+ components:
+ - type: Transform
+ pos: 17.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17240
+ components:
+ - type: Transform
+ pos: 17.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17241
+ components:
+ - type: Transform
+ pos: 17.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17242
+ components:
+ - type: Transform
+ pos: 17.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17243
+ components:
+ - type: Transform
+ pos: 17.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17244
+ components:
+ - type: Transform
+ pos: 17.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17245
+ components:
+ - type: Transform
+ pos: 17.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17246
+ components:
+ - type: Transform
+ pos: 17.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17247
+ components:
+ - type: Transform
+ pos: 17.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17248
+ components:
+ - type: Transform
+ pos: 17.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17249
+ components:
+ - type: Transform
+ pos: 17.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17250
+ components:
+ - type: Transform
+ pos: 17.5,32.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17251
+ components:
+ - type: Transform
+ pos: 16.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17252
+ components:
+ - type: Transform
+ pos: 16.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17253
+ components:
+ - type: Transform
+ pos: 16.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17254
+ components:
+ - type: Transform
+ pos: 16.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17255
+ components:
+ - type: Transform
+ pos: 16.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17256
+ components:
+ - type: Transform
+ pos: 16.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17257
+ components:
+ - type: Transform
+ pos: 16.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17258
+ components:
+ - type: Transform
+ pos: 16.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17259
+ components:
+ - type: Transform
+ pos: 16.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17260
+ components:
+ - type: Transform
+ pos: 16.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17261
+ components:
+ - type: Transform
+ pos: 16.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17262
+ components:
+ - type: Transform
+ pos: 16.5,32.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17263
+ components:
+ - type: Transform
+ pos: 15.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17264
+ components:
+ - type: Transform
+ pos: 15.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17265
+ components:
+ - type: Transform
+ pos: 15.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17266
+ components:
+ - type: Transform
+ pos: 15.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17267
+ components:
+ - type: Transform
+ pos: 15.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17268
+ components:
+ - type: Transform
+ pos: 15.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17269
+ components:
+ - type: Transform
+ pos: 15.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17270
+ components:
+ - type: Transform
+ pos: 15.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17271
+ components:
+ - type: Transform
+ pos: 15.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17272
+ components:
+ - type: Transform
+ pos: 15.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17273
+ components:
+ - type: Transform
+ pos: 15.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17274
+ components:
+ - type: Transform
+ pos: 15.5,32.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17275
+ components:
+ - type: Transform
+ pos: 14.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17276
+ components:
+ - type: Transform
+ pos: 14.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17277
+ components:
+ - type: Transform
+ pos: 14.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17278
+ components:
+ - type: Transform
+ pos: 14.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17279
+ components:
+ - type: Transform
+ pos: 14.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17280
+ components:
+ - type: Transform
+ pos: 14.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17281
+ components:
+ - type: Transform
+ pos: 14.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17282
+ components:
+ - type: Transform
+ pos: 14.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17283
+ components:
+ - type: Transform
+ pos: 14.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17284
+ components:
+ - type: Transform
+ pos: 14.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17285
+ components:
+ - type: Transform
+ pos: 14.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17286
+ components:
+ - type: Transform
+ pos: 14.5,32.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17287
+ components:
+ - type: Transform
+ pos: 13.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17288
+ components:
+ - type: Transform
+ pos: 13.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17289
+ components:
+ - type: Transform
+ pos: 13.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17290
+ components:
+ - type: Transform
+ pos: 13.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17291
+ components:
+ - type: Transform
+ pos: 13.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17292
+ components:
+ - type: Transform
+ pos: 13.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17293
+ components:
+ - type: Transform
+ pos: 13.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17294
+ components:
+ - type: Transform
+ pos: 13.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17295
+ components:
+ - type: Transform
+ pos: 13.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17296
+ components:
+ - type: Transform
+ pos: 13.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17297
+ components:
+ - type: Transform
+ pos: 13.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17298
+ components:
+ - type: Transform
+ pos: 13.5,32.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17299
+ components:
+ - type: Transform
+ pos: 12.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17300
+ components:
+ - type: Transform
+ pos: 12.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17301
+ components:
+ - type: Transform
+ pos: 12.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17302
+ components:
+ - type: Transform
+ pos: 12.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17303
+ components:
+ - type: Transform
+ pos: 12.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17304
+ components:
+ - type: Transform
+ pos: 12.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17305
+ components:
+ - type: Transform
+ pos: 12.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17306
+ components:
+ - type: Transform
+ pos: 12.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17307
+ components:
+ - type: Transform
+ pos: 12.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17308
+ components:
+ - type: Transform
+ pos: 12.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17309
+ components:
+ - type: Transform
+ pos: 12.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17310
+ components:
+ - type: Transform
+ pos: 12.5,32.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17311
+ components:
+ - type: Transform
+ pos: 11.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17312
+ components:
+ - type: Transform
+ pos: 11.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17313
+ components:
+ - type: Transform
+ pos: 11.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17314
+ components:
+ - type: Transform
+ pos: 11.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17315
+ components:
+ - type: Transform
+ pos: 11.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17316
+ components:
+ - type: Transform
+ pos: 11.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17317
+ components:
+ - type: Transform
+ pos: 11.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17318
+ components:
+ - type: Transform
+ pos: 11.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17319
+ components:
+ - type: Transform
+ pos: 11.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17320
+ components:
+ - type: Transform
+ pos: 11.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17321
+ components:
+ - type: Transform
+ pos: 11.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17322
+ components:
+ - type: Transform
+ pos: 11.5,32.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17323
+ components:
+ - type: Transform
+ pos: 10.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17324
+ components:
+ - type: Transform
+ pos: 10.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17325
+ components:
+ - type: Transform
+ pos: 10.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17326
+ components:
+ - type: Transform
+ pos: 10.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17327
+ components:
+ - type: Transform
+ pos: 10.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17328
+ components:
+ - type: Transform
+ pos: 10.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17329
+ components:
+ - type: Transform
+ pos: 10.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17330
+ components:
+ - type: Transform
+ pos: 10.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17331
+ components:
+ - type: Transform
+ pos: 10.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17332
+ components:
+ - type: Transform
+ pos: 10.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17333
+ components:
+ - type: Transform
+ pos: 10.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17334
+ components:
+ - type: Transform
+ pos: 10.5,32.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17335
+ components:
+ - type: Transform
+ pos: 20.5,32.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17336
+ components:
+ - type: Transform
+ pos: 20.5,33.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17337
+ components:
+ - type: Transform
+ pos: 20.5,34.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17338
+ components:
+ - type: Transform
+ pos: 20.5,35.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17339
+ components:
+ - type: Transform
+ pos: 20.5,36.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17340
+ components:
+ - type: Transform
+ pos: 20.5,37.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17341
+ components:
+ - type: Transform
+ pos: 19.5,33.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17342
+ components:
+ - type: Transform
+ pos: 19.5,34.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17343
+ components:
+ - type: Transform
+ pos: 19.5,35.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17344
+ components:
+ - type: Transform
+ pos: 19.5,36.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17345
+ components:
+ - type: Transform
+ pos: 19.5,37.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17346
+ components:
+ - type: Transform
+ pos: 18.5,33.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17347
+ components:
+ - type: Transform
+ pos: 18.5,34.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17348
+ components:
+ - type: Transform
+ pos: 18.5,35.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17349
+ components:
+ - type: Transform
+ pos: 18.5,36.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17350
+ components:
+ - type: Transform
+ pos: 18.5,37.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17351
+ components:
+ - type: Transform
+ pos: 17.5,33.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17352
+ components:
+ - type: Transform
+ pos: 17.5,34.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17353
+ components:
+ - type: Transform
+ pos: 17.5,35.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17354
+ components:
+ - type: Transform
+ pos: 17.5,36.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17355
+ components:
+ - type: Transform
+ pos: 17.5,37.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17356
+ components:
+ - type: Transform
+ pos: 16.5,33.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17357
+ components:
+ - type: Transform
+ pos: 16.5,34.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17358
+ components:
+ - type: Transform
+ pos: 16.5,35.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17359
+ components:
+ - type: Transform
+ pos: 16.5,36.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17360
+ components:
+ - type: Transform
+ pos: 16.5,37.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17361
+ components:
+ - type: Transform
+ pos: 15.5,33.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17362
+ components:
+ - type: Transform
+ pos: 15.5,34.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17363
+ components:
+ - type: Transform
+ pos: 15.5,35.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17364
+ components:
+ - type: Transform
+ pos: 15.5,36.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17365
+ components:
+ - type: Transform
+ pos: 15.5,37.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17366
+ components:
+ - type: Transform
+ pos: 14.5,33.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17367
+ components:
+ - type: Transform
+ pos: 14.5,34.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17368
+ components:
+ - type: Transform
+ pos: 14.5,35.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17369
+ components:
+ - type: Transform
+ pos: 14.5,36.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17370
+ components:
+ - type: Transform
+ pos: 14.5,37.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17371
+ components:
+ - type: Transform
+ pos: 13.5,33.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17372
+ components:
+ - type: Transform
+ pos: 13.5,34.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17373
+ components:
+ - type: Transform
+ pos: 13.5,35.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17374
+ components:
+ - type: Transform
+ pos: 13.5,36.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17375
+ components:
+ - type: Transform
+ pos: 13.5,37.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17376
+ components:
+ - type: Transform
+ pos: 12.5,33.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17377
+ components:
+ - type: Transform
+ pos: 12.5,34.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17378
+ components:
+ - type: Transform
+ pos: 12.5,35.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17379
+ components:
+ - type: Transform
+ pos: 12.5,36.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17380
+ components:
+ - type: Transform
+ pos: 12.5,37.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17381
+ components:
+ - type: Transform
+ pos: 11.5,33.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17382
+ components:
+ - type: Transform
+ pos: 11.5,34.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17383
+ components:
+ - type: Transform
+ pos: 11.5,35.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17384
+ components:
+ - type: Transform
+ pos: 11.5,36.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17385
+ components:
+ - type: Transform
+ pos: 11.5,37.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17386
+ components:
+ - type: Transform
+ pos: 23.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17387
+ components:
+ - type: Transform
+ pos: 23.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17388
+ components:
+ - type: Transform
+ pos: 23.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17389
+ components:
+ - type: Transform
+ pos: 23.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17390
+ components:
+ - type: Transform
+ pos: 23.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17391
+ components:
+ - type: Transform
+ pos: 24.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17392
+ components:
+ - type: Transform
+ pos: 24.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17393
+ components:
+ - type: Transform
+ pos: 24.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17394
+ components:
+ - type: Transform
+ pos: 24.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17395
+ components:
+ - type: Transform
+ pos: 24.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17396
+ components:
+ - type: Transform
+ pos: 25.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17397
+ components:
+ - type: Transform
+ pos: 25.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17398
+ components:
+ - type: Transform
+ pos: 25.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17399
+ components:
+ - type: Transform
+ pos: 25.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17400
+ components:
+ - type: Transform
+ pos: 25.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17401
+ components:
+ - type: Transform
+ pos: 26.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17402
+ components:
+ - type: Transform
+ pos: 26.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17403
+ components:
+ - type: Transform
+ pos: 26.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17404
+ components:
+ - type: Transform
+ pos: 26.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17405
+ components:
+ - type: Transform
+ pos: 26.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17406
+ components:
+ - type: Transform
+ pos: 27.5,29.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17407
+ components:
+ - type: Transform
+ pos: 27.5,28.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17408
+ components:
+ - type: Transform
+ pos: 27.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17409
+ components:
+ - type: Transform
+ pos: 27.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17410
+ components:
+ - type: Transform
+ pos: 27.5,25.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17411
+ components:
+ - type: Transform
+ pos: 23.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17412
+ components:
+ - type: Transform
+ pos: 23.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17413
+ components:
+ - type: Transform
+ pos: 23.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17414
+ components:
+ - type: Transform
+ pos: 23.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17415
+ components:
+ - type: Transform
+ pos: 23.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17416
+ components:
+ - type: Transform
+ pos: 24.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17417
+ components:
+ - type: Transform
+ pos: 24.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17418
+ components:
+ - type: Transform
+ pos: 24.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17419
+ components:
+ - type: Transform
+ pos: 24.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17420
+ components:
+ - type: Transform
+ pos: 24.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17421
+ components:
+ - type: Transform
+ pos: 25.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17422
+ components:
+ - type: Transform
+ pos: 25.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17423
+ components:
+ - type: Transform
+ pos: 25.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17424
+ components:
+ - type: Transform
+ pos: 25.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17425
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17426
+ components:
+ - type: Transform
+ pos: 26.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17427
+ components:
+ - type: Transform
+ pos: 26.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17428
+ components:
+ - type: Transform
+ pos: 26.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17429
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17430
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17431
+ components:
+ - type: Transform
+ pos: 27.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17432
+ components:
+ - type: Transform
+ pos: 27.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17433
+ components:
+ - type: Transform
+ pos: 27.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17434
+ components:
+ - type: Transform
+ pos: 27.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17435
+ components:
+ - type: Transform
+ pos: 27.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17436
+ components:
+ - type: Transform
+ pos: 29.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17437
+ components:
+ - type: Transform
+ pos: 29.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17438
+ components:
+ - type: Transform
+ pos: 29.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17439
+ components:
+ - type: Transform
+ pos: 29.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17440
+ components:
+ - type: Transform
+ pos: 29.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17441
+ components:
+ - type: Transform
+ pos: 29.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17442
+ components:
+ - type: Transform
+ pos: 30.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17443
+ components:
+ - type: Transform
+ pos: 30.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17444
+ components:
+ - type: Transform
+ pos: 30.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17445
+ components:
+ - type: Transform
+ pos: 30.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17446
+ components:
+ - type: Transform
+ pos: 30.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17447
+ components:
+ - type: Transform
+ pos: 30.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17448
+ components:
+ - type: Transform
+ pos: 31.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17449
+ components:
+ - type: Transform
+ pos: 31.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17450
+ components:
+ - type: Transform
+ pos: 31.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17451
+ components:
+ - type: Transform
+ pos: 31.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17452
+ components:
+ - type: Transform
+ pos: 31.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17453
+ components:
+ - type: Transform
+ pos: 31.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17454
+ components:
+ - type: Transform
+ pos: 32.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17455
+ components:
+ - type: Transform
+ pos: 32.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17456
+ components:
+ - type: Transform
+ pos: 32.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17457
+ components:
+ - type: Transform
+ pos: 32.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17458
+ components:
+ - type: Transform
+ pos: 32.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17459
+ components:
+ - type: Transform
+ pos: 32.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17460
+ components:
+ - type: Transform
+ pos: 33.5,24.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17461
+ components:
+ - type: Transform
+ pos: 33.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17462
+ components:
+ - type: Transform
+ pos: 33.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17463
+ components:
+ - type: Transform
+ pos: 33.5,21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17464
+ components:
+ - type: Transform
+ pos: 33.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17465
+ components:
+ - type: Transform
+ pos: 33.5,19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17466
+ components:
+ - type: Transform
+ pos: -16.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17467
+ components:
+ - type: Transform
+ pos: -16.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17468
+ components:
+ - type: Transform
+ pos: -16.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17469
+ components:
+ - type: Transform
+ pos: -16.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17470
+ components:
+ - type: Transform
+ pos: -16.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17471
+ components:
+ - type: Transform
+ pos: -16.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17472
+ components:
+ - type: Transform
+ pos: -16.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17473
+ components:
+ - type: Transform
+ pos: -16.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17474
+ components:
+ - type: Transform
+ pos: -16.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17475
+ components:
+ - type: Transform
+ pos: -17.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17476
+ components:
+ - type: Transform
+ pos: -16.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17477
+ components:
+ - type: Transform
+ pos: -17.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17478
+ components:
+ - type: Transform
+ pos: -17.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17479
+ components:
+ - type: Transform
+ pos: -17.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17480
+ components:
+ - type: Transform
+ pos: -17.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17481
+ components:
+ - type: Transform
+ pos: -17.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17482
+ components:
+ - type: Transform
+ pos: -17.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17483
+ components:
+ - type: Transform
+ pos: -17.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17484
+ components:
+ - type: Transform
+ pos: -17.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17485
+ components:
+ - type: Transform
+ pos: -17.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17486
+ components:
+ - type: Transform
+ pos: -18.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17487
+ components:
+ - type: Transform
+ pos: -18.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17488
+ components:
+ - type: Transform
+ pos: -18.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17489
+ components:
+ - type: Transform
+ pos: -18.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17490
+ components:
+ - type: Transform
+ pos: -18.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17491
+ components:
+ - type: Transform
+ pos: -18.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17492
+ components:
+ - type: Transform
+ pos: -18.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17493
+ components:
+ - type: Transform
+ pos: -18.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17494
+ components:
+ - type: Transform
+ pos: -18.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17495
+ components:
+ - type: Transform
+ pos: -18.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17496
+ components:
+ - type: Transform
+ pos: -19.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17497
+ components:
+ - type: Transform
+ pos: -19.5,-11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17498
+ components:
+ - type: Transform
+ pos: -19.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17499
+ components:
+ - type: Transform
+ pos: -19.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17500
+ components:
+ - type: Transform
+ pos: -19.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17501
+ components:
+ - type: Transform
+ pos: -19.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17502
+ components:
+ - type: Transform
+ pos: -19.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17503
+ components:
+ - type: Transform
+ pos: -19.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17504
+ components:
+ - type: Transform
+ pos: -19.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17505
+ components:
+ - type: Transform
+ pos: -19.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17506
+ components:
+ - type: Transform
+ pos: -15.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17507
+ components:
+ - type: Transform
+ pos: -15.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17508
+ components:
+ - type: Transform
+ pos: -15.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17509
+ components:
+ - type: Transform
+ pos: -15.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17510
+ components:
+ - type: Transform
+ pos: -15.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17511
+ components:
+ - type: Transform
+ pos: -15.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17512
+ components:
+ - type: Transform
+ pos: -14.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17513
+ components:
+ - type: Transform
+ pos: -14.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17514
+ components:
+ - type: Transform
+ pos: -14.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17515
+ components:
+ - type: Transform
+ pos: -14.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17516
+ components:
+ - type: Transform
+ pos: -14.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17517
+ components:
+ - type: Transform
+ pos: -14.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17518
+ components:
+ - type: Transform
+ pos: -13.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17519
+ components:
+ - type: Transform
+ pos: -13.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17520
+ components:
+ - type: Transform
+ pos: -13.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17521
+ components:
+ - type: Transform
+ pos: -13.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17522
+ components:
+ - type: Transform
+ pos: -13.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17523
+ components:
+ - type: Transform
+ pos: -13.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17524
+ components:
+ - type: Transform
+ pos: -12.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17525
+ components:
+ - type: Transform
+ pos: -12.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17526
+ components:
+ - type: Transform
+ pos: -12.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17527
+ components:
+ - type: Transform
+ pos: -12.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17528
+ components:
+ - type: Transform
+ pos: -12.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17529
+ components:
+ - type: Transform
+ pos: -12.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17530
+ components:
+ - type: Transform
+ pos: -10.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17531
+ components:
+ - type: Transform
+ pos: -10.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17532
+ components:
+ - type: Transform
+ pos: -10.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17533
+ components:
+ - type: Transform
+ pos: -10.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17534
+ components:
+ - type: Transform
+ pos: -11.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17535
+ components:
+ - type: Transform
+ pos: -11.5,-5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17536
+ components:
+ - type: Transform
+ pos: -11.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17537
+ components:
+ - type: Transform
+ pos: -11.5,-3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17538
+ components:
+ - type: Transform
+ pos: -15.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17539
+ components:
+ - type: Transform
+ pos: -15.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17540
+ components:
+ - type: Transform
+ pos: -15.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17541
+ components:
+ - type: Transform
+ pos: -15.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17542
+ components:
+ - type: Transform
+ pos: -14.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17543
+ components:
+ - type: Transform
+ pos: -14.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17544
+ components:
+ - type: Transform
+ pos: -14.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17545
+ components:
+ - type: Transform
+ pos: -14.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17546
+ components:
+ - type: Transform
+ pos: -13.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17547
+ components:
+ - type: Transform
+ pos: -13.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17548
+ components:
+ - type: Transform
+ pos: -13.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17549
+ components:
+ - type: Transform
+ pos: -13.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17550
+ components:
+ - type: Transform
+ pos: -12.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17551
+ components:
+ - type: Transform
+ pos: -12.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17552
+ components:
+ - type: Transform
+ pos: -12.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17553
+ components:
+ - type: Transform
+ pos: -12.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14Rope
+ entities:
+ - uid: 14466
+ components:
+ - type: Transform
+ pos: -3.3377342,-6.4077544
+ parent: 2
+ - uid: 17765
+ components:
+ - type: Transform
+ pos: -36.53504,-14.221865
+ parent: 2
+ - uid: 17766
+ components:
+ - type: Transform
+ pos: -36.2781,-14.367698
+ parent: 2
+- proto: CP14Safe
+ entities:
+ - uid: 14300
+ components:
+ - type: Transform
+ pos: -26.5,-6.5
+ parent: 2
+ - uid: 14301
+ components:
+ - type: Transform
+ pos: -25.5,-6.5
+ parent: 2
+ - uid: 14302
+ components:
+ - type: Transform
+ pos: -24.5,-6.5
+ parent: 2
+ - uid: 14303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,-8.5
+ parent: 2
+ - uid: 14304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,-8.5
+ parent: 2
+ - uid: 14305
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-8.5
+ parent: 2
+- proto: CP14SafeVault
+ entities:
+ - uid: 16021
+ components:
+ - type: Transform
+ pos: -24.5,-1.5
+ parent: 2
+ - uid: 16022
+ components:
+ - type: Transform
+ pos: -26.5,-1.5
+ parent: 2
+- proto: CP14SafeVaultFilled25
+ entities:
+ - uid: 54
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-4.5
+ parent: 2
+ - uid: 56
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,-4.5
+ parent: 2
+ - uid: 16020
+ components:
+ - type: Transform
+ pos: -25.5,-1.5
+ parent: 2
+ - uid: 16023
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,-4.5
+ parent: 2
+- proto: CP14SeedbedWooden
+ entities:
+ - uid: 271
+ components:
+ - type: Transform
+ pos: 6.5,30.5
+ parent: 2
+ - uid: 272
+ components:
+ - type: Transform
+ pos: 7.5,30.5
+ parent: 2
+ - uid: 273
+ components:
+ - type: Transform
+ pos: 7.5,29.5
+ parent: 2
+ - uid: 274
+ components:
+ - type: Transform
+ pos: 6.5,29.5
+ parent: 2
+ - uid: 1455
+ components:
+ - type: Transform
+ pos: 34.5,-8.5
+ parent: 2
+ - uid: 1456
+ components:
+ - type: Transform
+ pos: 31.5,-9.5
+ parent: 2
+ - uid: 1457
+ components:
+ - type: Transform
+ pos: 28.5,-10.5
+ parent: 2
+ - uid: 1458
+ components:
+ - type: Transform
+ pos: 33.5,-10.5
+ parent: 2
+ - uid: 1459
+ components:
+ - type: Transform
+ pos: 29.5,-8.5
+ parent: 2
+ - uid: 1469
+ components:
+ - type: Transform
+ pos: 17.5,-21.5
+ parent: 2
+ - uid: 1470
+ components:
+ - type: Transform
+ pos: 12.5,-24.5
+ parent: 2
+ - uid: 1471
+ components:
+ - type: Transform
+ pos: 14.5,-19.5
+ parent: 2
+ - uid: 1511
+ components:
+ - type: Transform
+ pos: 39.5,-14.5
+ parent: 2
+ - uid: 1512
+ components:
+ - type: Transform
+ pos: 41.5,-12.5
+ parent: 2
+ - uid: 1513
+ components:
+ - type: Transform
+ pos: 40.5,-16.5
+ parent: 2
+ - uid: 1514
+ components:
+ - type: Transform
+ pos: 42.5,-15.5
+ parent: 2
+ - uid: 14265
+ components:
+ - type: Transform
+ pos: 6.5,38.5
+ parent: 2
+ - uid: 14266
+ components:
+ - type: Transform
+ pos: 6.5,37.5
+ parent: 2
+ - uid: 14267
+ components:
+ - type: Transform
+ pos: 7.5,38.5
+ parent: 2
+ - uid: 14268
+ components:
+ - type: Transform
+ pos: 7.5,37.5
+ parent: 2
+ - uid: 14269
+ components:
+ - type: Transform
+ pos: 10.5,37.5
+ parent: 2
+ - uid: 14270
+ components:
+ - type: Transform
+ pos: 10.5,38.5
+ parent: 2
+ - uid: 14271
+ components:
+ - type: Transform
+ pos: 9.5,37.5
+ parent: 2
+ - uid: 14272
+ components:
+ - type: Transform
+ pos: 9.5,38.5
+ parent: 2
+ - uid: 14277
+ components:
+ - type: Transform
+ pos: 10.5,36.5
+ parent: 2
+ - uid: 14278
+ components:
+ - type: Transform
+ pos: 9.5,36.5
+ parent: 2
+ - uid: 14279
+ components:
+ - type: Transform
+ pos: 7.5,36.5
+ parent: 2
+ - uid: 14280
+ components:
+ - type: Transform
+ pos: 6.5,36.5
+ parent: 2
+ - uid: 14467
+ components:
+ - type: Transform
+ pos: 2.5,-4.5
+ parent: 2
+ - uid: 14468
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 2
+ - uid: 14469
+ components:
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 2
+ - uid: 14470
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 2
+ - uid: 14554
+ components:
+ - type: Transform
+ pos: 7.5,28.5
+ parent: 2
+ - uid: 14555
+ components:
+ - type: Transform
+ pos: 6.5,28.5
+ parent: 2
+- proto: CP14SmallWoodenCrate
+ entities:
+ - uid: 14325
+ components:
+ - type: Transform
+ pos: -31.5,-14.5
+ parent: 2
+ - uid: 15437
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,28.5
+ parent: 2
+ - uid: 15472
+ components:
+ - type: Transform
+ pos: -9.5,10.5
+ parent: 2
+ - uid: 15473
+ components:
+ - type: Transform
+ pos: -13.5,10.5
+ parent: 2
+ - uid: 15502
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.418017,-41.338543
+ parent: 2
+ - uid: 15520
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,33.5
+ parent: 2
+ - uid: 15525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.095325,-42.182293
+ parent: 2
+ - uid: 15526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.439075,-41.166668
+ parent: 2
+ - uid: 15527
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.480517,-40.572918
+ parent: 2
+- proto: CP14SpawnPointAdventurer
+ entities:
+ - uid: 17793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-31.5
+ parent: 2
+ - uid: 17815
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-31.5
+ parent: 2
+ - uid: 17816
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-34.5
+ parent: 2
+ - uid: 17817
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-37.5
+ parent: 2
+ - uid: 17818
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-34.5
+ parent: 2
+ - uid: 17819
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-37.5
+ parent: 2
+- proto: CP14SpawnPointAlchemist
+ entities:
+ - uid: 14344
+ components:
+ - type: Transform
+ pos: -5.5,-3.5
+ parent: 2
+ - uid: 15471
+ components:
+ - type: Transform
+ pos: -8.5,-9.5
+ parent: 2
+- proto: CP14SpawnPointApprentice
+ entities:
+ - uid: 17820
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-29.5
+ parent: 2
+- proto: CP14SpawnPointBlacksmith
+ entities:
+ - uid: 14447
+ components:
+ - type: Transform
+ pos: -10.5,-15.5
+ parent: 2
+ - uid: 14486
+ components:
+ - type: Transform
+ pos: -14.5,2.5
+ parent: 2
+- proto: CP14SpawnPointCommandant
+ entities:
+ - uid: 14345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-17.5
+ parent: 2
+- proto: CP14SpawnPointGuard
+ entities:
+ - uid: 217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-12.5
+ parent: 2
+ - uid: 13429
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-12.5
+ parent: 2
+ - uid: 13455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-12.5
+ parent: 2
+ - uid: 13456
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-12.5
+ parent: 2
+- proto: CP14SpawnPointGuardCommander
+ entities:
+ - uid: 13457
+ components:
+ - type: Transform
+ pos: -38.5,-4.5
+ parent: 2
+- proto: CP14SpawnPointGuildmaster
+ entities:
+ - uid: 14350
+ components:
+ - type: Transform
+ pos: -13.5,-0.5
+ parent: 2
+- proto: CP14SpawnPointInnkeeper
+ entities:
+ - uid: 14549
+ components:
+ - type: Transform
+ pos: 14.5,30.5
+ parent: 2
+- proto: CP14SpawnPointMerchant
+ entities:
+ - uid: 17812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-20.5
+ parent: 2
+ - uid: 17813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-20.5
+ parent: 2
+ - uid: 17814
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-11.5
+ parent: 2
+- proto: CP14SpellScrollDemiplaneInfiltration
+ entities:
+ - uid: 14392
+ components:
+ - type: Transform
+ pos: -16.284027,-4.3374968
+ parent: 2
+ - uid: 14403
+ components:
+ - type: Transform
+ pos: -16.69398,-4.3123384
+ parent: 2
+- proto: CP14SpellScrollMonolithWarp
+ entities:
+ - uid: 14411
+ components:
+ - type: Transform
+ pos: -17.146816,-4.33662
+ parent: 2
+ - uid: 14412
+ components:
+ - type: Transform
+ pos: -17.568691,-4.27412
+ parent: 2
+- proto: CP14StatueAngelLimestone
+ entities:
+ - uid: 748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-1.5
+ parent: 2
+- proto: CP14StatueAngelMarble
+ entities:
+ - uid: 16025
+ components:
+ - type: MetaData
+ desc: Священная статуя молящегося ангела. Надпись гласит- "Place Holder - 16.02.225"
+ - type: Transform
+ pos: -29.5,-0.5
+ parent: 2
+- proto: CP14StatueGobRuinedVines
+ entities:
+ - uid: 15341
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,11.5
+ parent: 2
+- proto: CP14SteelWoodBeerMug
+ entities:
+ - uid: 14337
+ components:
+ - type: Transform
+ pos: 13.2889,31.856537
+ parent: 2
+ - uid: 14338
+ components:
+ - type: Transform
+ pos: 13.682436,31.846706
+ parent: 2
+ - uid: 14339
+ components:
+ - type: Transform
+ pos: 13.387285,31.591051
+ parent: 2
+ - uid: 14340
+ components:
+ - type: Transform
+ pos: 13.879204,31.561552
+ parent: 2
+- proto: CP14StoneBlock1
+ entities:
+ - uid: 14643
+ components:
+ - type: Transform
+ pos: 22.189507,7.660186
+ parent: 2
+ - uid: 14644
+ components:
+ - type: Transform
+ pos: 22.41087,7.1513357
+ parent: 2
+ - uid: 14645
+ components:
+ - type: Transform
+ pos: 22.787188,7.7044334
+ parent: 2
+ - uid: 14646
+ components:
+ - type: Transform
+ pos: 23.694778,7.1955833
+ parent: 2
+ - uid: 14671
+ components:
+ - type: Transform
+ pos: 22.638325,11.830012
+ parent: 2
+ - uid: 14767
+ components:
+ - type: Transform
+ pos: 22.889204,10.694319
+ parent: 2
+ - uid: 14768
+ components:
+ - type: Transform
+ pos: 24.143597,10.517328
+ parent: 2
+ - uid: 14769
+ components:
+ - type: Transform
+ pos: 23.70087,10.664821
+ parent: 2
+ - uid: 14770
+ components:
+ - type: Transform
+ pos: 23.331932,10.974555
+ parent: 2
+ - uid: 14771
+ components:
+ - type: Transform
+ pos: 22.91872,12.405233
+ parent: 2
+ - uid: 14772
+ components:
+ - type: Transform
+ pos: 24.173111,12.552727
+ parent: 2
+- proto: CP14TableWooden
+ entities:
+ - uid: 37
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,5.5
+ parent: 2
+ - uid: 38
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,4.5
+ parent: 2
+ - uid: 39
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,4.5
+ parent: 2
+ - uid: 40
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,5.5
+ parent: 2
+ - uid: 41
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,6.5
+ parent: 2
+ - uid: 42
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,4.5
+ parent: 2
+ - uid: 1606
+ components:
+ - type: Transform
+ pos: -21.5,18.5
+ parent: 2
+ - uid: 1607
+ components:
+ - type: Transform
+ pos: -20.5,18.5
+ parent: 2
+ - uid: 1608
+ components:
+ - type: Transform
+ pos: -17.5,19.5
+ parent: 2
+ - uid: 1611
+ components:
+ - type: Transform
+ pos: -17.5,18.5
+ parent: 2
+ - uid: 1615
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,20.5
+ parent: 2
+ - uid: 1616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,20.5
+ parent: 2
+ - uid: 1621
+ components:
+ - type: Transform
+ pos: -14.5,25.5
+ parent: 2
+ - uid: 1622
+ components:
+ - type: Transform
+ pos: -15.5,25.5
+ parent: 2
+ - uid: 1626
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,27.5
+ parent: 2
+ - uid: 1627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,26.5
+ parent: 2
+ - uid: 1630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,23.5
+ parent: 2
+ - uid: 1631
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,23.5
+ parent: 2
+ - uid: 1636
+ components:
+ - type: Transform
+ pos: -1.5,23.5
+ parent: 2
+ - uid: 1638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,23.5
+ parent: 2
+ - uid: 1639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,23.5
+ parent: 2
+ - uid: 1649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,19.5
+ parent: 2
+ - uid: 1650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,19.5
+ parent: 2
+ - uid: 1651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,17.5
+ parent: 2
+ - uid: 1652
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,19.5
+ parent: 2
+ - uid: 1653
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,19.5
+ parent: 2
+ - uid: 1659
+ components:
+ - type: Transform
+ pos: -5.5,8.5
+ parent: 2
+ - uid: 1660
+ components:
+ - type: Transform
+ pos: -5.5,9.5
+ parent: 2
+ - uid: 1665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,8.5
+ parent: 2
+ - uid: 1666
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,8.5
+ parent: 2
+ - uid: 14126
+ components:
+ - type: Transform
+ pos: -29.5,-22.5
+ parent: 2
+ - uid: 14127
+ components:
+ - type: Transform
+ pos: -29.5,-21.5
+ parent: 2
+ - uid: 14128
+ components:
+ - type: Transform
+ pos: -28.5,-22.5
+ parent: 2
+ - uid: 14168
+ components:
+ - type: Transform
+ pos: 15.5,28.5
+ parent: 2
+ - uid: 14216
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-10.5
+ parent: 2
+ - uid: 14221
+ components:
+ - type: Transform
+ pos: 16.5,28.5
+ parent: 2
+ - uid: 14224
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-10.5
+ parent: 2
+ - uid: 14230
+ components:
+ - type: Transform
+ pos: 14.5,28.5
+ parent: 2
+ - uid: 14231
+ components:
+ - type: Transform
+ pos: 13.5,28.5
+ parent: 2
+ - uid: 14239
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,23.5
+ parent: 2
+ - uid: 14240
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,23.5
+ parent: 2
+ - uid: 14245
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,23.5
+ parent: 2
+ - uid: 14247
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,23.5
+ parent: 2
+ - uid: 14250
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,31.5
+ parent: 2
+ - uid: 14253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,31.5
+ parent: 2
+ - uid: 14254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,31.5
+ parent: 2
+ - uid: 14256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,31.5
+ parent: 2
+ - uid: 14257
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,31.5
+ parent: 2
+ - uid: 14258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,31.5
+ parent: 2
+ - uid: 14261
+ components:
+ - type: Transform
+ pos: -29.5,-17.5
+ parent: 2
+ - uid: 14263
+ components:
+ - type: Transform
+ pos: -29.5,-16.5
+ parent: 2
+ - uid: 14264
+ components:
+ - type: Transform
+ pos: -28.5,-17.5
+ parent: 2
+ - uid: 14285
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-10.5
+ parent: 2
+ - uid: 14363
+ components:
+ - type: Transform
+ pos: -14.5,-19.5
+ parent: 2
+ - uid: 14365
+ components:
+ - type: Transform
+ pos: -13.5,-19.5
+ parent: 2
+ - uid: 14377
+ components:
+ - type: Transform
+ pos: -16.5,-4.5
+ parent: 2
+ - uid: 14378
+ components:
+ - type: Transform
+ pos: -17.5,-4.5
+ parent: 2
+ - uid: 14379
+ components:
+ - type: Transform
+ pos: -18.5,-4.5
+ parent: 2
+ - uid: 14380
+ components:
+ - type: Transform
+ pos: -18.5,-5.5
+ parent: 2
+ - uid: 14401
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-7.5
+ parent: 2
+ - uid: 14402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-7.5
+ parent: 2
+ - uid: 14404
+ components:
+ - type: Transform
+ pos: -15.5,-7.5
+ parent: 2
+ - uid: 14422
+ components:
+ - type: Transform
+ pos: -7.5,-18.5
+ parent: 2
+ - uid: 14423
+ components:
+ - type: Transform
+ pos: -6.5,-18.5
+ parent: 2
+ - uid: 14427
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-16.5
+ parent: 2
+ - uid: 14428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-16.5
+ parent: 2
+ - uid: 14441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-11.5
+ parent: 2
+ - uid: 14443
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-11.5
+ parent: 2
+ - uid: 14562
+ components:
+ - type: Transform
+ pos: 14.5,25.5
+ parent: 2
+ - uid: 14563
+ components:
+ - type: Transform
+ pos: 15.5,25.5
+ parent: 2
+ - uid: 15376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,26.5
+ parent: 2
+ - uid: 15377
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,20.5
+ parent: 2
+ - uid: 15584
+ components:
+ - type: Transform
+ pos: 31.5,23.5
+ parent: 2
+ - uid: 15585
+ components:
+ - type: Transform
+ pos: 32.5,20.5
+ parent: 2
+ - uid: 15586
+ components:
+ - type: Transform
+ pos: 32.5,21.5
+ parent: 2
+ - uid: 15587
+ components:
+ - type: Transform
+ pos: 31.5,20.5
+ parent: 2
+ - uid: 16445
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-2.5
+ parent: 2
+ - uid: 16456
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-2.5
+ parent: 2
+ - uid: 17669
+ components:
+ - type: Transform
+ pos: -40.5,-3.5
+ parent: 2
+ - uid: 17673
+ components:
+ - type: Transform
+ pos: -40.5,-4.5
+ parent: 2
+ - uid: 17674
+ components:
+ - type: Transform
+ pos: -40.5,-5.5
+ parent: 2
+ - uid: 17713
+ components:
+ - type: Transform
+ pos: -38.5,-14.5
+ parent: 2
+ - uid: 17714
+ components:
+ - type: Transform
+ pos: -38.5,-12.5
+ parent: 2
+ - uid: 17715
+ components:
+ - type: Transform
+ pos: -36.5,-12.5
+ parent: 2
+ - uid: 17716
+ components:
+ - type: Transform
+ pos: -37.5,-12.5
+ parent: 2
+ - uid: 17717
+ components:
+ - type: Transform
+ pos: -41.5,-14.5
+ parent: 2
+ - uid: 17718
+ components:
+ - type: Transform
+ pos: -37.5,-14.5
+ parent: 2
+ - uid: 17719
+ components:
+ - type: Transform
+ pos: -41.5,-13.5
+ parent: 2
+ - uid: 17720
+ components:
+ - type: Transform
+ pos: -36.5,-14.5
+ parent: 2
+ - uid: 17721
+ components:
+ - type: Transform
+ pos: -41.5,-12.5
+ parent: 2
+- proto: CP14TableWoodenCounter
+ entities:
+ - uid: 45
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,-13.5
+ parent: 2
+ - uid: 46
+ components:
+ - type: Transform
+ pos: -26.5,-13.5
+ parent: 2
+ - uid: 47
+ components:
+ - type: Transform
+ pos: -27.5,-13.5
+ parent: 2
+ - uid: 284
+ components:
+ - type: Transform
+ pos: -17.5,-8.5
+ parent: 2
+ - uid: 469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-17.5
+ parent: 2
+ - uid: 470
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-18.5
+ parent: 2
+ - uid: 481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-11.5
+ parent: 2
+ - uid: 482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-9.5
+ parent: 2
+ - uid: 483
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-10.5
+ parent: 2
+ - uid: 5389
+ components:
+ - type: Transform
+ pos: -4.5,-1.5
+ parent: 2
+ - uid: 5390
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 2
+ - uid: 14282
+ components:
+ - type: Transform
+ pos: -18.5,-8.5
+ parent: 2
+- proto: CP14TableWoodenFrame
+ entities:
+ - uid: 1582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -46.5,-4.5
+ parent: 2
+ - uid: 1583
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -47.5,-4.5
+ parent: 2
+- proto: CP14TableWoodenRound
+ entities:
+ - uid: 280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,26.5
+ parent: 2
+ - uid: 1465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-22.5
+ parent: 2
+ - uid: 1506
+ components:
+ - type: Transform
+ pos: 39.5,-9.5
+ parent: 2
+- proto: CP14Target
+ entities:
+ - uid: 1349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-0.5
+ parent: 2
+ - uid: 1577
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-0.5
+ parent: 2
+- proto: CP14TargetEffigy
+ entities:
+ - uid: 1348
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -48.5,-5.5
+ parent: 2
+ - uid: 1576
+ components:
+ - type: Transform
+ pos: -46.5,-0.5
+ parent: 2
+- proto: CP14TravelingShop
+ entities:
+ - uid: 14137
+ components:
+ - type: Transform
+ pos: -27.5,-22.5
+ parent: 2
+ - uid: 14249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-12.5
+ parent: 2
+- proto: CP14TravelingStoreshipAnchor
+ entities:
+ - uid: 14121
+ components:
+ - type: Transform
+ anchored: False
+ rot: 3.141592653589793 rad
+ pos: -27.5,-34.5
+ parent: 1
+- proto: CP14VialSmallGroundQuartz
+ entities:
+ - uid: 14506
+ components:
+ - type: Transform
+ pos: -2.600793,-11.243783
+ parent: 2
+- proto: CP14WallBrownbrick
+ entities:
+ - uid: 176
+ components:
+ - type: Transform
+ pos: 6.5,7.5
+ parent: 2
+ - uid: 426
+ components:
+ - type: Transform
+ pos: 6.5,2.5
+ parent: 2
+ - uid: 662
+ components:
+ - type: Transform
+ pos: 13.5,-7.5
+ parent: 2
+ - uid: 663
+ components:
+ - type: Transform
+ pos: 15.5,-7.5
+ parent: 2
+ - uid: 664
+ components:
+ - type: Transform
+ pos: 16.5,-7.5
+ parent: 2
+ - uid: 665
+ components:
+ - type: Transform
+ pos: 17.5,-7.5
+ parent: 2
+ - uid: 666
+ components:
+ - type: Transform
+ pos: 17.5,-6.5
+ parent: 2
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 13.5,-6.5
+ parent: 2
+ - uid: 669
+ components:
+ - type: Transform
+ pos: 13.5,-2.5
+ parent: 2
+ - uid: 670
+ components:
+ - type: Transform
+ pos: 15.5,-2.5
+ parent: 2
+ - uid: 672
+ components:
+ - type: Transform
+ pos: 17.5,-2.5
+ parent: 2
+ - uid: 673
+ components:
+ - type: Transform
+ pos: 17.5,-3.5
+ parent: 2
+ - uid: 1006
+ components:
+ - type: Transform
+ pos: 6.5,0.5
+ parent: 2
+ - uid: 1007
+ components:
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 2
+ - uid: 1235
+ components:
+ - type: Transform
+ pos: 8.5,7.5
+ parent: 2
+ - uid: 1237
+ components:
+ - type: Transform
+ pos: 5.5,7.5
+ parent: 2
+ - uid: 1259
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 2
+ - uid: 1260
+ components:
+ - type: Transform
+ pos: 7.5,-1.5
+ parent: 2
+ - uid: 1261
+ components:
+ - type: Transform
+ pos: 8.5,-1.5
+ parent: 2
+ - uid: 1269
+ components:
+ - type: Transform
+ pos: 11.5,-0.5
+ parent: 2
+ - uid: 1270
+ components:
+ - type: Transform
+ pos: 11.5,0.5
+ parent: 2
+ - uid: 1273
+ components:
+ - type: Transform
+ pos: 11.5,1.5
+ parent: 2
+ - uid: 1301
+ components:
+ - type: Transform
+ pos: 9.5,-0.5
+ parent: 2
+ - uid: 1405
+ components:
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 2
+ - uid: 1493
+ components:
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 2
+ - uid: 1494
+ components:
+ - type: Transform
+ pos: 11.5,-1.5
+ parent: 2
+ - uid: 1521
+ components:
+ - type: Transform
+ pos: 5.5,9.5
+ parent: 2
+ - uid: 1522
+ components:
+ - type: Transform
+ pos: 9.5,7.5
+ parent: 2
+ - uid: 1548
+ components:
+ - type: Transform
+ pos: 5.5,10.5
+ parent: 2
+ - uid: 1549
+ components:
+ - type: Transform
+ pos: 5.5,11.5
+ parent: 2
+ - uid: 1550
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 2
+ - uid: 1551
+ components:
+ - type: Transform
+ pos: 5.5,12.5
+ parent: 2
+ - uid: 1552
+ components:
+ - type: Transform
+ pos: 7.5,12.5
+ parent: 2
+ - uid: 1553
+ components:
+ - type: Transform
+ pos: 6.5,12.5
+ parent: 2
+ - uid: 1554
+ components:
+ - type: Transform
+ pos: 8.5,12.5
+ parent: 2
+ - uid: 1555
+ components:
+ - type: Transform
+ pos: 9.5,12.5
+ parent: 2
+ - uid: 1556
+ components:
+ - type: Transform
+ pos: 9.5,11.5
+ parent: 2
+ - uid: 1557
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 2
+ - uid: 1560
+ components:
+ - type: Transform
+ pos: 6.5,10.5
+ parent: 2
+ - uid: 1565
+ components:
+ - type: Transform
+ pos: 9.5,-4.5
+ parent: 2
+ - uid: 1567
+ components:
+ - type: Transform
+ pos: 10.5,-1.5
+ parent: 2
+ - uid: 1568
+ components:
+ - type: Transform
+ pos: 9.5,-1.5
+ parent: 2
+ - uid: 5373
+ components:
+ - type: Transform
+ pos: 9.5,-5.5
+ parent: 2
+ - uid: 5374
+ components:
+ - type: Transform
+ pos: 10.5,-5.5
+ parent: 2
+ - uid: 5375
+ components:
+ - type: Transform
+ pos: 11.5,-5.5
+ parent: 2
+ - uid: 5376
+ components:
+ - type: Transform
+ pos: 11.5,-4.5
+ parent: 2
+ - uid: 5377
+ components:
+ - type: Transform
+ pos: 11.5,-3.5
+ parent: 2
+ - uid: 5378
+ components:
+ - type: Transform
+ pos: 11.5,-2.5
+ parent: 2
+ - uid: 5379
+ components:
+ - type: Transform
+ pos: 6.5,-5.5
+ parent: 2
+ - uid: 5381
+ components:
+ - type: Transform
+ pos: 6.5,-3.5
+ parent: 2
+- proto: CP14WallMarbleBrick
+ entities:
+ - uid: 48
+ components:
+ - type: Transform
+ pos: -31.5,1.5
+ parent: 2
+ - uid: 49
+ components:
+ - type: Transform
+ pos: -30.5,1.5
+ parent: 2
+ - uid: 50
+ components:
+ - type: Transform
+ pos: -29.5,1.5
+ parent: 2
+ - uid: 51
+ components:
+ - type: Transform
+ pos: -28.5,1.5
+ parent: 2
+ - uid: 52
+ components:
+ - type: Transform
+ pos: -27.5,1.5
+ parent: 2
+ - uid: 53
+ components:
+ - type: Transform
+ pos: -26.5,-0.5
+ parent: 2
+ - uid: 57
+ components:
+ - type: Transform
+ pos: -31.5,0.5
+ parent: 2
+ - uid: 58
+ components:
+ - type: Transform
+ pos: -31.5,-0.5
+ parent: 2
+ - uid: 59
+ components:
+ - type: Transform
+ pos: -31.5,-1.5
+ parent: 2
+ - uid: 60
+ components:
+ - type: Transform
+ pos: -31.5,-2.5
+ parent: 2
+ - uid: 61
+ components:
+ - type: Transform
+ pos: -31.5,-3.5
+ parent: 2
+ - uid: 62
+ components:
+ - type: Transform
+ pos: -31.5,-4.5
+ parent: 2
+ - uid: 63
+ components:
+ - type: Transform
+ pos: -31.5,-5.5
+ parent: 2
+ - uid: 64
+ components:
+ - type: Transform
+ pos: -31.5,-6.5
+ parent: 2
+ - uid: 65
+ components:
+ - type: Transform
+ pos: -31.5,-7.5
+ parent: 2
+ - uid: 66
+ components:
+ - type: Transform
+ pos: -31.5,-8.5
+ parent: 2
+ - uid: 67
+ components:
+ - type: Transform
+ pos: -31.5,-9.5
+ parent: 2
+ - uid: 68
+ components:
+ - type: Transform
+ pos: -31.5,-10.5
+ parent: 2
+ - uid: 69
+ components:
+ - type: Transform
+ pos: -31.5,-11.5
+ parent: 2
+ - uid: 70
+ components:
+ - type: Transform
+ pos: -31.5,-12.5
+ parent: 2
+ - uid: 71
+ components:
+ - type: Transform
+ pos: -31.5,-13.5
+ parent: 2
+ - uid: 72
+ components:
+ - type: Transform
+ pos: -27.5,0.5
+ parent: 2
+ - uid: 73
+ components:
+ - type: Transform
+ pos: -27.5,-0.5
+ parent: 2
+ - uid: 74
+ components:
+ - type: Transform
+ pos: -27.5,-1.5
+ parent: 2
+ - uid: 75
+ components:
+ - type: Transform
+ pos: -27.5,-3.5
+ parent: 2
+ - uid: 76
+ components:
+ - type: Transform
+ pos: -27.5,-4.5
+ parent: 2
+ - uid: 77
+ components:
+ - type: Transform
+ pos: -28.5,-4.5
+ parent: 2
+ - uid: 78
+ components:
+ - type: Transform
+ pos: -30.5,-4.5
+ parent: 2
+ - uid: 80
+ components:
+ - type: Transform
+ pos: -23.5,-0.5
+ parent: 2
+ - uid: 81
+ components:
+ - type: Transform
+ pos: -23.5,-1.5
+ parent: 2
+ - uid: 82
+ components:
+ - type: Transform
+ pos: -23.5,-2.5
+ parent: 2
+ - uid: 83
+ components:
+ - type: Transform
+ pos: -23.5,-3.5
+ parent: 2
+ - uid: 84
+ components:
+ - type: Transform
+ pos: -23.5,-4.5
+ parent: 2
+ - uid: 85
+ components:
+ - type: Transform
+ pos: -23.5,-5.5
+ parent: 2
+ - uid: 86
+ components:
+ - type: Transform
+ pos: -23.5,-6.5
+ parent: 2
+ - uid: 87
+ components:
+ - type: Transform
+ pos: -23.5,-7.5
+ parent: 2
+ - uid: 88
+ components:
+ - type: Transform
+ pos: -23.5,-8.5
+ parent: 2
+ - uid: 89
+ components:
+ - type: Transform
+ pos: -23.5,-9.5
+ parent: 2
+ - uid: 90
+ components:
+ - type: Transform
+ pos: -24.5,-5.5
+ parent: 2
+ - uid: 91
+ components:
+ - type: Transform
+ pos: -25.5,-5.5
+ parent: 2
+ - uid: 92
+ components:
+ - type: Transform
+ pos: -26.5,-5.5
+ parent: 2
+ - uid: 93
+ components:
+ - type: Transform
+ pos: -27.5,-5.5
+ parent: 2
+ - uid: 95
+ components:
+ - type: Transform
+ pos: -28.5,-9.5
+ parent: 2
+ - uid: 97
+ components:
+ - type: Transform
+ pos: -27.5,-9.5
+ parent: 2
+ - uid: 98
+ components:
+ - type: Transform
+ pos: -26.5,-9.5
+ parent: 2
+ - uid: 99
+ components:
+ - type: Transform
+ pos: -25.5,-9.5
+ parent: 2
+ - uid: 100
+ components:
+ - type: Transform
+ pos: -24.5,-9.5
+ parent: 2
+ - uid: 101
+ components:
+ - type: Transform
+ pos: -24.5,-0.5
+ parent: 2
+ - uid: 103
+ components:
+ - type: Transform
+ pos: -30.5,-9.5
+ parent: 2
+ - uid: 104
+ components:
+ - type: Transform
+ pos: -30.5,-13.5
+ parent: 2
+ - uid: 105
+ components:
+ - type: Transform
+ pos: -28.5,-13.5
+ parent: 2
+ - uid: 106
+ components:
+ - type: Transform
+ pos: -24.5,-13.5
+ parent: 2
+ - uid: 107
+ components:
+ - type: Transform
+ pos: -24.5,-12.5
+ parent: 2
+ - uid: 108
+ components:
+ - type: Transform
+ pos: -24.5,-11.5
+ parent: 2
+ - uid: 109
+ components:
+ - type: Transform
+ pos: -24.5,-10.5
+ parent: 2
+ - uid: 110
+ components:
+ - type: Transform
+ pos: -24.5,-14.5
+ parent: 2
+ - uid: 111
+ components:
+ - type: Transform
+ pos: -24.5,-17.5
+ parent: 2
+ - uid: 112
+ components:
+ - type: Transform
+ pos: -24.5,-18.5
+ parent: 2
+ - uid: 113
+ components:
+ - type: Transform
+ pos: -25.5,-18.5
+ parent: 2
+ - uid: 115
+ components:
+ - type: Transform
+ pos: -28.5,-18.5
+ parent: 2
+ - uid: 116
+ components:
+ - type: Transform
+ pos: -26.5,-18.5
+ parent: 2
+ - uid: 117
+ components:
+ - type: Transform
+ pos: -30.5,-14.5
+ parent: 2
+ - uid: 118
+ components:
+ - type: Transform
+ pos: -30.5,-16.5
+ parent: 2
+ - uid: 119
+ components:
+ - type: Transform
+ pos: -30.5,-17.5
+ parent: 2
+ - uid: 120
+ components:
+ - type: Transform
+ pos: -30.5,-18.5
+ parent: 2
+ - uid: 121
+ components:
+ - type: Transform
+ pos: -30.5,-19.5
+ parent: 2
+ - uid: 122
+ components:
+ - type: Transform
+ pos: -30.5,-15.5
+ parent: 2
+ - uid: 123
+ components:
+ - type: Transform
+ pos: -30.5,-21.5
+ parent: 2
+ - uid: 124
+ components:
+ - type: Transform
+ pos: -30.5,-22.5
+ parent: 2
+ - uid: 125
+ components:
+ - type: Transform
+ pos: -30.5,-23.5
+ parent: 2
+ - uid: 126
+ components:
+ - type: Transform
+ pos: -30.5,-20.5
+ parent: 2
+ - uid: 127
+ components:
+ - type: Transform
+ pos: -29.5,-23.5
+ parent: 2
+ - uid: 128
+ components:
+ - type: Transform
+ pos: -25.5,-23.5
+ parent: 2
+ - uid: 129
+ components:
+ - type: Transform
+ pos: -24.5,-23.5
+ parent: 2
+ - uid: 130
+ components:
+ - type: Transform
+ pos: -24.5,-22.5
+ parent: 2
+ - uid: 131
+ components:
+ - type: Transform
+ pos: -29.5,-18.5
+ parent: 2
+ - uid: 132
+ components:
+ - type: Transform
+ pos: -24.5,-20.5
+ parent: 2
+ - uid: 133
+ components:
+ - type: Transform
+ pos: -24.5,-19.5
+ parent: 2
+ - uid: 1573
+ components:
+ - type: Transform
+ pos: -25.5,-0.5
+ parent: 2
+- proto: CP14WallmountBarShelfA
+ entities:
+ - uid: 14262
+ components:
+ - type: Transform
+ pos: 16.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14421
+ components:
+ - type: Transform
+ pos: -5.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14438
+ components:
+ - type: Transform
+ pos: -6.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14454
+ components:
+ - type: Transform
+ pos: -3.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14519
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14WallmountBarShelfB
+ entities:
+ - uid: 14259
+ components:
+ - type: Transform
+ pos: 15.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14260
+ components:
+ - type: Transform
+ pos: 17.5,31.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14452
+ components:
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14513
+ components:
+ - type: Transform
+ pos: -5.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14WallmountCrystalAmethysts
+ entities:
+ - uid: 13445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -48.5,5.5
+ parent: 2
+ - uid: 13447
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -48.5,3.5
+ parent: 2
+ - uid: 13451
+ components:
+ - type: Transform
+ pos: -48.5,5.5
+ parent: 2
+ - uid: 13452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -48.5,2.5
+ parent: 2
+ - uid: 13453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -47.5,1.5
+ parent: 2
+ - uid: 13454
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -46.5,1.5
+ parent: 2
+ - uid: 13460
+ components:
+ - type: Transform
+ pos: -46.5,5.5
+ parent: 2
+ - uid: 13461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,1.5
+ parent: 2
+- proto: CP14WallmountFlagAlchemist
+ entities:
+ - uid: 14352
+ components:
+ - type: Transform
+ pos: -6.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14480
+ components:
+ - type: Transform
+ pos: -6.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14481
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14WallmountFlagBankCommandant
+ entities:
+ - uid: 14346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14347
+ components:
+ - type: Transform
+ pos: -6.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14WallmountFlagBlacksmith
+ entities:
+ - uid: 14348
+ components:
+ - type: Transform
+ pos: -12.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14349
+ components:
+ - type: Transform
+ pos: -16.5,2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14360
+ components:
+ - type: Transform
+ pos: -18.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-15.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14WallmountFlagTavern
+ entities:
+ - uid: 15995
+ components:
+ - type: Transform
+ pos: 13.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15996
+ components:
+ - type: Transform
+ pos: 16.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14WallmountLamp
+ entities:
+ - uid: 13203
+ components:
+ - type: Transform
+ pos: -17.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-6.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15462
+ components:
+ - type: Transform
+ pos: -13.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16006
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,35.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-13.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -36.5,-8.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -48.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-12.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17787
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17788
+ components:
+ - type: Transform
+ pos: -28.5,-10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17790
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-7.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-2.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14WallmountLampEmpty
+ entities:
+ - uid: 15373
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,5.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15375
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15387
+ components:
+ - type: Transform
+ pos: -11.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15390
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15391
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15440
+ components:
+ - type: Transform
+ pos: -20.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15441
+ components:
+ - type: Transform
+ pos: -15.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15442
+ components:
+ - type: Transform
+ pos: -12.5,20.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15443
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,26.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15444
+ components:
+ - type: Transform
+ pos: -12.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15445
+ components:
+ - type: Transform
+ pos: -5.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15447
+ components:
+ - type: Transform
+ pos: 3.5,23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15449
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,18.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,10.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15453
+ components:
+ - type: Transform
+ pos: 7.5,11.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,3.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-19.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15464
+ components:
+ - type: Transform
+ pos: -13.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-17.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15470
+ components:
+ - type: Transform
+ pos: -3.5,-23.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14WallmountOrdersBorder
+ entities:
+ - uid: 14227
+ components:
+ - type: Transform
+ pos: -28.5,-14.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14WallmountPaintingCandle
+ entities:
+ - uid: 14520
+ components:
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14WallmountPaintingSaint
+ entities:
+ - uid: 14510
+ components:
+ - type: Transform
+ pos: -14.5,-21.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14511
+ components:
+ - type: Transform
+ pos: -13.5,-0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 14512
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14WallmountPaintingSkull
+ entities:
+ - uid: 14514
+ components:
+ - type: Transform
+ pos: -16.5,-4.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14WallmountPaintingWoman
+ entities:
+ - uid: 14509
+ components:
+ - type: Transform
+ pos: -15.5,-16.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14WallmountTorchAlwaysPowered
+ entities:
+ - uid: 1574
+ components:
+ - type: Transform
+ pos: 14.5,36.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 15999
+ components:
+ - type: Transform
+ pos: 12.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16000
+ components:
+ - type: Transform
+ pos: 17.5,27.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16001
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16002
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,22.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16003
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 16004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,30.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17791
+ components:
+ - type: Transform
+ pos: -29.5,0.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: CP14WallStone
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 23.5,-42.5
+ parent: 2
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 23.5,-40.5
+ parent: 2
+ - uid: 221
+ components:
+ - type: Transform
+ pos: 21.5,-45.5
+ parent: 2
+ - uid: 427
+ components:
+ - type: Transform
+ pos: 22.5,-38.5
+ parent: 2
+ - uid: 450
+ components:
+ - type: Transform
+ pos: 22.5,-40.5
+ parent: 2
+ - uid: 451
+ components:
+ - type: Transform
+ pos: 22.5,-41.5
+ parent: 2
+ - uid: 452
+ components:
+ - type: Transform
+ pos: 22.5,-42.5
+ parent: 2
+ - uid: 455
+ components:
+ - type: Transform
+ pos: 22.5,-39.5
+ parent: 2
+ - uid: 456
+ components:
+ - type: Transform
+ pos: 21.5,-42.5
+ parent: 2
+ - uid: 460
+ components:
+ - type: Transform
+ pos: 8.5,-29.5
+ parent: 2
+ - uid: 1345
+ components:
+ - type: Transform
+ pos: 101.5,115.5
+ parent: 2
+ - uid: 2321
+ components:
+ - type: Transform
+ pos: 105.5,116.5
+ parent: 2
+ - uid: 2322
+ components:
+ - type: Transform
+ pos: 103.5,116.5
+ parent: 2
+ - uid: 2323
+ components:
+ - type: Transform
+ pos: 104.5,116.5
+ parent: 2
+ - uid: 2324
+ components:
+ - type: Transform
+ pos: 100.5,115.5
+ parent: 2
+ - uid: 2325
+ components:
+ - type: Transform
+ pos: 100.5,114.5
+ parent: 2
+ - uid: 2326
+ components:
+ - type: Transform
+ pos: 101.5,114.5
+ parent: 2
+ - uid: 2328
+ components:
+ - type: Transform
+ pos: 106.5,115.5
+ parent: 2
+ - uid: 2329
+ components:
+ - type: Transform
+ pos: 105.5,115.5
+ parent: 2
+ - uid: 2330
+ components:
+ - type: Transform
+ pos: 104.5,115.5
+ parent: 2
+ - uid: 2331
+ components:
+ - type: Transform
+ pos: 103.5,115.5
+ parent: 2
+ - uid: 2332
+ components:
+ - type: Transform
+ pos: 102.5,115.5
+ parent: 2
+ - uid: 2333
+ components:
+ - type: Transform
+ pos: 102.5,114.5
+ parent: 2
+ - uid: 2334
+ components:
+ - type: Transform
+ pos: 103.5,114.5
+ parent: 2
+ - uid: 2335
+ components:
+ - type: Transform
+ pos: 104.5,114.5
+ parent: 2
+ - uid: 2336
+ components:
+ - type: Transform
+ pos: 105.5,114.5
+ parent: 2
+ - uid: 2337
+ components:
+ - type: Transform
+ pos: 106.5,114.5
+ parent: 2
+ - uid: 2338
+ components:
+ - type: Transform
+ pos: 107.5,114.5
+ parent: 2
+ - uid: 2339
+ components:
+ - type: Transform
+ pos: 101.5,113.5
+ parent: 2
+ - uid: 2340
+ components:
+ - type: Transform
+ pos: 102.5,113.5
+ parent: 2
+ - uid: 2341
+ components:
+ - type: Transform
+ pos: 112.5,88.5
+ parent: 2
+ - uid: 2342
+ components:
+ - type: Transform
+ pos: 104.5,113.5
+ parent: 2
+ - uid: 2343
+ components:
+ - type: Transform
+ pos: 105.5,113.5
+ parent: 2
+ - uid: 2344
+ components:
+ - type: Transform
+ pos: 106.5,113.5
+ parent: 2
+ - uid: 2345
+ components:
+ - type: Transform
+ pos: 107.5,113.5
+ parent: 2
+ - uid: 2346
+ components:
+ - type: Transform
+ pos: 108.5,113.5
+ parent: 2
+ - uid: 2349
+ components:
+ - type: Transform
+ pos: 89.5,113.5
+ parent: 2
+ - uid: 2350
+ components:
+ - type: Transform
+ pos: 89.5,114.5
+ parent: 2
+ - uid: 2351
+ components:
+ - type: Transform
+ pos: 88.5,113.5
+ parent: 2
+ - uid: 2352
+ components:
+ - type: Transform
+ pos: 88.5,114.5
+ parent: 2
+ - uid: 2353
+ components:
+ - type: Transform
+ pos: 87.5,113.5
+ parent: 2
+ - uid: 2354
+ components:
+ - type: Transform
+ pos: 87.5,114.5
+ parent: 2
+ - uid: 2355
+ components:
+ - type: Transform
+ pos: 86.5,114.5
+ parent: 2
+ - uid: 2356
+ components:
+ - type: Transform
+ pos: 86.5,113.5
+ parent: 2
+ - uid: 2359
+ components:
+ - type: Transform
+ pos: 88.5,112.5
+ parent: 2
+ - uid: 2360
+ components:
+ - type: Transform
+ pos: 87.5,112.5
+ parent: 2
+ - uid: 2361
+ components:
+ - type: Transform
+ pos: 86.5,112.5
+ parent: 2
+ - uid: 2362
+ components:
+ - type: Transform
+ pos: 85.5,112.5
+ parent: 2
+ - uid: 2368
+ components:
+ - type: Transform
+ pos: 85.5,113.5
+ parent: 2
+ - uid: 2369
+ components:
+ - type: Transform
+ pos: 84.5,112.5
+ parent: 2
+ - uid: 2370
+ components:
+ - type: Transform
+ pos: 83.5,111.5
+ parent: 2
+ - uid: 2371
+ components:
+ - type: Transform
+ pos: 88.5,111.5
+ parent: 2
+ - uid: 2372
+ components:
+ - type: Transform
+ pos: 88.5,109.5
+ parent: 2
+ - uid: 2373
+ components:
+ - type: Transform
+ pos: 89.5,108.5
+ parent: 2
+ - uid: 2374
+ components:
+ - type: Transform
+ pos: 88.5,110.5
+ parent: 2
+ - uid: 2375
+ components:
+ - type: Transform
+ pos: 90.5,108.5
+ parent: 2
+ - uid: 2376
+ components:
+ - type: Transform
+ pos: 89.5,109.5
+ parent: 2
+ - uid: 2584
+ components:
+ - type: Transform
+ pos: 77.5,79.5
+ parent: 2
+ - uid: 2590
+ components:
+ - type: Transform
+ pos: 83.5,110.5
+ parent: 2
+ - uid: 2591
+ components:
+ - type: Transform
+ pos: 83.5,108.5
+ parent: 2
+ - uid: 2592
+ components:
+ - type: Transform
+ pos: 83.5,107.5
+ parent: 2
+ - uid: 2593
+ components:
+ - type: Transform
+ pos: 83.5,109.5
+ parent: 2
+ - uid: 2594
+ components:
+ - type: Transform
+ pos: 82.5,106.5
+ parent: 2
+ - uid: 2595
+ components:
+ - type: Transform
+ pos: 81.5,105.5
+ parent: 2
+ - uid: 2596
+ components:
+ - type: Transform
+ pos: 80.5,104.5
+ parent: 2
+ - uid: 2597
+ components:
+ - type: Transform
+ pos: 79.5,105.5
+ parent: 2
+ - uid: 2598
+ components:
+ - type: Transform
+ pos: 78.5,105.5
+ parent: 2
+ - uid: 2599
+ components:
+ - type: Transform
+ pos: 76.5,104.5
+ parent: 2
+ - uid: 2600
+ components:
+ - type: Transform
+ pos: 77.5,104.5
+ parent: 2
+ - uid: 2601
+ components:
+ - type: Transform
+ pos: 76.5,103.5
+ parent: 2
+ - uid: 2602
+ components:
+ - type: Transform
+ pos: 77.5,102.5
+ parent: 2
+ - uid: 2604
+ components:
+ - type: Transform
+ pos: 77.5,103.5
+ parent: 2
+ - uid: 2605
+ components:
+ - type: Transform
+ pos: 78.5,103.5
+ parent: 2
+ - uid: 2606
+ components:
+ - type: Transform
+ pos: 80.5,103.5
+ parent: 2
+ - uid: 2607
+ components:
+ - type: Transform
+ pos: 79.5,103.5
+ parent: 2
+ - uid: 2608
+ components:
+ - type: Transform
+ pos: 78.5,104.5
+ parent: 2
+ - uid: 2609
+ components:
+ - type: Transform
+ pos: 79.5,104.5
+ parent: 2
+ - uid: 2615
+ components:
+ - type: Transform
+ pos: 81.5,104.5
+ parent: 2
+ - uid: 2616
+ components:
+ - type: Transform
+ pos: 82.5,104.5
+ parent: 2
+ - uid: 2617
+ components:
+ - type: Transform
+ pos: 82.5,105.5
+ parent: 2
+ - uid: 2618
+ components:
+ - type: Transform
+ pos: 83.5,105.5
+ parent: 2
+ - uid: 2619
+ components:
+ - type: Transform
+ pos: 83.5,106.5
+ parent: 2
+ - uid: 2620
+ components:
+ - type: Transform
+ pos: 84.5,107.5
+ parent: 2
+ - uid: 2621
+ components:
+ - type: Transform
+ pos: 84.5,108.5
+ parent: 2
+ - uid: 2622
+ components:
+ - type: Transform
+ pos: 84.5,110.5
+ parent: 2
+ - uid: 2623
+ components:
+ - type: Transform
+ pos: 84.5,111.5
+ parent: 2
+ - uid: 2624
+ components:
+ - type: Transform
+ pos: 84.5,109.5
+ parent: 2
+ - uid: 2625
+ components:
+ - type: Transform
+ pos: 86.5,108.5
+ parent: 2
+ - uid: 2626
+ components:
+ - type: Transform
+ pos: 86.5,107.5
+ parent: 2
+ - uid: 2627
+ components:
+ - type: Transform
+ pos: 87.5,111.5
+ parent: 2
+ - uid: 2628
+ components:
+ - type: Transform
+ pos: 87.5,110.5
+ parent: 2
+ - uid: 2629
+ components:
+ - type: Transform
+ pos: 87.5,109.5
+ parent: 2
+ - uid: 2630
+ components:
+ - type: Transform
+ pos: 87.5,108.5
+ parent: 2
+ - uid: 2631
+ components:
+ - type: Transform
+ pos: 87.5,107.5
+ parent: 2
+ - uid: 2632
+ components:
+ - type: Transform
+ pos: 85.5,111.5
+ parent: 2
+ - uid: 2633
+ components:
+ - type: Transform
+ pos: 85.5,110.5
+ parent: 2
+ - uid: 2634
+ components:
+ - type: Transform
+ pos: 85.5,109.5
+ parent: 2
+ - uid: 2635
+ components:
+ - type: Transform
+ pos: 85.5,108.5
+ parent: 2
+ - uid: 2636
+ components:
+ - type: Transform
+ pos: 85.5,107.5
+ parent: 2
+ - uid: 2637
+ components:
+ - type: Transform
+ pos: 86.5,111.5
+ parent: 2
+ - uid: 2638
+ components:
+ - type: Transform
+ pos: 86.5,110.5
+ parent: 2
+ - uid: 2639
+ components:
+ - type: Transform
+ pos: 86.5,109.5
+ parent: 2
+ - uid: 2640
+ components:
+ - type: Transform
+ pos: 88.5,108.5
+ parent: 2
+ - uid: 2641
+ components:
+ - type: Transform
+ pos: 88.5,107.5
+ parent: 2
+ - uid: 2642
+ components:
+ - type: Transform
+ pos: 89.5,107.5
+ parent: 2
+ - uid: 2643
+ components:
+ - type: Transform
+ pos: 90.5,107.5
+ parent: 2
+ - uid: 2646
+ components:
+ - type: Transform
+ pos: 69.5,91.5
+ parent: 2
+ - uid: 2647
+ components:
+ - type: Transform
+ pos: 70.5,91.5
+ parent: 2
+ - uid: 2648
+ components:
+ - type: Transform
+ pos: 71.5,92.5
+ parent: 2
+ - uid: 2649
+ components:
+ - type: Transform
+ pos: 70.5,92.5
+ parent: 2
+ - uid: 2650
+ components:
+ - type: Transform
+ pos: 72.5,93.5
+ parent: 2
+ - uid: 2653
+ components:
+ - type: Transform
+ pos: 71.5,93.5
+ parent: 2
+ - uid: 2654
+ components:
+ - type: Transform
+ pos: 73.5,95.5
+ parent: 2
+ - uid: 2655
+ components:
+ - type: Transform
+ pos: 72.5,95.5
+ parent: 2
+ - uid: 2656
+ components:
+ - type: Transform
+ pos: 72.5,96.5
+ parent: 2
+ - uid: 2657
+ components:
+ - type: Transform
+ pos: 73.5,96.5
+ parent: 2
+ - uid: 2658
+ components:
+ - type: Transform
+ pos: 73.5,98.5
+ parent: 2
+ - uid: 2659
+ components:
+ - type: Transform
+ pos: 72.5,98.5
+ parent: 2
+ - uid: 2660
+ components:
+ - type: Transform
+ pos: 73.5,97.5
+ parent: 2
+ - uid: 2661
+ components:
+ - type: Transform
+ pos: 73.5,99.5
+ parent: 2
+ - uid: 2662
+ components:
+ - type: Transform
+ pos: 74.5,100.5
+ parent: 2
+ - uid: 2663
+ components:
+ - type: Transform
+ pos: 74.5,101.5
+ parent: 2
+ - uid: 2664
+ components:
+ - type: Transform
+ pos: 75.5,101.5
+ parent: 2
+ - uid: 2665
+ components:
+ - type: Transform
+ pos: 76.5,101.5
+ parent: 2
+ - uid: 2666
+ components:
+ - type: Transform
+ pos: 77.5,101.5
+ parent: 2
+ - uid: 2667
+ components:
+ - type: Transform
+ pos: 75.5,100.5
+ parent: 2
+ - uid: 2668
+ components:
+ - type: Transform
+ pos: 74.5,99.5
+ parent: 2
+ - uid: 2669
+ components:
+ - type: Transform
+ pos: 89.5,104.5
+ parent: 2
+ - uid: 2670
+ components:
+ - type: Transform
+ pos: 90.5,105.5
+ parent: 2
+ - uid: 2671
+ components:
+ - type: Transform
+ pos: 90.5,104.5
+ parent: 2
+ - uid: 2672
+ components:
+ - type: Transform
+ pos: 84.5,106.5
+ parent: 2
+ - uid: 2673
+ components:
+ - type: Transform
+ pos: 84.5,105.5
+ parent: 2
+ - uid: 2675
+ components:
+ - type: Transform
+ pos: 85.5,106.5
+ parent: 2
+ - uid: 2676
+ components:
+ - type: Transform
+ pos: 85.5,105.5
+ parent: 2
+ - uid: 2678
+ components:
+ - type: Transform
+ pos: 86.5,105.5
+ parent: 2
+ - uid: 2680
+ components:
+ - type: Transform
+ pos: 87.5,106.5
+ parent: 2
+ - uid: 2681
+ components:
+ - type: Transform
+ pos: 87.5,105.5
+ parent: 2
+ - uid: 2682
+ components:
+ - type: Transform
+ pos: 87.5,104.5
+ parent: 2
+ - uid: 2683
+ components:
+ - type: Transform
+ pos: 88.5,106.5
+ parent: 2
+ - uid: 2684
+ components:
+ - type: Transform
+ pos: 86.5,106.5
+ parent: 2
+ - uid: 2685
+ components:
+ - type: Transform
+ pos: 88.5,105.5
+ parent: 2
+ - uid: 2686
+ components:
+ - type: Transform
+ pos: 88.5,104.5
+ parent: 2
+ - uid: 2687
+ components:
+ - type: Transform
+ pos: 89.5,106.5
+ parent: 2
+ - uid: 2688
+ components:
+ - type: Transform
+ pos: 89.5,105.5
+ parent: 2
+ - uid: 2689
+ components:
+ - type: Transform
+ pos: 90.5,106.5
+ parent: 2
+ - uid: 2690
+ components:
+ - type: Transform
+ pos: 83.5,104.5
+ parent: 2
+ - uid: 2691
+ components:
+ - type: Transform
+ pos: 85.5,99.5
+ parent: 2
+ - uid: 2692
+ components:
+ - type: Transform
+ pos: 85.5,101.5
+ parent: 2
+ - uid: 2694
+ components:
+ - type: Transform
+ pos: 85.5,100.5
+ parent: 2
+ - uid: 2695
+ components:
+ - type: Transform
+ pos: -103.5,56.5
+ parent: 2
+ - uid: 2696
+ components:
+ - type: Transform
+ pos: 86.5,100.5
+ parent: 2
+ - uid: 2697
+ components:
+ - type: Transform
+ pos: 86.5,101.5
+ parent: 2
+ - uid: 2698
+ components:
+ - type: Transform
+ pos: 86.5,102.5
+ parent: 2
+ - uid: 2700
+ components:
+ - type: Transform
+ pos: 87.5,101.5
+ parent: 2
+ - uid: 2701
+ components:
+ - type: Transform
+ pos: 87.5,102.5
+ parent: 2
+ - uid: 2702
+ components:
+ - type: Transform
+ pos: 87.5,103.5
+ parent: 2
+ - uid: 2703
+ components:
+ - type: Transform
+ pos: 88.5,102.5
+ parent: 2
+ - uid: 2704
+ components:
+ - type: Transform
+ pos: 88.5,103.5
+ parent: 2
+ - uid: 2705
+ components:
+ - type: Transform
+ pos: 89.5,103.5
+ parent: 2
+ - uid: 2711
+ components:
+ - type: Transform
+ pos: 81.5,98.5
+ parent: 2
+ - uid: 2712
+ components:
+ - type: Transform
+ pos: 81.5,97.5
+ parent: 2
+ - uid: 2713
+ components:
+ - type: Transform
+ pos: -104.5,57.5
+ parent: 2
+ - uid: 2718
+ components:
+ - type: Transform
+ pos: 82.5,98.5
+ parent: 2
+ - uid: 2719
+ components:
+ - type: Transform
+ pos: 82.5,97.5
+ parent: 2
+ - uid: 2723
+ components:
+ - type: Transform
+ pos: 84.5,98.5
+ parent: 2
+ - uid: 2726
+ components:
+ - type: Transform
+ pos: 83.5,99.5
+ parent: 2
+ - uid: 2727
+ components:
+ - type: Transform
+ pos: 83.5,98.5
+ parent: 2
+ - uid: 2728
+ components:
+ - type: Transform
+ pos: 83.5,97.5
+ parent: 2
+ - uid: 2732
+ components:
+ - type: Transform
+ pos: 84.5,100.5
+ parent: 2
+ - uid: 2733
+ components:
+ - type: Transform
+ pos: 84.5,99.5
+ parent: 2
+ - uid: 2735
+ components:
+ - type: Transform
+ pos: 79.5,78.5
+ parent: 2
+ - uid: 2737
+ components:
+ - type: Transform
+ pos: -106.5,37.5
+ parent: 2
+ - uid: 2738
+ components:
+ - type: Transform
+ pos: 82.5,78.5
+ parent: 2
+ - uid: 2739
+ components:
+ - type: Transform
+ pos: -107.5,37.5
+ parent: 2
+ - uid: 2740
+ components:
+ - type: Transform
+ pos: 71.5,91.5
+ parent: 2
+ - uid: 2741
+ components:
+ - type: Transform
+ pos: 71.5,90.5
+ parent: 2
+ - uid: 2746
+ components:
+ - type: Transform
+ pos: 69.5,87.5
+ parent: 2
+ - uid: 2747
+ components:
+ - type: Transform
+ pos: 70.5,86.5
+ parent: 2
+ - uid: 2748
+ components:
+ - type: Transform
+ pos: 70.5,87.5
+ parent: 2
+ - uid: 2749
+ components:
+ - type: Transform
+ pos: 69.5,86.5
+ parent: 2
+ - uid: 2750
+ components:
+ - type: Transform
+ pos: 71.5,85.5
+ parent: 2
+ - uid: 2751
+ components:
+ - type: Transform
+ pos: 72.5,84.5
+ parent: 2
+ - uid: 2752
+ components:
+ - type: Transform
+ pos: 71.5,84.5
+ parent: 2
+ - uid: 2756
+ components:
+ - type: Transform
+ pos: 72.5,90.5
+ parent: 2
+ - uid: 2757
+ components:
+ - type: Transform
+ pos: 72.5,91.5
+ parent: 2
+ - uid: 2758
+ components:
+ - type: Transform
+ pos: 72.5,92.5
+ parent: 2
+ - uid: 2762
+ components:
+ - type: Transform
+ pos: -85.5,64.5
+ parent: 2
+ - uid: 2768
+ components:
+ - type: Transform
+ pos: 70.5,85.5
+ parent: 2
+ - uid: 2769
+ components:
+ - type: Transform
+ pos: 73.5,82.5
+ parent: 2
+ - uid: 2770
+ components:
+ - type: Transform
+ pos: 82.5,96.5
+ parent: 2
+ - uid: 2772
+ components:
+ - type: Transform
+ pos: 81.5,96.5
+ parent: 2
+ - uid: 2773
+ components:
+ - type: Transform
+ pos: 81.5,95.5
+ parent: 2
+ - uid: 2776
+ components:
+ - type: Transform
+ pos: 74.5,98.5
+ parent: 2
+ - uid: 2777
+ components:
+ - type: Transform
+ pos: 74.5,97.5
+ parent: 2
+ - uid: 2791
+ components:
+ - type: Transform
+ pos: 75.5,98.5
+ parent: 2
+ - uid: 2795
+ components:
+ - type: Transform
+ pos: 77.5,90.5
+ parent: 2
+ - uid: 2796
+ components:
+ - type: Transform
+ pos: 77.5,89.5
+ parent: 2
+ - uid: 2797
+ components:
+ - type: Transform
+ pos: 77.5,88.5
+ parent: 2
+ - uid: 2798
+ components:
+ - type: Transform
+ pos: 77.5,87.5
+ parent: 2
+ - uid: 2799
+ components:
+ - type: Transform
+ pos: 77.5,86.5
+ parent: 2
+ - uid: 2800
+ components:
+ - type: Transform
+ pos: 77.5,85.5
+ parent: 2
+ - uid: 2801
+ components:
+ - type: Transform
+ pos: 77.5,84.5
+ parent: 2
+ - uid: 2810
+ components:
+ - type: Transform
+ pos: 77.5,93.5
+ parent: 2
+ - uid: 2811
+ components:
+ - type: Transform
+ pos: 77.5,92.5
+ parent: 2
+ - uid: 2812
+ components:
+ - type: Transform
+ pos: 77.5,91.5
+ parent: 2
+ - uid: 2814
+ components:
+ - type: Transform
+ pos: 76.5,91.5
+ parent: 2
+ - uid: 2815
+ components:
+ - type: Transform
+ pos: 76.5,90.5
+ parent: 2
+ - uid: 2816
+ components:
+ - type: Transform
+ pos: 76.5,89.5
+ parent: 2
+ - uid: 2817
+ components:
+ - type: Transform
+ pos: 76.5,88.5
+ parent: 2
+ - uid: 2818
+ components:
+ - type: Transform
+ pos: 76.5,87.5
+ parent: 2
+ - uid: 2819
+ components:
+ - type: Transform
+ pos: 76.5,86.5
+ parent: 2
+ - uid: 2828
+ components:
+ - type: Transform
+ pos: -84.5,64.5
+ parent: 2
+ - uid: 2833
+ components:
+ - type: Transform
+ pos: -85.5,65.5
+ parent: 2
+ - uid: 2834
+ components:
+ - type: Transform
+ pos: -83.5,64.5
+ parent: 2
+ - uid: 2838
+ components:
+ - type: Transform
+ pos: 75.5,89.5
+ parent: 2
+ - uid: 2839
+ components:
+ - type: Transform
+ pos: 75.5,88.5
+ parent: 2
+ - uid: 2845
+ components:
+ - type: Transform
+ pos: 80.5,97.5
+ parent: 2
+ - uid: 2846
+ components:
+ - type: Transform
+ pos: 80.5,96.5
+ parent: 2
+ - uid: 2847
+ components:
+ - type: Transform
+ pos: 80.5,95.5
+ parent: 2
+ - uid: 2848
+ components:
+ - type: Transform
+ pos: 80.5,94.5
+ parent: 2
+ - uid: 2866
+ components:
+ - type: Transform
+ pos: 78.5,84.5
+ parent: 2
+ - uid: 2868
+ components:
+ - type: Transform
+ pos: 79.5,95.5
+ parent: 2
+ - uid: 2869
+ components:
+ - type: Transform
+ pos: 79.5,94.5
+ parent: 2
+ - uid: 2870
+ components:
+ - type: Transform
+ pos: 79.5,93.5
+ parent: 2
+ - uid: 2871
+ components:
+ - type: Transform
+ pos: 79.5,92.5
+ parent: 2
+ - uid: 2872
+ components:
+ - type: Transform
+ pos: 78.5,94.5
+ parent: 2
+ - uid: 2873
+ components:
+ - type: Transform
+ pos: 78.5,93.5
+ parent: 2
+ - uid: 2874
+ components:
+ - type: Transform
+ pos: 78.5,91.5
+ parent: 2
+ - uid: 2875
+ components:
+ - type: Transform
+ pos: 78.5,92.5
+ parent: 2
+ - uid: 2876
+ components:
+ - type: Transform
+ pos: 78.5,89.5
+ parent: 2
+ - uid: 2877
+ components:
+ - type: Transform
+ pos: 78.5,88.5
+ parent: 2
+ - uid: 2880
+ components:
+ - type: Transform
+ pos: 78.5,90.5
+ parent: 2
+ - uid: 2881
+ components:
+ - type: Transform
+ pos: 75.5,99.5
+ parent: 2
+ - uid: 2886
+ components:
+ - type: Transform
+ pos: 112.5,91.5
+ parent: 2
+ - uid: 2890
+ components:
+ - type: Transform
+ pos: 77.5,100.5
+ parent: 2
+ - uid: 2891
+ components:
+ - type: Transform
+ pos: 76.5,100.5
+ parent: 2
+ - uid: 2892
+ components:
+ - type: Transform
+ pos: 80.5,78.5
+ parent: 2
+ - uid: 2893
+ components:
+ - type: Transform
+ pos: 81.5,78.5
+ parent: 2
+ - uid: 2896
+ components:
+ - type: Transform
+ pos: 76.5,79.5
+ parent: 2
+ - uid: 2899
+ components:
+ - type: Transform
+ pos: 75.5,80.5
+ parent: 2
+ - uid: 2902
+ components:
+ - type: Transform
+ pos: -109.5,37.5
+ parent: 2
+ - uid: 2903
+ components:
+ - type: Transform
+ pos: -108.5,37.5
+ parent: 2
+ - uid: 2904
+ components:
+ - type: Transform
+ pos: 78.5,79.5
+ parent: 2
+ - uid: 2905
+ components:
+ - type: Transform
+ pos: 109.5,112.5
+ parent: 2
+ - uid: 2906
+ components:
+ - type: Transform
+ pos: 110.5,111.5
+ parent: 2
+ - uid: 2907
+ components:
+ - type: Transform
+ pos: 111.5,110.5
+ parent: 2
+ - uid: 2908
+ components:
+ - type: Transform
+ pos: 112.5,109.5
+ parent: 2
+ - uid: 2909
+ components:
+ - type: Transform
+ pos: 105.5,104.5
+ parent: 2
+ - uid: 2910
+ components:
+ - type: Transform
+ pos: 112.5,107.5
+ parent: 2
+ - uid: 2911
+ components:
+ - type: Transform
+ pos: 112.5,105.5
+ parent: 2
+ - uid: 2912
+ components:
+ - type: Transform
+ pos: 104.5,108.5
+ parent: 2
+ - uid: 2913
+ components:
+ - type: Transform
+ pos: 112.5,108.5
+ parent: 2
+ - uid: 2914
+ components:
+ - type: Transform
+ pos: 111.5,108.5
+ parent: 2
+ - uid: 2919
+ components:
+ - type: Transform
+ pos: 106.5,108.5
+ parent: 2
+ - uid: 2920
+ components:
+ - type: Transform
+ pos: 105.5,108.5
+ parent: 2
+ - uid: 2921
+ components:
+ - type: Transform
+ pos: 105.5,110.5
+ parent: 2
+ - uid: 2922
+ components:
+ - type: Transform
+ pos: 105.5,111.5
+ parent: 2
+ - uid: 2923
+ components:
+ - type: Transform
+ pos: 105.5,112.5
+ parent: 2
+ - uid: 2924
+ components:
+ - type: Transform
+ pos: 106.5,109.5
+ parent: 2
+ - uid: 2925
+ components:
+ - type: Transform
+ pos: 106.5,110.5
+ parent: 2
+ - uid: 2926
+ components:
+ - type: Transform
+ pos: 106.5,111.5
+ parent: 2
+ - uid: 2927
+ components:
+ - type: Transform
+ pos: 106.5,112.5
+ parent: 2
+ - uid: 2928
+ components:
+ - type: Transform
+ pos: 107.5,109.5
+ parent: 2
+ - uid: 2929
+ components:
+ - type: Transform
+ pos: 107.5,110.5
+ parent: 2
+ - uid: 2930
+ components:
+ - type: Transform
+ pos: 107.5,111.5
+ parent: 2
+ - uid: 2931
+ components:
+ - type: Transform
+ pos: 108.5,109.5
+ parent: 2
+ - uid: 2932
+ components:
+ - type: Transform
+ pos: 108.5,110.5
+ parent: 2
+ - uid: 2933
+ components:
+ - type: Transform
+ pos: 108.5,111.5
+ parent: 2
+ - uid: 2934
+ components:
+ - type: Transform
+ pos: 108.5,112.5
+ parent: 2
+ - uid: 2935
+ components:
+ - type: Transform
+ pos: 107.5,112.5
+ parent: 2
+ - uid: 2936
+ components:
+ - type: Transform
+ pos: 103.5,110.5
+ parent: 2
+ - uid: 2937
+ components:
+ - type: Transform
+ pos: 103.5,111.5
+ parent: 2
+ - uid: 2938
+ components:
+ - type: Transform
+ pos: 112.5,89.5
+ parent: 2
+ - uid: 2939
+ components:
+ - type: Transform
+ pos: 104.5,109.5
+ parent: 2
+ - uid: 2940
+ components:
+ - type: Transform
+ pos: 104.5,110.5
+ parent: 2
+ - uid: 2941
+ components:
+ - type: Transform
+ pos: 102.5,111.5
+ parent: 2
+ - uid: 2942
+ components:
+ - type: Transform
+ pos: 104.5,111.5
+ parent: 2
+ - uid: 2943
+ components:
+ - type: Transform
+ pos: 112.5,90.5
+ parent: 2
+ - uid: 2944
+ components:
+ - type: Transform
+ pos: 105.5,109.5
+ parent: 2
+ - uid: 2945
+ components:
+ - type: Transform
+ pos: 112.5,106.5
+ parent: 2
+ - uid: 2946
+ components:
+ - type: Transform
+ pos: 112.5,104.5
+ parent: 2
+ - uid: 2947
+ components:
+ - type: Transform
+ pos: 101.5,111.5
+ parent: 2
+ - uid: 2948
+ components:
+ - type: Transform
+ pos: 101.5,112.5
+ parent: 2
+ - uid: 2949
+ components:
+ - type: Transform
+ pos: 105.5,100.5
+ parent: 2
+ - uid: 2950
+ components:
+ - type: Transform
+ pos: 102.5,110.5
+ parent: 2
+ - uid: 2951
+ components:
+ - type: Transform
+ pos: 102.5,112.5
+ parent: 2
+ - uid: 2952
+ components:
+ - type: Transform
+ pos: 103.5,109.5
+ parent: 2
+ - uid: 2953
+ components:
+ - type: Transform
+ pos: 109.5,111.5
+ parent: 2
+ - uid: 2954
+ components:
+ - type: Transform
+ pos: 109.5,110.5
+ parent: 2
+ - uid: 2955
+ components:
+ - type: Transform
+ pos: 109.5,109.5
+ parent: 2
+ - uid: 2956
+ components:
+ - type: Transform
+ pos: 110.5,110.5
+ parent: 2
+ - uid: 2957
+ components:
+ - type: Transform
+ pos: 110.5,109.5
+ parent: 2
+ - uid: 2958
+ components:
+ - type: Transform
+ pos: 111.5,109.5
+ parent: 2
+ - uid: 2959
+ components:
+ - type: Transform
+ pos: 112.5,103.5
+ parent: 2
+ - uid: 2960
+ components:
+ - type: Transform
+ pos: 112.5,102.5
+ parent: 2
+ - uid: 2961
+ components:
+ - type: Transform
+ pos: 112.5,101.5
+ parent: 2
+ - uid: 2962
+ components:
+ - type: Transform
+ pos: 111.5,107.5
+ parent: 2
+ - uid: 2963
+ components:
+ - type: Transform
+ pos: 111.5,106.5
+ parent: 2
+ - uid: 2964
+ components:
+ - type: Transform
+ pos: 111.5,105.5
+ parent: 2
+ - uid: 2965
+ components:
+ - type: Transform
+ pos: 111.5,104.5
+ parent: 2
+ - uid: 2966
+ components:
+ - type: Transform
+ pos: 111.5,103.5
+ parent: 2
+ - uid: 2967
+ components:
+ - type: Transform
+ pos: 111.5,102.5
+ parent: 2
+ - uid: 2968
+ components:
+ - type: Transform
+ pos: 111.5,101.5
+ parent: 2
+ - uid: 2969
+ components:
+ - type: Transform
+ pos: 111.5,100.5
+ parent: 2
+ - uid: 2971
+ components:
+ - type: Transform
+ pos: 112.5,100.5
+ parent: 2
+ - uid: 2977
+ components:
+ - type: Transform
+ pos: 110.5,100.5
+ parent: 2
+ - uid: 2980
+ components:
+ - type: Transform
+ pos: 110.5,108.5
+ parent: 2
+ - uid: 2981
+ components:
+ - type: Transform
+ pos: 106.5,102.5
+ parent: 2
+ - uid: 2982
+ components:
+ - type: Transform
+ pos: 106.5,101.5
+ parent: 2
+ - uid: 2983
+ components:
+ - type: Transform
+ pos: 106.5,100.5
+ parent: 2
+ - uid: 2984
+ components:
+ - type: Transform
+ pos: 105.5,107.5
+ parent: 2
+ - uid: 2985
+ components:
+ - type: Transform
+ pos: 105.5,106.5
+ parent: 2
+ - uid: 2986
+ components:
+ - type: Transform
+ pos: 105.5,105.5
+ parent: 2
+ - uid: 2987
+ components:
+ - type: Transform
+ pos: 105.5,103.5
+ parent: 2
+ - uid: 2988
+ components:
+ - type: Transform
+ pos: 105.5,102.5
+ parent: 2
+ - uid: 2989
+ components:
+ - type: Transform
+ pos: 105.5,101.5
+ parent: 2
+ - uid: 2992
+ components:
+ - type: Transform
+ pos: 107.5,100.5
+ parent: 2
+ - uid: 2994
+ components:
+ - type: Transform
+ pos: 106.5,106.5
+ parent: 2
+ - uid: 2995
+ components:
+ - type: Transform
+ pos: 106.5,107.5
+ parent: 2
+ - uid: 2996
+ components:
+ - type: Transform
+ pos: 106.5,105.5
+ parent: 2
+ - uid: 2997
+ components:
+ - type: Transform
+ pos: 106.5,104.5
+ parent: 2
+ - uid: 2998
+ components:
+ - type: Transform
+ pos: 106.5,103.5
+ parent: 2
+ - uid: 3011
+ components:
+ - type: Transform
+ pos: 109.5,99.5
+ parent: 2
+ - uid: 3017
+ components:
+ - type: Transform
+ pos: 104.5,102.5
+ parent: 2
+ - uid: 3018
+ components:
+ - type: Transform
+ pos: 104.5,101.5
+ parent: 2
+ - uid: 3019
+ components:
+ - type: Transform
+ pos: 104.5,100.5
+ parent: 2
+ - uid: 3020
+ components:
+ - type: Transform
+ pos: 111.5,99.5
+ parent: 2
+ - uid: 3021
+ components:
+ - type: Transform
+ pos: 110.5,99.5
+ parent: 2
+ - uid: 3022
+ components:
+ - type: Transform
+ pos: 110.5,98.5
+ parent: 2
+ - uid: 3023
+ components:
+ - type: Transform
+ pos: 111.5,98.5
+ parent: 2
+ - uid: 3024
+ components:
+ - type: Transform
+ pos: 111.5,97.5
+ parent: 2
+ - uid: 3025
+ components:
+ - type: Transform
+ pos: 111.5,96.5
+ parent: 2
+ - uid: 3026
+ components:
+ - type: Transform
+ pos: 111.5,95.5
+ parent: 2
+ - uid: 3027
+ components:
+ - type: Transform
+ pos: 111.5,94.5
+ parent: 2
+ - uid: 3028
+ components:
+ - type: Transform
+ pos: 110.5,96.5
+ parent: 2
+ - uid: 3029
+ components:
+ - type: Transform
+ pos: 110.5,95.5
+ parent: 2
+ - uid: 3030
+ components:
+ - type: Transform
+ pos: 110.5,94.5
+ parent: 2
+ - uid: 3031
+ components:
+ - type: Transform
+ pos: 110.5,97.5
+ parent: 2
+ - uid: 3032
+ components:
+ - type: Transform
+ pos: 110.5,93.5
+ parent: 2
+ - uid: 3033
+ components:
+ - type: Transform
+ pos: 110.5,92.5
+ parent: 2
+ - uid: 3034
+ components:
+ - type: Transform
+ pos: 110.5,91.5
+ parent: 2
+ - uid: 3035
+ components:
+ - type: Transform
+ pos: 110.5,90.5
+ parent: 2
+ - uid: 3036
+ components:
+ - type: Transform
+ pos: 110.5,89.5
+ parent: 2
+ - uid: 3039
+ components:
+ - type: Transform
+ pos: -105.5,39.5
+ parent: 2
+ - uid: 3040
+ components:
+ - type: Transform
+ pos: -105.5,38.5
+ parent: 2
+ - uid: 3042
+ components:
+ - type: Transform
+ pos: -104.5,41.5
+ parent: 2
+ - uid: 3045
+ components:
+ - type: Transform
+ pos: -105.5,36.5
+ parent: 2
+ - uid: 3051
+ components:
+ - type: Transform
+ pos: -105.5,37.5
+ parent: 2
+ - uid: 3052
+ components:
+ - type: Transform
+ pos: 74.5,83.5
+ parent: 2
+ - uid: 3053
+ components:
+ - type: Transform
+ pos: 74.5,82.5
+ parent: 2
+ - uid: 3054
+ components:
+ - type: Transform
+ pos: 74.5,81.5
+ parent: 2
+ - uid: 3057
+ components:
+ - type: Transform
+ pos: 75.5,82.5
+ parent: 2
+ - uid: 3064
+ components:
+ - type: Transform
+ pos: 77.5,83.5
+ parent: 2
+ - uid: 3065
+ components:
+ - type: Transform
+ pos: 77.5,82.5
+ parent: 2
+ - uid: 3067
+ components:
+ - type: Transform
+ pos: 78.5,83.5
+ parent: 2
+ - uid: 3078
+ components:
+ - type: Transform
+ pos: 75.5,81.5
+ parent: 2
+ - uid: 3080
+ components:
+ - type: Transform
+ pos: 72.5,83.5
+ parent: 2
+ - uid: 3081
+ components:
+ - type: Transform
+ pos: 73.5,83.5
+ parent: 2
+ - uid: 3128
+ components:
+ - type: Transform
+ pos: -104.5,40.5
+ parent: 2
+ - uid: 3129
+ components:
+ - type: Transform
+ pos: -104.5,39.5
+ parent: 2
+ - uid: 3130
+ components:
+ - type: Transform
+ pos: -103.5,39.5
+ parent: 2
+ - uid: 3131
+ components:
+ - type: Transform
+ pos: -102.5,39.5
+ parent: 2
+ - uid: 3132
+ components:
+ - type: Transform
+ pos: -101.5,39.5
+ parent: 2
+ - uid: 3133
+ components:
+ - type: Transform
+ pos: -103.5,40.5
+ parent: 2
+ - uid: 3134
+ components:
+ - type: Transform
+ pos: -102.5,40.5
+ parent: 2
+ - uid: 3135
+ components:
+ - type: Transform
+ pos: -102.5,38.5
+ parent: 2
+ - uid: 3136
+ components:
+ - type: Transform
+ pos: -102.5,37.5
+ parent: 2
+ - uid: 3137
+ components:
+ - type: Transform
+ pos: -101.5,38.5
+ parent: 2
+ - uid: 3138
+ components:
+ - type: Transform
+ pos: -101.5,37.5
+ parent: 2
+ - uid: 3139
+ components:
+ - type: Transform
+ pos: -101.5,36.5
+ parent: 2
+ - uid: 3140
+ components:
+ - type: Transform
+ pos: -100.5,36.5
+ parent: 2
+ - uid: 3141
+ components:
+ - type: Transform
+ pos: -99.5,36.5
+ parent: 2
+ - uid: 3142
+ components:
+ - type: Transform
+ pos: -98.5,36.5
+ parent: 2
+ - uid: 3144
+ components:
+ - type: Transform
+ pos: 108.5,98.5
+ parent: 2
+ - uid: 3146
+ components:
+ - type: Transform
+ pos: 108.5,96.5
+ parent: 2
+ - uid: 3147
+ components:
+ - type: Transform
+ pos: 108.5,95.5
+ parent: 2
+ - uid: 3148
+ components:
+ - type: Transform
+ pos: 109.5,93.5
+ parent: 2
+ - uid: 3149
+ components:
+ - type: Transform
+ pos: 108.5,94.5
+ parent: 2
+ - uid: 3150
+ components:
+ - type: Transform
+ pos: 108.5,92.5
+ parent: 2
+ - uid: 3151
+ components:
+ - type: Transform
+ pos: 108.5,91.5
+ parent: 2
+ - uid: 3152
+ components:
+ - type: Transform
+ pos: 106.5,93.5
+ parent: 2
+ - uid: 3153
+ components:
+ - type: Transform
+ pos: 108.5,97.5
+ parent: 2
+ - uid: 3154
+ components:
+ - type: Transform
+ pos: 109.5,98.5
+ parent: 2
+ - uid: 3155
+ components:
+ - type: Transform
+ pos: 109.5,97.5
+ parent: 2
+ - uid: 3156
+ components:
+ - type: Transform
+ pos: 109.5,96.5
+ parent: 2
+ - uid: 3157
+ components:
+ - type: Transform
+ pos: 109.5,95.5
+ parent: 2
+ - uid: 3158
+ components:
+ - type: Transform
+ pos: 109.5,94.5
+ parent: 2
+ - uid: 3159
+ components:
+ - type: Transform
+ pos: 109.5,92.5
+ parent: 2
+ - uid: 3160
+ components:
+ - type: Transform
+ pos: 109.5,91.5
+ parent: 2
+ - uid: 3161
+ components:
+ - type: Transform
+ pos: 108.5,93.5
+ parent: 2
+ - uid: 3162
+ components:
+ - type: Transform
+ pos: 107.5,99.5
+ parent: 2
+ - uid: 3163
+ components:
+ - type: Transform
+ pos: 107.5,98.5
+ parent: 2
+ - uid: 3164
+ components:
+ - type: Transform
+ pos: 107.5,97.5
+ parent: 2
+ - uid: 3165
+ components:
+ - type: Transform
+ pos: 107.5,96.5
+ parent: 2
+ - uid: 3166
+ components:
+ - type: Transform
+ pos: 107.5,95.5
+ parent: 2
+ - uid: 3167
+ components:
+ - type: Transform
+ pos: 107.5,94.5
+ parent: 2
+ - uid: 3168
+ components:
+ - type: Transform
+ pos: 107.5,93.5
+ parent: 2
+ - uid: 3169
+ components:
+ - type: Transform
+ pos: 107.5,92.5
+ parent: 2
+ - uid: 3170
+ components:
+ - type: Transform
+ pos: 107.5,91.5
+ parent: 2
+ - uid: 3171
+ components:
+ - type: Transform
+ pos: 106.5,99.5
+ parent: 2
+ - uid: 3172
+ components:
+ - type: Transform
+ pos: 106.5,98.5
+ parent: 2
+ - uid: 3173
+ components:
+ - type: Transform
+ pos: 106.5,97.5
+ parent: 2
+ - uid: 3174
+ components:
+ - type: Transform
+ pos: 106.5,96.5
+ parent: 2
+ - uid: 3175
+ components:
+ - type: Transform
+ pos: 106.5,95.5
+ parent: 2
+ - uid: 3176
+ components:
+ - type: Transform
+ pos: 106.5,94.5
+ parent: 2
+ - uid: 3177
+ components:
+ - type: Transform
+ pos: 106.5,92.5
+ parent: 2
+ - uid: 3178
+ components:
+ - type: Transform
+ pos: 106.5,91.5
+ parent: 2
+ - uid: 3179
+ components:
+ - type: Transform
+ pos: -100.5,35.5
+ parent: 2
+ - uid: 3180
+ components:
+ - type: Transform
+ pos: -99.5,35.5
+ parent: 2
+ - uid: 3181
+ components:
+ - type: Transform
+ pos: -98.5,35.5
+ parent: 2
+ - uid: 3182
+ components:
+ - type: Transform
+ pos: -97.5,35.5
+ parent: 2
+ - uid: 3183
+ components:
+ - type: Transform
+ pos: -95.5,34.5
+ parent: 2
+ - uid: 3184
+ components:
+ - type: Transform
+ pos: -96.5,34.5
+ parent: 2
+ - uid: 3185
+ components:
+ - type: Transform
+ pos: -97.5,34.5
+ parent: 2
+ - uid: 3186
+ components:
+ - type: Transform
+ pos: 109.5,90.5
+ parent: 2
+ - uid: 3187
+ components:
+ - type: Transform
+ pos: 109.5,89.5
+ parent: 2
+ - uid: 3188
+ components:
+ - type: Transform
+ pos: 108.5,90.5
+ parent: 2
+ - uid: 3189
+ components:
+ - type: Transform
+ pos: 108.5,89.5
+ parent: 2
+ - uid: 3190
+ components:
+ - type: Transform
+ pos: 107.5,90.5
+ parent: 2
+ - uid: 3191
+ components:
+ - type: Transform
+ pos: 107.5,89.5
+ parent: 2
+ - uid: 3192
+ components:
+ - type: Transform
+ pos: -98.5,34.5
+ parent: 2
+ - uid: 3193
+ components:
+ - type: Transform
+ pos: -98.5,33.5
+ parent: 2
+ - uid: 3194
+ components:
+ - type: Transform
+ pos: -98.5,32.5
+ parent: 2
+ - uid: 3195
+ components:
+ - type: Transform
+ pos: -98.5,31.5
+ parent: 2
+ - uid: 3196
+ components:
+ - type: Transform
+ pos: -98.5,30.5
+ parent: 2
+ - uid: 3197
+ components:
+ - type: Transform
+ pos: 105.5,91.5
+ parent: 2
+ - uid: 3198
+ components:
+ - type: Transform
+ pos: -95.5,33.5
+ parent: 2
+ - uid: 3199
+ components:
+ - type: Transform
+ pos: -95.5,32.5
+ parent: 2
+ - uid: 3200
+ components:
+ - type: Transform
+ pos: -95.5,31.5
+ parent: 2
+ - uid: 3201
+ components:
+ - type: Transform
+ pos: -95.5,30.5
+ parent: 2
+ - uid: 3202
+ components:
+ - type: Transform
+ pos: -94.5,33.5
+ parent: 2
+ - uid: 3203
+ components:
+ - type: Transform
+ pos: -94.5,32.5
+ parent: 2
+ - uid: 3204
+ components:
+ - type: Transform
+ pos: -94.5,31.5
+ parent: 2
+ - uid: 3205
+ components:
+ - type: Transform
+ pos: -94.5,30.5
+ parent: 2
+ - uid: 3206
+ components:
+ - type: Transform
+ pos: -97.5,33.5
+ parent: 2
+ - uid: 3207
+ components:
+ - type: Transform
+ pos: -97.5,32.5
+ parent: 2
+ - uid: 3208
+ components:
+ - type: Transform
+ pos: -97.5,31.5
+ parent: 2
+ - uid: 3209
+ components:
+ - type: Transform
+ pos: -97.5,30.5
+ parent: 2
+ - uid: 3210
+ components:
+ - type: Transform
+ pos: -96.5,33.5
+ parent: 2
+ - uid: 3211
+ components:
+ - type: Transform
+ pos: -96.5,32.5
+ parent: 2
+ - uid: 3212
+ components:
+ - type: Transform
+ pos: -96.5,31.5
+ parent: 2
+ - uid: 3213
+ components:
+ - type: Transform
+ pos: -96.5,30.5
+ parent: 2
+ - uid: 3214
+ components:
+ - type: Transform
+ pos: 106.5,90.5
+ parent: 2
+ - uid: 3215
+ components:
+ - type: Transform
+ pos: 106.5,89.5
+ parent: 2
+ - uid: 3216
+ components:
+ - type: Transform
+ pos: -93.5,32.5
+ parent: 2
+ - uid: 3217
+ components:
+ - type: Transform
+ pos: -93.5,31.5
+ parent: 2
+ - uid: 3218
+ components:
+ - type: Transform
+ pos: -92.5,32.5
+ parent: 2
+ - uid: 3219
+ components:
+ - type: Transform
+ pos: -92.5,31.5
+ parent: 2
+ - uid: 3220
+ components:
+ - type: Transform
+ pos: -91.5,31.5
+ parent: 2
+ - uid: 3221
+ components:
+ - type: Transform
+ pos: -93.5,30.5
+ parent: 2
+ - uid: 3222
+ components:
+ - type: Transform
+ pos: -96.5,29.5
+ parent: 2
+ - uid: 3223
+ components:
+ - type: Transform
+ pos: -97.5,27.5
+ parent: 2
+ - uid: 3224
+ components:
+ - type: Transform
+ pos: -98.5,27.5
+ parent: 2
+ - uid: 3225
+ components:
+ - type: Transform
+ pos: -100.5,27.5
+ parent: 2
+ - uid: 3226
+ components:
+ - type: Transform
+ pos: -98.5,28.5
+ parent: 2
+ - uid: 3227
+ components:
+ - type: Transform
+ pos: -97.5,29.5
+ parent: 2
+ - uid: 3228
+ components:
+ - type: Transform
+ pos: -101.5,27.5
+ parent: 2
+ - uid: 3229
+ components:
+ - type: Transform
+ pos: -102.5,27.5
+ parent: 2
+ - uid: 3230
+ components:
+ - type: Transform
+ pos: 105.5,92.5
+ parent: 2
+ - uid: 3231
+ components:
+ - type: Transform
+ pos: 105.5,93.5
+ parent: 2
+ - uid: 3232
+ components:
+ - type: Transform
+ pos: -103.5,26.5
+ parent: 2
+ - uid: 3233
+ components:
+ - type: Transform
+ pos: -101.5,26.5
+ parent: 2
+ - uid: 3234
+ components:
+ - type: Transform
+ pos: -99.5,27.5
+ parent: 2
+ - uid: 3235
+ components:
+ - type: Transform
+ pos: -99.5,28.5
+ parent: 2
+ - uid: 3236
+ components:
+ - type: Transform
+ pos: -96.5,28.5
+ parent: 2
+ - uid: 3237
+ components:
+ - type: Transform
+ pos: -98.5,29.5
+ parent: 2
+ - uid: 3238
+ components:
+ - type: Transform
+ pos: -95.5,27.5
+ parent: 2
+ - uid: 3239
+ components:
+ - type: Transform
+ pos: -101.5,28.5
+ parent: 2
+ - uid: 3240
+ components:
+ - type: Transform
+ pos: -101.5,29.5
+ parent: 2
+ - uid: 3241
+ components:
+ - type: Transform
+ pos: -97.5,28.5
+ parent: 2
+ - uid: 3242
+ components:
+ - type: Transform
+ pos: -96.5,27.5
+ parent: 2
+ - uid: 3243
+ components:
+ - type: Transform
+ pos: -95.5,28.5
+ parent: 2
+ - uid: 3244
+ components:
+ - type: Transform
+ pos: -97.5,26.5
+ parent: 2
+ - uid: 3245
+ components:
+ - type: Transform
+ pos: -98.5,26.5
+ parent: 2
+ - uid: 3246
+ components:
+ - type: Transform
+ pos: -99.5,26.5
+ parent: 2
+ - uid: 3247
+ components:
+ - type: Transform
+ pos: -100.5,26.5
+ parent: 2
+ - uid: 3248
+ components:
+ - type: Transform
+ pos: -99.5,25.5
+ parent: 2
+ - uid: 3249
+ components:
+ - type: Transform
+ pos: -100.5,25.5
+ parent: 2
+ - uid: 3250
+ components:
+ - type: Transform
+ pos: -101.5,25.5
+ parent: 2
+ - uid: 3251
+ components:
+ - type: Transform
+ pos: -102.5,25.5
+ parent: 2
+ - uid: 3252
+ components:
+ - type: Transform
+ pos: -102.5,26.5
+ parent: 2
+ - uid: 3253
+ components:
+ - type: Transform
+ pos: -104.5,27.5
+ parent: 2
+ - uid: 3254
+ components:
+ - type: Transform
+ pos: -106.5,28.5
+ parent: 2
+ - uid: 3255
+ components:
+ - type: Transform
+ pos: -106.5,27.5
+ parent: 2
+ - uid: 3256
+ components:
+ - type: Transform
+ pos: -105.5,27.5
+ parent: 2
+ - uid: 3257
+ components:
+ - type: Transform
+ pos: -103.5,28.5
+ parent: 2
+ - uid: 3258
+ components:
+ - type: Transform
+ pos: -104.5,28.5
+ parent: 2
+ - uid: 3259
+ components:
+ - type: Transform
+ pos: -102.5,28.5
+ parent: 2
+ - uid: 3260
+ components:
+ - type: Transform
+ pos: -102.5,29.5
+ parent: 2
+ - uid: 3261
+ components:
+ - type: Transform
+ pos: -103.5,29.5
+ parent: 2
+ - uid: 3262
+ components:
+ - type: Transform
+ pos: -104.5,29.5
+ parent: 2
+ - uid: 3263
+ components:
+ - type: Transform
+ pos: -106.5,29.5
+ parent: 2
+ - uid: 3264
+ components:
+ - type: Transform
+ pos: -105.5,29.5
+ parent: 2
+ - uid: 3265
+ components:
+ - type: Transform
+ pos: -100.5,29.5
+ parent: 2
+ - uid: 3266
+ components:
+ - type: Transform
+ pos: -99.5,29.5
+ parent: 2
+ - uid: 3267
+ components:
+ - type: Transform
+ pos: -100.5,28.5
+ parent: 2
+ - uid: 3268
+ components:
+ - type: Transform
+ pos: -105.5,28.5
+ parent: 2
+ - uid: 3269
+ components:
+ - type: Transform
+ pos: -103.5,27.5
+ parent: 2
+ - uid: 3270
+ components:
+ - type: Transform
+ pos: -106.5,31.5
+ parent: 2
+ - uid: 3271
+ components:
+ - type: Transform
+ pos: -106.5,30.5
+ parent: 2
+ - uid: 3272
+ components:
+ - type: Transform
+ pos: -107.5,32.5
+ parent: 2
+ - uid: 3273
+ components:
+ - type: Transform
+ pos: -108.5,32.5
+ parent: 2
+ - uid: 3274
+ components:
+ - type: Transform
+ pos: -109.5,33.5
+ parent: 2
+ - uid: 3275
+ components:
+ - type: Transform
+ pos: -110.5,33.5
+ parent: 2
+ - uid: 3276
+ components:
+ - type: Transform
+ pos: -111.5,33.5
+ parent: 2
+ - uid: 3277
+ components:
+ - type: Transform
+ pos: -112.5,35.5
+ parent: 2
+ - uid: 3278
+ components:
+ - type: Transform
+ pos: -112.5,34.5
+ parent: 2
+ - uid: 3279
+ components:
+ - type: Transform
+ pos: -113.5,35.5
+ parent: 2
+ - uid: 3280
+ components:
+ - type: Transform
+ pos: -112.5,33.5
+ parent: 2
+ - uid: 3281
+ components:
+ - type: Transform
+ pos: -113.5,33.5
+ parent: 2
+ - uid: 3282
+ components:
+ - type: Transform
+ pos: -113.5,34.5
+ parent: 2
+ - uid: 3283
+ components:
+ - type: Transform
+ pos: -114.5,34.5
+ parent: 2
+ - uid: 3284
+ components:
+ - type: Transform
+ pos: -114.5,33.5
+ parent: 2
+ - uid: 3285
+ components:
+ - type: Transform
+ pos: -114.5,32.5
+ parent: 2
+ - uid: 3286
+ components:
+ - type: Transform
+ pos: -115.5,34.5
+ parent: 2
+ - uid: 3287
+ components:
+ - type: Transform
+ pos: -115.5,33.5
+ parent: 2
+ - uid: 3288
+ components:
+ - type: Transform
+ pos: -115.5,32.5
+ parent: 2
+ - uid: 3289
+ components:
+ - type: Transform
+ pos: -116.5,34.5
+ parent: 2
+ - uid: 3290
+ components:
+ - type: Transform
+ pos: -116.5,33.5
+ parent: 2
+ - uid: 3291
+ components:
+ - type: Transform
+ pos: -116.5,32.5
+ parent: 2
+ - uid: 3292
+ components:
+ - type: Transform
+ pos: -109.5,30.5
+ parent: 2
+ - uid: 3293
+ components:
+ - type: Transform
+ pos: -109.5,29.5
+ parent: 2
+ - uid: 3294
+ components:
+ - type: Transform
+ pos: -109.5,32.5
+ parent: 2
+ - uid: 3295
+ components:
+ - type: Transform
+ pos: -113.5,32.5
+ parent: 2
+ - uid: 3296
+ components:
+ - type: Transform
+ pos: -113.5,31.5
+ parent: 2
+ - uid: 3297
+ components:
+ - type: Transform
+ pos: -113.5,30.5
+ parent: 2
+ - uid: 3298
+ components:
+ - type: Transform
+ pos: -113.5,29.5
+ parent: 2
+ - uid: 3299
+ components:
+ - type: Transform
+ pos: -112.5,31.5
+ parent: 2
+ - uid: 3300
+ components:
+ - type: Transform
+ pos: -112.5,30.5
+ parent: 2
+ - uid: 3301
+ components:
+ - type: Transform
+ pos: -112.5,29.5
+ parent: 2
+ - uid: 3302
+ components:
+ - type: Transform
+ pos: -111.5,32.5
+ parent: 2
+ - uid: 3303
+ components:
+ - type: Transform
+ pos: -111.5,31.5
+ parent: 2
+ - uid: 3304
+ components:
+ - type: Transform
+ pos: -112.5,32.5
+ parent: 2
+ - uid: 3305
+ components:
+ - type: Transform
+ pos: -111.5,30.5
+ parent: 2
+ - uid: 3306
+ components:
+ - type: Transform
+ pos: -111.5,29.5
+ parent: 2
+ - uid: 3307
+ components:
+ - type: Transform
+ pos: -110.5,31.5
+ parent: 2
+ - uid: 3308
+ components:
+ - type: Transform
+ pos: -110.5,32.5
+ parent: 2
+ - uid: 3309
+ components:
+ - type: Transform
+ pos: -110.5,30.5
+ parent: 2
+ - uid: 3310
+ components:
+ - type: Transform
+ pos: -110.5,29.5
+ parent: 2
+ - uid: 3311
+ components:
+ - type: Transform
+ pos: -109.5,31.5
+ parent: 2
+ - uid: 3312
+ components:
+ - type: Transform
+ pos: -107.5,31.5
+ parent: 2
+ - uid: 3313
+ components:
+ - type: Transform
+ pos: -108.5,28.5
+ parent: 2
+ - uid: 3314
+ components:
+ - type: Transform
+ pos: -108.5,27.5
+ parent: 2
+ - uid: 3315
+ components:
+ - type: Transform
+ pos: -107.5,30.5
+ parent: 2
+ - uid: 3316
+ components:
+ - type: Transform
+ pos: -107.5,29.5
+ parent: 2
+ - uid: 3317
+ components:
+ - type: Transform
+ pos: -107.5,28.5
+ parent: 2
+ - uid: 3318
+ components:
+ - type: Transform
+ pos: -107.5,27.5
+ parent: 2
+ - uid: 3319
+ components:
+ - type: Transform
+ pos: -108.5,31.5
+ parent: 2
+ - uid: 3320
+ components:
+ - type: Transform
+ pos: -108.5,30.5
+ parent: 2
+ - uid: 3321
+ components:
+ - type: Transform
+ pos: -108.5,29.5
+ parent: 2
+ - uid: 3322
+ components:
+ - type: Transform
+ pos: -108.5,26.5
+ parent: 2
+ - uid: 3323
+ components:
+ - type: Transform
+ pos: -109.5,26.5
+ parent: 2
+ - uid: 3324
+ components:
+ - type: Transform
+ pos: -110.5,26.5
+ parent: 2
+ - uid: 3325
+ components:
+ - type: Transform
+ pos: -104.5,26.5
+ parent: 2
+ - uid: 3326
+ components:
+ - type: Transform
+ pos: -109.5,27.5
+ parent: 2
+ - uid: 3327
+ components:
+ - type: Transform
+ pos: -109.5,28.5
+ parent: 2
+ - uid: 3328
+ components:
+ - type: Transform
+ pos: -110.5,27.5
+ parent: 2
+ - uid: 3329
+ components:
+ - type: Transform
+ pos: -110.5,28.5
+ parent: 2
+ - uid: 3330
+ components:
+ - type: Transform
+ pos: -111.5,27.5
+ parent: 2
+ - uid: 3331
+ components:
+ - type: Transform
+ pos: -111.5,28.5
+ parent: 2
+ - uid: 3332
+ components:
+ - type: Transform
+ pos: -112.5,28.5
+ parent: 2
+ - uid: 3333
+ components:
+ - type: Transform
+ pos: -111.5,26.5
+ parent: 2
+ - uid: 3334
+ components:
+ - type: Transform
+ pos: -110.5,25.5
+ parent: 2
+ - uid: 3335
+ components:
+ - type: Transform
+ pos: 110.5,88.5
+ parent: 2
+ - uid: 3336
+ components:
+ - type: Transform
+ pos: 109.5,87.5
+ parent: 2
+ - uid: 3337
+ components:
+ - type: Transform
+ pos: 108.5,86.5
+ parent: 2
+ - uid: 3338
+ components:
+ - type: Transform
+ pos: 107.5,85.5
+ parent: 2
+ - uid: 3339
+ components:
+ - type: Transform
+ pos: 106.5,83.5
+ parent: 2
+ - uid: 3340
+ components:
+ - type: Transform
+ pos: -109.5,25.5
+ parent: 2
+ - uid: 3341
+ components:
+ - type: Transform
+ pos: 106.5,84.5
+ parent: 2
+ - uid: 3342
+ components:
+ - type: Transform
+ pos: 105.5,82.5
+ parent: 2
+ - uid: 3343
+ components:
+ - type: Transform
+ pos: 104.5,81.5
+ parent: 2
+ - uid: 3344
+ components:
+ - type: Transform
+ pos: 103.5,80.5
+ parent: 2
+ - uid: 3345
+ components:
+ - type: Transform
+ pos: 103.5,79.5
+ parent: 2
+ - uid: 3346
+ components:
+ - type: Transform
+ pos: 102.5,78.5
+ parent: 2
+ - uid: 3347
+ components:
+ - type: Transform
+ pos: 101.5,78.5
+ parent: 2
+ - uid: 3348
+ components:
+ - type: Transform
+ pos: 100.5,77.5
+ parent: 2
+ - uid: 3349
+ components:
+ - type: Transform
+ pos: 99.5,76.5
+ parent: 2
+ - uid: 3350
+ components:
+ - type: Transform
+ pos: 98.5,75.5
+ parent: 2
+ - uid: 3351
+ components:
+ - type: Transform
+ pos: 96.5,74.5
+ parent: 2
+ - uid: 3352
+ components:
+ - type: Transform
+ pos: 95.5,73.5
+ parent: 2
+ - uid: 3353
+ components:
+ - type: Transform
+ pos: -125.5,46.5
+ parent: 2
+ - uid: 3354
+ components:
+ - type: Transform
+ pos: -127.5,48.5
+ parent: 2
+ - uid: 3355
+ components:
+ - type: Transform
+ pos: -125.5,49.5
+ parent: 2
+ - uid: 3356
+ components:
+ - type: Transform
+ pos: -114.5,31.5
+ parent: 2
+ - uid: 3357
+ components:
+ - type: Transform
+ pos: -115.5,31.5
+ parent: 2
+ - uid: 3358
+ components:
+ - type: Transform
+ pos: -116.5,31.5
+ parent: 2
+ - uid: 3359
+ components:
+ - type: Transform
+ pos: -126.5,46.5
+ parent: 2
+ - uid: 3360
+ components:
+ - type: Transform
+ pos: -114.5,30.5
+ parent: 2
+ - uid: 3361
+ components:
+ - type: Transform
+ pos: -115.5,30.5
+ parent: 2
+ - uid: 3362
+ components:
+ - type: Transform
+ pos: -130.5,40.5
+ parent: 2
+ - uid: 3363
+ components:
+ - type: Transform
+ pos: -117.5,32.5
+ parent: 2
+ - uid: 3364
+ components:
+ - type: Transform
+ pos: -118.5,32.5
+ parent: 2
+ - uid: 3365
+ components:
+ - type: Transform
+ pos: -119.5,32.5
+ parent: 2
+ - uid: 3366
+ components:
+ - type: Transform
+ pos: -120.5,32.5
+ parent: 2
+ - uid: 3367
+ components:
+ - type: Transform
+ pos: -121.5,34.5
+ parent: 2
+ - uid: 3368
+ components:
+ - type: Transform
+ pos: -121.5,33.5
+ parent: 2
+ - uid: 3369
+ components:
+ - type: Transform
+ pos: -120.5,34.5
+ parent: 2
+ - uid: 3370
+ components:
+ - type: Transform
+ pos: -120.5,33.5
+ parent: 2
+ - uid: 3371
+ components:
+ - type: Transform
+ pos: -119.5,34.5
+ parent: 2
+ - uid: 3372
+ components:
+ - type: Transform
+ pos: -119.5,33.5
+ parent: 2
+ - uid: 3373
+ components:
+ - type: Transform
+ pos: -118.5,33.5
+ parent: 2
+ - uid: 3374
+ components:
+ - type: Transform
+ pos: -117.5,33.5
+ parent: 2
+ - uid: 3375
+ components:
+ - type: Transform
+ pos: -126.5,45.5
+ parent: 2
+ - uid: 3376
+ components:
+ - type: Transform
+ pos: -126.5,47.5
+ parent: 2
+ - uid: 3377
+ components:
+ - type: Transform
+ pos: -128.5,48.5
+ parent: 2
+ - uid: 3378
+ components:
+ - type: Transform
+ pos: 97.5,74.5
+ parent: 2
+ - uid: 3379
+ components:
+ - type: Transform
+ pos: -127.5,47.5
+ parent: 2
+ - uid: 3380
+ components:
+ - type: Transform
+ pos: -126.5,44.5
+ parent: 2
+ - uid: 3381
+ components:
+ - type: Transform
+ pos: -121.5,35.5
+ parent: 2
+ - uid: 3382
+ components:
+ - type: Transform
+ pos: -127.5,42.5
+ parent: 2
+ - uid: 3383
+ components:
+ - type: Transform
+ pos: -127.5,44.5
+ parent: 2
+ - uid: 3384
+ components:
+ - type: Transform
+ pos: -121.5,36.5
+ parent: 2
+ - uid: 3385
+ components:
+ - type: Transform
+ pos: -126.5,42.5
+ parent: 2
+ - uid: 3386
+ components:
+ - type: Transform
+ pos: -122.5,38.5
+ parent: 2
+ - uid: 3387
+ components:
+ - type: Transform
+ pos: -123.5,39.5
+ parent: 2
+ - uid: 3388
+ components:
+ - type: Transform
+ pos: -124.5,40.5
+ parent: 2
+ - uid: 3389
+ components:
+ - type: Transform
+ pos: -126.5,40.5
+ parent: 2
+ - uid: 3390
+ components:
+ - type: Transform
+ pos: -128.5,41.5
+ parent: 2
+ - uid: 3391
+ components:
+ - type: Transform
+ pos: -129.5,41.5
+ parent: 2
+ - uid: 3392
+ components:
+ - type: Transform
+ pos: -126.5,41.5
+ parent: 2
+ - uid: 3393
+ components:
+ - type: Transform
+ pos: -125.5,40.5
+ parent: 2
+ - uid: 3394
+ components:
+ - type: Transform
+ pos: -127.5,41.5
+ parent: 2
+ - uid: 3395
+ components:
+ - type: Transform
+ pos: -125.5,45.5
+ parent: 2
+ - uid: 3396
+ components:
+ - type: Transform
+ pos: -126.5,43.5
+ parent: 2
+ - uid: 3397
+ components:
+ - type: Transform
+ pos: -128.5,42.5
+ parent: 2
+ - uid: 3398
+ components:
+ - type: Transform
+ pos: -125.5,48.5
+ parent: 2
+ - uid: 3399
+ components:
+ - type: Transform
+ pos: -127.5,49.5
+ parent: 2
+ - uid: 3400
+ components:
+ - type: Transform
+ pos: -126.5,48.5
+ parent: 2
+ - uid: 3401
+ components:
+ - type: Transform
+ pos: -125.5,47.5
+ parent: 2
+ - uid: 3402
+ components:
+ - type: Transform
+ pos: -126.5,49.5
+ parent: 2
+ - uid: 3403
+ components:
+ - type: Transform
+ pos: -125.5,50.5
+ parent: 2
+ - uid: 3404
+ components:
+ - type: Transform
+ pos: -125.5,43.5
+ parent: 2
+ - uid: 3405
+ components:
+ - type: Transform
+ pos: -124.5,46.5
+ parent: 2
+ - uid: 3406
+ components:
+ - type: Transform
+ pos: -124.5,43.5
+ parent: 2
+ - uid: 3407
+ components:
+ - type: Transform
+ pos: -124.5,41.5
+ parent: 2
+ - uid: 3408
+ components:
+ - type: Transform
+ pos: -124.5,45.5
+ parent: 2
+ - uid: 3409
+ components:
+ - type: Transform
+ pos: -124.5,44.5
+ parent: 2
+ - uid: 3410
+ components:
+ - type: Transform
+ pos: -125.5,44.5
+ parent: 2
+ - uid: 3411
+ components:
+ - type: Transform
+ pos: -125.5,42.5
+ parent: 2
+ - uid: 3412
+ components:
+ - type: Transform
+ pos: -125.5,41.5
+ parent: 2
+ - uid: 3413
+ components:
+ - type: Transform
+ pos: -124.5,42.5
+ parent: 2
+ - uid: 3414
+ components:
+ - type: Transform
+ pos: -122.5,40.5
+ parent: 2
+ - uid: 3415
+ components:
+ - type: Transform
+ pos: -120.5,38.5
+ parent: 2
+ - uid: 3416
+ components:
+ - type: Transform
+ pos: -119.5,37.5
+ parent: 2
+ - uid: 3417
+ components:
+ - type: Transform
+ pos: -117.5,35.5
+ parent: 2
+ - uid: 3418
+ components:
+ - type: Transform
+ pos: -119.5,36.5
+ parent: 2
+ - uid: 3419
+ components:
+ - type: Transform
+ pos: -120.5,37.5
+ parent: 2
+ - uid: 3420
+ components:
+ - type: Transform
+ pos: -122.5,39.5
+ parent: 2
+ - uid: 3421
+ components:
+ - type: Transform
+ pos: -121.5,38.5
+ parent: 2
+ - uid: 3422
+ components:
+ - type: Transform
+ pos: -121.5,37.5
+ parent: 2
+ - uid: 3423
+ components:
+ - type: Transform
+ pos: -123.5,40.5
+ parent: 2
+ - uid: 3424
+ components:
+ - type: Transform
+ pos: -120.5,35.5
+ parent: 2
+ - uid: 3425
+ components:
+ - type: Transform
+ pos: -119.5,35.5
+ parent: 2
+ - uid: 3426
+ components:
+ - type: Transform
+ pos: -117.5,34.5
+ parent: 2
+ - uid: 3427
+ components:
+ - type: Transform
+ pos: -122.5,36.5
+ parent: 2
+ - uid: 3428
+ components:
+ - type: Transform
+ pos: -122.5,37.5
+ parent: 2
+ - uid: 3429
+ components:
+ - type: Transform
+ pos: -123.5,38.5
+ parent: 2
+ - uid: 3430
+ components:
+ - type: Transform
+ pos: -124.5,39.5
+ parent: 2
+ - uid: 3431
+ components:
+ - type: Transform
+ pos: -123.5,42.5
+ parent: 2
+ - uid: 3432
+ components:
+ - type: Transform
+ pos: -121.5,40.5
+ parent: 2
+ - uid: 3433
+ components:
+ - type: Transform
+ pos: -121.5,39.5
+ parent: 2
+ - uid: 3434
+ components:
+ - type: Transform
+ pos: -123.5,41.5
+ parent: 2
+ - uid: 3435
+ components:
+ - type: Transform
+ pos: 95.5,72.5
+ parent: 2
+ - uid: 3436
+ components:
+ - type: Transform
+ pos: 95.5,71.5
+ parent: 2
+ - uid: 3437
+ components:
+ - type: Transform
+ pos: 97.5,71.5
+ parent: 2
+ - uid: 3438
+ components:
+ - type: Transform
+ pos: 99.5,71.5
+ parent: 2
+ - uid: 3439
+ components:
+ - type: Transform
+ pos: 101.5,72.5
+ parent: 2
+ - uid: 3440
+ components:
+ - type: Transform
+ pos: 102.5,73.5
+ parent: 2
+ - uid: 3441
+ components:
+ - type: Transform
+ pos: 103.5,73.5
+ parent: 2
+ - uid: 3442
+ components:
+ - type: Transform
+ pos: 104.5,74.5
+ parent: 2
+ - uid: 3443
+ components:
+ - type: Transform
+ pos: 105.5,75.5
+ parent: 2
+ - uid: 3444
+ components:
+ - type: Transform
+ pos: 100.5,71.5
+ parent: 2
+ - uid: 3445
+ components:
+ - type: Transform
+ pos: -122.5,41.5
+ parent: 2
+ - uid: 3446
+ components:
+ - type: Transform
+ pos: 98.5,71.5
+ parent: 2
+ - uid: 3447
+ components:
+ - type: Transform
+ pos: 96.5,71.5
+ parent: 2
+ - uid: 3448
+ components:
+ - type: Transform
+ pos: -120.5,36.5
+ parent: 2
+ - uid: 3449
+ components:
+ - type: Transform
+ pos: 100.5,72.5
+ parent: 2
+ - uid: 3450
+ components:
+ - type: Transform
+ pos: 100.5,73.5
+ parent: 2
+ - uid: 3451
+ components:
+ - type: Transform
+ pos: 96.5,72.5
+ parent: 2
+ - uid: 3452
+ components:
+ - type: Transform
+ pos: 96.5,73.5
+ parent: 2
+ - uid: 3453
+ components:
+ - type: Transform
+ pos: 97.5,72.5
+ parent: 2
+ - uid: 3454
+ components:
+ - type: Transform
+ pos: 97.5,73.5
+ parent: 2
+ - uid: 3455
+ components:
+ - type: Transform
+ pos: 98.5,72.5
+ parent: 2
+ - uid: 3456
+ components:
+ - type: Transform
+ pos: 98.5,73.5
+ parent: 2
+ - uid: 3457
+ components:
+ - type: Transform
+ pos: 99.5,72.5
+ parent: 2
+ - uid: 3458
+ components:
+ - type: Transform
+ pos: 99.5,73.5
+ parent: 2
+ - uid: 3459
+ components:
+ - type: Transform
+ pos: -118.5,35.5
+ parent: 2
+ - uid: 3460
+ components:
+ - type: Transform
+ pos: -118.5,34.5
+ parent: 2
+ - uid: 3461
+ components:
+ - type: Transform
+ pos: 101.5,73.5
+ parent: 2
+ - uid: 3462
+ components:
+ - type: Transform
+ pos: 98.5,74.5
+ parent: 2
+ - uid: 3463
+ components:
+ - type: Transform
+ pos: 99.5,74.5
+ parent: 2
+ - uid: 3464
+ components:
+ - type: Transform
+ pos: 100.5,74.5
+ parent: 2
+ - uid: 3465
+ components:
+ - type: Transform
+ pos: 101.5,74.5
+ parent: 2
+ - uid: 3466
+ components:
+ - type: Transform
+ pos: 102.5,74.5
+ parent: 2
+ - uid: 3467
+ components:
+ - type: Transform
+ pos: 103.5,74.5
+ parent: 2
+ - uid: 3468
+ components:
+ - type: Transform
+ pos: 104.5,75.5
+ parent: 2
+ - uid: 3469
+ components:
+ - type: Transform
+ pos: 103.5,75.5
+ parent: 2
+ - uid: 3470
+ components:
+ - type: Transform
+ pos: 102.5,75.5
+ parent: 2
+ - uid: 3471
+ components:
+ - type: Transform
+ pos: 99.5,75.5
+ parent: 2
+ - uid: 3472
+ components:
+ - type: Transform
+ pos: 100.5,75.5
+ parent: 2
+ - uid: 3473
+ components:
+ - type: Transform
+ pos: 101.5,75.5
+ parent: 2
+ - uid: 3474
+ components:
+ - type: Transform
+ pos: -114.5,35.5
+ parent: 2
+ - uid: 3475
+ components:
+ - type: Transform
+ pos: 100.5,76.5
+ parent: 2
+ - uid: 3476
+ components:
+ - type: Transform
+ pos: 101.5,76.5
+ parent: 2
+ - uid: 3477
+ components:
+ - type: Transform
+ pos: 104.5,76.5
+ parent: 2
+ - uid: 3478
+ components:
+ - type: Transform
+ pos: 103.5,76.5
+ parent: 2
+ - uid: 3479
+ components:
+ - type: Transform
+ pos: 105.5,76.5
+ parent: 2
+ - uid: 3480
+ components:
+ - type: Transform
+ pos: 106.5,76.5
+ parent: 2
+ - uid: 3481
+ components:
+ - type: Transform
+ pos: 102.5,76.5
+ parent: 2
+ - uid: 3482
+ components:
+ - type: Transform
+ pos: -114.5,36.5
+ parent: 2
+ - uid: 3483
+ components:
+ - type: Transform
+ pos: -115.5,35.5
+ parent: 2
+ - uid: 3484
+ components:
+ - type: Transform
+ pos: -116.5,35.5
+ parent: 2
+ - uid: 3485
+ components:
+ - type: Transform
+ pos: -117.5,36.5
+ parent: 2
+ - uid: 3486
+ components:
+ - type: Transform
+ pos: -116.5,36.5
+ parent: 2
+ - uid: 3487
+ components:
+ - type: Transform
+ pos: -115.5,36.5
+ parent: 2
+ - uid: 3488
+ components:
+ - type: Transform
+ pos: 107.5,75.5
+ parent: 2
+ - uid: 3489
+ components:
+ - type: Transform
+ pos: 107.5,73.5
+ parent: 2
+ - uid: 3490
+ components:
+ - type: Transform
+ pos: 107.5,74.5
+ parent: 2
+ - uid: 3491
+ components:
+ - type: Transform
+ pos: 107.5,71.5
+ parent: 2
+ - uid: 3492
+ components:
+ - type: Transform
+ pos: 107.5,72.5
+ parent: 2
+ - uid: 3493
+ components:
+ - type: Transform
+ pos: 108.5,71.5
+ parent: 2
+ - uid: 3494
+ components:
+ - type: Transform
+ pos: 109.5,71.5
+ parent: 2
+ - uid: 3495
+ components:
+ - type: Transform
+ pos: 109.5,72.5
+ parent: 2
+ - uid: 3496
+ components:
+ - type: Transform
+ pos: 110.5,73.5
+ parent: 2
+ - uid: 3497
+ components:
+ - type: Transform
+ pos: 110.5,74.5
+ parent: 2
+ - uid: 3498
+ components:
+ - type: Transform
+ pos: 111.5,75.5
+ parent: 2
+ - uid: 3499
+ components:
+ - type: Transform
+ pos: 112.5,77.5
+ parent: 2
+ - uid: 3500
+ components:
+ - type: Transform
+ pos: 112.5,78.5
+ parent: 2
+ - uid: 3501
+ components:
+ - type: Transform
+ pos: 112.5,79.5
+ parent: 2
+ - uid: 3502
+ components:
+ - type: Transform
+ pos: 112.5,80.5
+ parent: 2
+ - uid: 3503
+ components:
+ - type: Transform
+ pos: 112.5,82.5
+ parent: 2
+ - uid: 3504
+ components:
+ - type: Transform
+ pos: 107.5,88.5
+ parent: 2
+ - uid: 3505
+ components:
+ - type: Transform
+ pos: 106.5,86.5
+ parent: 2
+ - uid: 3506
+ components:
+ - type: Transform
+ pos: 106.5,88.5
+ parent: 2
+ - uid: 3507
+ components:
+ - type: Transform
+ pos: 105.5,85.5
+ parent: 2
+ - uid: 3508
+ components:
+ - type: Transform
+ pos: 105.5,84.5
+ parent: 2
+ - uid: 3509
+ components:
+ - type: Transform
+ pos: 105.5,83.5
+ parent: 2
+ - uid: 3510
+ components:
+ - type: Transform
+ pos: 109.5,78.5
+ parent: 2
+ - uid: 3511
+ components:
+ - type: Transform
+ pos: 110.5,77.5
+ parent: 2
+ - uid: 3512
+ components:
+ - type: Transform
+ pos: 110.5,78.5
+ parent: 2
+ - uid: 3513
+ components:
+ - type: Transform
+ pos: 111.5,77.5
+ parent: 2
+ - uid: 3514
+ components:
+ - type: Transform
+ pos: 111.5,78.5
+ parent: 2
+ - uid: 3515
+ components:
+ - type: Transform
+ pos: 105.5,78.5
+ parent: 2
+ - uid: 3516
+ components:
+ - type: Transform
+ pos: 106.5,77.5
+ parent: 2
+ - uid: 3517
+ components:
+ - type: Transform
+ pos: 106.5,78.5
+ parent: 2
+ - uid: 3518
+ components:
+ - type: Transform
+ pos: 107.5,77.5
+ parent: 2
+ - uid: 3519
+ components:
+ - type: Transform
+ pos: 107.5,78.5
+ parent: 2
+ - uid: 3520
+ components:
+ - type: Transform
+ pos: 108.5,77.5
+ parent: 2
+ - uid: 3521
+ components:
+ - type: Transform
+ pos: 108.5,78.5
+ parent: 2
+ - uid: 3522
+ components:
+ - type: Transform
+ pos: 109.5,77.5
+ parent: 2
+ - uid: 3523
+ components:
+ - type: Transform
+ pos: 101.5,77.5
+ parent: 2
+ - uid: 3524
+ components:
+ - type: Transform
+ pos: 102.5,77.5
+ parent: 2
+ - uid: 3525
+ components:
+ - type: Transform
+ pos: 103.5,77.5
+ parent: 2
+ - uid: 3526
+ components:
+ - type: Transform
+ pos: 103.5,78.5
+ parent: 2
+ - uid: 3527
+ components:
+ - type: Transform
+ pos: 104.5,77.5
+ parent: 2
+ - uid: 3528
+ components:
+ - type: Transform
+ pos: 104.5,78.5
+ parent: 2
+ - uid: 3529
+ components:
+ - type: Transform
+ pos: 105.5,77.5
+ parent: 2
+ - uid: 3570
+ components:
+ - type: Transform
+ pos: 108.5,72.5
+ parent: 2
+ - uid: 3571
+ components:
+ - type: Transform
+ pos: 108.5,73.5
+ parent: 2
+ - uid: 3572
+ components:
+ - type: Transform
+ pos: 108.5,74.5
+ parent: 2
+ - uid: 3573
+ components:
+ - type: Transform
+ pos: 108.5,75.5
+ parent: 2
+ - uid: 3574
+ components:
+ - type: Transform
+ pos: 108.5,76.5
+ parent: 2
+ - uid: 3579
+ components:
+ - type: Transform
+ pos: 109.5,73.5
+ parent: 2
+ - uid: 3580
+ components:
+ - type: Transform
+ pos: 109.5,75.5
+ parent: 2
+ - uid: 3581
+ components:
+ - type: Transform
+ pos: 109.5,76.5
+ parent: 2
+ - uid: 3582
+ components:
+ - type: Transform
+ pos: 109.5,74.5
+ parent: 2
+ - uid: 3583
+ components:
+ - type: Transform
+ pos: 110.5,75.5
+ parent: 2
+ - uid: 3584
+ components:
+ - type: Transform
+ pos: 110.5,76.5
+ parent: 2
+ - uid: 3605
+ components:
+ - type: Transform
+ pos: 111.5,76.5
+ parent: 2
+ - uid: 3618
+ components:
+ - type: Transform
+ pos: 107.5,76.5
+ parent: 2
+ - uid: 3630
+ components:
+ - type: Transform
+ pos: 112.5,81.5
+ parent: 2
+ - uid: 3631
+ components:
+ - type: Transform
+ pos: 112.5,83.5
+ parent: 2
+ - uid: 3651
+ components:
+ - type: Transform
+ pos: 111.5,93.5
+ parent: 2
+ - uid: 3652
+ components:
+ - type: Transform
+ pos: 111.5,90.5
+ parent: 2
+ - uid: 3653
+ components:
+ - type: Transform
+ pos: 111.5,84.5
+ parent: 2
+ - uid: 3654
+ components:
+ - type: Transform
+ pos: 111.5,85.5
+ parent: 2
+ - uid: 3655
+ components:
+ - type: Transform
+ pos: 111.5,86.5
+ parent: 2
+ - uid: 3656
+ components:
+ - type: Transform
+ pos: 111.5,87.5
+ parent: 2
+ - uid: 3657
+ components:
+ - type: Transform
+ pos: 111.5,88.5
+ parent: 2
+ - uid: 3658
+ components:
+ - type: Transform
+ pos: 111.5,89.5
+ parent: 2
+ - uid: 3659
+ components:
+ - type: Transform
+ pos: 111.5,91.5
+ parent: 2
+ - uid: 3660
+ components:
+ - type: Transform
+ pos: 111.5,92.5
+ parent: 2
+ - uid: 3665
+ components:
+ - type: Transform
+ pos: 108.5,81.5
+ parent: 2
+ - uid: 3666
+ components:
+ - type: Transform
+ pos: 108.5,82.5
+ parent: 2
+ - uid: 3667
+ components:
+ - type: Transform
+ pos: 108.5,83.5
+ parent: 2
+ - uid: 3668
+ components:
+ - type: Transform
+ pos: 107.5,79.5
+ parent: 2
+ - uid: 3669
+ components:
+ - type: Transform
+ pos: 107.5,80.5
+ parent: 2
+ - uid: 3670
+ components:
+ - type: Transform
+ pos: 107.5,81.5
+ parent: 2
+ - uid: 3671
+ components:
+ - type: Transform
+ pos: 107.5,82.5
+ parent: 2
+ - uid: 3672
+ components:
+ - type: Transform
+ pos: 107.5,83.5
+ parent: 2
+ - uid: 3673
+ components:
+ - type: Transform
+ pos: 110.5,82.5
+ parent: 2
+ - uid: 3674
+ components:
+ - type: Transform
+ pos: 110.5,83.5
+ parent: 2
+ - uid: 3675
+ components:
+ - type: Transform
+ pos: 109.5,79.5
+ parent: 2
+ - uid: 3676
+ components:
+ - type: Transform
+ pos: 109.5,80.5
+ parent: 2
+ - uid: 3677
+ components:
+ - type: Transform
+ pos: 109.5,81.5
+ parent: 2
+ - uid: 3678
+ components:
+ - type: Transform
+ pos: 109.5,82.5
+ parent: 2
+ - uid: 3679
+ components:
+ - type: Transform
+ pos: 109.5,83.5
+ parent: 2
+ - uid: 3680
+ components:
+ - type: Transform
+ pos: 108.5,79.5
+ parent: 2
+ - uid: 3681
+ components:
+ - type: Transform
+ pos: 108.5,80.5
+ parent: 2
+ - uid: 3682
+ components:
+ - type: Transform
+ pos: 111.5,79.5
+ parent: 2
+ - uid: 3683
+ components:
+ - type: Transform
+ pos: 111.5,80.5
+ parent: 2
+ - uid: 3684
+ components:
+ - type: Transform
+ pos: 111.5,81.5
+ parent: 2
+ - uid: 3685
+ components:
+ - type: Transform
+ pos: 111.5,82.5
+ parent: 2
+ - uid: 3686
+ components:
+ - type: Transform
+ pos: 111.5,83.5
+ parent: 2
+ - uid: 3687
+ components:
+ - type: Transform
+ pos: 110.5,79.5
+ parent: 2
+ - uid: 3688
+ components:
+ - type: Transform
+ pos: 110.5,80.5
+ parent: 2
+ - uid: 3689
+ components:
+ - type: Transform
+ pos: 110.5,81.5
+ parent: 2
+ - uid: 3702
+ components:
+ - type: Transform
+ pos: 106.5,79.5
+ parent: 2
+ - uid: 3703
+ components:
+ - type: Transform
+ pos: 106.5,80.5
+ parent: 2
+ - uid: 3704
+ components:
+ - type: Transform
+ pos: 106.5,81.5
+ parent: 2
+ - uid: 3705
+ components:
+ - type: Transform
+ pos: 105.5,79.5
+ parent: 2
+ - uid: 3706
+ components:
+ - type: Transform
+ pos: 105.5,80.5
+ parent: 2
+ - uid: 3707
+ components:
+ - type: Transform
+ pos: 105.5,81.5
+ parent: 2
+ - uid: 3708
+ components:
+ - type: Transform
+ pos: 106.5,82.5
+ parent: 2
+ - uid: 3717
+ components:
+ - type: Transform
+ pos: 104.5,79.5
+ parent: 2
+ - uid: 3722
+ components:
+ - type: Transform
+ pos: 104.5,80.5
+ parent: 2
+ - uid: 3723
+ components:
+ - type: Transform
+ pos: 106.5,85.5
+ parent: 2
+ - uid: 3724
+ components:
+ - type: Transform
+ pos: 107.5,87.5
+ parent: 2
+ - uid: 3725
+ components:
+ - type: Transform
+ pos: 106.5,87.5
+ parent: 2
+ - uid: 3726
+ components:
+ - type: Transform
+ pos: 107.5,86.5
+ parent: 2
+ - uid: 3727
+ components:
+ - type: Transform
+ pos: 108.5,87.5
+ parent: 2
+ - uid: 3728
+ components:
+ - type: Transform
+ pos: 108.5,88.5
+ parent: 2
+ - uid: 3729
+ components:
+ - type: Transform
+ pos: 109.5,88.5
+ parent: 2
+ - uid: 3730
+ components:
+ - type: Transform
+ pos: 110.5,87.5
+ parent: 2
+ - uid: 3731
+ components:
+ - type: Transform
+ pos: 110.5,86.5
+ parent: 2
+ - uid: 3732
+ components:
+ - type: Transform
+ pos: 110.5,85.5
+ parent: 2
+ - uid: 3733
+ components:
+ - type: Transform
+ pos: 110.5,84.5
+ parent: 2
+ - uid: 3734
+ components:
+ - type: Transform
+ pos: 109.5,86.5
+ parent: 2
+ - uid: 3735
+ components:
+ - type: Transform
+ pos: 109.5,85.5
+ parent: 2
+ - uid: 3736
+ components:
+ - type: Transform
+ pos: 109.5,84.5
+ parent: 2
+ - uid: 3737
+ components:
+ - type: Transform
+ pos: 108.5,85.5
+ parent: 2
+ - uid: 3738
+ components:
+ - type: Transform
+ pos: 108.5,84.5
+ parent: 2
+ - uid: 3739
+ components:
+ - type: Transform
+ pos: 107.5,84.5
+ parent: 2
+ - uid: 3764
+ components:
+ - type: Transform
+ pos: 72.5,82.5
+ parent: 2
+ - uid: 3766
+ components:
+ - type: Transform
+ pos: 71.5,83.5
+ parent: 2
+ - uid: 3767
+ components:
+ - type: Transform
+ pos: 70.5,84.5
+ parent: 2
+ - uid: 3768
+ components:
+ - type: Transform
+ pos: 69.5,85.5
+ parent: 2
+ - uid: 3769
+ components:
+ - type: Transform
+ pos: 68.5,86.5
+ parent: 2
+ - uid: 3770
+ components:
+ - type: Transform
+ pos: 68.5,87.5
+ parent: 2
+ - uid: 3771
+ components:
+ - type: Transform
+ pos: -88.5,66.5
+ parent: 2
+ - uid: 3772
+ components:
+ - type: Transform
+ pos: 70.5,90.5
+ parent: 2
+ - uid: 3773
+ components:
+ - type: Transform
+ pos: 69.5,90.5
+ parent: 2
+ - uid: 3774
+ components:
+ - type: Transform
+ pos: 68.5,91.5
+ parent: 2
+ - uid: 3777
+ components:
+ - type: Transform
+ pos: 69.5,92.5
+ parent: 2
+ - uid: 3779
+ components:
+ - type: Transform
+ pos: 70.5,93.5
+ parent: 2
+ - uid: 3781
+ components:
+ - type: Transform
+ pos: 72.5,94.5
+ parent: 2
+ - uid: 3784
+ components:
+ - type: Transform
+ pos: 71.5,95.5
+ parent: 2
+ - uid: 3785
+ components:
+ - type: Transform
+ pos: 71.5,96.5
+ parent: 2
+ - uid: 3786
+ components:
+ - type: Transform
+ pos: 72.5,97.5
+ parent: 2
+ - uid: 3787
+ components:
+ - type: Transform
+ pos: 72.5,99.5
+ parent: 2
+ - uid: 3788
+ components:
+ - type: Transform
+ pos: 73.5,100.5
+ parent: 2
+ - uid: 3789
+ components:
+ - type: Transform
+ pos: 73.5,101.5
+ parent: 2
+ - uid: 3790
+ components:
+ - type: Transform
+ pos: 76.5,102.5
+ parent: 2
+ - uid: 3791
+ components:
+ - type: Transform
+ pos: 75.5,103.5
+ parent: 2
+ - uid: 3792
+ components:
+ - type: Transform
+ pos: 75.5,104.5
+ parent: 2
+ - uid: 3793
+ components:
+ - type: Transform
+ pos: 75.5,102.5
+ parent: 2
+ - uid: 3794
+ components:
+ - type: Transform
+ pos: 67.5,87.5
+ parent: 2
+ - uid: 3795
+ components:
+ - type: Transform
+ pos: 79.5,83.5
+ parent: 2
+ - uid: 3796
+ components:
+ - type: Transform
+ pos: 79.5,82.5
+ parent: 2
+ - uid: 3797
+ components:
+ - type: Transform
+ pos: 81.5,82.5
+ parent: 2
+ - uid: 3798
+ components:
+ - type: Transform
+ pos: 82.5,81.5
+ parent: 2
+ - uid: 3799
+ components:
+ - type: Transform
+ pos: 84.5,80.5
+ parent: 2
+ - uid: 3800
+ components:
+ - type: Transform
+ pos: 80.5,82.5
+ parent: 2
+ - uid: 3801
+ components:
+ - type: Transform
+ pos: 83.5,80.5
+ parent: 2
+ - uid: 3802
+ components:
+ - type: Transform
+ pos: 84.5,79.5
+ parent: 2
+ - uid: 3803
+ components:
+ - type: Transform
+ pos: 84.5,78.5
+ parent: 2
+ - uid: 3804
+ components:
+ - type: Transform
+ pos: 83.5,78.5
+ parent: 2
+ - uid: 3805
+ components:
+ - type: Transform
+ pos: 83.5,79.5
+ parent: 2
+ - uid: 3806
+ components:
+ - type: Transform
+ pos: 82.5,79.5
+ parent: 2
+ - uid: 3807
+ components:
+ - type: Transform
+ pos: 81.5,79.5
+ parent: 2
+ - uid: 3808
+ components:
+ - type: Transform
+ pos: 80.5,79.5
+ parent: 2
+ - uid: 3809
+ components:
+ - type: Transform
+ pos: 79.5,79.5
+ parent: 2
+ - uid: 3810
+ components:
+ - type: Transform
+ pos: 82.5,80.5
+ parent: 2
+ - uid: 3811
+ components:
+ - type: Transform
+ pos: 81.5,80.5
+ parent: 2
+ - uid: 3812
+ components:
+ - type: Transform
+ pos: 80.5,80.5
+ parent: 2
+ - uid: 3813
+ components:
+ - type: Transform
+ pos: 79.5,80.5
+ parent: 2
+ - uid: 3814
+ components:
+ - type: Transform
+ pos: 78.5,80.5
+ parent: 2
+ - uid: 3815
+ components:
+ - type: Transform
+ pos: 77.5,80.5
+ parent: 2
+ - uid: 3816
+ components:
+ - type: Transform
+ pos: 76.5,80.5
+ parent: 2
+ - uid: 3817
+ components:
+ - type: Transform
+ pos: 76.5,81.5
+ parent: 2
+ - uid: 3818
+ components:
+ - type: Transform
+ pos: 77.5,81.5
+ parent: 2
+ - uid: 3819
+ components:
+ - type: Transform
+ pos: 79.5,81.5
+ parent: 2
+ - uid: 3820
+ components:
+ - type: Transform
+ pos: 78.5,81.5
+ parent: 2
+ - uid: 3821
+ components:
+ - type: Transform
+ pos: 80.5,81.5
+ parent: 2
+ - uid: 3822
+ components:
+ - type: Transform
+ pos: 81.5,81.5
+ parent: 2
+ - uid: 3823
+ components:
+ - type: Transform
+ pos: 78.5,82.5
+ parent: 2
+ - uid: 3836
+ components:
+ - type: Transform
+ pos: -101.5,74.5
+ parent: 2
+ - uid: 3837
+ components:
+ - type: Transform
+ pos: 87.5,75.5
+ parent: 2
+ - uid: 3838
+ components:
+ - type: Transform
+ pos: 86.5,74.5
+ parent: 2
+ - uid: 3839
+ components:
+ - type: Transform
+ pos: 86.5,75.5
+ parent: 2
+ - uid: 3840
+ components:
+ - type: Transform
+ pos: 91.5,73.5
+ parent: 2
+ - uid: 3841
+ components:
+ - type: Transform
+ pos: 90.5,73.5
+ parent: 2
+ - uid: 3842
+ components:
+ - type: Transform
+ pos: 90.5,72.5
+ parent: 2
+ - uid: 3843
+ components:
+ - type: Transform
+ pos: 91.5,72.5
+ parent: 2
+ - uid: 3844
+ components:
+ - type: Transform
+ pos: -92.5,49.5
+ parent: 2
+ - uid: 3845
+ components:
+ - type: Transform
+ pos: -94.5,47.5
+ parent: 2
+ - uid: 3846
+ components:
+ - type: Transform
+ pos: -94.5,46.5
+ parent: 2
+ - uid: 3847
+ components:
+ - type: Transform
+ pos: -96.5,47.5
+ parent: 2
+ - uid: 3848
+ components:
+ - type: Transform
+ pos: -96.5,49.5
+ parent: 2
+ - uid: 3849
+ components:
+ - type: Transform
+ pos: -96.5,50.5
+ parent: 2
+ - uid: 3850
+ components:
+ - type: Transform
+ pos: -95.5,48.5
+ parent: 2
+ - uid: 3851
+ components:
+ - type: Transform
+ pos: -94.5,48.5
+ parent: 2
+ - uid: 3852
+ components:
+ - type: Transform
+ pos: -94.5,49.5
+ parent: 2
+ - uid: 3853
+ components:
+ - type: Transform
+ pos: -94.5,50.5
+ parent: 2
+ - uid: 3854
+ components:
+ - type: Transform
+ pos: -94.5,51.5
+ parent: 2
+ - uid: 3855
+ components:
+ - type: Transform
+ pos: -93.5,49.5
+ parent: 2
+ - uid: 3856
+ components:
+ - type: Transform
+ pos: -93.5,50.5
+ parent: 2
+ - uid: 3857
+ components:
+ - type: Transform
+ pos: -93.5,51.5
+ parent: 2
+ - uid: 3858
+ components:
+ - type: Transform
+ pos: -93.5,48.5
+ parent: 2
+ - uid: 3859
+ components:
+ - type: Transform
+ pos: -95.5,49.5
+ parent: 2
+ - uid: 3860
+ components:
+ - type: Transform
+ pos: -95.5,51.5
+ parent: 2
+ - uid: 3861
+ components:
+ - type: Transform
+ pos: -95.5,52.5
+ parent: 2
+ - uid: 3862
+ components:
+ - type: Transform
+ pos: -94.5,52.5
+ parent: 2
+ - uid: 3863
+ components:
+ - type: Transform
+ pos: -95.5,47.5
+ parent: 2
+ - uid: 3864
+ components:
+ - type: Transform
+ pos: -95.5,46.5
+ parent: 2
+ - uid: 3865
+ components:
+ - type: Transform
+ pos: -98.5,56.5
+ parent: 2
+ - uid: 3866
+ components:
+ - type: Transform
+ pos: -97.5,56.5
+ parent: 2
+ - uid: 3867
+ components:
+ - type: Transform
+ pos: -96.5,56.5
+ parent: 2
+ - uid: 3868
+ components:
+ - type: Transform
+ pos: -95.5,56.5
+ parent: 2
+ - uid: 3869
+ components:
+ - type: Transform
+ pos: -94.5,56.5
+ parent: 2
+ - uid: 3870
+ components:
+ - type: Transform
+ pos: -93.5,56.5
+ parent: 2
+ - uid: 3871
+ components:
+ - type: Transform
+ pos: -92.5,56.5
+ parent: 2
+ - uid: 3872
+ components:
+ - type: Transform
+ pos: -95.5,55.5
+ parent: 2
+ - uid: 3873
+ components:
+ - type: Transform
+ pos: -94.5,53.5
+ parent: 2
+ - uid: 3874
+ components:
+ - type: Transform
+ pos: -95.5,53.5
+ parent: 2
+ - uid: 3875
+ components:
+ - type: Transform
+ pos: -95.5,54.5
+ parent: 2
+ - uid: 3876
+ components:
+ - type: Transform
+ pos: -92.5,55.5
+ parent: 2
+ - uid: 3877
+ components:
+ - type: Transform
+ pos: -92.5,54.5
+ parent: 2
+ - uid: 3878
+ components:
+ - type: Transform
+ pos: -92.5,53.5
+ parent: 2
+ - uid: 3879
+ components:
+ - type: Transform
+ pos: -93.5,55.5
+ parent: 2
+ - uid: 3880
+ components:
+ - type: Transform
+ pos: -93.5,54.5
+ parent: 2
+ - uid: 3881
+ components:
+ - type: Transform
+ pos: -93.5,53.5
+ parent: 2
+ - uid: 3882
+ components:
+ - type: Transform
+ pos: -94.5,55.5
+ parent: 2
+ - uid: 3883
+ components:
+ - type: Transform
+ pos: -94.5,54.5
+ parent: 2
+ - uid: 3884
+ components:
+ - type: Transform
+ pos: -96.5,55.5
+ parent: 2
+ - uid: 3885
+ components:
+ - type: Transform
+ pos: -96.5,54.5
+ parent: 2
+ - uid: 3886
+ components:
+ - type: Transform
+ pos: -98.5,58.5
+ parent: 2
+ - uid: 3887
+ components:
+ - type: Transform
+ pos: -98.5,57.5
+ parent: 2
+ - uid: 3888
+ components:
+ - type: Transform
+ pos: -97.5,58.5
+ parent: 2
+ - uid: 3889
+ components:
+ - type: Transform
+ pos: -97.5,57.5
+ parent: 2
+ - uid: 3890
+ components:
+ - type: Transform
+ pos: -96.5,58.5
+ parent: 2
+ - uid: 3891
+ components:
+ - type: Transform
+ pos: -96.5,57.5
+ parent: 2
+ - uid: 3892
+ components:
+ - type: Transform
+ pos: -95.5,58.5
+ parent: 2
+ - uid: 3893
+ components:
+ - type: Transform
+ pos: -95.5,57.5
+ parent: 2
+ - uid: 3894
+ components:
+ - type: Transform
+ pos: -95.5,59.5
+ parent: 2
+ - uid: 3895
+ components:
+ - type: Transform
+ pos: -96.5,59.5
+ parent: 2
+ - uid: 3896
+ components:
+ - type: Transform
+ pos: -97.5,59.5
+ parent: 2
+ - uid: 3897
+ components:
+ - type: Transform
+ pos: -97.5,60.5
+ parent: 2
+ - uid: 3898
+ components:
+ - type: Transform
+ pos: -91.5,53.5
+ parent: 2
+ - uid: 3899
+ components:
+ - type: Transform
+ pos: -91.5,51.5
+ parent: 2
+ - uid: 3900
+ components:
+ - type: Transform
+ pos: -90.5,53.5
+ parent: 2
+ - uid: 3901
+ components:
+ - type: Transform
+ pos: -90.5,52.5
+ parent: 2
+ - uid: 3902
+ components:
+ - type: Transform
+ pos: -90.5,51.5
+ parent: 2
+ - uid: 3903
+ components:
+ - type: Transform
+ pos: -89.5,53.5
+ parent: 2
+ - uid: 3904
+ components:
+ - type: Transform
+ pos: -89.5,52.5
+ parent: 2
+ - uid: 3905
+ components:
+ - type: Transform
+ pos: -91.5,52.5
+ parent: 2
+ - uid: 3906
+ components:
+ - type: Transform
+ pos: -89.5,51.5
+ parent: 2
+ - uid: 3907
+ components:
+ - type: Transform
+ pos: -90.5,50.5
+ parent: 2
+ - uid: 3908
+ components:
+ - type: Transform
+ pos: -91.5,50.5
+ parent: 2
+ - uid: 3909
+ components:
+ - type: Transform
+ pos: -92.5,50.5
+ parent: 2
+ - uid: 3910
+ components:
+ - type: Transform
+ pos: -92.5,52.5
+ parent: 2
+ - uid: 3911
+ components:
+ - type: Transform
+ pos: -93.5,52.5
+ parent: 2
+ - uid: 3912
+ components:
+ - type: Transform
+ pos: -92.5,51.5
+ parent: 2
+ - uid: 3913
+ components:
+ - type: Transform
+ pos: -95.5,50.5
+ parent: 2
+ - uid: 3914
+ components:
+ - type: Transform
+ pos: -94.5,45.5
+ parent: 2
+ - uid: 3915
+ components:
+ - type: Transform
+ pos: -88.5,53.5
+ parent: 2
+ - uid: 3916
+ components:
+ - type: Transform
+ pos: -86.5,55.5
+ parent: 2
+ - uid: 3917
+ components:
+ - type: Transform
+ pos: -87.5,55.5
+ parent: 2
+ - uid: 3918
+ components:
+ - type: Transform
+ pos: -88.5,55.5
+ parent: 2
+ - uid: 3919
+ components:
+ - type: Transform
+ pos: -88.5,54.5
+ parent: 2
+ - uid: 3920
+ components:
+ - type: Transform
+ pos: -87.5,54.5
+ parent: 2
+ - uid: 3921
+ components:
+ - type: Transform
+ pos: -86.5,57.5
+ parent: 2
+ - uid: 3922
+ components:
+ - type: Transform
+ pos: -87.5,58.5
+ parent: 2
+ - uid: 3923
+ components:
+ - type: Transform
+ pos: -86.5,58.5
+ parent: 2
+ - uid: 3924
+ components:
+ - type: Transform
+ pos: -86.5,59.5
+ parent: 2
+ - uid: 3925
+ components:
+ - type: Transform
+ pos: -88.5,56.5
+ parent: 2
+ - uid: 3926
+ components:
+ - type: Transform
+ pos: -88.5,57.5
+ parent: 2
+ - uid: 3927
+ components:
+ - type: Transform
+ pos: -88.5,58.5
+ parent: 2
+ - uid: 3928
+ components:
+ - type: Transform
+ pos: -88.5,59.5
+ parent: 2
+ - uid: 3929
+ components:
+ - type: Transform
+ pos: -87.5,56.5
+ parent: 2
+ - uid: 3930
+ components:
+ - type: Transform
+ pos: -87.5,57.5
+ parent: 2
+ - uid: 3931
+ components:
+ - type: Transform
+ pos: -87.5,59.5
+ parent: 2
+ - uid: 3932
+ components:
+ - type: Transform
+ pos: -86.5,56.5
+ parent: 2
+ - uid: 3933
+ components:
+ - type: Transform
+ pos: -83.5,59.5
+ parent: 2
+ - uid: 3934
+ components:
+ - type: Transform
+ pos: -84.5,59.5
+ parent: 2
+ - uid: 3935
+ components:
+ - type: Transform
+ pos: -85.5,59.5
+ parent: 2
+ - uid: 3936
+ components:
+ - type: Transform
+ pos: -84.5,58.5
+ parent: 2
+ - uid: 3937
+ components:
+ - type: Transform
+ pos: -88.5,52.5
+ parent: 2
+ - uid: 3938
+ components:
+ - type: Transform
+ pos: -85.5,58.5
+ parent: 2
+ - uid: 3939
+ components:
+ - type: Transform
+ pos: -85.5,57.5
+ parent: 2
+ - uid: 3940
+ components:
+ - type: Transform
+ pos: -87.5,53.5
+ parent: 2
+ - uid: 4007
+ components:
+ - type: Transform
+ pos: -84.5,67.5
+ parent: 2
+ - uid: 4017
+ components:
+ - type: Transform
+ pos: -86.5,73.5
+ parent: 2
+ - uid: 4018
+ components:
+ - type: Transform
+ pos: -86.5,66.5
+ parent: 2
+ - uid: 4103
+ components:
+ - type: Transform
+ pos: -75.5,62.5
+ parent: 2
+ - uid: 4105
+ components:
+ - type: Transform
+ pos: -77.5,62.5
+ parent: 2
+ - uid: 4106
+ components:
+ - type: Transform
+ pos: -78.5,62.5
+ parent: 2
+ - uid: 4108
+ components:
+ - type: Transform
+ pos: -79.5,62.5
+ parent: 2
+ - uid: 4109
+ components:
+ - type: Transform
+ pos: -80.5,62.5
+ parent: 2
+ - uid: 4110
+ components:
+ - type: Transform
+ pos: -81.5,62.5
+ parent: 2
+ - uid: 4111
+ components:
+ - type: Transform
+ pos: -82.5,62.5
+ parent: 2
+ - uid: 4112
+ components:
+ - type: Transform
+ pos: -84.5,62.5
+ parent: 2
+ - uid: 4113
+ components:
+ - type: Transform
+ pos: -83.5,62.5
+ parent: 2
+ - uid: 4115
+ components:
+ - type: Transform
+ pos: -79.5,63.5
+ parent: 2
+ - uid: 4116
+ components:
+ - type: Transform
+ pos: -80.5,63.5
+ parent: 2
+ - uid: 4117
+ components:
+ - type: Transform
+ pos: -81.5,63.5
+ parent: 2
+ - uid: 4118
+ components:
+ - type: Transform
+ pos: -82.5,63.5
+ parent: 2
+ - uid: 4119
+ components:
+ - type: Transform
+ pos: -83.5,63.5
+ parent: 2
+ - uid: 4120
+ components:
+ - type: Transform
+ pos: -84.5,63.5
+ parent: 2
+ - uid: 4121
+ components:
+ - type: Transform
+ pos: -85.5,63.5
+ parent: 2
+ - uid: 4122
+ components:
+ - type: Transform
+ pos: -81.5,61.5
+ parent: 2
+ - uid: 4123
+ components:
+ - type: Transform
+ pos: -82.5,61.5
+ parent: 2
+ - uid: 4124
+ components:
+ - type: Transform
+ pos: -83.5,61.5
+ parent: 2
+ - uid: 4125
+ components:
+ - type: Transform
+ pos: -83.5,60.5
+ parent: 2
+ - uid: 4178
+ components:
+ - type: Transform
+ pos: -82.5,60.5
+ parent: 2
+ - uid: 4204
+ components:
+ - type: Transform
+ pos: -85.5,61.5
+ parent: 2
+ - uid: 4205
+ components:
+ - type: Transform
+ pos: -89.5,60.5
+ parent: 2
+ - uid: 4206
+ components:
+ - type: Transform
+ pos: -89.5,61.5
+ parent: 2
+ - uid: 4207
+ components:
+ - type: Transform
+ pos: -88.5,61.5
+ parent: 2
+ - uid: 4208
+ components:
+ - type: Transform
+ pos: -84.5,61.5
+ parent: 2
+ - uid: 4209
+ components:
+ - type: Transform
+ pos: -85.5,60.5
+ parent: 2
+ - uid: 4210
+ components:
+ - type: Transform
+ pos: -84.5,60.5
+ parent: 2
+ - uid: 4211
+ components:
+ - type: Transform
+ pos: -86.5,60.5
+ parent: 2
+ - uid: 4212
+ components:
+ - type: Transform
+ pos: -86.5,61.5
+ parent: 2
+ - uid: 4213
+ components:
+ - type: Transform
+ pos: -87.5,61.5
+ parent: 2
+ - uid: 4214
+ components:
+ - type: Transform
+ pos: -87.5,60.5
+ parent: 2
+ - uid: 4215
+ components:
+ - type: Transform
+ pos: -88.5,60.5
+ parent: 2
+ - uid: 4216
+ components:
+ - type: Transform
+ pos: -89.5,58.5
+ parent: 2
+ - uid: 4217
+ components:
+ - type: Transform
+ pos: -89.5,59.5
+ parent: 2
+ - uid: 4218
+ components:
+ - type: Transform
+ pos: -90.5,58.5
+ parent: 2
+ - uid: 4219
+ components:
+ - type: Transform
+ pos: -90.5,59.5
+ parent: 2
+ - uid: 4220
+ components:
+ - type: Transform
+ pos: -91.5,60.5
+ parent: 2
+ - uid: 4221
+ components:
+ - type: Transform
+ pos: -91.5,61.5
+ parent: 2
+ - uid: 4222
+ components:
+ - type: Transform
+ pos: -91.5,62.5
+ parent: 2
+ - uid: 4223
+ components:
+ - type: Transform
+ pos: -91.5,63.5
+ parent: 2
+ - uid: 4224
+ components:
+ - type: Transform
+ pos: -91.5,64.5
+ parent: 2
+ - uid: 4225
+ components:
+ - type: Transform
+ pos: -90.5,60.5
+ parent: 2
+ - uid: 4226
+ components:
+ - type: Transform
+ pos: -90.5,61.5
+ parent: 2
+ - uid: 4227
+ components:
+ - type: Transform
+ pos: -90.5,62.5
+ parent: 2
+ - uid: 4228
+ components:
+ - type: Transform
+ pos: -90.5,63.5
+ parent: 2
+ - uid: 4229
+ components:
+ - type: Transform
+ pos: -90.5,64.5
+ parent: 2
+ - uid: 4253
+ components:
+ - type: Transform
+ pos: -88.5,64.5
+ parent: 2
+ - uid: 4254
+ components:
+ - type: Transform
+ pos: -88.5,63.5
+ parent: 2
+ - uid: 4255
+ components:
+ - type: Transform
+ pos: -88.5,62.5
+ parent: 2
+ - uid: 4256
+ components:
+ - type: Transform
+ pos: -87.5,65.5
+ parent: 2
+ - uid: 4257
+ components:
+ - type: Transform
+ pos: -89.5,65.5
+ parent: 2
+ - uid: 4258
+ components:
+ - type: Transform
+ pos: -89.5,64.5
+ parent: 2
+ - uid: 4259
+ components:
+ - type: Transform
+ pos: -89.5,62.5
+ parent: 2
+ - uid: 4260
+ components:
+ - type: Transform
+ pos: -89.5,63.5
+ parent: 2
+ - uid: 4261
+ components:
+ - type: Transform
+ pos: -86.5,65.5
+ parent: 2
+ - uid: 4262
+ components:
+ - type: Transform
+ pos: -86.5,64.5
+ parent: 2
+ - uid: 4263
+ components:
+ - type: Transform
+ pos: -86.5,63.5
+ parent: 2
+ - uid: 4264
+ components:
+ - type: Transform
+ pos: -86.5,62.5
+ parent: 2
+ - uid: 4265
+ components:
+ - type: Transform
+ pos: -87.5,64.5
+ parent: 2
+ - uid: 4266
+ components:
+ - type: Transform
+ pos: -87.5,63.5
+ parent: 2
+ - uid: 4267
+ components:
+ - type: Transform
+ pos: -87.5,62.5
+ parent: 2
+ - uid: 4268
+ components:
+ - type: Transform
+ pos: -88.5,65.5
+ parent: 2
+ - uid: 4269
+ components:
+ - type: Transform
+ pos: -85.5,62.5
+ parent: 2
+ - uid: 4270
+ components:
+ - type: Transform
+ pos: -90.5,65.5
+ parent: 2
+ - uid: 4271
+ components:
+ - type: Transform
+ pos: -91.5,65.5
+ parent: 2
+ - uid: 4272
+ components:
+ - type: Transform
+ pos: -92.5,65.5
+ parent: 2
+ - uid: 4273
+ components:
+ - type: Transform
+ pos: -93.5,65.5
+ parent: 2
+ - uid: 4274
+ components:
+ - type: Transform
+ pos: -92.5,64.5
+ parent: 2
+ - uid: 4275
+ components:
+ - type: Transform
+ pos: -93.5,64.5
+ parent: 2
+ - uid: 4326
+ components:
+ - type: Transform
+ pos: -98.5,67.5
+ parent: 2
+ - uid: 4327
+ components:
+ - type: Transform
+ pos: -98.5,68.5
+ parent: 2
+ - uid: 4328
+ components:
+ - type: Transform
+ pos: -98.5,69.5
+ parent: 2
+ - uid: 4329
+ components:
+ - type: Transform
+ pos: -98.5,70.5
+ parent: 2
+ - uid: 4330
+ components:
+ - type: Transform
+ pos: -100.5,70.5
+ parent: 2
+ - uid: 4331
+ components:
+ - type: Transform
+ pos: -100.5,69.5
+ parent: 2
+ - uid: 4332
+ components:
+ - type: Transform
+ pos: -99.5,70.5
+ parent: 2
+ - uid: 4333
+ components:
+ - type: Transform
+ pos: -99.5,69.5
+ parent: 2
+ - uid: 4334
+ components:
+ - type: Transform
+ pos: -99.5,68.5
+ parent: 2
+ - uid: 4335
+ components:
+ - type: Transform
+ pos: 87.5,94.5
+ parent: 2
+ - uid: 4336
+ components:
+ - type: Transform
+ pos: 89.5,95.5
+ parent: 2
+ - uid: 4337
+ components:
+ - type: Transform
+ pos: -97.5,70.5
+ parent: 2
+ - uid: 4338
+ components:
+ - type: Transform
+ pos: -97.5,69.5
+ parent: 2
+ - uid: 4339
+ components:
+ - type: Transform
+ pos: -97.5,68.5
+ parent: 2
+ - uid: 4340
+ components:
+ - type: Transform
+ pos: -96.5,70.5
+ parent: 2
+ - uid: 4341
+ components:
+ - type: Transform
+ pos: -96.5,69.5
+ parent: 2
+ - uid: 4342
+ components:
+ - type: Transform
+ pos: -96.5,68.5
+ parent: 2
+ - uid: 4343
+ components:
+ - type: Transform
+ pos: -95.5,70.5
+ parent: 2
+ - uid: 4344
+ components:
+ - type: Transform
+ pos: -95.5,68.5
+ parent: 2
+ - uid: 4345
+ components:
+ - type: Transform
+ pos: -94.5,70.5
+ parent: 2
+ - uid: 4346
+ components:
+ - type: Transform
+ pos: -95.5,69.5
+ parent: 2
+ - uid: 4347
+ components:
+ - type: Transform
+ pos: -94.5,69.5
+ parent: 2
+ - uid: 4348
+ components:
+ - type: Transform
+ pos: -94.5,68.5
+ parent: 2
+ - uid: 4349
+ components:
+ - type: Transform
+ pos: -93.5,70.5
+ parent: 2
+ - uid: 4350
+ components:
+ - type: Transform
+ pos: -93.5,69.5
+ parent: 2
+ - uid: 4351
+ components:
+ - type: Transform
+ pos: -93.5,68.5
+ parent: 2
+ - uid: 4352
+ components:
+ - type: Transform
+ pos: 88.5,94.5
+ parent: 2
+ - uid: 4353
+ components:
+ - type: Transform
+ pos: 89.5,94.5
+ parent: 2
+ - uid: 4354
+ components:
+ - type: Transform
+ pos: 88.5,95.5
+ parent: 2
+ - uid: 4355
+ components:
+ - type: Transform
+ pos: -93.5,67.5
+ parent: 2
+ - uid: 4356
+ components:
+ - type: Transform
+ pos: -93.5,66.5
+ parent: 2
+ - uid: 4357
+ components:
+ - type: Transform
+ pos: -92.5,67.5
+ parent: 2
+ - uid: 4358
+ components:
+ - type: Transform
+ pos: -92.5,66.5
+ parent: 2
+ - uid: 4359
+ components:
+ - type: Transform
+ pos: -91.5,67.5
+ parent: 2
+ - uid: 4360
+ components:
+ - type: Transform
+ pos: -91.5,66.5
+ parent: 2
+ - uid: 4361
+ components:
+ - type: Transform
+ pos: -90.5,66.5
+ parent: 2
+ - uid: 4362
+ components:
+ - type: Transform
+ pos: -92.5,70.5
+ parent: 2
+ - uid: 4363
+ components:
+ - type: Transform
+ pos: -92.5,71.5
+ parent: 2
+ - uid: 4364
+ components:
+ - type: Transform
+ pos: -93.5,71.5
+ parent: 2
+ - uid: 4365
+ components:
+ - type: Transform
+ pos: -92.5,69.5
+ parent: 2
+ - uid: 4366
+ components:
+ - type: Transform
+ pos: -89.5,72.5
+ parent: 2
+ - uid: 4368
+ components:
+ - type: Transform
+ pos: 98.5,90.5
+ parent: 2
+ - uid: 4369
+ components:
+ - type: Transform
+ pos: 97.5,90.5
+ parent: 2
+ - uid: 4370
+ components:
+ - type: Transform
+ pos: 97.5,89.5
+ parent: 2
+ - uid: 4371
+ components:
+ - type: Transform
+ pos: -81.5,65.5
+ parent: 2
+ - uid: 4499
+ components:
+ - type: Transform
+ pos: -83.5,66.5
+ parent: 2
+ - uid: 4512
+ components:
+ - type: Transform
+ pos: -79.5,60.5
+ parent: 2
+ - uid: 4513
+ components:
+ - type: Transform
+ pos: -83.5,57.5
+ parent: 2
+ - uid: 4530
+ components:
+ - type: Transform
+ pos: -90.5,47.5
+ parent: 2
+ - uid: 4532
+ components:
+ - type: Transform
+ pos: -93.5,44.5
+ parent: 2
+ - uid: 4538
+ components:
+ - type: Transform
+ pos: -98.5,48.5
+ parent: 2
+ - uid: 4542
+ components:
+ - type: Transform
+ pos: -99.5,54.5
+ parent: 2
+ - uid: 4571
+ components:
+ - type: Transform
+ pos: -98.5,54.5
+ parent: 2
+ - uid: 4604
+ components:
+ - type: Transform
+ pos: -107.5,58.5
+ parent: 2
+ - uid: 4606
+ components:
+ - type: Transform
+ pos: -107.5,59.5
+ parent: 2
+ - uid: 4624
+ components:
+ - type: Transform
+ pos: -107.5,60.5
+ parent: 2
+ - uid: 4625
+ components:
+ - type: Transform
+ pos: -113.5,61.5
+ parent: 2
+ - uid: 4626
+ components:
+ - type: Transform
+ pos: -113.5,60.5
+ parent: 2
+ - uid: 4628
+ components:
+ - type: Transform
+ pos: -96.5,52.5
+ parent: 2
+ - uid: 4635
+ components:
+ - type: Transform
+ pos: -101.5,61.5
+ parent: 2
+ - uid: 4636
+ components:
+ - type: Transform
+ pos: -101.5,60.5
+ parent: 2
+ - uid: 4637
+ components:
+ - type: Transform
+ pos: -102.5,61.5
+ parent: 2
+ - uid: 4638
+ components:
+ - type: Transform
+ pos: -102.5,60.5
+ parent: 2
+ - uid: 4639
+ components:
+ - type: Transform
+ pos: -103.5,61.5
+ parent: 2
+ - uid: 4640
+ components:
+ - type: Transform
+ pos: -103.5,60.5
+ parent: 2
+ - uid: 4641
+ components:
+ - type: Transform
+ pos: -104.5,61.5
+ parent: 2
+ - uid: 4642
+ components:
+ - type: Transform
+ pos: -104.5,60.5
+ parent: 2
+ - uid: 4643
+ components:
+ - type: Transform
+ pos: -102.5,58.5
+ parent: 2
+ - uid: 4644
+ components:
+ - type: Transform
+ pos: -102.5,59.5
+ parent: 2
+ - uid: 4645
+ components:
+ - type: Transform
+ pos: -103.5,58.5
+ parent: 2
+ - uid: 4646
+ components:
+ - type: Transform
+ pos: -103.5,59.5
+ parent: 2
+ - uid: 4647
+ components:
+ - type: Transform
+ pos: -104.5,58.5
+ parent: 2
+ - uid: 4648
+ components:
+ - type: Transform
+ pos: -104.5,59.5
+ parent: 2
+ - uid: 4649
+ components:
+ - type: Transform
+ pos: -103.5,57.5
+ parent: 2
+ - uid: 4650
+ components:
+ - type: Transform
+ pos: -105.5,58.5
+ parent: 2
+ - uid: 4651
+ components:
+ - type: Transform
+ pos: -105.5,59.5
+ parent: 2
+ - uid: 4652
+ components:
+ - type: Transform
+ pos: -105.5,60.5
+ parent: 2
+ - uid: 4653
+ components:
+ - type: Transform
+ pos: -105.5,61.5
+ parent: 2
+ - uid: 4654
+ components:
+ - type: Transform
+ pos: -106.5,58.5
+ parent: 2
+ - uid: 4655
+ components:
+ - type: Transform
+ pos: -106.5,59.5
+ parent: 2
+ - uid: 4656
+ components:
+ - type: Transform
+ pos: -106.5,60.5
+ parent: 2
+ - uid: 4657
+ components:
+ - type: Transform
+ pos: -106.5,61.5
+ parent: 2
+ - uid: 4658
+ components:
+ - type: Transform
+ pos: -107.5,61.5
+ parent: 2
+ - uid: 4659
+ components:
+ - type: Transform
+ pos: -108.5,58.5
+ parent: 2
+ - uid: 4660
+ components:
+ - type: Transform
+ pos: -108.5,59.5
+ parent: 2
+ - uid: 4661
+ components:
+ - type: Transform
+ pos: -108.5,60.5
+ parent: 2
+ - uid: 4662
+ components:
+ - type: Transform
+ pos: -108.5,61.5
+ parent: 2
+ - uid: 4663
+ components:
+ - type: Transform
+ pos: -111.5,59.5
+ parent: 2
+ - uid: 4664
+ components:
+ - type: Transform
+ pos: -111.5,60.5
+ parent: 2
+ - uid: 4665
+ components:
+ - type: Transform
+ pos: -111.5,61.5
+ parent: 2
+ - uid: 4666
+ components:
+ - type: Transform
+ pos: -112.5,58.5
+ parent: 2
+ - uid: 4667
+ components:
+ - type: Transform
+ pos: -112.5,59.5
+ parent: 2
+ - uid: 4668
+ components:
+ - type: Transform
+ pos: -112.5,60.5
+ parent: 2
+ - uid: 4669
+ components:
+ - type: Transform
+ pos: -112.5,61.5
+ parent: 2
+ - uid: 4670
+ components:
+ - type: Transform
+ pos: -113.5,58.5
+ parent: 2
+ - uid: 4671
+ components:
+ - type: Transform
+ pos: -113.5,59.5
+ parent: 2
+ - uid: 4672
+ components:
+ - type: Transform
+ pos: -109.5,58.5
+ parent: 2
+ - uid: 4673
+ components:
+ - type: Transform
+ pos: -109.5,59.5
+ parent: 2
+ - uid: 4674
+ components:
+ - type: Transform
+ pos: -109.5,60.5
+ parent: 2
+ - uid: 4675
+ components:
+ - type: Transform
+ pos: -109.5,61.5
+ parent: 2
+ - uid: 4676
+ components:
+ - type: Transform
+ pos: -110.5,58.5
+ parent: 2
+ - uid: 4677
+ components:
+ - type: Transform
+ pos: -110.5,59.5
+ parent: 2
+ - uid: 4678
+ components:
+ - type: Transform
+ pos: -110.5,60.5
+ parent: 2
+ - uid: 4679
+ components:
+ - type: Transform
+ pos: -110.5,61.5
+ parent: 2
+ - uid: 4680
+ components:
+ - type: Transform
+ pos: -111.5,58.5
+ parent: 2
+ - uid: 4681
+ components:
+ - type: Transform
+ pos: -114.5,60.5
+ parent: 2
+ - uid: 4682
+ components:
+ - type: Transform
+ pos: -114.5,61.5
+ parent: 2
+ - uid: 4683
+ components:
+ - type: Transform
+ pos: -114.5,62.5
+ parent: 2
+ - uid: 4684
+ components:
+ - type: Transform
+ pos: -115.5,60.5
+ parent: 2
+ - uid: 4685
+ components:
+ - type: Transform
+ pos: -115.5,61.5
+ parent: 2
+ - uid: 4686
+ components:
+ - type: Transform
+ pos: -115.5,62.5
+ parent: 2
+ - uid: 4687
+ components:
+ - type: Transform
+ pos: -115.5,57.5
+ parent: 2
+ - uid: 4688
+ components:
+ - type: Transform
+ pos: 100.5,105.5
+ parent: 2
+ - uid: 4689
+ components:
+ - type: Transform
+ pos: 100.5,106.5
+ parent: 2
+ - uid: 4690
+ components:
+ - type: Transform
+ pos: -114.5,59.5
+ parent: 2
+ - uid: 4691
+ components:
+ - type: Transform
+ pos: 100.5,107.5
+ parent: 2
+ - uid: 4693
+ components:
+ - type: Transform
+ pos: 99.5,107.5
+ parent: 2
+ - uid: 4695
+ components:
+ - type: Transform
+ pos: -117.5,63.5
+ parent: 2
+ - uid: 4696
+ components:
+ - type: Transform
+ pos: -116.5,65.5
+ parent: 2
+ - uid: 4697
+ components:
+ - type: Transform
+ pos: -115.5,64.5
+ parent: 2
+ - uid: 4698
+ components:
+ - type: Transform
+ pos: -113.5,64.5
+ parent: 2
+ - uid: 4699
+ components:
+ - type: Transform
+ pos: 98.5,106.5
+ parent: 2
+ - uid: 4700
+ components:
+ - type: Transform
+ pos: -113.5,65.5
+ parent: 2
+ - uid: 4701
+ components:
+ - type: Transform
+ pos: -115.5,63.5
+ parent: 2
+ - uid: 4702
+ components:
+ - type: Transform
+ pos: -113.5,63.5
+ parent: 2
+ - uid: 4703
+ components:
+ - type: Transform
+ pos: -114.5,63.5
+ parent: 2
+ - uid: 4704
+ components:
+ - type: Transform
+ pos: -113.5,62.5
+ parent: 2
+ - uid: 4705
+ components:
+ - type: Transform
+ pos: -114.5,64.5
+ parent: 2
+ - uid: 4706
+ components:
+ - type: Transform
+ pos: -114.5,65.5
+ parent: 2
+ - uid: 4707
+ components:
+ - type: Transform
+ pos: -114.5,66.5
+ parent: 2
+ - uid: 4708
+ components:
+ - type: Transform
+ pos: -113.5,66.5
+ parent: 2
+ - uid: 4709
+ components:
+ - type: Transform
+ pos: -111.5,68.5
+ parent: 2
+ - uid: 4710
+ components:
+ - type: Transform
+ pos: -111.5,67.5
+ parent: 2
+ - uid: 4711
+ components:
+ - type: Transform
+ pos: -111.5,66.5
+ parent: 2
+ - uid: 4712
+ components:
+ - type: Transform
+ pos: -112.5,68.5
+ parent: 2
+ - uid: 4713
+ components:
+ - type: Transform
+ pos: -112.5,67.5
+ parent: 2
+ - uid: 4714
+ components:
+ - type: Transform
+ pos: -112.5,66.5
+ parent: 2
+ - uid: 4715
+ components:
+ - type: Transform
+ pos: -113.5,68.5
+ parent: 2
+ - uid: 4716
+ components:
+ - type: Transform
+ pos: -113.5,67.5
+ parent: 2
+ - uid: 4717
+ components:
+ - type: Transform
+ pos: -113.5,69.5
+ parent: 2
+ - uid: 4718
+ components:
+ - type: Transform
+ pos: -113.5,70.5
+ parent: 2
+ - uid: 4719
+ components:
+ - type: Transform
+ pos: -113.5,71.5
+ parent: 2
+ - uid: 4720
+ components:
+ - type: Transform
+ pos: -114.5,69.5
+ parent: 2
+ - uid: 4721
+ components:
+ - type: Transform
+ pos: -114.5,70.5
+ parent: 2
+ - uid: 4722
+ components:
+ - type: Transform
+ pos: -114.5,71.5
+ parent: 2
+ - uid: 4723
+ components:
+ - type: Transform
+ pos: -113.5,72.5
+ parent: 2
+ - uid: 4724
+ components:
+ - type: Transform
+ pos: -112.5,72.5
+ parent: 2
+ - uid: 4725
+ components:
+ - type: Transform
+ pos: -111.5,72.5
+ parent: 2
+ - uid: 4726
+ components:
+ - type: Transform
+ pos: -110.5,72.5
+ parent: 2
+ - uid: 4727
+ components:
+ - type: Transform
+ pos: -111.5,71.5
+ parent: 2
+ - uid: 4728
+ components:
+ - type: Transform
+ pos: -112.5,71.5
+ parent: 2
+ - uid: 4729
+ components:
+ - type: Transform
+ pos: -112.5,70.5
+ parent: 2
+ - uid: 4730
+ components:
+ - type: Transform
+ pos: -112.5,69.5
+ parent: 2
+ - uid: 4797
+ components:
+ - type: Transform
+ pos: -112.5,73.5
+ parent: 2
+ - uid: 4798
+ components:
+ - type: Transform
+ pos: -111.5,73.5
+ parent: 2
+ - uid: 4799
+ components:
+ - type: Transform
+ pos: -110.5,73.5
+ parent: 2
+ - uid: 4800
+ components:
+ - type: Transform
+ pos: -109.5,73.5
+ parent: 2
+ - uid: 4801
+ components:
+ - type: Transform
+ pos: -111.5,74.5
+ parent: 2
+ - uid: 4802
+ components:
+ - type: Transform
+ pos: -110.5,74.5
+ parent: 2
+ - uid: 4803
+ components:
+ - type: Transform
+ pos: -108.5,74.5
+ parent: 2
+ - uid: 4804
+ components:
+ - type: Transform
+ pos: -107.5,74.5
+ parent: 2
+ - uid: 4805
+ components:
+ - type: Transform
+ pos: -109.5,74.5
+ parent: 2
+ - uid: 4806
+ components:
+ - type: Transform
+ pos: -108.5,79.5
+ parent: 2
+ - uid: 4807
+ components:
+ - type: Transform
+ pos: -109.5,77.5
+ parent: 2
+ - uid: 4808
+ components:
+ - type: Transform
+ pos: -108.5,77.5
+ parent: 2
+ - uid: 4809
+ components:
+ - type: Transform
+ pos: -108.5,76.5
+ parent: 2
+ - uid: 4810
+ components:
+ - type: Transform
+ pos: -108.5,75.5
+ parent: 2
+ - uid: 4811
+ components:
+ - type: Transform
+ pos: -109.5,76.5
+ parent: 2
+ - uid: 4812
+ components:
+ - type: Transform
+ pos: -109.5,75.5
+ parent: 2
+ - uid: 4813
+ components:
+ - type: Transform
+ pos: -110.5,76.5
+ parent: 2
+ - uid: 4814
+ components:
+ - type: Transform
+ pos: -110.5,75.5
+ parent: 2
+ - uid: 4815
+ components:
+ - type: Transform
+ pos: -115.5,72.5
+ parent: 2
+ - uid: 4816
+ components:
+ - type: Transform
+ pos: -118.5,72.5
+ parent: 2
+ - uid: 4817
+ components:
+ - type: Transform
+ pos: -112.5,76.5
+ parent: 2
+ - uid: 4818
+ components:
+ - type: Transform
+ pos: -116.5,73.5
+ parent: 2
+ - uid: 4819
+ components:
+ - type: Transform
+ pos: -115.5,73.5
+ parent: 2
+ - uid: 4826
+ components:
+ - type: Transform
+ pos: -114.5,74.5
+ parent: 2
+ - uid: 4828
+ components:
+ - type: Transform
+ pos: -115.5,68.5
+ parent: 2
+ - uid: 4831
+ components:
+ - type: Transform
+ pos: -107.5,63.5
+ parent: 2
+ - uid: 4832
+ components:
+ - type: Transform
+ pos: -98.5,75.5
+ parent: 2
+ - uid: 4834
+ components:
+ - type: Transform
+ pos: -105.5,76.5
+ parent: 2
+ - uid: 4836
+ components:
+ - type: Transform
+ pos: -105.5,64.5
+ parent: 2
+ - uid: 4837
+ components:
+ - type: Transform
+ pos: -106.5,63.5
+ parent: 2
+ - uid: 4838
+ components:
+ - type: Transform
+ pos: -96.5,71.5
+ parent: 2
+ - uid: 4839
+ components:
+ - type: Transform
+ pos: -106.5,64.5
+ parent: 2
+ - uid: 4840
+ components:
+ - type: Transform
+ pos: -106.5,65.5
+ parent: 2
+ - uid: 4842
+ components:
+ - type: Transform
+ pos: -103.5,74.5
+ parent: 2
+ - uid: 4843
+ components:
+ - type: Transform
+ pos: -107.5,64.5
+ parent: 2
+ - uid: 4844
+ components:
+ - type: Transform
+ pos: -108.5,62.5
+ parent: 2
+ - uid: 4845
+ components:
+ - type: Transform
+ pos: -103.5,63.5
+ parent: 2
+ - uid: 4846
+ components:
+ - type: Transform
+ pos: -105.5,62.5
+ parent: 2
+ - uid: 4847
+ components:
+ - type: Transform
+ pos: -104.5,63.5
+ parent: 2
+ - uid: 4848
+ components:
+ - type: Transform
+ pos: -91.5,71.5
+ parent: 2
+ - uid: 4849
+ components:
+ - type: Transform
+ pos: -108.5,64.5
+ parent: 2
+ - uid: 4850
+ components:
+ - type: Transform
+ pos: -105.5,65.5
+ parent: 2
+ - uid: 4851
+ components:
+ - type: Transform
+ pos: -108.5,63.5
+ parent: 2
+ - uid: 4852
+ components:
+ - type: Transform
+ pos: -109.5,62.5
+ parent: 2
+ - uid: 4853
+ components:
+ - type: Transform
+ pos: -104.5,62.5
+ parent: 2
+ - uid: 4854
+ components:
+ - type: Transform
+ pos: -106.5,62.5
+ parent: 2
+ - uid: 4855
+ components:
+ - type: Transform
+ pos: -110.5,62.5
+ parent: 2
+ - uid: 4856
+ components:
+ - type: Transform
+ pos: -107.5,62.5
+ parent: 2
+ - uid: 4857
+ components:
+ - type: Transform
+ pos: -103.5,62.5
+ parent: 2
+ - uid: 4858
+ components:
+ - type: Transform
+ pos: -105.5,63.5
+ parent: 2
+ - uid: 4859
+ components:
+ - type: Transform
+ pos: -107.5,75.5
+ parent: 2
+ - uid: 4863
+ components:
+ - type: Transform
+ pos: -108.5,73.5
+ parent: 2
+ - uid: 4864
+ components:
+ - type: Transform
+ pos: -107.5,73.5
+ parent: 2
+ - uid: 4865
+ components:
+ - type: Transform
+ pos: -106.5,73.5
+ parent: 2
+ - uid: 4866
+ components:
+ - type: Transform
+ pos: -105.5,73.5
+ parent: 2
+ - uid: 4867
+ components:
+ - type: Transform
+ pos: -96.5,76.5
+ parent: 2
+ - uid: 4868
+ components:
+ - type: Transform
+ pos: -104.5,72.5
+ parent: 2
+ - uid: 4869
+ components:
+ - type: Transform
+ pos: -103.5,72.5
+ parent: 2
+ - uid: 4870
+ components:
+ - type: Transform
+ pos: -102.5,72.5
+ parent: 2
+ - uid: 4871
+ components:
+ - type: Transform
+ pos: -99.5,75.5
+ parent: 2
+ - uid: 4872
+ components:
+ - type: Transform
+ pos: -97.5,75.5
+ parent: 2
+ - uid: 4873
+ components:
+ - type: Transform
+ pos: -100.5,74.5
+ parent: 2
+ - uid: 4874
+ components:
+ - type: Transform
+ pos: -102.5,73.5
+ parent: 2
+ - uid: 4875
+ components:
+ - type: Transform
+ pos: -103.5,73.5
+ parent: 2
+ - uid: 4876
+ components:
+ - type: Transform
+ pos: -104.5,73.5
+ parent: 2
+ - uid: 4877
+ components:
+ - type: Transform
+ pos: -106.5,74.5
+ parent: 2
+ - uid: 4878
+ components:
+ - type: Transform
+ pos: -105.5,74.5
+ parent: 2
+ - uid: 4879
+ components:
+ - type: Transform
+ pos: -102.5,74.5
+ parent: 2
+ - uid: 4880
+ components:
+ - type: Transform
+ pos: -99.5,74.5
+ parent: 2
+ - uid: 4881
+ components:
+ - type: Transform
+ pos: -98.5,74.5
+ parent: 2
+ - uid: 4882
+ components:
+ - type: Transform
+ pos: -102.5,75.5
+ parent: 2
+ - uid: 4920
+ components:
+ - type: Transform
+ pos: -97.5,55.5
+ parent: 2
+ - uid: 4921
+ components:
+ - type: Transform
+ pos: -98.5,55.5
+ parent: 2
+ - uid: 4922
+ components:
+ - type: Transform
+ pos: -99.5,55.5
+ parent: 2
+ - uid: 4923
+ components:
+ - type: Transform
+ pos: -100.5,55.5
+ parent: 2
+ - uid: 4987
+ components:
+ - type: Transform
+ pos: -92.5,68.5
+ parent: 2
+ - uid: 4988
+ components:
+ - type: Transform
+ pos: -91.5,70.5
+ parent: 2
+ - uid: 4989
+ components:
+ - type: Transform
+ pos: -91.5,69.5
+ parent: 2
+ - uid: 4990
+ components:
+ - type: Transform
+ pos: -90.5,71.5
+ parent: 2
+ - uid: 4998
+ components:
+ - type: Transform
+ pos: 69.5,89.5
+ parent: 2
+ - uid: 5000
+ components:
+ - type: Transform
+ pos: 112.5,93.5
+ parent: 2
+ - uid: 5001
+ components:
+ - type: Transform
+ pos: 112.5,94.5
+ parent: 2
+ - uid: 5002
+ components:
+ - type: Transform
+ pos: 112.5,95.5
+ parent: 2
+ - uid: 5003
+ components:
+ - type: Transform
+ pos: 112.5,96.5
+ parent: 2
+ - uid: 5004
+ components:
+ - type: Transform
+ pos: 112.5,98.5
+ parent: 2
+ - uid: 5030
+ components:
+ - type: Transform
+ pos: -114.5,28.5
+ parent: 2
+ - uid: 5033
+ components:
+ - type: Transform
+ pos: -112.5,23.5
+ parent: 2
+ - uid: 5035
+ components:
+ - type: Transform
+ pos: -122.5,31.5
+ parent: 2
+ - uid: 5036
+ components:
+ - type: Transform
+ pos: -118.5,31.5
+ parent: 2
+ - uid: 5405
+ components:
+ - type: Transform
+ pos: 1.5,-33.5
+ parent: 2
+ - uid: 5406
+ components:
+ - type: Transform
+ pos: 2.5,-33.5
+ parent: 2
+ - uid: 5407
+ components:
+ - type: Transform
+ pos: 0.5,-32.5
+ parent: 2
+ - uid: 5408
+ components:
+ - type: Transform
+ pos: 1.5,-32.5
+ parent: 2
+ - uid: 5409
+ components:
+ - type: Transform
+ pos: 2.5,-32.5
+ parent: 2
+ - uid: 5410
+ components:
+ - type: Transform
+ pos: 3.5,-32.5
+ parent: 2
+ - uid: 5411
+ components:
+ - type: Transform
+ pos: 3.5,-31.5
+ parent: 2
+ - uid: 5412
+ components:
+ - type: Transform
+ pos: 5.5,-31.5
+ parent: 2
+ - uid: 5413
+ components:
+ - type: Transform
+ pos: 6.5,-31.5
+ parent: 2
+ - uid: 5414
+ components:
+ - type: Transform
+ pos: 7.5,-31.5
+ parent: 2
+ - uid: 5415
+ components:
+ - type: Transform
+ pos: 4.5,-31.5
+ parent: 2
+ - uid: 5416
+ components:
+ - type: Transform
+ pos: 7.5,-30.5
+ parent: 2
+ - uid: 5417
+ components:
+ - type: Transform
+ pos: 7.5,-29.5
+ parent: 2
+ - uid: 5418
+ components:
+ - type: Transform
+ pos: 8.5,-28.5
+ parent: 2
+ - uid: 5419
+ components:
+ - type: Transform
+ pos: 7.5,-28.5
+ parent: 2
+ - uid: 5420
+ components:
+ - type: Transform
+ pos: 8.5,-27.5
+ parent: 2
+ - uid: 5421
+ components:
+ - type: Transform
+ pos: 9.5,-29.5
+ parent: 2
+ - uid: 5422
+ components:
+ - type: Transform
+ pos: 9.5,-30.5
+ parent: 2
+ - uid: 5423
+ components:
+ - type: Transform
+ pos: 10.5,-31.5
+ parent: 2
+ - uid: 5424
+ components:
+ - type: Transform
+ pos: 11.5,-31.5
+ parent: 2
+ - uid: 5425
+ components:
+ - type: Transform
+ pos: 10.5,-30.5
+ parent: 2
+ - uid: 5426
+ components:
+ - type: Transform
+ pos: 12.5,-32.5
+ parent: 2
+ - uid: 5427
+ components:
+ - type: Transform
+ pos: 13.5,-32.5
+ parent: 2
+ - uid: 5428
+ components:
+ - type: Transform
+ pos: 14.5,-32.5
+ parent: 2
+ - uid: 5429
+ components:
+ - type: Transform
+ pos: 12.5,-31.5
+ parent: 2
+ - uid: 5430
+ components:
+ - type: Transform
+ pos: 13.5,-33.5
+ parent: 2
+ - uid: 5431
+ components:
+ - type: Transform
+ pos: 14.5,-33.5
+ parent: 2
+ - uid: 5432
+ components:
+ - type: Transform
+ pos: 15.5,-33.5
+ parent: 2
+ - uid: 5433
+ components:
+ - type: Transform
+ pos: 14.5,-34.5
+ parent: 2
+ - uid: 5434
+ components:
+ - type: Transform
+ pos: 15.5,-34.5
+ parent: 2
+ - uid: 5435
+ components:
+ - type: Transform
+ pos: 16.5,-34.5
+ parent: 2
+ - uid: 5436
+ components:
+ - type: Transform
+ pos: 15.5,-35.5
+ parent: 2
+ - uid: 5437
+ components:
+ - type: Transform
+ pos: 16.5,-35.5
+ parent: 2
+ - uid: 5438
+ components:
+ - type: Transform
+ pos: 17.5,-35.5
+ parent: 2
+ - uid: 5439
+ components:
+ - type: Transform
+ pos: 18.5,-35.5
+ parent: 2
+ - uid: 5440
+ components:
+ - type: Transform
+ pos: 18.5,-36.5
+ parent: 2
+ - uid: 5441
+ components:
+ - type: Transform
+ pos: 20.5,-36.5
+ parent: 2
+ - uid: 5442
+ components:
+ - type: Transform
+ pos: 21.5,-36.5
+ parent: 2
+ - uid: 5443
+ components:
+ - type: Transform
+ pos: 19.5,-36.5
+ parent: 2
+ - uid: 5444
+ components:
+ - type: Transform
+ pos: 16.5,-32.5
+ parent: 2
+ - uid: 5445
+ components:
+ - type: Transform
+ pos: 13.5,-30.5
+ parent: 2
+ - uid: 5446
+ components:
+ - type: Transform
+ pos: 20.5,-37.5
+ parent: 2
+ - uid: 5447
+ components:
+ - type: Transform
+ pos: 21.5,-37.5
+ parent: 2
+ - uid: 5448
+ components:
+ - type: Transform
+ pos: 22.5,-37.5
+ parent: 2
+ - uid: 5449
+ components:
+ - type: Transform
+ pos: 20.5,-42.5
+ parent: 2
+ - uid: 5450
+ components:
+ - type: Transform
+ pos: 19.5,-42.5
+ parent: 2
+ - uid: 5451
+ components:
+ - type: Transform
+ pos: 20.5,-43.5
+ parent: 2
+ - uid: 5452
+ components:
+ - type: Transform
+ pos: 21.5,-43.5
+ parent: 2
+ - uid: 5453
+ components:
+ - type: Transform
+ pos: 24.5,-45.5
+ parent: 2
+ - uid: 5529
+ components:
+ - type: Transform
+ pos: -77.5,-37.5
+ parent: 2
+ - uid: 5549
+ components:
+ - type: Transform
+ pos: -77.5,-39.5
+ parent: 2
+ - uid: 5550
+ components:
+ - type: Transform
+ pos: -77.5,-38.5
+ parent: 2
+ - uid: 5668
+ components:
+ - type: Transform
+ pos: -109.5,-5.5
+ parent: 2
+ - uid: 5669
+ components:
+ - type: Transform
+ pos: -109.5,-4.5
+ parent: 2
+ - uid: 5670
+ components:
+ - type: Transform
+ pos: -110.5,-4.5
+ parent: 2
+ - uid: 5671
+ components:
+ - type: Transform
+ pos: -110.5,-3.5
+ parent: 2
+ - uid: 5672
+ components:
+ - type: Transform
+ pos: -110.5,-2.5
+ parent: 2
+ - uid: 5673
+ components:
+ - type: Transform
+ pos: -110.5,-1.5
+ parent: 2
+ - uid: 5674
+ components:
+ - type: Transform
+ pos: -109.5,-1.5
+ parent: 2
+ - uid: 5675
+ components:
+ - type: Transform
+ pos: -108.5,-1.5
+ parent: 2
+ - uid: 5676
+ components:
+ - type: Transform
+ pos: -107.5,-1.5
+ parent: 2
+ - uid: 5677
+ components:
+ - type: Transform
+ pos: -107.5,-2.5
+ parent: 2
+ - uid: 5678
+ components:
+ - type: Transform
+ pos: -106.5,-2.5
+ parent: 2
+ - uid: 5679
+ components:
+ - type: Transform
+ pos: -106.5,-3.5
+ parent: 2
+ - uid: 5680
+ components:
+ - type: Transform
+ pos: -106.5,-4.5
+ parent: 2
+ - uid: 5681
+ components:
+ - type: Transform
+ pos: -105.5,-4.5
+ parent: 2
+ - uid: 5682
+ components:
+ - type: Transform
+ pos: -105.5,-5.5
+ parent: 2
+ - uid: 5683
+ components:
+ - type: Transform
+ pos: -105.5,-6.5
+ parent: 2
+ - uid: 5684
+ components:
+ - type: Transform
+ pos: -104.5,-6.5
+ parent: 2
+ - uid: 5685
+ components:
+ - type: Transform
+ pos: -103.5,-6.5
+ parent: 2
+ - uid: 5686
+ components:
+ - type: Transform
+ pos: -103.5,-7.5
+ parent: 2
+ - uid: 5687
+ components:
+ - type: Transform
+ pos: -103.5,-8.5
+ parent: 2
+ - uid: 5688
+ components:
+ - type: Transform
+ pos: -103.5,-9.5
+ parent: 2
+ - uid: 5689
+ components:
+ - type: Transform
+ pos: -103.5,-10.5
+ parent: 2
+ - uid: 5690
+ components:
+ - type: Transform
+ pos: -103.5,-11.5
+ parent: 2
+ - uid: 5691
+ components:
+ - type: Transform
+ pos: -104.5,-11.5
+ parent: 2
+ - uid: 5692
+ components:
+ - type: Transform
+ pos: -105.5,-11.5
+ parent: 2
+ - uid: 5693
+ components:
+ - type: Transform
+ pos: -105.5,-12.5
+ parent: 2
+ - uid: 5694
+ components:
+ - type: Transform
+ pos: -105.5,-13.5
+ parent: 2
+ - uid: 5695
+ components:
+ - type: Transform
+ pos: -105.5,-14.5
+ parent: 2
+ - uid: 5696
+ components:
+ - type: Transform
+ pos: -105.5,-15.5
+ parent: 2
+ - uid: 5697
+ components:
+ - type: Transform
+ pos: -104.5,-15.5
+ parent: 2
+ - uid: 5698
+ components:
+ - type: Transform
+ pos: -104.5,-16.5
+ parent: 2
+ - uid: 5699
+ components:
+ - type: Transform
+ pos: -106.5,-19.5
+ parent: 2
+ - uid: 5700
+ components:
+ - type: Transform
+ pos: -105.5,-19.5
+ parent: 2
+ - uid: 5701
+ components:
+ - type: Transform
+ pos: -104.5,-19.5
+ parent: 2
+ - uid: 5702
+ components:
+ - type: Transform
+ pos: -102.5,-8.5
+ parent: 2
+ - uid: 5703
+ components:
+ - type: Transform
+ pos: -102.5,-7.5
+ parent: 2
+ - uid: 5704
+ components:
+ - type: Transform
+ pos: -101.5,-7.5
+ parent: 2
+ - uid: 5705
+ components:
+ - type: Transform
+ pos: -100.5,-7.5
+ parent: 2
+ - uid: 5706
+ components:
+ - type: Transform
+ pos: -99.5,-7.5
+ parent: 2
+ - uid: 5707
+ components:
+ - type: Transform
+ pos: -98.5,-7.5
+ parent: 2
+ - uid: 5708
+ components:
+ - type: Transform
+ pos: -97.5,-7.5
+ parent: 2
+ - uid: 5709
+ components:
+ - type: Transform
+ pos: -102.5,-9.5
+ parent: 2
+ - uid: 5710
+ components:
+ - type: Transform
+ pos: -96.5,-7.5
+ parent: 2
+ - uid: 5711
+ components:
+ - type: Transform
+ pos: -96.5,-6.5
+ parent: 2
+ - uid: 5712
+ components:
+ - type: Transform
+ pos: -97.5,-6.5
+ parent: 2
+ - uid: 5713
+ components:
+ - type: Transform
+ pos: -96.5,-4.5
+ parent: 2
+ - uid: 5714
+ components:
+ - type: Transform
+ pos: -95.5,-8.5
+ parent: 2
+ - uid: 5715
+ components:
+ - type: Transform
+ pos: -98.5,-6.5
+ parent: 2
+ - uid: 5716
+ components:
+ - type: Transform
+ pos: -99.5,-6.5
+ parent: 2
+ - uid: 5717
+ components:
+ - type: Transform
+ pos: -101.5,-6.5
+ parent: 2
+ - uid: 5718
+ components:
+ - type: Transform
+ pos: -102.5,-6.5
+ parent: 2
+ - uid: 5719
+ components:
+ - type: Transform
+ pos: -104.5,-5.5
+ parent: 2
+ - uid: 5720
+ components:
+ - type: Transform
+ pos: -105.5,-3.5
+ parent: 2
+ - uid: 5721
+ components:
+ - type: Transform
+ pos: -104.5,-1.5
+ parent: 2
+ - uid: 5722
+ components:
+ - type: Transform
+ pos: -108.5,-0.5
+ parent: 2
+ - uid: 5723
+ components:
+ - type: Transform
+ pos: -109.5,-0.5
+ parent: 2
+ - uid: 5724
+ components:
+ - type: Transform
+ pos: -109.5,0.5
+ parent: 2
+ - uid: 5725
+ components:
+ - type: Transform
+ pos: -110.5,-0.5
+ parent: 2
+ - uid: 5726
+ components:
+ - type: Transform
+ pos: -110.5,0.5
+ parent: 2
+ - uid: 5727
+ components:
+ - type: Transform
+ pos: -110.5,1.5
+ parent: 2
+ - uid: 5728
+ components:
+ - type: Transform
+ pos: -111.5,0.5
+ parent: 2
+ - uid: 5729
+ components:
+ - type: Transform
+ pos: -111.5,-0.5
+ parent: 2
+ - uid: 5730
+ components:
+ - type: Transform
+ pos: -112.5,0.5
+ parent: 2
+ - uid: 5731
+ components:
+ - type: Transform
+ pos: -112.5,-0.5
+ parent: 2
+ - uid: 5732
+ components:
+ - type: Transform
+ pos: -113.5,-0.5
+ parent: 2
+ - uid: 5733
+ components:
+ - type: Transform
+ pos: -111.5,-1.5
+ parent: 2
+ - uid: 5734
+ components:
+ - type: Transform
+ pos: -111.5,-3.5
+ parent: 2
+ - uid: 5735
+ components:
+ - type: Transform
+ pos: -111.5,-2.5
+ parent: 2
+ - uid: 5736
+ components:
+ - type: Transform
+ pos: -112.5,-1.5
+ parent: 2
+ - uid: 5737
+ components:
+ - type: Transform
+ pos: -110.5,-5.5
+ parent: 2
+ - uid: 5738
+ components:
+ - type: Transform
+ pos: -110.5,-6.5
+ parent: 2
+ - uid: 5739
+ components:
+ - type: Transform
+ pos: -110.5,-7.5
+ parent: 2
+ - uid: 5740
+ components:
+ - type: Transform
+ pos: -110.5,-8.5
+ parent: 2
+ - uid: 5741
+ components:
+ - type: Transform
+ pos: -111.5,-5.5
+ parent: 2
+ - uid: 5742
+ components:
+ - type: Transform
+ pos: -111.5,-6.5
+ parent: 2
+ - uid: 5743
+ components:
+ - type: Transform
+ pos: -111.5,-7.5
+ parent: 2
+ - uid: 5744
+ components:
+ - type: Transform
+ pos: -111.5,-8.5
+ parent: 2
+ - uid: 5745
+ components:
+ - type: Transform
+ pos: -110.5,-9.5
+ parent: 2
+ - uid: 5746
+ components:
+ - type: Transform
+ pos: -111.5,-9.5
+ parent: 2
+ - uid: 5747
+ components:
+ - type: Transform
+ pos: -112.5,-9.5
+ parent: 2
+ - uid: 5748
+ components:
+ - type: Transform
+ pos: -111.5,-10.5
+ parent: 2
+ - uid: 5749
+ components:
+ - type: Transform
+ pos: -112.5,-10.5
+ parent: 2
+ - uid: 5750
+ components:
+ - type: Transform
+ pos: -112.5,-11.5
+ parent: 2
+ - uid: 5751
+ components:
+ - type: Transform
+ pos: -112.5,-12.5
+ parent: 2
+ - uid: 5752
+ components:
+ - type: Transform
+ pos: -112.5,-13.5
+ parent: 2
+ - uid: 5753
+ components:
+ - type: Transform
+ pos: -113.5,-11.5
+ parent: 2
+ - uid: 5754
+ components:
+ - type: Transform
+ pos: -112.5,-14.5
+ parent: 2
+ - uid: 5755
+ components:
+ - type: Transform
+ pos: -113.5,-12.5
+ parent: 2
+ - uid: 5756
+ components:
+ - type: Transform
+ pos: -113.5,-14.5
+ parent: 2
+ - uid: 5757
+ components:
+ - type: Transform
+ pos: -113.5,-13.5
+ parent: 2
+ - uid: 5758
+ components:
+ - type: Transform
+ pos: -111.5,-15.5
+ parent: 2
+ - uid: 5759
+ components:
+ - type: Transform
+ pos: -111.5,-16.5
+ parent: 2
+ - uid: 5760
+ components:
+ - type: Transform
+ pos: -111.5,-17.5
+ parent: 2
+ - uid: 5761
+ components:
+ - type: Transform
+ pos: -112.5,-16.5
+ parent: 2
+ - uid: 5762
+ components:
+ - type: Transform
+ pos: -112.5,-17.5
+ parent: 2
+ - uid: 5763
+ components:
+ - type: Transform
+ pos: -112.5,-15.5
+ parent: 2
+ - uid: 5764
+ components:
+ - type: Transform
+ pos: -107.5,-19.5
+ parent: 2
+ - uid: 5765
+ components:
+ - type: Transform
+ pos: -107.5,-20.5
+ parent: 2
+ - uid: 5766
+ components:
+ - type: Transform
+ pos: -108.5,-19.5
+ parent: 2
+ - uid: 5767
+ components:
+ - type: Transform
+ pos: -108.5,-20.5
+ parent: 2
+ - uid: 5768
+ components:
+ - type: Transform
+ pos: -108.5,-18.5
+ parent: 2
+ - uid: 5769
+ components:
+ - type: Transform
+ pos: -109.5,-18.5
+ parent: 2
+ - uid: 5770
+ components:
+ - type: Transform
+ pos: -110.5,-18.5
+ parent: 2
+ - uid: 5771
+ components:
+ - type: Transform
+ pos: -111.5,-18.5
+ parent: 2
+ - uid: 5772
+ components:
+ - type: Transform
+ pos: -111.5,-19.5
+ parent: 2
+ - uid: 5773
+ components:
+ - type: Transform
+ pos: -111.5,-20.5
+ parent: 2
+ - uid: 5774
+ components:
+ - type: Transform
+ pos: -109.5,-19.5
+ parent: 2
+ - uid: 5775
+ components:
+ - type: Transform
+ pos: -109.5,-20.5
+ parent: 2
+ - uid: 5776
+ components:
+ - type: Transform
+ pos: -110.5,-19.5
+ parent: 2
+ - uid: 5777
+ components:
+ - type: Transform
+ pos: -110.5,-20.5
+ parent: 2
+ - uid: 5778
+ components:
+ - type: Transform
+ pos: -100.5,-9.5
+ parent: 2
+ - uid: 5779
+ components:
+ - type: Transform
+ pos: -104.5,-12.5
+ parent: 2
+ - uid: 5780
+ components:
+ - type: Transform
+ pos: -104.5,-13.5
+ parent: 2
+ - uid: 5781
+ components:
+ - type: Transform
+ pos: -103.5,-13.5
+ parent: 2
+ - uid: 5782
+ components:
+ - type: Transform
+ pos: -102.5,-13.5
+ parent: 2
+ - uid: 5783
+ components:
+ - type: Transform
+ pos: -101.5,-15.5
+ parent: 2
+ - uid: 5784
+ components:
+ - type: Transform
+ pos: -103.5,-16.5
+ parent: 2
+ - uid: 5785
+ components:
+ - type: Transform
+ pos: -103.5,-15.5
+ parent: 2
+ - uid: 5786
+ components:
+ - type: Transform
+ pos: -103.5,-14.5
+ parent: 2
+ - uid: 5787
+ components:
+ - type: Transform
+ pos: -104.5,-14.5
+ parent: 2
+ - uid: 5788
+ components:
+ - type: Transform
+ pos: -102.5,-14.5
+ parent: 2
+ - uid: 5789
+ components:
+ - type: Transform
+ pos: -102.5,-18.5
+ parent: 2
+ - uid: 5790
+ components:
+ - type: Transform
+ pos: -105.5,-20.5
+ parent: 2
+ - uid: 5791
+ components:
+ - type: Transform
+ pos: -111.5,-21.5
+ parent: 2
+ - uid: 5792
+ components:
+ - type: Transform
+ pos: -111.5,-22.5
+ parent: 2
+ - uid: 5793
+ components:
+ - type: Transform
+ pos: -111.5,-23.5
+ parent: 2
+ - uid: 5794
+ components:
+ - type: Transform
+ pos: -109.5,-21.5
+ parent: 2
+ - uid: 5795
+ components:
+ - type: Transform
+ pos: -110.5,-21.5
+ parent: 2
+ - uid: 5796
+ components:
+ - type: Transform
+ pos: -112.5,-20.5
+ parent: 2
+ - uid: 5797
+ components:
+ - type: Transform
+ pos: -112.5,-18.5
+ parent: 2
+ - uid: 5798
+ components:
+ - type: Transform
+ pos: -112.5,-19.5
+ parent: 2
+ - uid: 5799
+ components:
+ - type: Transform
+ pos: -113.5,-18.5
+ parent: 2
+ - uid: 5800
+ components:
+ - type: Transform
+ pos: -113.5,-17.5
+ parent: 2
+ - uid: 5801
+ components:
+ - type: Transform
+ pos: -113.5,-16.5
+ parent: 2
+ - uid: 5802
+ components:
+ - type: Transform
+ pos: -113.5,-15.5
+ parent: 2
+ - uid: 5803
+ components:
+ - type: Transform
+ pos: -114.5,-17.5
+ parent: 2
+ - uid: 5804
+ components:
+ - type: Transform
+ pos: -113.5,-22.5
+ parent: 2
+ - uid: 5805
+ components:
+ - type: Transform
+ pos: -116.5,-18.5
+ parent: 2
+ - uid: 5806
+ components:
+ - type: Transform
+ pos: -114.5,-14.5
+ parent: 2
+ - uid: 5807
+ components:
+ - type: Transform
+ pos: -114.5,-13.5
+ parent: 2
+ - uid: 5808
+ components:
+ - type: Transform
+ pos: -114.5,-12.5
+ parent: 2
+ - uid: 5809
+ components:
+ - type: Transform
+ pos: -114.5,-11.5
+ parent: 2
+ - uid: 5810
+ components:
+ - type: Transform
+ pos: -117.5,-10.5
+ parent: 2
+ - uid: 5811
+ components:
+ - type: Transform
+ pos: -116.5,-10.5
+ parent: 2
+ - uid: 5812
+ components:
+ - type: Transform
+ pos: -115.5,-10.5
+ parent: 2
+ - uid: 5813
+ components:
+ - type: Transform
+ pos: -118.5,-11.5
+ parent: 2
+ - uid: 5814
+ components:
+ - type: Transform
+ pos: -115.5,-11.5
+ parent: 2
+ - uid: 5815
+ components:
+ - type: Transform
+ pos: -114.5,-10.5
+ parent: 2
+ - uid: 5816
+ components:
+ - type: Transform
+ pos: -114.5,-9.5
+ parent: 2
+ - uid: 5817
+ components:
+ - type: Transform
+ pos: -114.5,-8.5
+ parent: 2
+ - uid: 5818
+ components:
+ - type: Transform
+ pos: -113.5,-10.5
+ parent: 2
+ - uid: 5819
+ components:
+ - type: Transform
+ pos: -113.5,-9.5
+ parent: 2
+ - uid: 5820
+ components:
+ - type: Transform
+ pos: -113.5,-8.5
+ parent: 2
+ - uid: 5821
+ components:
+ - type: Transform
+ pos: -112.5,-8.5
+ parent: 2
+ - uid: 5822
+ components:
+ - type: Transform
+ pos: -112.5,-7.5
+ parent: 2
+ - uid: 5823
+ components:
+ - type: Transform
+ pos: -112.5,-6.5
+ parent: 2
+ - uid: 5824
+ components:
+ - type: Transform
+ pos: -112.5,-5.5
+ parent: 2
+ - uid: 5825
+ components:
+ - type: Transform
+ pos: -112.5,-4.5
+ parent: 2
+ - uid: 5826
+ components:
+ - type: Transform
+ pos: -114.5,-5.5
+ parent: 2
+ - uid: 5827
+ components:
+ - type: Transform
+ pos: -111.5,-4.5
+ parent: 2
+ - uid: 5828
+ components:
+ - type: Transform
+ pos: -112.5,-2.5
+ parent: 2
+ - uid: 5829
+ components:
+ - type: Transform
+ pos: -112.5,-3.5
+ parent: 2
+ - uid: 5830
+ components:
+ - type: Transform
+ pos: -113.5,-2.5
+ parent: 2
+ - uid: 5831
+ components:
+ - type: Transform
+ pos: -115.5,-1.5
+ parent: 2
+ - uid: 5832
+ components:
+ - type: Transform
+ pos: -113.5,2.5
+ parent: 2
+ - uid: 5833
+ components:
+ - type: Transform
+ pos: -95.5,-7.5
+ parent: 2
+ - uid: 5834
+ components:
+ - type: Transform
+ pos: -96.5,-8.5
+ parent: 2
+ - uid: 5835
+ components:
+ - type: Transform
+ pos: -97.5,-8.5
+ parent: 2
+ - uid: 5836
+ components:
+ - type: Transform
+ pos: -98.5,-8.5
+ parent: 2
+ - uid: 5837
+ components:
+ - type: Transform
+ pos: -99.5,-8.5
+ parent: 2
+ - uid: 5838
+ components:
+ - type: Transform
+ pos: -101.5,-8.5
+ parent: 2
+ - uid: 5839
+ components:
+ - type: Transform
+ pos: -101.5,-9.5
+ parent: 2
+ - uid: 5840
+ components:
+ - type: Transform
+ pos: -100.5,-8.5
+ parent: 2
+ - uid: 5841
+ components:
+ - type: Transform
+ pos: -101.5,-10.5
+ parent: 2
+ - uid: 5842
+ components:
+ - type: Transform
+ pos: -98.5,-9.5
+ parent: 2
+ - uid: 5843
+ components:
+ - type: Transform
+ pos: -113.5,-7.5
+ parent: 2
+ - uid: 5844
+ components:
+ - type: Transform
+ pos: -113.5,-3.5
+ parent: 2
+ - uid: 5845
+ components:
+ - type: Transform
+ pos: -113.5,-1.5
+ parent: 2
+ - uid: 5846
+ components:
+ - type: Transform
+ pos: -114.5,-1.5
+ parent: 2
+ - uid: 5847
+ components:
+ - type: Transform
+ pos: -114.5,-2.5
+ parent: 2
+ - uid: 5848
+ components:
+ - type: Transform
+ pos: -113.5,-19.5
+ parent: 2
+ - uid: 5849
+ components:
+ - type: Transform
+ pos: -114.5,-18.5
+ parent: 2
+ - uid: 5850
+ components:
+ - type: Transform
+ pos: -115.5,-17.5
+ parent: 2
+ - uid: 5851
+ components:
+ - type: Transform
+ pos: -114.5,-16.5
+ parent: 2
+ - uid: 5852
+ components:
+ - type: Transform
+ pos: -110.5,-22.5
+ parent: 2
+ - uid: 5853
+ components:
+ - type: Transform
+ pos: -112.5,-24.5
+ parent: 2
+ - uid: 5854
+ components:
+ - type: Transform
+ pos: -112.5,-23.5
+ parent: 2
+ - uid: 5855
+ components:
+ - type: Transform
+ pos: -112.5,-22.5
+ parent: 2
+ - uid: 5856
+ components:
+ - type: Transform
+ pos: -112.5,-21.5
+ parent: 2
+ - uid: 5857
+ components:
+ - type: Transform
+ pos: -111.5,-26.5
+ parent: 2
+ - uid: 5858
+ components:
+ - type: Transform
+ pos: -107.5,-22.5
+ parent: 2
+ - uid: 5859
+ components:
+ - type: Transform
+ pos: -106.5,-20.5
+ parent: 2
+ - uid: 5860
+ components:
+ - type: Transform
+ pos: -104.5,-21.5
+ parent: 2
+ - uid: 5861
+ components:
+ - type: Transform
+ pos: -87.5,-14.5
+ parent: 2
+ - uid: 5862
+ components:
+ - type: Transform
+ pos: -87.5,-13.5
+ parent: 2
+ - uid: 5863
+ components:
+ - type: Transform
+ pos: -87.5,-12.5
+ parent: 2
+ - uid: 5864
+ components:
+ - type: Transform
+ pos: -87.5,-11.5
+ parent: 2
+ - uid: 5865
+ components:
+ - type: Transform
+ pos: -87.5,-10.5
+ parent: 2
+ - uid: 5866
+ components:
+ - type: Transform
+ pos: -87.5,-8.5
+ parent: 2
+ - uid: 5867
+ components:
+ - type: Transform
+ pos: -87.5,-9.5
+ parent: 2
+ - uid: 5868
+ components:
+ - type: Transform
+ pos: -87.5,-7.5
+ parent: 2
+ - uid: 5869
+ components:
+ - type: Transform
+ pos: -87.5,-6.5
+ parent: 2
+ - uid: 5870
+ components:
+ - type: Transform
+ pos: -86.5,-6.5
+ parent: 2
+ - uid: 5871
+ components:
+ - type: Transform
+ pos: -86.5,-5.5
+ parent: 2
+ - uid: 5872
+ components:
+ - type: Transform
+ pos: -86.5,-4.5
+ parent: 2
+ - uid: 5873
+ components:
+ - type: Transform
+ pos: -85.5,-4.5
+ parent: 2
+ - uid: 5874
+ components:
+ - type: Transform
+ pos: -85.5,-3.5
+ parent: 2
+ - uid: 5875
+ components:
+ - type: Transform
+ pos: -85.5,-2.5
+ parent: 2
+ - uid: 5876
+ components:
+ - type: Transform
+ pos: -86.5,-2.5
+ parent: 2
+ - uid: 5877
+ components:
+ - type: Transform
+ pos: -87.5,-2.5
+ parent: 2
+ - uid: 5878
+ components:
+ - type: Transform
+ pos: -88.5,-0.5
+ parent: 2
+ - uid: 5879
+ components:
+ - type: Transform
+ pos: -87.5,-1.5
+ parent: 2
+ - uid: 5880
+ components:
+ - type: Transform
+ pos: -87.5,-0.5
+ parent: 2
+ - uid: 5881
+ components:
+ - type: Transform
+ pos: -88.5,-1.5
+ parent: 2
+ - uid: 5882
+ components:
+ - type: Transform
+ pos: -86.5,-1.5
+ parent: 2
+ - uid: 5883
+ components:
+ - type: Transform
+ pos: -86.5,-0.5
+ parent: 2
+ - uid: 5884
+ components:
+ - type: Transform
+ pos: -86.5,0.5
+ parent: 2
+ - uid: 5885
+ components:
+ - type: Transform
+ pos: -88.5,1.5
+ parent: 2
+ - uid: 5886
+ components:
+ - type: Transform
+ pos: -85.5,-1.5
+ parent: 2
+ - uid: 5887
+ components:
+ - type: Transform
+ pos: -85.5,-0.5
+ parent: 2
+ - uid: 5888
+ components:
+ - type: Transform
+ pos: -84.5,-2.5
+ parent: 2
+ - uid: 5889
+ components:
+ - type: Transform
+ pos: -83.5,-2.5
+ parent: 2
+ - uid: 5890
+ components:
+ - type: Transform
+ pos: -82.5,-2.5
+ parent: 2
+ - uid: 5891
+ components:
+ - type: Transform
+ pos: -81.5,-3.5
+ parent: 2
+ - uid: 5892
+ components:
+ - type: Transform
+ pos: -82.5,-3.5
+ parent: 2
+ - uid: 5893
+ components:
+ - type: Transform
+ pos: -83.5,-3.5
+ parent: 2
+ - uid: 5894
+ components:
+ - type: Transform
+ pos: -84.5,-3.5
+ parent: 2
+ - uid: 5895
+ components:
+ - type: Transform
+ pos: -84.5,-4.5
+ parent: 2
+ - uid: 5896
+ components:
+ - type: Transform
+ pos: -84.5,-5.5
+ parent: 2
+ - uid: 5897
+ components:
+ - type: Transform
+ pos: -84.5,-6.5
+ parent: 2
+ - uid: 5898
+ components:
+ - type: Transform
+ pos: -83.5,-4.5
+ parent: 2
+ - uid: 5899
+ components:
+ - type: Transform
+ pos: -83.5,-5.5
+ parent: 2
+ - uid: 5900
+ components:
+ - type: Transform
+ pos: -83.5,-6.5
+ parent: 2
+ - uid: 5901
+ components:
+ - type: Transform
+ pos: -82.5,-5.5
+ parent: 2
+ - uid: 5902
+ components:
+ - type: Transform
+ pos: -85.5,-5.5
+ parent: 2
+ - uid: 5903
+ components:
+ - type: Transform
+ pos: -85.5,-6.5
+ parent: 2
+ - uid: 5904
+ components:
+ - type: Transform
+ pos: -85.5,-7.5
+ parent: 2
+ - uid: 5905
+ components:
+ - type: Transform
+ pos: -85.5,-8.5
+ parent: 2
+ - uid: 5906
+ components:
+ - type: Transform
+ pos: -84.5,-7.5
+ parent: 2
+ - uid: 5907
+ components:
+ - type: Transform
+ pos: -82.5,-8.5
+ parent: 2
+ - uid: 5908
+ components:
+ - type: Transform
+ pos: -84.5,-8.5
+ parent: 2
+ - uid: 5909
+ components:
+ - type: Transform
+ pos: -84.5,-9.5
+ parent: 2
+ - uid: 5910
+ components:
+ - type: Transform
+ pos: -84.5,-10.5
+ parent: 2
+ - uid: 5911
+ components:
+ - type: Transform
+ pos: -84.5,-11.5
+ parent: 2
+ - uid: 5912
+ components:
+ - type: Transform
+ pos: -86.5,-11.5
+ parent: 2
+ - uid: 5913
+ components:
+ - type: Transform
+ pos: -86.5,-12.5
+ parent: 2
+ - uid: 5914
+ components:
+ - type: Transform
+ pos: -86.5,-13.5
+ parent: 2
+ - uid: 5915
+ components:
+ - type: Transform
+ pos: -86.5,-14.5
+ parent: 2
+ - uid: 5916
+ components:
+ - type: Transform
+ pos: -85.5,-9.5
+ parent: 2
+ - uid: 5917
+ components:
+ - type: Transform
+ pos: -85.5,-10.5
+ parent: 2
+ - uid: 5918
+ components:
+ - type: Transform
+ pos: -85.5,-11.5
+ parent: 2
+ - uid: 5919
+ components:
+ - type: Transform
+ pos: -85.5,-12.5
+ parent: 2
+ - uid: 5920
+ components:
+ - type: Transform
+ pos: -85.5,-13.5
+ parent: 2
+ - uid: 5921
+ components:
+ - type: Transform
+ pos: -85.5,-14.5
+ parent: 2
+ - uid: 5922
+ components:
+ - type: Transform
+ pos: -86.5,-9.5
+ parent: 2
+ - uid: 5923
+ components:
+ - type: Transform
+ pos: -86.5,-10.5
+ parent: 2
+ - uid: 5924
+ components:
+ - type: Transform
+ pos: -86.5,-15.5
+ parent: 2
+ - uid: 5925
+ components:
+ - type: Transform
+ pos: -86.5,-8.5
+ parent: 2
+ - uid: 5926
+ components:
+ - type: Transform
+ pos: -86.5,-7.5
+ parent: 2
+ - uid: 5927
+ components:
+ - type: Transform
+ pos: -83.5,-13.5
+ parent: 2
+ - uid: 5928
+ components:
+ - type: Transform
+ pos: -82.5,-14.5
+ parent: 2
+ - uid: 5929
+ components:
+ - type: Transform
+ pos: -82.5,-15.5
+ parent: 2
+ - uid: 5930
+ components:
+ - type: Transform
+ pos: -82.5,-16.5
+ parent: 2
+ - uid: 5931
+ components:
+ - type: Transform
+ pos: -82.5,-17.5
+ parent: 2
+ - uid: 5932
+ components:
+ - type: Transform
+ pos: -82.5,-18.5
+ parent: 2
+ - uid: 5933
+ components:
+ - type: Transform
+ pos: -81.5,-16.5
+ parent: 2
+ - uid: 5934
+ components:
+ - type: Transform
+ pos: -81.5,-17.5
+ parent: 2
+ - uid: 5935
+ components:
+ - type: Transform
+ pos: -81.5,-18.5
+ parent: 2
+ - uid: 5936
+ components:
+ - type: Transform
+ pos: -81.5,-19.5
+ parent: 2
+ - uid: 5937
+ components:
+ - type: Transform
+ pos: -80.5,-17.5
+ parent: 2
+ - uid: 5938
+ components:
+ - type: Transform
+ pos: -82.5,-19.5
+ parent: 2
+ - uid: 5939
+ components:
+ - type: Transform
+ pos: -82.5,-20.5
+ parent: 2
+ - uid: 5940
+ components:
+ - type: Transform
+ pos: -83.5,-19.5
+ parent: 2
+ - uid: 5941
+ components:
+ - type: Transform
+ pos: -83.5,-20.5
+ parent: 2
+ - uid: 5942
+ components:
+ - type: Transform
+ pos: -83.5,-21.5
+ parent: 2
+ - uid: 5943
+ components:
+ - type: Transform
+ pos: -83.5,-22.5
+ parent: 2
+ - uid: 5944
+ components:
+ - type: Transform
+ pos: -84.5,-21.5
+ parent: 2
+ - uid: 5945
+ components:
+ - type: Transform
+ pos: -84.5,-22.5
+ parent: 2
+ - uid: 5946
+ components:
+ - type: Transform
+ pos: -85.5,-25.5
+ parent: 2
+ - uid: 5947
+ components:
+ - type: Transform
+ pos: -85.5,-24.5
+ parent: 2
+ - uid: 5948
+ components:
+ - type: Transform
+ pos: -85.5,-23.5
+ parent: 2
+ - uid: 5949
+ components:
+ - type: Transform
+ pos: -85.5,-22.5
+ parent: 2
+ - uid: 5950
+ components:
+ - type: Transform
+ pos: -83.5,-24.5
+ parent: 2
+ - uid: 5951
+ components:
+ - type: Transform
+ pos: -81.5,-21.5
+ parent: 2
+ - uid: 5952
+ components:
+ - type: Transform
+ pos: -86.5,-23.5
+ parent: 2
+ - uid: 5953
+ components:
+ - type: Transform
+ pos: -86.5,-22.5
+ parent: 2
+ - uid: 5954
+ components:
+ - type: Transform
+ pos: -86.5,-21.5
+ parent: 2
+ - uid: 5955
+ components:
+ - type: Transform
+ pos: -86.5,-20.5
+ parent: 2
+ - uid: 5956
+ components:
+ - type: Transform
+ pos: -86.5,-19.5
+ parent: 2
+ - uid: 5957
+ components:
+ - type: Transform
+ pos: -87.5,-22.5
+ parent: 2
+ - uid: 5958
+ components:
+ - type: Transform
+ pos: -88.5,-18.5
+ parent: 2
+ - uid: 5959
+ components:
+ - type: Transform
+ pos: -88.5,-19.5
+ parent: 2
+ - uid: 5960
+ components:
+ - type: Transform
+ pos: -87.5,-18.5
+ parent: 2
+ - uid: 5961
+ components:
+ - type: Transform
+ pos: -87.5,-19.5
+ parent: 2
+ - uid: 5962
+ components:
+ - type: Transform
+ pos: -87.5,-20.5
+ parent: 2
+ - uid: 5963
+ components:
+ - type: Transform
+ pos: -89.5,-19.5
+ parent: 2
+ - uid: 5964
+ components:
+ - type: Transform
+ pos: -85.5,-21.5
+ parent: 2
+ - uid: 5965
+ components:
+ - type: Transform
+ pos: -85.5,-20.5
+ parent: 2
+ - uid: 5966
+ components:
+ - type: Transform
+ pos: -85.5,-19.5
+ parent: 2
+ - uid: 5967
+ components:
+ - type: Transform
+ pos: -85.5,-18.5
+ parent: 2
+ - uid: 5968
+ components:
+ - type: Transform
+ pos: -85.5,-17.5
+ parent: 2
+ - uid: 5969
+ components:
+ - type: Transform
+ pos: -84.5,-19.5
+ parent: 2
+ - uid: 5970
+ components:
+ - type: Transform
+ pos: -84.5,-18.5
+ parent: 2
+ - uid: 5971
+ components:
+ - type: Transform
+ pos: -84.5,-17.5
+ parent: 2
+ - uid: 5972
+ components:
+ - type: Transform
+ pos: -84.5,-16.5
+ parent: 2
+ - uid: 5973
+ components:
+ - type: Transform
+ pos: -84.5,-20.5
+ parent: 2
+ - uid: 5974
+ components:
+ - type: Transform
+ pos: -83.5,-18.5
+ parent: 2
+ - uid: 5975
+ components:
+ - type: Transform
+ pos: -83.5,-17.5
+ parent: 2
+ - uid: 5976
+ components:
+ - type: Transform
+ pos: -83.5,-16.5
+ parent: 2
+ - uid: 5977
+ components:
+ - type: Transform
+ pos: -83.5,-15.5
+ parent: 2
+ - uid: 5978
+ components:
+ - type: Transform
+ pos: -83.5,-14.5
+ parent: 2
+ - uid: 5979
+ components:
+ - type: Transform
+ pos: -88.5,-16.5
+ parent: 2
+ - uid: 5980
+ components:
+ - type: Transform
+ pos: -85.5,-30.5
+ parent: 2
+ - uid: 5981
+ components:
+ - type: Transform
+ pos: -85.5,-31.5
+ parent: 2
+ - uid: 5982
+ components:
+ - type: Transform
+ pos: -85.5,-29.5
+ parent: 2
+ - uid: 5983
+ components:
+ - type: Transform
+ pos: -85.5,-32.5
+ parent: 2
+ - uid: 5984
+ components:
+ - type: Transform
+ pos: -84.5,-29.5
+ parent: 2
+ - uid: 5985
+ components:
+ - type: Transform
+ pos: -84.5,-30.5
+ parent: 2
+ - uid: 5986
+ components:
+ - type: Transform
+ pos: -84.5,-31.5
+ parent: 2
+ - uid: 5987
+ components:
+ - type: Transform
+ pos: -84.5,-32.5
+ parent: 2
+ - uid: 5988
+ components:
+ - type: Transform
+ pos: -85.5,-28.5
+ parent: 2
+ - uid: 5989
+ components:
+ - type: Transform
+ pos: -87.5,-32.5
+ parent: 2
+ - uid: 5990
+ components:
+ - type: Transform
+ pos: -87.5,-33.5
+ parent: 2
+ - uid: 5991
+ components:
+ - type: Transform
+ pos: -88.5,-32.5
+ parent: 2
+ - uid: 5992
+ components:
+ - type: Transform
+ pos: -88.5,-33.5
+ parent: 2
+ - uid: 5993
+ components:
+ - type: Transform
+ pos: -89.5,-32.5
+ parent: 2
+ - uid: 5994
+ components:
+ - type: Transform
+ pos: -89.5,-33.5
+ parent: 2
+ - uid: 5995
+ components:
+ - type: Transform
+ pos: -90.5,-31.5
+ parent: 2
+ - uid: 5996
+ components:
+ - type: Transform
+ pos: -91.5,-31.5
+ parent: 2
+ - uid: 5997
+ components:
+ - type: Transform
+ pos: -90.5,-32.5
+ parent: 2
+ - uid: 5998
+ components:
+ - type: Transform
+ pos: -90.5,-33.5
+ parent: 2
+ - uid: 5999
+ components:
+ - type: Transform
+ pos: -91.5,-32.5
+ parent: 2
+ - uid: 6000
+ components:
+ - type: Transform
+ pos: -91.5,-33.5
+ parent: 2
+ - uid: 6001
+ components:
+ - type: Transform
+ pos: -92.5,-32.5
+ parent: 2
+ - uid: 6002
+ components:
+ - type: Transform
+ pos: -92.5,-33.5
+ parent: 2
+ - uid: 6003
+ components:
+ - type: Transform
+ pos: -93.5,-33.5
+ parent: 2
+ - uid: 6004
+ components:
+ - type: Transform
+ pos: -93.5,-34.5
+ parent: 2
+ - uid: 6005
+ components:
+ - type: Transform
+ pos: -93.5,-35.5
+ parent: 2
+ - uid: 6006
+ components:
+ - type: Transform
+ pos: -92.5,-34.5
+ parent: 2
+ - uid: 6007
+ components:
+ - type: Transform
+ pos: -92.5,-35.5
+ parent: 2
+ - uid: 6008
+ components:
+ - type: Transform
+ pos: -91.5,-35.5
+ parent: 2
+ - uid: 6009
+ components:
+ - type: Transform
+ pos: -91.5,-36.5
+ parent: 2
+ - uid: 6010
+ components:
+ - type: Transform
+ pos: -90.5,-35.5
+ parent: 2
+ - uid: 6011
+ components:
+ - type: Transform
+ pos: -90.5,-36.5
+ parent: 2
+ - uid: 6012
+ components:
+ - type: Transform
+ pos: -89.5,-36.5
+ parent: 2
+ - uid: 6013
+ components:
+ - type: Transform
+ pos: -89.5,-37.5
+ parent: 2
+ - uid: 6014
+ components:
+ - type: Transform
+ pos: -88.5,-36.5
+ parent: 2
+ - uid: 6015
+ components:
+ - type: Transform
+ pos: -88.5,-37.5
+ parent: 2
+ - uid: 6016
+ components:
+ - type: Transform
+ pos: -87.5,-34.5
+ parent: 2
+ - uid: 6017
+ components:
+ - type: Transform
+ pos: -87.5,-35.5
+ parent: 2
+ - uid: 6018
+ components:
+ - type: Transform
+ pos: -86.5,-34.5
+ parent: 2
+ - uid: 6019
+ components:
+ - type: Transform
+ pos: -86.5,-35.5
+ parent: 2
+ - uid: 6020
+ components:
+ - type: Transform
+ pos: -84.5,-37.5
+ parent: 2
+ - uid: 6021
+ components:
+ - type: Transform
+ pos: -83.5,-37.5
+ parent: 2
+ - uid: 6022
+ components:
+ - type: Transform
+ pos: -82.5,-37.5
+ parent: 2
+ - uid: 6023
+ components:
+ - type: Transform
+ pos: -81.5,-37.5
+ parent: 2
+ - uid: 6024
+ components:
+ - type: Transform
+ pos: -81.5,-36.5
+ parent: 2
+ - uid: 6025
+ components:
+ - type: Transform
+ pos: -82.5,-36.5
+ parent: 2
+ - uid: 6026
+ components:
+ - type: Transform
+ pos: -87.5,-37.5
+ parent: 2
+ - uid: 6027
+ components:
+ - type: Transform
+ pos: -84.5,-36.5
+ parent: 2
+ - uid: 6028
+ components:
+ - type: Transform
+ pos: -80.5,-34.5
+ parent: 2
+ - uid: 6029
+ components:
+ - type: Transform
+ pos: -81.5,-34.5
+ parent: 2
+ - uid: 6030
+ components:
+ - type: Transform
+ pos: -81.5,-33.5
+ parent: 2
+ - uid: 6031
+ components:
+ - type: Transform
+ pos: -84.5,-33.5
+ parent: 2
+ - uid: 6032
+ components:
+ - type: Transform
+ pos: -82.5,-33.5
+ parent: 2
+ - uid: 6033
+ components:
+ - type: Transform
+ pos: -87.5,-38.5
+ parent: 2
+ - uid: 6034
+ components:
+ - type: Transform
+ pos: -83.5,-34.5
+ parent: 2
+ - uid: 6035
+ components:
+ - type: Transform
+ pos: -83.5,-33.5
+ parent: 2
+ - uid: 6036
+ components:
+ - type: Transform
+ pos: -82.5,-34.5
+ parent: 2
+ - uid: 6037
+ components:
+ - type: Transform
+ pos: -87.5,-39.5
+ parent: 2
+ - uid: 6038
+ components:
+ - type: Transform
+ pos: -85.5,-39.5
+ parent: 2
+ - uid: 6039
+ components:
+ - type: Transform
+ pos: -85.5,-36.5
+ parent: 2
+ - uid: 6040
+ components:
+ - type: Transform
+ pos: -85.5,-37.5
+ parent: 2
+ - uid: 6041
+ components:
+ - type: Transform
+ pos: -85.5,-38.5
+ parent: 2
+ - uid: 6042
+ components:
+ - type: Transform
+ pos: -86.5,-36.5
+ parent: 2
+ - uid: 6043
+ components:
+ - type: Transform
+ pos: -86.5,-37.5
+ parent: 2
+ - uid: 6044
+ components:
+ - type: Transform
+ pos: -86.5,-38.5
+ parent: 2
+ - uid: 6045
+ components:
+ - type: Transform
+ pos: -86.5,-39.5
+ parent: 2
+ - uid: 6046
+ components:
+ - type: Transform
+ pos: -87.5,-36.5
+ parent: 2
+ - uid: 6047
+ components:
+ - type: Transform
+ pos: -80.5,-33.5
+ parent: 2
+ - uid: 6048
+ components:
+ - type: Transform
+ pos: -82.5,-32.5
+ parent: 2
+ - uid: 6049
+ components:
+ - type: Transform
+ pos: -81.5,-32.5
+ parent: 2
+ - uid: 6050
+ components:
+ - type: Transform
+ pos: -80.5,-32.5
+ parent: 2
+ - uid: 6051
+ components:
+ - type: Transform
+ pos: -79.5,-32.5
+ parent: 2
+ - uid: 6052
+ components:
+ - type: Transform
+ pos: -83.5,-32.5
+ parent: 2
+ - uid: 6053
+ components:
+ - type: Transform
+ pos: -83.5,-31.5
+ parent: 2
+ - uid: 6054
+ components:
+ - type: Transform
+ pos: -81.5,-31.5
+ parent: 2
+ - uid: 6055
+ components:
+ - type: Transform
+ pos: -80.5,-31.5
+ parent: 2
+ - uid: 6056
+ components:
+ - type: Transform
+ pos: -79.5,-31.5
+ parent: 2
+ - uid: 6057
+ components:
+ - type: Transform
+ pos: -78.5,-31.5
+ parent: 2
+ - uid: 6058
+ components:
+ - type: Transform
+ pos: -77.5,-31.5
+ parent: 2
+ - uid: 6059
+ components:
+ - type: Transform
+ pos: -76.5,-31.5
+ parent: 2
+ - uid: 6060
+ components:
+ - type: Transform
+ pos: -80.5,-30.5
+ parent: 2
+ - uid: 6061
+ components:
+ - type: Transform
+ pos: -79.5,-30.5
+ parent: 2
+ - uid: 6062
+ components:
+ - type: Transform
+ pos: -78.5,-30.5
+ parent: 2
+ - uid: 6063
+ components:
+ - type: Transform
+ pos: -77.5,-30.5
+ parent: 2
+ - uid: 6064
+ components:
+ - type: Transform
+ pos: -76.5,-30.5
+ parent: 2
+ - uid: 6065
+ components:
+ - type: Transform
+ pos: -78.5,-29.5
+ parent: 2
+ - uid: 6066
+ components:
+ - type: Transform
+ pos: -77.5,-29.5
+ parent: 2
+ - uid: 6067
+ components:
+ - type: Transform
+ pos: -76.5,-29.5
+ parent: 2
+ - uid: 6068
+ components:
+ - type: Transform
+ pos: -75.5,-29.5
+ parent: 2
+ - uid: 6069
+ components:
+ - type: Transform
+ pos: -74.5,-28.5
+ parent: 2
+ - uid: 6070
+ components:
+ - type: Transform
+ pos: -75.5,-28.5
+ parent: 2
+ - uid: 6071
+ components:
+ - type: Transform
+ pos: -79.5,-28.5
+ parent: 2
+ - uid: 6072
+ components:
+ - type: Transform
+ pos: -75.5,-31.5
+ parent: 2
+ - uid: 6073
+ components:
+ - type: Transform
+ pos: -75.5,-32.5
+ parent: 2
+ - uid: 6074
+ components:
+ - type: Transform
+ pos: -75.5,-33.5
+ parent: 2
+ - uid: 6075
+ components:
+ - type: Transform
+ pos: -75.5,-34.5
+ parent: 2
+ - uid: 6076
+ components:
+ - type: Transform
+ pos: -75.5,-35.5
+ parent: 2
+ - uid: 6077
+ components:
+ - type: Transform
+ pos: -75.5,-36.5
+ parent: 2
+ - uid: 6078
+ components:
+ - type: Transform
+ pos: -75.5,-37.5
+ parent: 2
+ - uid: 6079
+ components:
+ - type: Transform
+ pos: -75.5,-38.5
+ parent: 2
+ - uid: 6080
+ components:
+ - type: Transform
+ pos: -76.5,-32.5
+ parent: 2
+ - uid: 6081
+ components:
+ - type: Transform
+ pos: -76.5,-34.5
+ parent: 2
+ - uid: 6082
+ components:
+ - type: Transform
+ pos: -76.5,-35.5
+ parent: 2
+ - uid: 6083
+ components:
+ - type: Transform
+ pos: -76.5,-36.5
+ parent: 2
+ - uid: 6084
+ components:
+ - type: Transform
+ pos: -76.5,-37.5
+ parent: 2
+ - uid: 6085
+ components:
+ - type: Transform
+ pos: -76.5,-38.5
+ parent: 2
+ - uid: 6086
+ components:
+ - type: Transform
+ pos: -76.5,-33.5
+ parent: 2
+ - uid: 6087
+ components:
+ - type: Transform
+ pos: -76.5,-40.5
+ parent: 2
+ - uid: 6088
+ components:
+ - type: Transform
+ pos: -76.5,-39.5
+ parent: 2
+ - uid: 6089
+ components:
+ - type: Transform
+ pos: -76.5,-41.5
+ parent: 2
+ - uid: 6090
+ components:
+ - type: Transform
+ pos: -76.5,-42.5
+ parent: 2
+ - uid: 6091
+ components:
+ - type: Transform
+ pos: -76.5,-43.5
+ parent: 2
+ - uid: 6092
+ components:
+ - type: Transform
+ pos: -75.5,-39.5
+ parent: 2
+ - uid: 6093
+ components:
+ - type: Transform
+ pos: -75.5,-40.5
+ parent: 2
+ - uid: 6094
+ components:
+ - type: Transform
+ pos: -75.5,-41.5
+ parent: 2
+ - uid: 6095
+ components:
+ - type: Transform
+ pos: -75.5,-42.5
+ parent: 2
+ - uid: 6096
+ components:
+ - type: Transform
+ pos: -75.5,-43.5
+ parent: 2
+ - uid: 6097
+ components:
+ - type: Transform
+ pos: -74.5,-39.5
+ parent: 2
+ - uid: 6098
+ components:
+ - type: Transform
+ pos: -74.5,-40.5
+ parent: 2
+ - uid: 6099
+ components:
+ - type: Transform
+ pos: -72.5,-40.5
+ parent: 2
+ - uid: 6100
+ components:
+ - type: Transform
+ pos: -74.5,-37.5
+ parent: 2
+ - uid: 6101
+ components:
+ - type: Transform
+ pos: -74.5,-33.5
+ parent: 2
+ - uid: 6102
+ components:
+ - type: Transform
+ pos: -74.5,-34.5
+ parent: 2
+ - uid: 6103
+ components:
+ - type: Transform
+ pos: -73.5,-33.5
+ parent: 2
+ - uid: 6104
+ components:
+ - type: Transform
+ pos: -73.5,-31.5
+ parent: 2
+ - uid: 6105
+ components:
+ - type: Transform
+ pos: -74.5,-42.5
+ parent: 2
+ - uid: 6106
+ components:
+ - type: Transform
+ pos: -74.5,-43.5
+ parent: 2
+ - uid: 6107
+ components:
+ - type: Transform
+ pos: -76.5,-44.5
+ parent: 2
+ - uid: 6108
+ components:
+ - type: Transform
+ pos: -75.5,-44.5
+ parent: 2
+ - uid: 6109
+ components:
+ - type: Transform
+ pos: -77.5,-44.5
+ parent: 2
+ - uid: 6110
+ components:
+ - type: Transform
+ pos: -78.5,-44.5
+ parent: 2
+ - uid: 6111
+ components:
+ - type: Transform
+ pos: -77.5,-45.5
+ parent: 2
+ - uid: 6112
+ components:
+ - type: Transform
+ pos: -78.5,-45.5
+ parent: 2
+ - uid: 6113
+ components:
+ - type: Transform
+ pos: -79.5,-45.5
+ parent: 2
+ - uid: 6114
+ components:
+ - type: Transform
+ pos: -79.5,-44.5
+ parent: 2
+ - uid: 6115
+ components:
+ - type: Transform
+ pos: -75.5,-46.5
+ parent: 2
+ - uid: 6116
+ components:
+ - type: Transform
+ pos: -77.5,-43.5
+ parent: 2
+ - uid: 6117
+ components:
+ - type: Transform
+ pos: -78.5,-43.5
+ parent: 2
+ - uid: 6118
+ components:
+ - type: Transform
+ pos: -79.5,-43.5
+ parent: 2
+ - uid: 6119
+ components:
+ - type: Transform
+ pos: -80.5,-43.5
+ parent: 2
+ - uid: 6120
+ components:
+ - type: Transform
+ pos: -81.5,-43.5
+ parent: 2
+ - uid: 6121
+ components:
+ - type: Transform
+ pos: -82.5,-42.5
+ parent: 2
+ - uid: 6122
+ components:
+ - type: Transform
+ pos: -82.5,-43.5
+ parent: 2
+ - uid: 6123
+ components:
+ - type: Transform
+ pos: -83.5,-42.5
+ parent: 2
+ - uid: 6124
+ components:
+ - type: Transform
+ pos: -83.5,-43.5
+ parent: 2
+ - uid: 6125
+ components:
+ - type: Transform
+ pos: -83.5,-41.5
+ parent: 2
+ - uid: 6126
+ components:
+ - type: Transform
+ pos: -84.5,-41.5
+ parent: 2
+ - uid: 6127
+ components:
+ - type: Transform
+ pos: -84.5,-40.5
+ parent: 2
+ - uid: 6128
+ components:
+ - type: Transform
+ pos: -85.5,-40.5
+ parent: 2
+ - uid: 6129
+ components:
+ - type: Transform
+ pos: -84.5,-43.5
+ parent: 2
+ - uid: 6130
+ components:
+ - type: Transform
+ pos: -80.5,-44.5
+ parent: 2
+ - uid: 6131
+ components:
+ - type: Transform
+ pos: -81.5,-44.5
+ parent: 2
+ - uid: 6132
+ components:
+ - type: Transform
+ pos: -81.5,-46.5
+ parent: 2
+ - uid: 6133
+ components:
+ - type: Transform
+ pos: -81.5,-45.5
+ parent: 2
+ - uid: 6134
+ components:
+ - type: Transform
+ pos: -78.5,-46.5
+ parent: 2
+ - uid: 6135
+ components:
+ - type: Transform
+ pos: -82.5,-44.5
+ parent: 2
+ - uid: 6136
+ components:
+ - type: Transform
+ pos: -83.5,-45.5
+ parent: 2
+ - uid: 6137
+ components:
+ - type: Transform
+ pos: -86.5,-42.5
+ parent: 2
+ - uid: 6138
+ components:
+ - type: Transform
+ pos: -88.5,-38.5
+ parent: 2
+ - uid: 6139
+ components:
+ - type: Transform
+ pos: -90.5,-37.5
+ parent: 2
+ - uid: 6140
+ components:
+ - type: Transform
+ pos: -91.5,-37.5
+ parent: 2
+ - uid: 6141
+ components:
+ - type: Transform
+ pos: -92.5,-37.5
+ parent: 2
+ - uid: 6142
+ components:
+ - type: Transform
+ pos: -92.5,-39.5
+ parent: 2
+ - uid: 6143
+ components:
+ - type: Transform
+ pos: -92.5,-38.5
+ parent: 2
+ - uid: 6144
+ components:
+ - type: Transform
+ pos: -93.5,-39.5
+ parent: 2
+ - uid: 6145
+ components:
+ - type: Transform
+ pos: -93.5,-40.5
+ parent: 2
+ - uid: 6146
+ components:
+ - type: Transform
+ pos: -93.5,-41.5
+ parent: 2
+ - uid: 6147
+ components:
+ - type: Transform
+ pos: -94.5,-43.5
+ parent: 2
+ - uid: 6148
+ components:
+ - type: Transform
+ pos: -92.5,-40.5
+ parent: 2
+ - uid: 6149
+ components:
+ - type: Transform
+ pos: -91.5,-38.5
+ parent: 2
+ - uid: 6150
+ components:
+ - type: Transform
+ pos: -90.5,-38.5
+ parent: 2
+ - uid: 6151
+ components:
+ - type: Transform
+ pos: -91.5,-39.5
+ parent: 2
+ - uid: 6152
+ components:
+ - type: Transform
+ pos: -92.5,-36.5
+ parent: 2
+ - uid: 6153
+ components:
+ - type: Transform
+ pos: -93.5,-36.5
+ parent: 2
+ - uid: 6154
+ components:
+ - type: Transform
+ pos: -94.5,-36.5
+ parent: 2
+ - uid: 6155
+ components:
+ - type: Transform
+ pos: -93.5,-32.5
+ parent: 2
+ - uid: 6156
+ components:
+ - type: Transform
+ pos: -94.5,-32.5
+ parent: 2
+ - uid: 6157
+ components:
+ - type: Transform
+ pos: -94.5,-33.5
+ parent: 2
+ - uid: 6158
+ components:
+ - type: Transform
+ pos: -95.5,-33.5
+ parent: 2
+ - uid: 6159
+ components:
+ - type: Transform
+ pos: -96.5,-33.5
+ parent: 2
+ - uid: 6160
+ components:
+ - type: Transform
+ pos: -97.5,-33.5
+ parent: 2
+ - uid: 6161
+ components:
+ - type: Transform
+ pos: -94.5,-34.5
+ parent: 2
+ - uid: 6162
+ components:
+ - type: Transform
+ pos: -95.5,-34.5
+ parent: 2
+ - uid: 6163
+ components:
+ - type: Transform
+ pos: -95.5,-31.5
+ parent: 2
+ - uid: 6164
+ components:
+ - type: Transform
+ pos: -96.5,-35.5
+ parent: 2
+ - uid: 6165
+ components:
+ - type: Transform
+ pos: -88.5,-30.5
+ parent: 2
+ - uid: 9899
+ components:
+ - type: Transform
+ pos: 3.5,-34.5
+ parent: 2
+ - uid: 9900
+ components:
+ - type: Transform
+ pos: 2.5,-34.5
+ parent: 2
+ - uid: 9901
+ components:
+ - type: Transform
+ pos: 4.5,-35.5
+ parent: 2
+ - uid: 9902
+ components:
+ - type: Transform
+ pos: 4.5,-36.5
+ parent: 2
+ - uid: 9903
+ components:
+ - type: Transform
+ pos: 6.5,-36.5
+ parent: 2
+ - uid: 9904
+ components:
+ - type: Transform
+ pos: 5.5,-36.5
+ parent: 2
+ - uid: 9905
+ components:
+ - type: Transform
+ pos: 6.5,-37.5
+ parent: 2
+ - uid: 9906
+ components:
+ - type: Transform
+ pos: 7.5,-37.5
+ parent: 2
+ - uid: 9907
+ components:
+ - type: Transform
+ pos: 8.5,-38.5
+ parent: 2
+ - uid: 9908
+ components:
+ - type: Transform
+ pos: 8.5,-39.5
+ parent: 2
+ - uid: 9909
+ components:
+ - type: Transform
+ pos: 12.5,-40.5
+ parent: 2
+ - uid: 9910
+ components:
+ - type: Transform
+ pos: 10.5,-39.5
+ parent: 2
+ - uid: 9911
+ components:
+ - type: Transform
+ pos: 14.5,-41.5
+ parent: 2
+ - uid: 9912
+ components:
+ - type: Transform
+ pos: 15.5,-42.5
+ parent: 2
+ - uid: 9913
+ components:
+ - type: Transform
+ pos: 16.5,-42.5
+ parent: 2
+ - uid: 9914
+ components:
+ - type: Transform
+ pos: 18.5,-42.5
+ parent: 2
+ - uid: 9915
+ components:
+ - type: Transform
+ pos: 19.5,-43.5
+ parent: 2
+ - uid: 9916
+ components:
+ - type: Transform
+ pos: 18.5,-43.5
+ parent: 2
+ - uid: 9917
+ components:
+ - type: Transform
+ pos: 17.5,-43.5
+ parent: 2
+ - uid: 9918
+ components:
+ - type: Transform
+ pos: 17.5,-42.5
+ parent: 2
+ - uid: 9919
+ components:
+ - type: Transform
+ pos: 13.5,-41.5
+ parent: 2
+ - uid: 9920
+ components:
+ - type: Transform
+ pos: 9.5,-39.5
+ parent: 2
+ - uid: 9921
+ components:
+ - type: Transform
+ pos: 10.5,-40.5
+ parent: 2
+ - uid: 9922
+ components:
+ - type: Transform
+ pos: 9.5,-40.5
+ parent: 2
+ - uid: 9923
+ components:
+ - type: Transform
+ pos: 7.5,-38.5
+ parent: 2
+ - uid: 9924
+ components:
+ - type: Transform
+ pos: 5.5,-39.5
+ parent: 2
+ - uid: 9925
+ components:
+ - type: Transform
+ pos: 2.5,-36.5
+ parent: 2
+ - uid: 9926
+ components:
+ - type: Transform
+ pos: 12.5,-41.5
+ parent: 2
+ - uid: 9927
+ components:
+ - type: Transform
+ pos: 25.5,-43.5
+ parent: 2
+ - uid: 9928
+ components:
+ - type: Transform
+ pos: 25.5,-41.5
+ parent: 2
+ - uid: 9932
+ components:
+ - type: Transform
+ pos: 25.5,-38.5
+ parent: 2
+ - uid: 9933
+ components:
+ - type: Transform
+ pos: 24.5,-38.5
+ parent: 2
+ - uid: 9934
+ components:
+ - type: Transform
+ pos: 26.5,-37.5
+ parent: 2
+ - uid: 9935
+ components:
+ - type: Transform
+ pos: 27.5,-37.5
+ parent: 2
+ - uid: 9936
+ components:
+ - type: Transform
+ pos: 28.5,-37.5
+ parent: 2
+ - uid: 9937
+ components:
+ - type: Transform
+ pos: 29.5,-37.5
+ parent: 2
+ - uid: 9938
+ components:
+ - type: Transform
+ pos: 30.5,-37.5
+ parent: 2
+ - uid: 9939
+ components:
+ - type: Transform
+ pos: 30.5,-36.5
+ parent: 2
+ - uid: 9940
+ components:
+ - type: Transform
+ pos: 31.5,-36.5
+ parent: 2
+ - uid: 9941
+ components:
+ - type: Transform
+ pos: 32.5,-36.5
+ parent: 2
+ - uid: 9942
+ components:
+ - type: Transform
+ pos: 32.5,-37.5
+ parent: 2
+ - uid: 9943
+ components:
+ - type: Transform
+ pos: 31.5,-37.5
+ parent: 2
+ - uid: 9944
+ components:
+ - type: Transform
+ pos: 34.5,-37.5
+ parent: 2
+ - uid: 9945
+ components:
+ - type: Transform
+ pos: 35.5,-37.5
+ parent: 2
+ - uid: 9946
+ components:
+ - type: Transform
+ pos: 33.5,-37.5
+ parent: 2
+ - uid: 9947
+ components:
+ - type: Transform
+ pos: 35.5,-38.5
+ parent: 2
+ - uid: 9948
+ components:
+ - type: Transform
+ pos: 36.5,-38.5
+ parent: 2
+ - uid: 9949
+ components:
+ - type: Transform
+ pos: 37.5,-38.5
+ parent: 2
+ - uid: 9950
+ components:
+ - type: Transform
+ pos: 26.5,-41.5
+ parent: 2
+ - uid: 9952
+ components:
+ - type: Transform
+ pos: 25.5,-42.5
+ parent: 2
+ - uid: 9953
+ components:
+ - type: Transform
+ pos: 26.5,-43.5
+ parent: 2
+ - uid: 9954
+ components:
+ - type: Transform
+ pos: 27.5,-44.5
+ parent: 2
+ - uid: 9955
+ components:
+ - type: Transform
+ pos: 27.5,-43.5
+ parent: 2
+ - uid: 9956
+ components:
+ - type: Transform
+ pos: 28.5,-45.5
+ parent: 2
+ - uid: 9957
+ components:
+ - type: Transform
+ pos: 29.5,-45.5
+ parent: 2
+ - uid: 9958
+ components:
+ - type: Transform
+ pos: 28.5,-44.5
+ parent: 2
+ - uid: 9959
+ components:
+ - type: Transform
+ pos: 32.5,-47.5
+ parent: 2
+ - uid: 9960
+ components:
+ - type: Transform
+ pos: 33.5,-48.5
+ parent: 2
+ - uid: 9961
+ components:
+ - type: Transform
+ pos: 33.5,-49.5
+ parent: 2
+ - uid: 9962
+ components:
+ - type: Transform
+ pos: 33.5,-47.5
+ parent: 2
+ - uid: 9963
+ components:
+ - type: Transform
+ pos: 32.5,-46.5
+ parent: 2
+ - uid: 9964
+ components:
+ - type: Transform
+ pos: 34.5,-49.5
+ parent: 2
+ - uid: 9965
+ components:
+ - type: Transform
+ pos: 35.5,-49.5
+ parent: 2
+ - uid: 9966
+ components:
+ - type: Transform
+ pos: 35.5,-50.5
+ parent: 2
+ - uid: 9967
+ components:
+ - type: Transform
+ pos: 35.5,-51.5
+ parent: 2
+ - uid: 9968
+ components:
+ - type: Transform
+ pos: 37.5,-53.5
+ parent: 2
+ - uid: 9969
+ components:
+ - type: Transform
+ pos: 37.5,-54.5
+ parent: 2
+ - uid: 9970
+ components:
+ - type: Transform
+ pos: 38.5,-53.5
+ parent: 2
+ - uid: 9971
+ components:
+ - type: Transform
+ pos: 38.5,-54.5
+ parent: 2
+ - uid: 9972
+ components:
+ - type: Transform
+ pos: 39.5,-55.5
+ parent: 2
+ - uid: 9973
+ components:
+ - type: Transform
+ pos: 38.5,-55.5
+ parent: 2
+ - uid: 9974
+ components:
+ - type: Transform
+ pos: 37.5,-52.5
+ parent: 2
+ - uid: 9975
+ components:
+ - type: Transform
+ pos: 37.5,-51.5
+ parent: 2
+ - uid: 9976
+ components:
+ - type: Transform
+ pos: 37.5,-50.5
+ parent: 2
+ - uid: 9977
+ components:
+ - type: Transform
+ pos: 36.5,-50.5
+ parent: 2
+ - uid: 9978
+ components:
+ - type: Transform
+ pos: 36.5,-49.5
+ parent: 2
+ - uid: 9979
+ components:
+ - type: Transform
+ pos: 34.5,-48.5
+ parent: 2
+ - uid: 9980
+ components:
+ - type: Transform
+ pos: 30.5,-47.5
+ parent: 2
+ - uid: 9981
+ components:
+ - type: Transform
+ pos: 25.5,-37.5
+ parent: 2
+ - uid: 9982
+ components:
+ - type: Transform
+ pos: 29.5,-35.5
+ parent: 2
+ - uid: 9983
+ components:
+ - type: Transform
+ pos: 30.5,-34.5
+ parent: 2
+ - uid: 9984
+ components:
+ - type: Transform
+ pos: 30.5,-33.5
+ parent: 2
+ - uid: 9985
+ components:
+ - type: Transform
+ pos: 30.5,-35.5
+ parent: 2
+ - uid: 9986
+ components:
+ - type: Transform
+ pos: 29.5,-36.5
+ parent: 2
+ - uid: 9987
+ components:
+ - type: Transform
+ pos: 28.5,-36.5
+ parent: 2
+ - uid: 10127
+ components:
+ - type: Transform
+ pos: 40.5,-55.5
+ parent: 2
+ - uid: 10128
+ components:
+ - type: Transform
+ pos: 40.5,-56.5
+ parent: 2
+ - uid: 10129
+ components:
+ - type: Transform
+ pos: 41.5,-56.5
+ parent: 2
+ - uid: 10130
+ components:
+ - type: Transform
+ pos: 41.5,-57.5
+ parent: 2
+ - uid: 10131
+ components:
+ - type: Transform
+ pos: 41.5,-58.5
+ parent: 2
+ - uid: 10132
+ components:
+ - type: Transform
+ pos: 42.5,-58.5
+ parent: 2
+ - uid: 10133
+ components:
+ - type: Transform
+ pos: 42.5,-57.5
+ parent: 2
+ - uid: 10134
+ components:
+ - type: Transform
+ pos: 43.5,-57.5
+ parent: 2
+ - uid: 10135
+ components:
+ - type: Transform
+ pos: 44.5,-56.5
+ parent: 2
+ - uid: 10136
+ components:
+ - type: Transform
+ pos: 43.5,-56.5
+ parent: 2
+ - uid: 10137
+ components:
+ - type: Transform
+ pos: 45.5,-55.5
+ parent: 2
+ - uid: 10138
+ components:
+ - type: Transform
+ pos: 44.5,-55.5
+ parent: 2
+ - uid: 10139
+ components:
+ - type: Transform
+ pos: 45.5,-54.5
+ parent: 2
+ - uid: 10140
+ components:
+ - type: Transform
+ pos: 45.5,-53.5
+ parent: 2
+ - uid: 10141
+ components:
+ - type: Transform
+ pos: 46.5,-53.5
+ parent: 2
+ - uid: 10142
+ components:
+ - type: Transform
+ pos: 46.5,-52.5
+ parent: 2
+ - uid: 10143
+ components:
+ - type: Transform
+ pos: 47.5,-52.5
+ parent: 2
+ - uid: 10144
+ components:
+ - type: Transform
+ pos: 47.5,-51.5
+ parent: 2
+ - uid: 10145
+ components:
+ - type: Transform
+ pos: 48.5,-51.5
+ parent: 2
+ - uid: 10146
+ components:
+ - type: Transform
+ pos: 48.5,-50.5
+ parent: 2
+ - uid: 10147
+ components:
+ - type: Transform
+ pos: 49.5,-49.5
+ parent: 2
+ - uid: 10148
+ components:
+ - type: Transform
+ pos: 48.5,-49.5
+ parent: 2
+ - uid: 10149
+ components:
+ - type: Transform
+ pos: 49.5,-48.5
+ parent: 2
+ - uid: 10150
+ components:
+ - type: Transform
+ pos: 50.5,-47.5
+ parent: 2
+ - uid: 10151
+ components:
+ - type: Transform
+ pos: 49.5,-47.5
+ parent: 2
+ - uid: 10152
+ components:
+ - type: Transform
+ pos: 51.5,-44.5
+ parent: 2
+ - uid: 10153
+ components:
+ - type: Transform
+ pos: 52.5,-43.5
+ parent: 2
+ - uid: 10154
+ components:
+ - type: Transform
+ pos: 50.5,-46.5
+ parent: 2
+ - uid: 10155
+ components:
+ - type: Transform
+ pos: 50.5,-45.5
+ parent: 2
+ - uid: 10156
+ components:
+ - type: Transform
+ pos: 53.5,-42.5
+ parent: 2
+ - uid: 10157
+ components:
+ - type: Transform
+ pos: 53.5,-41.5
+ parent: 2
+ - uid: 10158
+ components:
+ - type: Transform
+ pos: 54.5,-40.5
+ parent: 2
+ - uid: 10159
+ components:
+ - type: Transform
+ pos: 54.5,-39.5
+ parent: 2
+ - uid: 10160
+ components:
+ - type: Transform
+ pos: 55.5,-38.5
+ parent: 2
+ - uid: 10161
+ components:
+ - type: Transform
+ pos: 55.5,-37.5
+ parent: 2
+ - uid: 10162
+ components:
+ - type: Transform
+ pos: 56.5,-37.5
+ parent: 2
+ - uid: 10163
+ components:
+ - type: Transform
+ pos: 56.5,-36.5
+ parent: 2
+ - uid: 10164
+ components:
+ - type: Transform
+ pos: 56.5,-35.5
+ parent: 2
+ - uid: 10165
+ components:
+ - type: Transform
+ pos: 57.5,-34.5
+ parent: 2
+ - uid: 10166
+ components:
+ - type: Transform
+ pos: 57.5,-33.5
+ parent: 2
+ - uid: 10167
+ components:
+ - type: Transform
+ pos: 58.5,-32.5
+ parent: 2
+ - uid: 10168
+ components:
+ - type: Transform
+ pos: 58.5,-31.5
+ parent: 2
+ - uid: 10169
+ components:
+ - type: Transform
+ pos: 59.5,-30.5
+ parent: 2
+ - uid: 10170
+ components:
+ - type: Transform
+ pos: 59.5,-29.5
+ parent: 2
+ - uid: 10171
+ components:
+ - type: Transform
+ pos: 60.5,-28.5
+ parent: 2
+ - uid: 10172
+ components:
+ - type: Transform
+ pos: 60.5,-27.5
+ parent: 2
+ - uid: 10173
+ components:
+ - type: Transform
+ pos: 61.5,-26.5
+ parent: 2
+ - uid: 10174
+ components:
+ - type: Transform
+ pos: 61.5,-25.5
+ parent: 2
+ - uid: 10175
+ components:
+ - type: Transform
+ pos: 61.5,-24.5
+ parent: 2
+ - uid: 10176
+ components:
+ - type: Transform
+ pos: 62.5,-23.5
+ parent: 2
+ - uid: 10177
+ components:
+ - type: Transform
+ pos: 62.5,-22.5
+ parent: 2
+ - uid: 10178
+ components:
+ - type: Transform
+ pos: 63.5,-21.5
+ parent: 2
+ - uid: 10179
+ components:
+ - type: Transform
+ pos: 64.5,-20.5
+ parent: 2
+ - uid: 10180
+ components:
+ - type: Transform
+ pos: 65.5,-19.5
+ parent: 2
+ - uid: 10181
+ components:
+ - type: Transform
+ pos: 65.5,-18.5
+ parent: 2
+ - uid: 10182
+ components:
+ - type: Transform
+ pos: 71.5,-4.5
+ parent: 2
+ - uid: 10183
+ components:
+ - type: Transform
+ pos: 72.5,-3.5
+ parent: 2
+ - uid: 10184
+ components:
+ - type: Transform
+ pos: 71.5,-5.5
+ parent: 2
+ - uid: 10185
+ components:
+ - type: Transform
+ pos: 71.5,-6.5
+ parent: 2
+ - uid: 10186
+ components:
+ - type: Transform
+ pos: 70.5,-8.5
+ parent: 2
+ - uid: 10187
+ components:
+ - type: Transform
+ pos: 70.5,-7.5
+ parent: 2
+ - uid: 10188
+ components:
+ - type: Transform
+ pos: 50.5,-49.5
+ parent: 2
+ - uid: 10189
+ components:
+ - type: Transform
+ pos: 50.5,-48.5
+ parent: 2
+ - uid: 10190
+ components:
+ - type: Transform
+ pos: 51.5,-49.5
+ parent: 2
+ - uid: 10191
+ components:
+ - type: Transform
+ pos: 51.5,-48.5
+ parent: 2
+ - uid: 10192
+ components:
+ - type: Transform
+ pos: 51.5,-47.5
+ parent: 2
+ - uid: 10193
+ components:
+ - type: Transform
+ pos: 52.5,-48.5
+ parent: 2
+ - uid: 10194
+ components:
+ - type: Transform
+ pos: 52.5,-49.5
+ parent: 2
+ - uid: 10195
+ components:
+ - type: Transform
+ pos: 50.5,-50.5
+ parent: 2
+ - uid: 10196
+ components:
+ - type: Transform
+ pos: 51.5,-50.5
+ parent: 2
+ - uid: 10197
+ components:
+ - type: Transform
+ pos: 52.5,-47.5
+ parent: 2
+ - uid: 10198
+ components:
+ - type: Transform
+ pos: 51.5,-45.5
+ parent: 2
+ - uid: 10199
+ components:
+ - type: Transform
+ pos: 51.5,-46.5
+ parent: 2
+ - uid: 10200
+ components:
+ - type: Transform
+ pos: 52.5,-46.5
+ parent: 2
+ - uid: 10201
+ components:
+ - type: Transform
+ pos: 52.5,-45.5
+ parent: 2
+ - uid: 10202
+ components:
+ - type: Transform
+ pos: 52.5,-44.5
+ parent: 2
+ - uid: 10203
+ components:
+ - type: Transform
+ pos: 63.5,-24.5
+ parent: 2
+ - uid: 10204
+ components:
+ - type: Transform
+ pos: 62.5,-24.5
+ parent: 2
+ - uid: 10205
+ components:
+ - type: Transform
+ pos: 62.5,-25.5
+ parent: 2
+ - uid: 10206
+ components:
+ - type: Transform
+ pos: 64.5,-25.5
+ parent: 2
+ - uid: 10207
+ components:
+ - type: Transform
+ pos: 63.5,-25.5
+ parent: 2
+ - uid: 10208
+ components:
+ - type: Transform
+ pos: 65.5,-26.5
+ parent: 2
+ - uid: 10209
+ components:
+ - type: Transform
+ pos: 72.5,-4.5
+ parent: 2
+ - uid: 10210
+ components:
+ - type: Transform
+ pos: 64.5,-26.5
+ parent: 2
+ - uid: 10211
+ components:
+ - type: Transform
+ pos: 63.5,-26.5
+ parent: 2
+ - uid: 10212
+ components:
+ - type: Transform
+ pos: 62.5,-26.5
+ parent: 2
+ - uid: 10213
+ components:
+ - type: Transform
+ pos: 66.5,-16.5
+ parent: 2
+ - uid: 10214
+ components:
+ - type: Transform
+ pos: 67.5,-14.5
+ parent: 2
+ - uid: 10215
+ components:
+ - type: Transform
+ pos: 69.5,-10.5
+ parent: 2
+ - uid: 10216
+ components:
+ - type: Transform
+ pos: 68.5,-12.5
+ parent: 2
+ - uid: 10217
+ components:
+ - type: Transform
+ pos: 69.5,-9.5
+ parent: 2
+ - uid: 10218
+ components:
+ - type: Transform
+ pos: 68.5,-11.5
+ parent: 2
+ - uid: 10219
+ components:
+ - type: Transform
+ pos: 66.5,-17.5
+ parent: 2
+ - uid: 10220
+ components:
+ - type: Transform
+ pos: 73.5,-3.5
+ parent: 2
+ - uid: 10221
+ components:
+ - type: Transform
+ pos: 75.5,-2.5
+ parent: 2
+ - uid: 10222
+ components:
+ - type: Transform
+ pos: 75.5,-1.5
+ parent: 2
+ - uid: 10223
+ components:
+ - type: Transform
+ pos: 75.5,-0.5
+ parent: 2
+ - uid: 10224
+ components:
+ - type: Transform
+ pos: 74.5,-3.5
+ parent: 2
+ - uid: 10225
+ components:
+ - type: Transform
+ pos: 78.5,-3.5
+ parent: 2
+ - uid: 10226
+ components:
+ - type: Transform
+ pos: 79.5,-3.5
+ parent: 2
+ - uid: 10227
+ components:
+ - type: Transform
+ pos: 78.5,-2.5
+ parent: 2
+ - uid: 10228
+ components:
+ - type: Transform
+ pos: 77.5,-2.5
+ parent: 2
+ - uid: 10229
+ components:
+ - type: Transform
+ pos: 76.5,-2.5
+ parent: 2
+ - uid: 10230
+ components:
+ - type: Transform
+ pos: 76.5,-1.5
+ parent: 2
+ - uid: 10231
+ components:
+ - type: Transform
+ pos: 77.5,-0.5
+ parent: 2
+ - uid: 10232
+ components:
+ - type: Transform
+ pos: 76.5,-0.5
+ parent: 2
+ - uid: 10233
+ components:
+ - type: Transform
+ pos: 80.5,-3.5
+ parent: 2
+ - uid: 10234
+ components:
+ - type: Transform
+ pos: 78.5,-1.5
+ parent: 2
+ - uid: 10235
+ components:
+ - type: Transform
+ pos: 68.5,-13.5
+ parent: 2
+ - uid: 10236
+ components:
+ - type: Transform
+ pos: 77.5,-1.5
+ parent: 2
+ - uid: 10237
+ components:
+ - type: Transform
+ pos: 67.5,-15.5
+ parent: 2
+ - uid: 10238
+ components:
+ - type: Transform
+ pos: 79.5,15.5
+ parent: 2
+ - uid: 10239
+ components:
+ - type: Transform
+ pos: 79.5,16.5
+ parent: 2
+ - uid: 10240
+ components:
+ - type: Transform
+ pos: 90.5,30.5
+ parent: 2
+ - uid: 10241
+ components:
+ - type: Transform
+ pos: 89.5,31.5
+ parent: 2
+ - uid: 10242
+ components:
+ - type: Transform
+ pos: 96.5,50.5
+ parent: 2
+ - uid: 10243
+ components:
+ - type: Transform
+ pos: 85.5,31.5
+ parent: 2
+ - uid: 10244
+ components:
+ - type: Transform
+ pos: 84.5,30.5
+ parent: 2
+ - uid: 10245
+ components:
+ - type: Transform
+ pos: 83.5,29.5
+ parent: 2
+ - uid: 10246
+ components:
+ - type: Transform
+ pos: 82.5,28.5
+ parent: 2
+ - uid: 10247
+ components:
+ - type: Transform
+ pos: 82.5,26.5
+ parent: 2
+ - uid: 10248
+ components:
+ - type: Transform
+ pos: 81.5,24.5
+ parent: 2
+ - uid: 10249
+ components:
+ - type: Transform
+ pos: 81.5,22.5
+ parent: 2
+ - uid: 10250
+ components:
+ - type: Transform
+ pos: 80.5,18.5
+ parent: 2
+ - uid: 10251
+ components:
+ - type: Transform
+ pos: 80.5,17.5
+ parent: 2
+ - uid: 10252
+ components:
+ - type: Transform
+ pos: 81.5,19.5
+ parent: 2
+ - uid: 10253
+ components:
+ - type: Transform
+ pos: 81.5,20.5
+ parent: 2
+ - uid: 10254
+ components:
+ - type: Transform
+ pos: 81.5,21.5
+ parent: 2
+ - uid: 10255
+ components:
+ - type: Transform
+ pos: 81.5,23.5
+ parent: 2
+ - uid: 10256
+ components:
+ - type: Transform
+ pos: 82.5,25.5
+ parent: 2
+ - uid: 10257
+ components:
+ - type: Transform
+ pos: 81.5,25.5
+ parent: 2
+ - uid: 10258
+ components:
+ - type: Transform
+ pos: 82.5,27.5
+ parent: 2
+ - uid: 10259
+ components:
+ - type: Transform
+ pos: 83.5,28.5
+ parent: 2
+ - uid: 10260
+ components:
+ - type: Transform
+ pos: 84.5,29.5
+ parent: 2
+ - uid: 10261
+ components:
+ - type: Transform
+ pos: 85.5,30.5
+ parent: 2
+ - uid: 10262
+ components:
+ - type: Transform
+ pos: 86.5,31.5
+ parent: 2
+ - uid: 10263
+ components:
+ - type: Transform
+ pos: 88.5,31.5
+ parent: 2
+ - uid: 10264
+ components:
+ - type: Transform
+ pos: 89.5,30.5
+ parent: 2
+ - uid: 10265
+ components:
+ - type: Transform
+ pos: 97.5,50.5
+ parent: 2
+ - uid: 10266
+ components:
+ - type: Transform
+ pos: 96.5,49.5
+ parent: 2
+ - uid: 10267
+ components:
+ - type: Transform
+ pos: 91.5,42.5
+ parent: 2
+ - uid: 10268
+ components:
+ - type: Transform
+ pos: 95.5,49.5
+ parent: 2
+ - uid: 10269
+ components:
+ - type: Transform
+ pos: 91.5,43.5
+ parent: 2
+ - uid: 10270
+ components:
+ - type: Transform
+ pos: 93.5,39.5
+ parent: 2
+ - uid: 10271
+ components:
+ - type: Transform
+ pos: 91.5,40.5
+ parent: 2
+ - uid: 10272
+ components:
+ - type: Transform
+ pos: 92.5,40.5
+ parent: 2
+ - uid: 10273
+ components:
+ - type: Transform
+ pos: 92.5,39.5
+ parent: 2
+ - uid: 10274
+ components:
+ - type: Transform
+ pos: 88.5,26.5
+ parent: 2
+ - uid: 10275
+ components:
+ - type: Transform
+ pos: 87.5,25.5
+ parent: 2
+ - uid: 10276
+ components:
+ - type: Transform
+ pos: 88.5,20.5
+ parent: 2
+ - uid: 10277
+ components:
+ - type: Transform
+ pos: 87.5,24.5
+ parent: 2
+ - uid: 10278
+ components:
+ - type: Transform
+ pos: 88.5,25.5
+ parent: 2
+ - uid: 10279
+ components:
+ - type: Transform
+ pos: 85.5,17.5
+ parent: 2
+ - uid: 10280
+ components:
+ - type: Transform
+ pos: 84.5,17.5
+ parent: 2
+ - uid: 10281
+ components:
+ - type: Transform
+ pos: 85.5,16.5
+ parent: 2
+ - uid: 10282
+ components:
+ - type: Transform
+ pos: 86.5,16.5
+ parent: 2
+ - uid: 10283
+ components:
+ - type: Transform
+ pos: 85.5,15.5
+ parent: 2
+ - uid: 10284
+ components:
+ - type: Transform
+ pos: 84.5,16.5
+ parent: 2
+ - uid: 10285
+ components:
+ - type: Transform
+ pos: 74.5,-2.5
+ parent: 2
+ - uid: 10286
+ components:
+ - type: Transform
+ pos: 79.5,-2.5
+ parent: 2
+ - uid: 10287
+ components:
+ - type: Transform
+ pos: 79.5,-1.5
+ parent: 2
+ - uid: 10288
+ components:
+ - type: Transform
+ pos: 70.5,-6.5
+ parent: 2
+ - uid: 10289
+ components:
+ - type: Transform
+ pos: 69.5,-8.5
+ parent: 2
+ - uid: 10290
+ components:
+ - type: Transform
+ pos: 68.5,-10.5
+ parent: 2
+ - uid: 10291
+ components:
+ - type: Transform
+ pos: 67.5,-13.5
+ parent: 2
+ - uid: 10292
+ components:
+ - type: Transform
+ pos: 66.5,-15.5
+ parent: 2
+ - uid: 10293
+ components:
+ - type: Transform
+ pos: 65.5,-17.5
+ parent: 2
+ - uid: 10294
+ components:
+ - type: Transform
+ pos: 64.5,-19.5
+ parent: 2
+ - uid: 10295
+ components:
+ - type: Transform
+ pos: 63.5,-20.5
+ parent: 2
+ - uid: 10296
+ components:
+ - type: Transform
+ pos: 62.5,-21.5
+ parent: 2
+ - uid: 10297
+ components:
+ - type: Transform
+ pos: 60.5,-26.5
+ parent: 2
+ - uid: 10298
+ components:
+ - type: Transform
+ pos: 59.5,-28.5
+ parent: 2
+ - uid: 10299
+ components:
+ - type: Transform
+ pos: 58.5,-30.5
+ parent: 2
+ - uid: 10300
+ components:
+ - type: Transform
+ pos: 57.5,-32.5
+ parent: 2
+ - uid: 10301
+ components:
+ - type: Transform
+ pos: 56.5,-34.5
+ parent: 2
+ - uid: 10302
+ components:
+ - type: Transform
+ pos: 54.5,-38.5
+ parent: 2
+ - uid: 10303
+ components:
+ - type: Transform
+ pos: 53.5,-40.5
+ parent: 2
+ - uid: 10304
+ components:
+ - type: Transform
+ pos: 52.5,-42.5
+ parent: 2
+ - uid: 10305
+ components:
+ - type: Transform
+ pos: 75.5,0.5
+ parent: 2
+ - uid: 10306
+ components:
+ - type: Transform
+ pos: 74.5,1.5
+ parent: 2
+ - uid: 10307
+ components:
+ - type: Transform
+ pos: 74.5,2.5
+ parent: 2
+ - uid: 10308
+ components:
+ - type: Transform
+ pos: 74.5,3.5
+ parent: 2
+ - uid: 10309
+ components:
+ - type: Transform
+ pos: 74.5,4.5
+ parent: 2
+ - uid: 10310
+ components:
+ - type: Transform
+ pos: 74.5,0.5
+ parent: 2
+ - uid: 10311
+ components:
+ - type: Transform
+ pos: 74.5,5.5
+ parent: 2
+ - uid: 10312
+ components:
+ - type: Transform
+ pos: 75.5,5.5
+ parent: 2
+ - uid: 10313
+ components:
+ - type: Transform
+ pos: 75.5,6.5
+ parent: 2
+ - uid: 10314
+ components:
+ - type: Transform
+ pos: 76.5,6.5
+ parent: 2
+ - uid: 10315
+ components:
+ - type: Transform
+ pos: 77.5,6.5
+ parent: 2
+ - uid: 10316
+ components:
+ - type: Transform
+ pos: 78.5,6.5
+ parent: 2
+ - uid: 10317
+ components:
+ - type: Transform
+ pos: 79.5,7.5
+ parent: 2
+ - uid: 10318
+ components:
+ - type: Transform
+ pos: 80.5,7.5
+ parent: 2
+ - uid: 10319
+ components:
+ - type: Transform
+ pos: 81.5,8.5
+ parent: 2
+ - uid: 10320
+ components:
+ - type: Transform
+ pos: 80.5,9.5
+ parent: 2
+ - uid: 10321
+ components:
+ - type: Transform
+ pos: 79.5,10.5
+ parent: 2
+ - uid: 10322
+ components:
+ - type: Transform
+ pos: 78.5,11.5
+ parent: 2
+ - uid: 10323
+ components:
+ - type: Transform
+ pos: 78.5,12.5
+ parent: 2
+ - uid: 10324
+ components:
+ - type: Transform
+ pos: 78.5,13.5
+ parent: 2
+ - uid: 10325
+ components:
+ - type: Transform
+ pos: 78.5,14.5
+ parent: 2
+ - uid: 10326
+ components:
+ - type: Transform
+ pos: 80.5,8.5
+ parent: 2
+ - uid: 10328
+ components:
+ - type: Transform
+ pos: 78.5,10.5
+ parent: 2
+ - uid: 10329
+ components:
+ - type: Transform
+ pos: 78.5,7.5
+ parent: 2
+ - uid: 10330
+ components:
+ - type: Transform
+ pos: 78.5,15.5
+ parent: 2
+ - uid: 10331
+ components:
+ - type: Transform
+ pos: 79.5,17.5
+ parent: 2
+ - uid: 10332
+ components:
+ - type: Transform
+ pos: 80.5,19.5
+ parent: 2
+ - uid: 10333
+ components:
+ - type: Transform
+ pos: 31.5,-35.5
+ parent: 2
+ - uid: 10334
+ components:
+ - type: Transform
+ pos: 36.5,-36.5
+ parent: 2
+ - uid: 10335
+ components:
+ - type: Transform
+ pos: 37.5,-35.5
+ parent: 2
+ - uid: 10336
+ components:
+ - type: Transform
+ pos: 37.5,-36.5
+ parent: 2
+ - uid: 10337
+ components:
+ - type: Transform
+ pos: 36.5,-37.5
+ parent: 2
+ - uid: 10338
+ components:
+ - type: Transform
+ pos: 38.5,-35.5
+ parent: 2
+ - uid: 10339
+ components:
+ - type: Transform
+ pos: 38.5,-34.5
+ parent: 2
+ - uid: 10340
+ components:
+ - type: Transform
+ pos: 38.5,-33.5
+ parent: 2
+ - uid: 10341
+ components:
+ - type: Transform
+ pos: 38.5,-32.5
+ parent: 2
+ - uid: 10342
+ components:
+ - type: Transform
+ pos: 38.5,-31.5
+ parent: 2
+ - uid: 10343
+ components:
+ - type: Transform
+ pos: 40.5,-32.5
+ parent: 2
+ - uid: 10344
+ components:
+ - type: Transform
+ pos: 39.5,-32.5
+ parent: 2
+ - uid: 10345
+ components:
+ - type: Transform
+ pos: 40.5,-33.5
+ parent: 2
+ - uid: 10346
+ components:
+ - type: Transform
+ pos: 41.5,-33.5
+ parent: 2
+ - uid: 10347
+ components:
+ - type: Transform
+ pos: 42.5,-33.5
+ parent: 2
+ - uid: 10348
+ components:
+ - type: Transform
+ pos: 43.5,-33.5
+ parent: 2
+ - uid: 10349
+ components:
+ - type: Transform
+ pos: 43.5,-32.5
+ parent: 2
+ - uid: 10350
+ components:
+ - type: Transform
+ pos: 44.5,-32.5
+ parent: 2
+ - uid: 10351
+ components:
+ - type: Transform
+ pos: 44.5,-31.5
+ parent: 2
+ - uid: 10352
+ components:
+ - type: Transform
+ pos: 44.5,-30.5
+ parent: 2
+ - uid: 10353
+ components:
+ - type: Transform
+ pos: 44.5,-29.5
+ parent: 2
+ - uid: 10354
+ components:
+ - type: Transform
+ pos: 44.5,-28.5
+ parent: 2
+ - uid: 10355
+ components:
+ - type: Transform
+ pos: 43.5,-28.5
+ parent: 2
+ - uid: 10356
+ components:
+ - type: Transform
+ pos: 43.5,-27.5
+ parent: 2
+ - uid: 10357
+ components:
+ - type: Transform
+ pos: 42.5,-27.5
+ parent: 2
+ - uid: 10358
+ components:
+ - type: Transform
+ pos: 43.5,-26.5
+ parent: 2
+ - uid: 10359
+ components:
+ - type: Transform
+ pos: 44.5,-25.5
+ parent: 2
+ - uid: 10360
+ components:
+ - type: Transform
+ pos: 45.5,-24.5
+ parent: 2
+ - uid: 10361
+ components:
+ - type: Transform
+ pos: 46.5,-23.5
+ parent: 2
+ - uid: 10362
+ components:
+ - type: Transform
+ pos: 47.5,-22.5
+ parent: 2
+ - uid: 10363
+ components:
+ - type: Transform
+ pos: 48.5,-21.5
+ parent: 2
+ - uid: 10364
+ components:
+ - type: Transform
+ pos: 50.5,-19.5
+ parent: 2
+ - uid: 10365
+ components:
+ - type: Transform
+ pos: 49.5,-20.5
+ parent: 2
+ - uid: 10366
+ components:
+ - type: Transform
+ pos: 51.5,-18.5
+ parent: 2
+ - uid: 10367
+ components:
+ - type: Transform
+ pos: 52.5,-17.5
+ parent: 2
+ - uid: 10368
+ components:
+ - type: Transform
+ pos: 54.5,-15.5
+ parent: 2
+ - uid: 10369
+ components:
+ - type: Transform
+ pos: 53.5,-16.5
+ parent: 2
+ - uid: 10370
+ components:
+ - type: Transform
+ pos: 54.5,-14.5
+ parent: 2
+ - uid: 10371
+ components:
+ - type: Transform
+ pos: 53.5,-13.5
+ parent: 2
+ - uid: 10372
+ components:
+ - type: Transform
+ pos: 54.5,-12.5
+ parent: 2
+ - uid: 10373
+ components:
+ - type: Transform
+ pos: 54.5,-13.5
+ parent: 2
+ - uid: 10374
+ components:
+ - type: Transform
+ pos: 54.5,-16.5
+ parent: 2
+ - uid: 10375
+ components:
+ - type: Transform
+ pos: 53.5,-17.5
+ parent: 2
+ - uid: 10376
+ components:
+ - type: Transform
+ pos: 52.5,-18.5
+ parent: 2
+ - uid: 10377
+ components:
+ - type: Transform
+ pos: 51.5,-19.5
+ parent: 2
+ - uid: 10378
+ components:
+ - type: Transform
+ pos: 50.5,-20.5
+ parent: 2
+ - uid: 10379
+ components:
+ - type: Transform
+ pos: 49.5,-21.5
+ parent: 2
+ - uid: 10380
+ components:
+ - type: Transform
+ pos: 48.5,-22.5
+ parent: 2
+ - uid: 10381
+ components:
+ - type: Transform
+ pos: 47.5,-23.5
+ parent: 2
+ - uid: 10382
+ components:
+ - type: Transform
+ pos: 46.5,-24.5
+ parent: 2
+ - uid: 10383
+ components:
+ - type: Transform
+ pos: 45.5,-25.5
+ parent: 2
+ - uid: 10384
+ components:
+ - type: Transform
+ pos: 51.5,-20.5
+ parent: 2
+ - uid: 10385
+ components:
+ - type: Transform
+ pos: 54.5,-11.5
+ parent: 2
+ - uid: 10386
+ components:
+ - type: Transform
+ pos: 54.5,-10.5
+ parent: 2
+ - uid: 10387
+ components:
+ - type: Transform
+ pos: 53.5,-10.5
+ parent: 2
+ - uid: 10388
+ components:
+ - type: Transform
+ pos: 52.5,-9.5
+ parent: 2
+ - uid: 10389
+ components:
+ - type: Transform
+ pos: 51.5,-9.5
+ parent: 2
+ - uid: 10390
+ components:
+ - type: Transform
+ pos: 53.5,-9.5
+ parent: 2
+ - uid: 10391
+ components:
+ - type: Transform
+ pos: 52.5,-8.5
+ parent: 2
+ - uid: 10392
+ components:
+ - type: Transform
+ pos: 53.5,-8.5
+ parent: 2
+ - uid: 10393
+ components:
+ - type: Transform
+ pos: 53.5,-7.5
+ parent: 2
+ - uid: 10394
+ components:
+ - type: Transform
+ pos: 54.5,-7.5
+ parent: 2
+ - uid: 10395
+ components:
+ - type: Transform
+ pos: 55.5,-7.5
+ parent: 2
+ - uid: 10396
+ components:
+ - type: Transform
+ pos: 56.5,-7.5
+ parent: 2
+ - uid: 10397
+ components:
+ - type: Transform
+ pos: 56.5,-6.5
+ parent: 2
+ - uid: 10398
+ components:
+ - type: Transform
+ pos: 57.5,-6.5
+ parent: 2
+ - uid: 10399
+ components:
+ - type: Transform
+ pos: 57.5,-5.5
+ parent: 2
+ - uid: 10400
+ components:
+ - type: Transform
+ pos: 58.5,-4.5
+ parent: 2
+ - uid: 10401
+ components:
+ - type: Transform
+ pos: 58.5,-3.5
+ parent: 2
+ - uid: 10402
+ components:
+ - type: Transform
+ pos: 59.5,-2.5
+ parent: 2
+ - uid: 10403
+ components:
+ - type: Transform
+ pos: 59.5,-1.5
+ parent: 2
+ - uid: 10404
+ components:
+ - type: Transform
+ pos: 59.5,-0.5
+ parent: 2
+ - uid: 10405
+ components:
+ - type: Transform
+ pos: 58.5,0.5
+ parent: 2
+ - uid: 10406
+ components:
+ - type: Transform
+ pos: 58.5,1.5
+ parent: 2
+ - uid: 10407
+ components:
+ - type: Transform
+ pos: 58.5,2.5
+ parent: 2
+ - uid: 10408
+ components:
+ - type: Transform
+ pos: 59.5,0.5
+ parent: 2
+ - uid: 10409
+ components:
+ - type: Transform
+ pos: 59.5,-3.5
+ parent: 2
+ - uid: 10410
+ components:
+ - type: Transform
+ pos: 58.5,-5.5
+ parent: 2
+ - uid: 10411
+ components:
+ - type: Transform
+ pos: 57.5,3.5
+ parent: 2
+ - uid: 10412
+ components:
+ - type: Transform
+ pos: 57.5,4.5
+ parent: 2
+ - uid: 10413
+ components:
+ - type: Transform
+ pos: 56.5,5.5
+ parent: 2
+ - uid: 10414
+ components:
+ - type: Transform
+ pos: 55.5,6.5
+ parent: 2
+ - uid: 10415
+ components:
+ - type: Transform
+ pos: 56.5,7.5
+ parent: 2
+ - uid: 10416
+ components:
+ - type: Transform
+ pos: 57.5,8.5
+ parent: 2
+ - uid: 10417
+ components:
+ - type: Transform
+ pos: 57.5,9.5
+ parent: 2
+ - uid: 10418
+ components:
+ - type: Transform
+ pos: 56.5,6.5
+ parent: 2
+ - uid: 10419
+ components:
+ - type: Transform
+ pos: 57.5,7.5
+ parent: 2
+ - uid: 10420
+ components:
+ - type: Transform
+ pos: 57.5,5.5
+ parent: 2
+ - uid: 10421
+ components:
+ - type: Transform
+ pos: 58.5,3.5
+ parent: 2
+ - uid: 10422
+ components:
+ - type: Transform
+ pos: 57.5,6.5
+ parent: 2
+ - uid: 10423
+ components:
+ - type: Transform
+ pos: 58.5,9.5
+ parent: 2
+ - uid: 10424
+ components:
+ - type: Transform
+ pos: 59.5,9.5
+ parent: 2
+ - uid: 10425
+ components:
+ - type: Transform
+ pos: 60.5,9.5
+ parent: 2
+ - uid: 10426
+ components:
+ - type: Transform
+ pos: 61.5,10.5
+ parent: 2
+ - uid: 10427
+ components:
+ - type: Transform
+ pos: 62.5,10.5
+ parent: 2
+ - uid: 10428
+ components:
+ - type: Transform
+ pos: 62.5,11.5
+ parent: 2
+ - uid: 10429
+ components:
+ - type: Transform
+ pos: 63.5,11.5
+ parent: 2
+ - uid: 10430
+ components:
+ - type: Transform
+ pos: 63.5,12.5
+ parent: 2
+ - uid: 10431
+ components:
+ - type: Transform
+ pos: 63.5,13.5
+ parent: 2
+ - uid: 10432
+ components:
+ - type: Transform
+ pos: 63.5,14.5
+ parent: 2
+ - uid: 10433
+ components:
+ - type: Transform
+ pos: 64.5,15.5
+ parent: 2
+ - uid: 10434
+ components:
+ - type: Transform
+ pos: 64.5,16.5
+ parent: 2
+ - uid: 10435
+ components:
+ - type: Transform
+ pos: 64.5,17.5
+ parent: 2
+ - uid: 10436
+ components:
+ - type: Transform
+ pos: 64.5,14.5
+ parent: 2
+ - uid: 10437
+ components:
+ - type: Transform
+ pos: 61.5,9.5
+ parent: 2
+ - uid: 10438
+ components:
+ - type: Transform
+ pos: 63.5,18.5
+ parent: 2
+ - uid: 10439
+ components:
+ - type: Transform
+ pos: 63.5,20.5
+ parent: 2
+ - uid: 10440
+ components:
+ - type: Transform
+ pos: 63.5,19.5
+ parent: 2
+ - uid: 10441
+ components:
+ - type: Transform
+ pos: 64.5,18.5
+ parent: 2
+ - uid: 10442
+ components:
+ - type: Transform
+ pos: 63.5,21.5
+ parent: 2
+ - uid: 10443
+ components:
+ - type: Transform
+ pos: 63.5,22.5
+ parent: 2
+ - uid: 10444
+ components:
+ - type: Transform
+ pos: 62.5,23.5
+ parent: 2
+ - uid: 10445
+ components:
+ - type: Transform
+ pos: 62.5,24.5
+ parent: 2
+ - uid: 10446
+ components:
+ - type: Transform
+ pos: 62.5,25.5
+ parent: 2
+ - uid: 10447
+ components:
+ - type: Transform
+ pos: 62.5,26.5
+ parent: 2
+ - uid: 10448
+ components:
+ - type: Transform
+ pos: 62.5,27.5
+ parent: 2
+ - uid: 10449
+ components:
+ - type: Transform
+ pos: 62.5,28.5
+ parent: 2
+ - uid: 10450
+ components:
+ - type: Transform
+ pos: 61.5,29.5
+ parent: 2
+ - uid: 10451
+ components:
+ - type: Transform
+ pos: 61.5,30.5
+ parent: 2
+ - uid: 10452
+ components:
+ - type: Transform
+ pos: 60.5,30.5
+ parent: 2
+ - uid: 10453
+ components:
+ - type: Transform
+ pos: 62.5,29.5
+ parent: 2
+ - uid: 10454
+ components:
+ - type: Transform
+ pos: 60.5,32.5
+ parent: 2
+ - uid: 10455
+ components:
+ - type: Transform
+ pos: 60.5,31.5
+ parent: 2
+ - uid: 10456
+ components:
+ - type: Transform
+ pos: 59.5,31.5
+ parent: 2
+ - uid: 10457
+ components:
+ - type: Transform
+ pos: 60.5,33.5
+ parent: 2
+ - uid: 10458
+ components:
+ - type: Transform
+ pos: 61.5,33.5
+ parent: 2
+ - uid: 10459
+ components:
+ - type: Transform
+ pos: 62.5,33.5
+ parent: 2
+ - uid: 10460
+ components:
+ - type: Transform
+ pos: 63.5,33.5
+ parent: 2
+ - uid: 10461
+ components:
+ - type: Transform
+ pos: 64.5,33.5
+ parent: 2
+ - uid: 10462
+ components:
+ - type: Transform
+ pos: 64.5,34.5
+ parent: 2
+ - uid: 10463
+ components:
+ - type: Transform
+ pos: 65.5,34.5
+ parent: 2
+ - uid: 10464
+ components:
+ - type: Transform
+ pos: 66.5,35.5
+ parent: 2
+ - uid: 10465
+ components:
+ - type: Transform
+ pos: 66.5,36.5
+ parent: 2
+ - uid: 10466
+ components:
+ - type: Transform
+ pos: 67.5,35.5
+ parent: 2
+ - uid: 10467
+ components:
+ - type: Transform
+ pos: 67.5,36.5
+ parent: 2
+ - uid: 10468
+ components:
+ - type: Transform
+ pos: 68.5,37.5
+ parent: 2
+ - uid: 10469
+ components:
+ - type: Transform
+ pos: 69.5,37.5
+ parent: 2
+ - uid: 10470
+ components:
+ - type: Transform
+ pos: 70.5,38.5
+ parent: 2
+ - uid: 10471
+ components:
+ - type: Transform
+ pos: 70.5,37.5
+ parent: 2
+ - uid: 10472
+ components:
+ - type: Transform
+ pos: 71.5,38.5
+ parent: 2
+ - uid: 10473
+ components:
+ - type: Transform
+ pos: 72.5,38.5
+ parent: 2
+ - uid: 10474
+ components:
+ - type: Transform
+ pos: 72.5,39.5
+ parent: 2
+ - uid: 10475
+ components:
+ - type: Transform
+ pos: 73.5,39.5
+ parent: 2
+ - uid: 10476
+ components:
+ - type: Transform
+ pos: 73.5,40.5
+ parent: 2
+ - uid: 10477
+ components:
+ - type: Transform
+ pos: 74.5,41.5
+ parent: 2
+ - uid: 10478
+ components:
+ - type: Transform
+ pos: 74.5,42.5
+ parent: 2
+ - uid: 10479
+ components:
+ - type: Transform
+ pos: 74.5,40.5
+ parent: 2
+ - uid: 10480
+ components:
+ - type: Transform
+ pos: 73.5,44.5
+ parent: 2
+ - uid: 10481
+ components:
+ - type: Transform
+ pos: 74.5,43.5
+ parent: 2
+ - uid: 10482
+ components:
+ - type: Transform
+ pos: 73.5,43.5
+ parent: 2
+ - uid: 10483
+ components:
+ - type: Transform
+ pos: 72.5,48.5
+ parent: 2
+ - uid: 10484
+ components:
+ - type: Transform
+ pos: 73.5,45.5
+ parent: 2
+ - uid: 10485
+ components:
+ - type: Transform
+ pos: 72.5,45.5
+ parent: 2
+ - uid: 10486
+ components:
+ - type: Transform
+ pos: 72.5,46.5
+ parent: 2
+ - uid: 10487
+ components:
+ - type: Transform
+ pos: 71.5,46.5
+ parent: 2
+ - uid: 10488
+ components:
+ - type: Transform
+ pos: 71.5,47.5
+ parent: 2
+ - uid: 10489
+ components:
+ - type: Transform
+ pos: 70.5,47.5
+ parent: 2
+ - uid: 10490
+ components:
+ - type: Transform
+ pos: 72.5,47.5
+ parent: 2
+ - uid: 10491
+ components:
+ - type: Transform
+ pos: 73.5,48.5
+ parent: 2
+ - uid: 10493
+ components:
+ - type: Transform
+ pos: 74.5,48.5
+ parent: 2
+ - uid: 10494
+ components:
+ - type: Transform
+ pos: 78.5,48.5
+ parent: 2
+ - uid: 10495
+ components:
+ - type: Transform
+ pos: 77.5,48.5
+ parent: 2
+ - uid: 10496
+ components:
+ - type: Transform
+ pos: 76.5,48.5
+ parent: 2
+ - uid: 10497
+ components:
+ - type: Transform
+ pos: 75.5,48.5
+ parent: 2
+ - uid: 10499
+ components:
+ - type: Transform
+ pos: 78.5,49.5
+ parent: 2
+ - uid: 10500
+ components:
+ - type: Transform
+ pos: 79.5,49.5
+ parent: 2
+ - uid: 10501
+ components:
+ - type: Transform
+ pos: 81.5,49.5
+ parent: 2
+ - uid: 10502
+ components:
+ - type: Transform
+ pos: 80.5,49.5
+ parent: 2
+ - uid: 10503
+ components:
+ - type: Transform
+ pos: 82.5,49.5
+ parent: 2
+ - uid: 10504
+ components:
+ - type: Transform
+ pos: 83.5,49.5
+ parent: 2
+ - uid: 10505
+ components:
+ - type: Transform
+ pos: 83.5,50.5
+ parent: 2
+ - uid: 10506
+ components:
+ - type: Transform
+ pos: 84.5,50.5
+ parent: 2
+ - uid: 10507
+ components:
+ - type: Transform
+ pos: 85.5,50.5
+ parent: 2
+ - uid: 10508
+ components:
+ - type: Transform
+ pos: 86.5,50.5
+ parent: 2
+ - uid: 10509
+ components:
+ - type: Transform
+ pos: 87.5,50.5
+ parent: 2
+ - uid: 10510
+ components:
+ - type: Transform
+ pos: 87.5,51.5
+ parent: 2
+ - uid: 10511
+ components:
+ - type: Transform
+ pos: 88.5,51.5
+ parent: 2
+ - uid: 10512
+ components:
+ - type: Transform
+ pos: 89.5,51.5
+ parent: 2
+ - uid: 10513
+ components:
+ - type: Transform
+ pos: 89.5,52.5
+ parent: 2
+ - uid: 10514
+ components:
+ - type: Transform
+ pos: 87.5,60.5
+ parent: 2
+ - uid: 10515
+ components:
+ - type: Transform
+ pos: 85.5,60.5
+ parent: 2
+ - uid: 10516
+ components:
+ - type: Transform
+ pos: 86.5,60.5
+ parent: 2
+ - uid: 10518
+ components:
+ - type: Transform
+ pos: 89.5,60.5
+ parent: 2
+ - uid: 10519
+ components:
+ - type: Transform
+ pos: 88.5,60.5
+ parent: 2
+ - uid: 10520
+ components:
+ - type: Transform
+ pos: 90.5,52.5
+ parent: 2
+ - uid: 10521
+ components:
+ - type: Transform
+ pos: 90.5,53.5
+ parent: 2
+ - uid: 10522
+ components:
+ - type: Transform
+ pos: 85.5,59.5
+ parent: 2
+ - uid: 10523
+ components:
+ - type: Transform
+ pos: 84.5,59.5
+ parent: 2
+ - uid: 10524
+ components:
+ - type: Transform
+ pos: 88.5,59.5
+ parent: 2
+ - uid: 10525
+ components:
+ - type: Transform
+ pos: 85.5,58.5
+ parent: 2
+ - uid: 10526
+ components:
+ - type: Transform
+ pos: 87.5,58.5
+ parent: 2
+ - uid: 10527
+ components:
+ - type: Transform
+ pos: 88.5,57.5
+ parent: 2
+ - uid: 10528
+ components:
+ - type: Transform
+ pos: 86.5,58.5
+ parent: 2
+ - uid: 10529
+ components:
+ - type: Transform
+ pos: 87.5,59.5
+ parent: 2
+ - uid: 10530
+ components:
+ - type: Transform
+ pos: 86.5,59.5
+ parent: 2
+ - uid: 10531
+ components:
+ - type: Transform
+ pos: 89.5,55.5
+ parent: 2
+ - uid: 10532
+ components:
+ - type: Transform
+ pos: 90.5,56.5
+ parent: 2
+ - uid: 10533
+ components:
+ - type: Transform
+ pos: 89.5,56.5
+ parent: 2
+ - uid: 10534
+ components:
+ - type: Transform
+ pos: 90.5,54.5
+ parent: 2
+ - uid: 10535
+ components:
+ - type: Transform
+ pos: 94.5,66.5
+ parent: 2
+ - uid: 10536
+ components:
+ - type: Transform
+ pos: 88.5,58.5
+ parent: 2
+ - uid: 10537
+ components:
+ - type: Transform
+ pos: 94.5,69.5
+ parent: 2
+ - uid: 10538
+ components:
+ - type: Transform
+ pos: 90.5,55.5
+ parent: 2
+ - uid: 10539
+ components:
+ - type: Transform
+ pos: 89.5,57.5
+ parent: 2
+ - uid: 10540
+ components:
+ - type: Transform
+ pos: 89.5,58.5
+ parent: 2
+ - uid: 10541
+ components:
+ - type: Transform
+ pos: 95.5,70.5
+ parent: 2
+ - uid: 10542
+ components:
+ - type: Transform
+ pos: 93.5,65.5
+ parent: 2
+ - uid: 10543
+ components:
+ - type: Transform
+ pos: 92.5,64.5
+ parent: 2
+ - uid: 10544
+ components:
+ - type: Transform
+ pos: 93.5,64.5
+ parent: 2
+ - uid: 10545
+ components:
+ - type: Transform
+ pos: 94.5,64.5
+ parent: 2
+ - uid: 10546
+ components:
+ - type: Transform
+ pos: 94.5,65.5
+ parent: 2
+ - uid: 10547
+ components:
+ - type: Transform
+ pos: 95.5,65.5
+ parent: 2
+ - uid: 10548
+ components:
+ - type: Transform
+ pos: 95.5,66.5
+ parent: 2
+ - uid: 10549
+ components:
+ - type: Transform
+ pos: 95.5,69.5
+ parent: 2
+ - uid: 10550
+ components:
+ - type: Transform
+ pos: 96.5,70.5
+ parent: 2
+ - uid: 10551
+ components:
+ - type: Transform
+ pos: 90.5,64.5
+ parent: 2
+ - uid: 10552
+ components:
+ - type: Transform
+ pos: 91.5,64.5
+ parent: 2
+ - uid: 10553
+ components:
+ - type: Transform
+ pos: 92.5,65.5
+ parent: 2
+ - uid: 10554
+ components:
+ - type: Transform
+ pos: 93.5,66.5
+ parent: 2
+ - uid: 10555
+ components:
+ - type: Transform
+ pos: 91.5,63.5
+ parent: 2
+ - uid: 10556
+ components:
+ - type: Transform
+ pos: 90.5,60.5
+ parent: 2
+ - uid: 10557
+ components:
+ - type: Transform
+ pos: 93.5,57.5
+ parent: 2
+ - uid: 10558
+ components:
+ - type: Transform
+ pos: 93.5,58.5
+ parent: 2
+ - uid: 10559
+ components:
+ - type: Transform
+ pos: 91.5,60.5
+ parent: 2
+ - uid: 10560
+ components:
+ - type: Transform
+ pos: 92.5,58.5
+ parent: 2
+ - uid: 10561
+ components:
+ - type: Transform
+ pos: 92.5,59.5
+ parent: 2
+ - uid: 10562
+ components:
+ - type: Transform
+ pos: 91.5,59.5
+ parent: 2
+ - uid: 10563
+ components:
+ - type: Transform
+ pos: 89.5,59.5
+ parent: 2
+ - uid: 10564
+ components:
+ - type: Transform
+ pos: 92.5,63.5
+ parent: 2
+ - uid: 10565
+ components:
+ - type: Transform
+ pos: 94.5,57.5
+ parent: 2
+ - uid: 10566
+ components:
+ - type: Transform
+ pos: 95.5,57.5
+ parent: 2
+ - uid: 10567
+ components:
+ - type: Transform
+ pos: 94.5,58.5
+ parent: 2
+ - uid: 10568
+ components:
+ - type: Transform
+ pos: 96.5,57.5
+ parent: 2
+ - uid: 10569
+ components:
+ - type: Transform
+ pos: 90.5,59.5
+ parent: 2
+ - uid: 10570
+ components:
+ - type: Transform
+ pos: 107.5,49.5
+ parent: 2
+ - uid: 10579
+ components:
+ - type: Transform
+ pos: 91.5,41.5
+ parent: 2
+ - uid: 10580
+ components:
+ - type: Transform
+ pos: 91.5,39.5
+ parent: 2
+ - uid: 10581
+ components:
+ - type: Transform
+ pos: 87.5,32.5
+ parent: 2
+ - uid: 10582
+ components:
+ - type: Transform
+ pos: 89.5,38.5
+ parent: 2
+ - uid: 10583
+ components:
+ - type: Transform
+ pos: 87.5,37.5
+ parent: 2
+ - uid: 10584
+ components:
+ - type: Transform
+ pos: 88.5,38.5
+ parent: 2
+ - uid: 10585
+ components:
+ - type: Transform
+ pos: 87.5,31.5
+ parent: 2
+ - uid: 10586
+ components:
+ - type: Transform
+ pos: 89.5,39.5
+ parent: 2
+ - uid: 10587
+ components:
+ - type: Transform
+ pos: 90.5,39.5
+ parent: 2
+ - uid: 10588
+ components:
+ - type: Transform
+ pos: 94.5,48.5
+ parent: 2
+ - uid: 10589
+ components:
+ - type: Transform
+ pos: 92.5,44.5
+ parent: 2
+ - uid: 10590
+ components:
+ - type: Transform
+ pos: 91.5,44.5
+ parent: 2
+ - uid: 10591
+ components:
+ - type: Transform
+ pos: 87.5,34.5
+ parent: 2
+ - uid: 10592
+ components:
+ - type: Transform
+ pos: 93.5,47.5
+ parent: 2
+ - uid: 10593
+ components:
+ - type: Transform
+ pos: 95.5,48.5
+ parent: 2
+ - uid: 10594
+ components:
+ - type: Transform
+ pos: 94.5,47.5
+ parent: 2
+ - uid: 10595
+ components:
+ - type: Transform
+ pos: 88.5,32.5
+ parent: 2
+ - uid: 10596
+ components:
+ - type: Transform
+ pos: 87.5,33.5
+ parent: 2
+ - uid: 10597
+ components:
+ - type: Transform
+ pos: 88.5,37.5
+ parent: 2
+ - uid: 10598
+ components:
+ - type: Transform
+ pos: 87.5,36.5
+ parent: 2
+ - uid: 10599
+ components:
+ - type: Transform
+ pos: 87.5,35.5
+ parent: 2
+ - uid: 10600
+ components:
+ - type: Transform
+ pos: 92.5,46.5
+ parent: 2
+ - uid: 10601
+ components:
+ - type: Transform
+ pos: 93.5,46.5
+ parent: 2
+ - uid: 10602
+ components:
+ - type: Transform
+ pos: 92.5,45.5
+ parent: 2
+ - uid: 10603
+ components:
+ - type: Transform
+ pos: 98.5,50.5
+ parent: 2
+ - uid: 10604
+ components:
+ - type: Transform
+ pos: 98.5,51.5
+ parent: 2
+ - uid: 10605
+ components:
+ - type: Transform
+ pos: 99.5,51.5
+ parent: 2
+ - uid: 10606
+ components:
+ - type: Transform
+ pos: 100.5,51.5
+ parent: 2
+ - uid: 10607
+ components:
+ - type: Transform
+ pos: 100.5,52.5
+ parent: 2
+ - uid: 10608
+ components:
+ - type: Transform
+ pos: 101.5,52.5
+ parent: 2
+ - uid: 10609
+ components:
+ - type: Transform
+ pos: 102.5,52.5
+ parent: 2
+ - uid: 10610
+ components:
+ - type: Transform
+ pos: 103.5,52.5
+ parent: 2
+ - uid: 10611
+ components:
+ - type: Transform
+ pos: 103.5,53.5
+ parent: 2
+ - uid: 10612
+ components:
+ - type: Transform
+ pos: 104.5,53.5
+ parent: 2
+ - uid: 10613
+ components:
+ - type: Transform
+ pos: 105.5,53.5
+ parent: 2
+ - uid: 10614
+ components:
+ - type: Transform
+ pos: 106.5,53.5
+ parent: 2
+ - uid: 10615
+ components:
+ - type: Transform
+ pos: 107.5,53.5
+ parent: 2
+ - uid: 10616
+ components:
+ - type: Transform
+ pos: 108.5,53.5
+ parent: 2
+ - uid: 10617
+ components:
+ - type: Transform
+ pos: 109.5,53.5
+ parent: 2
+ - uid: 10618
+ components:
+ - type: Transform
+ pos: 109.5,52.5
+ parent: 2
+ - uid: 10619
+ components:
+ - type: Transform
+ pos: 96.5,48.5
+ parent: 2
+ - uid: 10620
+ components:
+ - type: Transform
+ pos: 97.5,48.5
+ parent: 2
+ - uid: 10621
+ components:
+ - type: Transform
+ pos: 97.5,49.5
+ parent: 2
+ - uid: 10622
+ components:
+ - type: Transform
+ pos: 108.5,52.5
+ parent: 2
+ - uid: 10623
+ components:
+ - type: Transform
+ pos: 109.5,51.5
+ parent: 2
+ - uid: 10624
+ components:
+ - type: Transform
+ pos: 110.5,52.5
+ parent: 2
+ - uid: 10625
+ components:
+ - type: Transform
+ pos: 110.5,53.5
+ parent: 2
+ - uid: 10626
+ components:
+ - type: Transform
+ pos: 111.5,53.5
+ parent: 2
+ - uid: 10627
+ components:
+ - type: Transform
+ pos: 110.5,54.5
+ parent: 2
+ - uid: 10628
+ components:
+ - type: Transform
+ pos: 110.5,55.5
+ parent: 2
+ - uid: 10629
+ components:
+ - type: Transform
+ pos: 109.5,56.5
+ parent: 2
+ - uid: 10630
+ components:
+ - type: Transform
+ pos: 109.5,55.5
+ parent: 2
+ - uid: 10631
+ components:
+ - type: Transform
+ pos: 109.5,57.5
+ parent: 2
+ - uid: 10632
+ components:
+ - type: Transform
+ pos: 109.5,58.5
+ parent: 2
+ - uid: 10633
+ components:
+ - type: Transform
+ pos: 111.5,61.5
+ parent: 2
+ - uid: 10634
+ components:
+ - type: Transform
+ pos: 110.5,59.5
+ parent: 2
+ - uid: 10635
+ components:
+ - type: Transform
+ pos: 110.5,60.5
+ parent: 2
+ - uid: 10636
+ components:
+ - type: Transform
+ pos: 111.5,60.5
+ parent: 2
+ - uid: 10637
+ components:
+ - type: Transform
+ pos: 109.5,59.5
+ parent: 2
+ - uid: 10638
+ components:
+ - type: Transform
+ pos: 112.5,61.5
+ parent: 2
+ - uid: 10639
+ components:
+ - type: Transform
+ pos: 112.5,62.5
+ parent: 2
+ - uid: 10640
+ components:
+ - type: Transform
+ pos: 113.5,62.5
+ parent: 2
+ - uid: 10641
+ components:
+ - type: Transform
+ pos: 113.5,63.5
+ parent: 2
+ - uid: 10642
+ components:
+ - type: Transform
+ pos: 114.5,63.5
+ parent: 2
+ - uid: 10643
+ components:
+ - type: Transform
+ pos: 115.5,63.5
+ parent: 2
+ - uid: 10644
+ components:
+ - type: Transform
+ pos: 115.5,64.5
+ parent: 2
+ - uid: 10645
+ components:
+ - type: Transform
+ pos: 116.5,64.5
+ parent: 2
+ - uid: 10646
+ components:
+ - type: Transform
+ pos: 117.5,64.5
+ parent: 2
+ - uid: 10647
+ components:
+ - type: Transform
+ pos: 118.5,64.5
+ parent: 2
+ - uid: 10648
+ components:
+ - type: Transform
+ pos: 117.5,65.5
+ parent: 2
+ - uid: 10649
+ components:
+ - type: Transform
+ pos: 116.5,65.5
+ parent: 2
+ - uid: 10650
+ components:
+ - type: Transform
+ pos: 115.5,65.5
+ parent: 2
+ - uid: 10651
+ components:
+ - type: Transform
+ pos: 114.5,65.5
+ parent: 2
+ - uid: 10652
+ components:
+ - type: Transform
+ pos: 113.5,65.5
+ parent: 2
+ - uid: 10653
+ components:
+ - type: Transform
+ pos: 112.5,64.5
+ parent: 2
+ - uid: 10654
+ components:
+ - type: Transform
+ pos: 110.5,64.5
+ parent: 2
+ - uid: 10655
+ components:
+ - type: Transform
+ pos: 111.5,63.5
+ parent: 2
+ - uid: 10656
+ components:
+ - type: Transform
+ pos: 113.5,64.5
+ parent: 2
+ - uid: 10657
+ components:
+ - type: Transform
+ pos: 110.5,63.5
+ parent: 2
+ - uid: 10658
+ components:
+ - type: Transform
+ pos: 109.5,63.5
+ parent: 2
+ - uid: 10659
+ components:
+ - type: Transform
+ pos: 108.5,62.5
+ parent: 2
+ - uid: 10660
+ components:
+ - type: Transform
+ pos: 109.5,62.5
+ parent: 2
+ - uid: 10661
+ components:
+ - type: Transform
+ pos: 108.5,61.5
+ parent: 2
+ - uid: 10662
+ components:
+ - type: Transform
+ pos: 107.5,61.5
+ parent: 2
+ - uid: 10663
+ components:
+ - type: Transform
+ pos: 107.5,60.5
+ parent: 2
+ - uid: 10664
+ components:
+ - type: Transform
+ pos: 106.5,60.5
+ parent: 2
+ - uid: 10665
+ components:
+ - type: Transform
+ pos: 106.5,59.5
+ parent: 2
+ - uid: 10666
+ components:
+ - type: Transform
+ pos: 105.5,59.5
+ parent: 2
+ - uid: 10667
+ components:
+ - type: Transform
+ pos: 105.5,58.5
+ parent: 2
+ - uid: 10668
+ components:
+ - type: Transform
+ pos: 104.5,58.5
+ parent: 2
+ - uid: 10669
+ components:
+ - type: Transform
+ pos: 104.5,57.5
+ parent: 2
+ - uid: 10670
+ components:
+ - type: Transform
+ pos: 97.5,57.5
+ parent: 2
+ - uid: 10671
+ components:
+ - type: Transform
+ pos: 92.5,29.5
+ parent: 2
+ - uid: 10672
+ components:
+ - type: Transform
+ pos: 96.5,33.5
+ parent: 2
+ - uid: 10673
+ components:
+ - type: Transform
+ pos: 103.5,56.5
+ parent: 2
+ - uid: 10674
+ components:
+ - type: Transform
+ pos: 101.5,55.5
+ parent: 2
+ - uid: 10675
+ components:
+ - type: Transform
+ pos: 102.5,56.5
+ parent: 2
+ - uid: 10676
+ components:
+ - type: Transform
+ pos: 96.5,44.5
+ parent: 2
+ - uid: 10677
+ components:
+ - type: Transform
+ pos: 101.5,56.5
+ parent: 2
+ - uid: 10678
+ components:
+ - type: Transform
+ pos: 112.5,63.5
+ parent: 2
+ - uid: 10679
+ components:
+ - type: Transform
+ pos: 114.5,64.5
+ parent: 2
+ - uid: 10680
+ components:
+ - type: Transform
+ pos: 96.5,66.5
+ parent: 2
+ - uid: 10681
+ components:
+ - type: Transform
+ pos: 98.5,66.5
+ parent: 2
+ - uid: 10682
+ components:
+ - type: Transform
+ pos: 97.5,66.5
+ parent: 2
+ - uid: 10683
+ components:
+ - type: Transform
+ pos: 99.5,67.5
+ parent: 2
+ - uid: 10684
+ components:
+ - type: Transform
+ pos: 101.5,67.5
+ parent: 2
+ - uid: 10685
+ components:
+ - type: Transform
+ pos: 100.5,67.5
+ parent: 2
+ - uid: 10686
+ components:
+ - type: Transform
+ pos: 102.5,67.5
+ parent: 2
+ - uid: 10687
+ components:
+ - type: Transform
+ pos: 102.5,66.5
+ parent: 2
+ - uid: 10688
+ components:
+ - type: Transform
+ pos: 103.5,65.5
+ parent: 2
+ - uid: 10689
+ components:
+ - type: Transform
+ pos: 103.5,64.5
+ parent: 2
+ - uid: 10690
+ components:
+ - type: Transform
+ pos: 103.5,63.5
+ parent: 2
+ - uid: 10691
+ components:
+ - type: Transform
+ pos: 102.5,63.5
+ parent: 2
+ - uid: 10692
+ components:
+ - type: Transform
+ pos: 101.5,63.5
+ parent: 2
+ - uid: 10693
+ components:
+ - type: Transform
+ pos: 100.5,64.5
+ parent: 2
+ - uid: 10694
+ components:
+ - type: Transform
+ pos: 99.5,64.5
+ parent: 2
+ - uid: 10695
+ components:
+ - type: Transform
+ pos: 99.5,65.5
+ parent: 2
+ - uid: 10696
+ components:
+ - type: Transform
+ pos: 99.5,66.5
+ parent: 2
+ - uid: 10697
+ components:
+ - type: Transform
+ pos: 100.5,66.5
+ parent: 2
+ - uid: 10698
+ components:
+ - type: Transform
+ pos: 101.5,66.5
+ parent: 2
+ - uid: 10699
+ components:
+ - type: Transform
+ pos: 101.5,65.5
+ parent: 2
+ - uid: 10700
+ components:
+ - type: Transform
+ pos: 100.5,65.5
+ parent: 2
+ - uid: 10701
+ components:
+ - type: Transform
+ pos: 102.5,65.5
+ parent: 2
+ - uid: 10702
+ components:
+ - type: Transform
+ pos: 102.5,64.5
+ parent: 2
+ - uid: 10703
+ components:
+ - type: Transform
+ pos: 101.5,64.5
+ parent: 2
+ - uid: 10704
+ components:
+ - type: Transform
+ pos: 102.5,62.5
+ parent: 2
+ - uid: 10705
+ components:
+ - type: Transform
+ pos: 98.5,65.5
+ parent: 2
+ - uid: 10706
+ components:
+ - type: Transform
+ pos: 109.5,54.5
+ parent: 2
+ - uid: 10707
+ components:
+ - type: Transform
+ pos: 110.5,62.5
+ parent: 2
+ - uid: 10708
+ components:
+ - type: Transform
+ pos: 111.5,62.5
+ parent: 2
+ - uid: 10709
+ components:
+ - type: Transform
+ pos: 110.5,61.5
+ parent: 2
+ - uid: 10710
+ components:
+ - type: Transform
+ pos: 109.5,61.5
+ parent: 2
+ - uid: 10711
+ components:
+ - type: Transform
+ pos: 109.5,60.5
+ parent: 2
+ - uid: 10712
+ components:
+ - type: Transform
+ pos: 108.5,60.5
+ parent: 2
+ - uid: 10713
+ components:
+ - type: Transform
+ pos: 104.5,47.5
+ parent: 2
+ - uid: 10714
+ components:
+ - type: Transform
+ pos: 90.5,58.5
+ parent: 2
+ - uid: 10715
+ components:
+ - type: Transform
+ pos: 91.5,58.5
+ parent: 2
+ - uid: 10716
+ components:
+ - type: Transform
+ pos: 90.5,57.5
+ parent: 2
+ - uid: 10899
+ components:
+ - type: Transform
+ pos: 52.5,-19.5
+ parent: 2
+ - uid: 10923
+ components:
+ - type: Transform
+ pos: 50.5,-21.5
+ parent: 2
+ - uid: 11026
+ components:
+ - type: Transform
+ pos: 49.5,-22.5
+ parent: 2
+ - uid: 11050
+ components:
+ - type: Transform
+ pos: 48.5,-23.5
+ parent: 2
+ - uid: 11058
+ components:
+ - type: Transform
+ pos: 55.5,-9.5
+ parent: 2
+ - uid: 11070
+ components:
+ - type: Transform
+ pos: 54.5,-9.5
+ parent: 2
+ - uid: 11082
+ components:
+ - type: Transform
+ pos: 56.5,-8.5
+ parent: 2
+ - uid: 11159
+ components:
+ - type: Transform
+ pos: 54.5,-8.5
+ parent: 2
+ - uid: 11160
+ components:
+ - type: Transform
+ pos: 55.5,-8.5
+ parent: 2
+ - uid: 11187
+ components:
+ - type: Transform
+ pos: 44.5,-26.5
+ parent: 2
+ - uid: 11194
+ components:
+ - type: Transform
+ pos: 44.5,-27.5
+ parent: 2
+ - uid: 11195
+ components:
+ - type: Transform
+ pos: 45.5,-26.5
+ parent: 2
+ - uid: 11201
+ components:
+ - type: Transform
+ pos: 47.5,-24.5
+ parent: 2
+ - uid: 11203
+ components:
+ - type: Transform
+ pos: 60.5,8.5
+ parent: 2
+ - uid: 11204
+ components:
+ - type: Transform
+ pos: 58.5,5.5
+ parent: 2
+ - uid: 11205
+ components:
+ - type: Transform
+ pos: 58.5,4.5
+ parent: 2
+ - uid: 11306
+ components:
+ - type: Transform
+ pos: 59.5,8.5
+ parent: 2
+ - uid: 11307
+ components:
+ - type: Transform
+ pos: 58.5,6.5
+ parent: 2
+ - uid: 11321
+ components:
+ - type: Transform
+ pos: 59.5,5.5
+ parent: 2
+ - uid: 11353
+ components:
+ - type: Transform
+ pos: 58.5,8.5
+ parent: 2
+ - uid: 11358
+ components:
+ - type: Transform
+ pos: 59.5,6.5
+ parent: 2
+ - uid: 11359
+ components:
+ - type: Transform
+ pos: 58.5,7.5
+ parent: 2
+ - uid: 11360
+ components:
+ - type: Transform
+ pos: 59.5,7.5
+ parent: 2
+ - uid: 11361
+ components:
+ - type: Transform
+ pos: 60.5,7.5
+ parent: 2
+ - uid: 11362
+ components:
+ - type: Transform
+ pos: 61.5,8.5
+ parent: 2
+ - uid: 11363
+ components:
+ - type: Transform
+ pos: 75.5,7.5
+ parent: 2
+ - uid: 11364
+ components:
+ - type: Transform
+ pos: 76.5,7.5
+ parent: 2
+ - uid: 11365
+ components:
+ - type: Transform
+ pos: 77.5,8.5
+ parent: 2
+ - uid: 11568
+ components:
+ - type: Transform
+ pos: 77.5,7.5
+ parent: 2
+ - uid: 11602
+ components:
+ - type: Transform
+ pos: 74.5,6.5
+ parent: 2
+ - uid: 11690
+ components:
+ - type: Transform
+ pos: 79.5,9.5
+ parent: 2
+ - uid: 11787
+ components:
+ - type: Transform
+ pos: 54.5,-17.5
+ parent: 2
+ - uid: 11819
+ components:
+ - type: Transform
+ pos: 78.5,8.5
+ parent: 2
+ - uid: 11822
+ components:
+ - type: Transform
+ pos: 76.5,8.5
+ parent: 2
+ - uid: 11866
+ components:
+ - type: Transform
+ pos: 77.5,9.5
+ parent: 2
+ - uid: 11899
+ components:
+ - type: Transform
+ pos: 79.5,8.5
+ parent: 2
+ - uid: 11915
+ components:
+ - type: Transform
+ pos: 78.5,9.5
+ parent: 2
+ - uid: 11917
+ components:
+ - type: Transform
+ pos: 46.5,-25.5
+ parent: 2
+ - uid: 12131
+ components:
+ - type: Transform
+ pos: 53.5,-18.5
+ parent: 2
+ - uid: 12254
+ components:
+ - type: Transform
+ pos: 98.5,56.5
+ parent: 2
+ - uid: 12264
+ components:
+ - type: Transform
+ pos: 97.5,56.5
+ parent: 2
+ - uid: 12265
+ components:
+ - type: Transform
+ pos: 90.5,28.5
+ parent: 2
+ - uid: 12266
+ components:
+ - type: Transform
+ pos: 85.5,6.5
+ parent: 2
+ - uid: 12268
+ components:
+ - type: Transform
+ pos: 92.5,35.5
+ parent: 2
+ - uid: 12269
+ components:
+ - type: Transform
+ pos: 103.5,57.5
+ parent: 2
+ - uid: 12270
+ components:
+ - type: Transform
+ pos: 93.5,27.5
+ parent: 2
+ - uid: 12271
+ components:
+ - type: Transform
+ pos: 87.5,7.5
+ parent: 2
+ - uid: 12274
+ components:
+ - type: Transform
+ pos: 99.5,55.5
+ parent: 2
+ - uid: 12275
+ components:
+ - type: Transform
+ pos: 77.5,-7.5
+ parent: 2
+ - uid: 12278
+ components:
+ - type: Transform
+ pos: 85.5,9.5
+ parent: 2
+ - uid: 12279
+ components:
+ - type: Transform
+ pos: 81.5,-12.5
+ parent: 2
+ - uid: 12280
+ components:
+ - type: Transform
+ pos: 98.5,55.5
+ parent: 2
+ - uid: 12282
+ components:
+ - type: Transform
+ pos: 100.5,55.5
+ parent: 2
+ - uid: 12286
+ components:
+ - type: Transform
+ pos: 80.5,-8.5
+ parent: 2
+ - uid: 12287
+ components:
+ - type: Transform
+ pos: 79.5,-7.5
+ parent: 2
+ - uid: 12290
+ components:
+ - type: Transform
+ pos: 83.5,-6.5
+ parent: 2
+ - uid: 12299
+ components:
+ - type: Transform
+ pos: 80.5,-7.5
+ parent: 2
+- proto: CP14WallStonebrick
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ pos: -31.5,20.5
+ parent: 2
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 10.5,-10.5
+ parent: 2
+ - uid: 43
+ components:
+ - type: Transform
+ pos: -43.5,-15.5
+ parent: 2
+ - uid: 44
+ components:
+ - type: Transform
+ pos: -51.5,-11.5
+ parent: 2
+ - uid: 134
+ components:
+ - type: Transform
+ pos: -16.5,3.5
+ parent: 2
+ - uid: 135
+ components:
+ - type: Transform
+ pos: -16.5,4.5
+ parent: 2
+ - uid: 136
+ components:
+ - type: Transform
+ pos: -14.5,3.5
+ parent: 2
+ - uid: 137
+ components:
+ - type: Transform
+ pos: -13.5,3.5
+ parent: 2
+ - uid: 138
+ components:
+ - type: Transform
+ pos: -13.5,6.5
+ parent: 2
+ - uid: 139
+ components:
+ - type: Transform
+ pos: -15.5,9.5
+ parent: 2
+ - uid: 140
+ components:
+ - type: Transform
+ pos: -16.5,6.5
+ parent: 2
+ - uid: 141
+ components:
+ - type: Transform
+ pos: -16.5,5.5
+ parent: 2
+ - uid: 142
+ components:
+ - type: Transform
+ pos: -16.5,7.5
+ parent: 2
+ - uid: 143
+ components:
+ - type: Transform
+ pos: -16.5,8.5
+ parent: 2
+ - uid: 144
+ components:
+ - type: Transform
+ pos: -16.5,9.5
+ parent: 2
+ - uid: 145
+ components:
+ - type: Transform
+ pos: -16.5,10.5
+ parent: 2
+ - uid: 146
+ components:
+ - type: Transform
+ pos: -16.5,11.5
+ parent: 2
+ - uid: 147
+ components:
+ - type: Transform
+ pos: -15.5,11.5
+ parent: 2
+ - uid: 148
+ components:
+ - type: Transform
+ pos: -14.5,11.5
+ parent: 2
+ - uid: 149
+ components:
+ - type: Transform
+ pos: -13.5,11.5
+ parent: 2
+ - uid: 150
+ components:
+ - type: Transform
+ pos: -9.5,9.5
+ parent: 2
+ - uid: 151
+ components:
+ - type: Transform
+ pos: -12.5,11.5
+ parent: 2
+ - uid: 152
+ components:
+ - type: Transform
+ pos: -11.5,11.5
+ parent: 2
+ - uid: 153
+ components:
+ - type: Transform
+ pos: -11.5,9.5
+ parent: 2
+ - uid: 154
+ components:
+ - type: Transform
+ pos: -10.5,9.5
+ parent: 2
+ - uid: 155
+ components:
+ - type: Transform
+ pos: -8.5,8.5
+ parent: 2
+ - uid: 156
+ components:
+ - type: Transform
+ pos: -8.5,7.5
+ parent: 2
+ - uid: 157
+ components:
+ - type: Transform
+ pos: -8.5,6.5
+ parent: 2
+ - uid: 158
+ components:
+ - type: Transform
+ pos: -8.5,5.5
+ parent: 2
+ - uid: 159
+ components:
+ - type: Transform
+ pos: -8.5,4.5
+ parent: 2
+ - uid: 160
+ components:
+ - type: Transform
+ pos: -8.5,3.5
+ parent: 2
+ - uid: 161
+ components:
+ - type: Transform
+ pos: -9.5,3.5
+ parent: 2
+ - uid: 162
+ components:
+ - type: Transform
+ pos: -12.5,3.5
+ parent: 2
+ - uid: 163
+ components:
+ - type: Transform
+ pos: -8.5,9.5
+ parent: 2
+ - uid: 164
+ components:
+ - type: Transform
+ pos: -15.5,6.5
+ parent: 2
+ - uid: 165
+ components:
+ - type: Transform
+ pos: -44.5,-15.5
+ parent: 2
+ - uid: 174
+ components:
+ - type: Transform
+ pos: 10.5,-15.5
+ parent: 2
+ - uid: 178
+ components:
+ - type: Transform
+ pos: -42.5,-14.5
+ parent: 2
+ - uid: 183
+ components:
+ - type: Transform
+ pos: -35.5,10.5
+ parent: 2
+ - uid: 192
+ components:
+ - type: Transform
+ pos: -40.5,10.5
+ parent: 2
+ - uid: 194
+ components:
+ - type: Transform
+ pos: -33.5,10.5
+ parent: 2
+ - uid: 259
+ components:
+ - type: Transform
+ pos: -50.5,7.5
+ parent: 2
+ - uid: 286
+ components:
+ - type: Transform
+ pos: -16.5,-22.5
+ parent: 2
+ - uid: 287
+ components:
+ - type: Transform
+ pos: -13.5,-20.5
+ parent: 2
+ - uid: 288
+ components:
+ - type: Transform
+ pos: -19.5,-19.5
+ parent: 2
+ - uid: 289
+ components:
+ - type: Transform
+ pos: -19.5,-20.5
+ parent: 2
+ - uid: 290
+ components:
+ - type: Transform
+ pos: -14.5,-20.5
+ parent: 2
+ - uid: 291
+ components:
+ - type: Transform
+ pos: -19.5,-21.5
+ parent: 2
+ - uid: 292
+ components:
+ - type: Transform
+ pos: -12.5,-24.5
+ parent: 2
+ - uid: 293
+ components:
+ - type: Transform
+ pos: -17.5,-22.5
+ parent: 2
+ - uid: 294
+ components:
+ - type: Transform
+ pos: -17.5,-24.5
+ parent: 2
+ - uid: 295
+ components:
+ - type: Transform
+ pos: -16.5,-24.5
+ parent: 2
+ - uid: 296
+ components:
+ - type: Transform
+ pos: -15.5,-24.5
+ parent: 2
+ - uid: 297
+ components:
+ - type: Transform
+ pos: -14.5,-24.5
+ parent: 2
+ - uid: 298
+ components:
+ - type: Transform
+ pos: -13.5,-24.5
+ parent: 2
+ - uid: 299
+ components:
+ - type: Transform
+ pos: -12.5,-23.5
+ parent: 2
+ - uid: 300
+ components:
+ - type: Transform
+ pos: -12.5,-21.5
+ parent: 2
+ - uid: 301
+ components:
+ - type: Transform
+ pos: -12.5,-20.5
+ parent: 2
+ - uid: 302
+ components:
+ - type: Transform
+ pos: -12.5,-19.5
+ parent: 2
+ - uid: 303
+ components:
+ - type: Transform
+ pos: -15.5,-15.5
+ parent: 2
+ - uid: 304
+ components:
+ - type: Transform
+ pos: -13.5,-15.5
+ parent: 2
+ - uid: 305
+ components:
+ - type: Transform
+ pos: -14.5,-15.5
+ parent: 2
+ - uid: 306
+ components:
+ - type: Transform
+ pos: -16.5,-15.5
+ parent: 2
+ - uid: 429
+ components:
+ - type: Transform
+ pos: -44.5,8.5
+ parent: 2
+ - uid: 436
+ components:
+ - type: Transform
+ pos: -44.5,10.5
+ parent: 2
+ - uid: 492
+ components:
+ - type: Transform
+ pos: -45.5,-15.5
+ parent: 2
+ - uid: 494
+ components:
+ - type: Transform
+ pos: -42.5,-15.5
+ parent: 2
+ - uid: 554
+ components:
+ - type: Transform
+ pos: -16.5,-19.5
+ parent: 2
+ - uid: 555
+ components:
+ - type: Transform
+ pos: -16.5,-20.5
+ parent: 2
+ - uid: 557
+ components:
+ - type: Transform
+ pos: -19.5,-24.5
+ parent: 2
+ - uid: 566
+ components:
+ - type: Transform
+ pos: -19.5,-23.5
+ parent: 2
+ - uid: 573
+ components:
+ - type: Transform
+ pos: 10.5,-26.5
+ parent: 2
+ - uid: 661
+ components:
+ - type: Transform
+ pos: 28.5,-26.5
+ parent: 2
+ - uid: 686
+ components:
+ - type: Transform
+ pos: 22.5,-7.5
+ parent: 2
+ - uid: 687
+ components:
+ - type: Transform
+ pos: 31.5,-7.5
+ parent: 2
+ - uid: 688
+ components:
+ - type: Transform
+ pos: 24.5,3.5
+ parent: 2
+ - uid: 689
+ components:
+ - type: Transform
+ pos: 22.5,3.5
+ parent: 2
+ - uid: 710
+ components:
+ - type: Transform
+ pos: 25.5,3.5
+ parent: 2
+ - uid: 711
+ components:
+ - type: Transform
+ pos: 24.5,5.5
+ parent: 2
+ - uid: 712
+ components:
+ - type: Transform
+ pos: 26.5,3.5
+ parent: 2
+ - uid: 719
+ components:
+ - type: Transform
+ pos: -43.5,-10.5
+ parent: 2
+ - uid: 720
+ components:
+ - type: Transform
+ pos: 37.5,27.5
+ parent: 2
+ - uid: 722
+ components:
+ - type: Transform
+ pos: -50.5,-14.5
+ parent: 2
+ - uid: 723
+ components:
+ - type: Transform
+ pos: -50.5,1.5
+ parent: 2
+ - uid: 724
+ components:
+ - type: Transform
+ pos: 37.5,26.5
+ parent: 2
+ - uid: 726
+ components:
+ - type: Transform
+ pos: 37.5,18.5
+ parent: 2
+ - uid: 727
+ components:
+ - type: Transform
+ pos: -48.5,7.5
+ parent: 2
+ - uid: 729
+ components:
+ - type: Transform
+ pos: -24.5,23.5
+ parent: 2
+ - uid: 730
+ components:
+ - type: Transform
+ pos: -28.5,22.5
+ parent: 2
+ - uid: 731
+ components:
+ - type: Transform
+ pos: -27.5,22.5
+ parent: 2
+ - uid: 732
+ components:
+ - type: Transform
+ pos: -31.5,17.5
+ parent: 2
+ - uid: 733
+ components:
+ - type: Transform
+ pos: -31.5,22.5
+ parent: 2
+ - uid: 734
+ components:
+ - type: Transform
+ pos: -24.5,22.5
+ parent: 2
+ - uid: 735
+ components:
+ - type: Transform
+ pos: -24.5,24.5
+ parent: 2
+ - uid: 736
+ components:
+ - type: Transform
+ pos: -31.5,21.5
+ parent: 2
+ - uid: 738
+ components:
+ - type: Transform
+ pos: -50.5,6.5
+ parent: 2
+ - uid: 739
+ components:
+ - type: Transform
+ pos: -49.5,7.5
+ parent: 2
+ - uid: 740
+ components:
+ - type: Transform
+ pos: -50.5,5.5
+ parent: 2
+ - uid: 742
+ components:
+ - type: Transform
+ pos: -42.5,10.5
+ parent: 2
+ - uid: 743
+ components:
+ - type: Transform
+ pos: -50.5,2.5
+ parent: 2
+ - uid: 744
+ components:
+ - type: Transform
+ pos: 27.5,3.5
+ parent: 2
+ - uid: 747
+ components:
+ - type: Transform
+ pos: -47.5,-10.5
+ parent: 2
+ - uid: 756
+ components:
+ - type: Transform
+ pos: -50.5,-16.5
+ parent: 2
+ - uid: 757
+ components:
+ - type: Transform
+ pos: -34.5,-15.5
+ parent: 2
+ - uid: 758
+ components:
+ - type: Transform
+ pos: -26.5,22.5
+ parent: 2
+ - uid: 759
+ components:
+ - type: Transform
+ pos: -25.5,22.5
+ parent: 2
+ - uid: 760
+ components:
+ - type: Transform
+ pos: -40.5,8.5
+ parent: 2
+ - uid: 761
+ components:
+ - type: Transform
+ pos: -29.5,22.5
+ parent: 2
+ - uid: 762
+ components:
+ - type: Transform
+ pos: 37.5,23.5
+ parent: 2
+ - uid: 765
+ components:
+ - type: Transform
+ pos: -31.5,19.5
+ parent: 2
+ - uid: 766
+ components:
+ - type: Transform
+ pos: -30.5,22.5
+ parent: 2
+ - uid: 767
+ components:
+ - type: Transform
+ pos: -31.5,15.5
+ parent: 2
+ - uid: 772
+ components:
+ - type: Transform
+ pos: -31.5,16.5
+ parent: 2
+ - uid: 773
+ components:
+ - type: Transform
+ pos: -31.5,18.5
+ parent: 2
+ - uid: 774
+ components:
+ - type: Transform
+ pos: 32.5,32.5
+ parent: 2
+ - uid: 775
+ components:
+ - type: Transform
+ pos: 31.5,32.5
+ parent: 2
+ - uid: 780
+ components:
+ - type: Transform
+ pos: -20.5,30.5
+ parent: 2
+ - uid: 781
+ components:
+ - type: Transform
+ pos: -16.5,30.5
+ parent: 2
+ - uid: 782
+ components:
+ - type: Transform
+ pos: 24.5,39.5
+ parent: 2
+ - uid: 783
+ components:
+ - type: Transform
+ pos: -18.5,30.5
+ parent: 2
+ - uid: 784
+ components:
+ - type: Transform
+ pos: 28.5,34.5
+ parent: 2
+ - uid: 785
+ components:
+ - type: Transform
+ pos: 25.5,39.5
+ parent: 2
+ - uid: 786
+ components:
+ - type: Transform
+ pos: 28.5,33.5
+ parent: 2
+ - uid: 787
+ components:
+ - type: Transform
+ pos: 13.5,39.5
+ parent: 2
+ - uid: 788
+ components:
+ - type: Transform
+ pos: -14.5,30.5
+ parent: 2
+ - uid: 789
+ components:
+ - type: Transform
+ pos: -13.5,30.5
+ parent: 2
+ - uid: 790
+ components:
+ - type: Transform
+ pos: -11.5,30.5
+ parent: 2
+ - uid: 791
+ components:
+ - type: Transform
+ pos: -7.5,30.5
+ parent: 2
+ - uid: 792
+ components:
+ - type: Transform
+ pos: -9.5,30.5
+ parent: 2
+ - uid: 793
+ components:
+ - type: Transform
+ pos: -7.5,29.5
+ parent: 2
+ - uid: 794
+ components:
+ - type: Transform
+ pos: 29.5,35.5
+ parent: 2
+ - uid: 795
+ components:
+ - type: Transform
+ pos: -8.5,30.5
+ parent: 2
+ - uid: 796
+ components:
+ - type: Transform
+ pos: -10.5,30.5
+ parent: 2
+ - uid: 797
+ components:
+ - type: Transform
+ pos: -23.5,30.5
+ parent: 2
+ - uid: 798
+ components:
+ - type: Transform
+ pos: 29.5,34.5
+ parent: 2
+ - uid: 799
+ components:
+ - type: Transform
+ pos: -24.5,30.5
+ parent: 2
+ - uid: 800
+ components:
+ - type: Transform
+ pos: -22.5,30.5
+ parent: 2
+ - uid: 801
+ components:
+ - type: Transform
+ pos: -24.5,26.5
+ parent: 2
+ - uid: 802
+ components:
+ - type: Transform
+ pos: -24.5,27.5
+ parent: 2
+ - uid: 803
+ components:
+ - type: Transform
+ pos: 15.5,39.5
+ parent: 2
+ - uid: 804
+ components:
+ - type: Transform
+ pos: -24.5,28.5
+ parent: 2
+ - uid: 805
+ components:
+ - type: Transform
+ pos: -24.5,25.5
+ parent: 2
+ - uid: 806
+ components:
+ - type: Transform
+ pos: -24.5,29.5
+ parent: 2
+ - uid: 807
+ components:
+ - type: Transform
+ pos: 21.5,39.5
+ parent: 2
+ - uid: 808
+ components:
+ - type: Transform
+ pos: 22.5,39.5
+ parent: 2
+ - uid: 809
+ components:
+ - type: Transform
+ pos: -21.5,30.5
+ parent: 2
+ - uid: 810
+ components:
+ - type: Transform
+ pos: 23.5,39.5
+ parent: 2
+ - uid: 811
+ components:
+ - type: Transform
+ pos: 19.5,39.5
+ parent: 2
+ - uid: 812
+ components:
+ - type: Transform
+ pos: 18.5,39.5
+ parent: 2
+ - uid: 813
+ components:
+ - type: Transform
+ pos: 26.5,39.5
+ parent: 2
+ - uid: 814
+ components:
+ - type: Transform
+ pos: 14.5,39.5
+ parent: 2
+ - uid: 815
+ components:
+ - type: Transform
+ pos: 1.5,27.5
+ parent: 2
+ - uid: 816
+ components:
+ - type: Transform
+ pos: 28.5,32.5
+ parent: 2
+ - uid: 817
+ components:
+ - type: Transform
+ pos: 28.5,36.5
+ parent: 2
+ - uid: 818
+ components:
+ - type: Transform
+ pos: 27.5,39.5
+ parent: 2
+ - uid: 819
+ components:
+ - type: Transform
+ pos: 28.5,39.5
+ parent: 2
+ - uid: 820
+ components:
+ - type: Transform
+ pos: 28.5,37.5
+ parent: 2
+ - uid: 821
+ components:
+ - type: Transform
+ pos: 20.5,39.5
+ parent: 2
+ - uid: 822
+ components:
+ - type: Transform
+ pos: 28.5,31.5
+ parent: 2
+ - uid: 823
+ components:
+ - type: Transform
+ pos: 28.5,38.5
+ parent: 2
+ - uid: 824
+ components:
+ - type: Transform
+ pos: 16.5,39.5
+ parent: 2
+ - uid: 825
+ components:
+ - type: Transform
+ pos: 36.5,25.5
+ parent: 2
+ - uid: 826
+ components:
+ - type: Transform
+ pos: 9.5,39.5
+ parent: 2
+ - uid: 827
+ components:
+ - type: Transform
+ pos: 36.5,26.5
+ parent: 2
+ - uid: 828
+ components:
+ - type: Transform
+ pos: 28.5,35.5
+ parent: 2
+ - uid: 829
+ components:
+ - type: Transform
+ pos: 0.5,27.5
+ parent: 2
+ - uid: 830
+ components:
+ - type: Transform
+ pos: 5.5,27.5
+ parent: 2
+ - uid: 831
+ components:
+ - type: Transform
+ pos: -12.5,30.5
+ parent: 2
+ - uid: 832
+ components:
+ - type: Transform
+ pos: 18.5,40.5
+ parent: 2
+ - uid: 833
+ components:
+ - type: Transform
+ pos: -7.5,28.5
+ parent: 2
+ - uid: 834
+ components:
+ - type: Transform
+ pos: -17.5,30.5
+ parent: 2
+ - uid: 835
+ components:
+ - type: Transform
+ pos: -3.5,27.5
+ parent: 2
+ - uid: 836
+ components:
+ - type: Transform
+ pos: -5.5,27.5
+ parent: 2
+ - uid: 837
+ components:
+ - type: Transform
+ pos: -4.5,27.5
+ parent: 2
+ - uid: 838
+ components:
+ - type: Transform
+ pos: -2.5,27.5
+ parent: 2
+ - uid: 839
+ components:
+ - type: Transform
+ pos: -7.5,27.5
+ parent: 2
+ - uid: 840
+ components:
+ - type: Transform
+ pos: 5.5,36.5
+ parent: 2
+ - uid: 841
+ components:
+ - type: Transform
+ pos: 5.5,30.5
+ parent: 2
+ - uid: 842
+ components:
+ - type: Transform
+ pos: 10.5,39.5
+ parent: 2
+ - uid: 843
+ components:
+ - type: Transform
+ pos: 5.5,31.5
+ parent: 2
+ - uid: 844
+ components:
+ - type: Transform
+ pos: -6.5,27.5
+ parent: 2
+ - uid: 845
+ components:
+ - type: Transform
+ pos: 5.5,37.5
+ parent: 2
+ - uid: 846
+ components:
+ - type: Transform
+ pos: 5.5,34.5
+ parent: 2
+ - uid: 847
+ components:
+ - type: Transform
+ pos: -1.5,27.5
+ parent: 2
+ - uid: 848
+ components:
+ - type: Transform
+ pos: 5.5,38.5
+ parent: 2
+ - uid: 849
+ components:
+ - type: Transform
+ pos: 7.5,39.5
+ parent: 2
+ - uid: 850
+ components:
+ - type: Transform
+ pos: 5.5,35.5
+ parent: 2
+ - uid: 851
+ components:
+ - type: Transform
+ pos: 5.5,39.5
+ parent: 2
+ - uid: 852
+ components:
+ - type: Transform
+ pos: 5.5,32.5
+ parent: 2
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 6.5,39.5
+ parent: 2
+ - uid: 854
+ components:
+ - type: Transform
+ pos: 5.5,33.5
+ parent: 2
+ - uid: 856
+ components:
+ - type: Transform
+ pos: -32.5,22.5
+ parent: 2
+ - uid: 858
+ components:
+ - type: Transform
+ pos: 36.5,16.5
+ parent: 2
+ - uid: 860
+ components:
+ - type: Transform
+ pos: -7.5,31.5
+ parent: 2
+ - uid: 861
+ components:
+ - type: Transform
+ pos: -32.5,23.5
+ parent: 2
+ - uid: 862
+ components:
+ - type: Transform
+ pos: -23.5,31.5
+ parent: 2
+ - uid: 863
+ components:
+ - type: Transform
+ pos: -8.5,31.5
+ parent: 2
+ - uid: 864
+ components:
+ - type: Transform
+ pos: -6.5,29.5
+ parent: 2
+ - uid: 865
+ components:
+ - type: Transform
+ pos: -31.5,23.5
+ parent: 2
+ - uid: 866
+ components:
+ - type: Transform
+ pos: -25.5,31.5
+ parent: 2
+ - uid: 867
+ components:
+ - type: Transform
+ pos: -26.5,23.5
+ parent: 2
+ - uid: 868
+ components:
+ - type: Transform
+ pos: 29.5,38.5
+ parent: 2
+ - uid: 869
+ components:
+ - type: Transform
+ pos: -25.5,29.5
+ parent: 2
+ - uid: 870
+ components:
+ - type: Transform
+ pos: 37.5,32.5
+ parent: 2
+ - uid: 871
+ components:
+ - type: Transform
+ pos: 35.5,32.5
+ parent: 2
+ - uid: 872
+ components:
+ - type: Transform
+ pos: -32.5,13.5
+ parent: 2
+ - uid: 873
+ components:
+ - type: Transform
+ pos: -25.5,26.5
+ parent: 2
+ - uid: 874
+ components:
+ - type: Transform
+ pos: -25.5,25.5
+ parent: 2
+ - uid: 875
+ components:
+ - type: Transform
+ pos: 37.5,30.5
+ parent: 2
+ - uid: 876
+ components:
+ - type: Transform
+ pos: -32.5,18.5
+ parent: 2
+ - uid: 877
+ components:
+ - type: Transform
+ pos: -32.5,17.5
+ parent: 2
+ - uid: 878
+ components:
+ - type: Transform
+ pos: 9.5,40.5
+ parent: 2
+ - uid: 879
+ components:
+ - type: Transform
+ pos: -3.5,28.5
+ parent: 2
+ - uid: 880
+ components:
+ - type: Transform
+ pos: 4.5,34.5
+ parent: 2
+ - uid: 881
+ components:
+ - type: Transform
+ pos: 4.5,35.5
+ parent: 2
+ - uid: 882
+ components:
+ - type: Transform
+ pos: 4.5,31.5
+ parent: 2
+ - uid: 883
+ components:
+ - type: Transform
+ pos: 4.5,30.5
+ parent: 2
+ - uid: 884
+ components:
+ - type: Transform
+ pos: 0.5,28.5
+ parent: 2
+ - uid: 885
+ components:
+ - type: Transform
+ pos: 37.5,31.5
+ parent: 2
+ - uid: 886
+ components:
+ - type: Transform
+ pos: 10.5,40.5
+ parent: 2
+ - uid: 887
+ components:
+ - type: Transform
+ pos: 4.5,40.5
+ parent: 2
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 5.5,40.5
+ parent: 2
+ - uid: 889
+ components:
+ - type: Transform
+ pos: 1.5,28.5
+ parent: 2
+ - uid: 890
+ components:
+ - type: Transform
+ pos: -12.5,31.5
+ parent: 2
+ - uid: 891
+ components:
+ - type: Transform
+ pos: -2.5,28.5
+ parent: 2
+ - uid: 892
+ components:
+ - type: Transform
+ pos: 4.5,38.5
+ parent: 2
+ - uid: 893
+ components:
+ - type: Transform
+ pos: 24.5,40.5
+ parent: 2
+ - uid: 894
+ components:
+ - type: Transform
+ pos: -11.5,31.5
+ parent: 2
+ - uid: 895
+ components:
+ - type: Transform
+ pos: 4.5,39.5
+ parent: 2
+ - uid: 896
+ components:
+ - type: Transform
+ pos: -32.5,14.5
+ parent: 2
+ - uid: 897
+ components:
+ - type: Transform
+ pos: 28.5,40.5
+ parent: 2
+ - uid: 898
+ components:
+ - type: Transform
+ pos: 6.5,40.5
+ parent: 2
+ - uid: 899
+ components:
+ - type: Transform
+ pos: 23.5,40.5
+ parent: 2
+ - uid: 900
+ components:
+ - type: Transform
+ pos: -6.5,31.5
+ parent: 2
+ - uid: 901
+ components:
+ - type: Transform
+ pos: -27.5,23.5
+ parent: 2
+ - uid: 903
+ components:
+ - type: Transform
+ pos: -16.5,31.5
+ parent: 2
+ - uid: 904
+ components:
+ - type: Transform
+ pos: 27.5,40.5
+ parent: 2
+ - uid: 905
+ components:
+ - type: Transform
+ pos: 36.5,32.5
+ parent: 2
+ - uid: 906
+ components:
+ - type: Transform
+ pos: 29.5,40.5
+ parent: 2
+ - uid: 907
+ components:
+ - type: Transform
+ pos: -24.5,31.5
+ parent: 2
+ - uid: 908
+ components:
+ - type: Transform
+ pos: -6.5,30.5
+ parent: 2
+ - uid: 909
+ components:
+ - type: Transform
+ pos: 29.5,39.5
+ parent: 2
+ - uid: 910
+ components:
+ - type: Transform
+ pos: 36.5,14.5
+ parent: 2
+ - uid: 913
+ components:
+ - type: Transform
+ pos: -32.5,21.5
+ parent: 2
+ - uid: 915
+ components:
+ - type: Transform
+ pos: -25.5,30.5
+ parent: 2
+ - uid: 916
+ components:
+ - type: Transform
+ pos: 19.5,40.5
+ parent: 2
+ - uid: 917
+ components:
+ - type: Transform
+ pos: -30.5,23.5
+ parent: 2
+ - uid: 918
+ components:
+ - type: Transform
+ pos: 36.5,18.5
+ parent: 2
+ - uid: 919
+ components:
+ - type: Transform
+ pos: 20.5,40.5
+ parent: 2
+ - uid: 920
+ components:
+ - type: Transform
+ pos: 14.5,40.5
+ parent: 2
+ - uid: 921
+ components:
+ - type: Transform
+ pos: 8.5,39.5
+ parent: 2
+ - uid: 922
+ components:
+ - type: Transform
+ pos: -0.5,27.5
+ parent: 2
+ - uid: 923
+ components:
+ - type: Transform
+ pos: 13.5,40.5
+ parent: 2
+ - uid: 924
+ components:
+ - type: Transform
+ pos: 35.5,31.5
+ parent: 2
+ - uid: 926
+ components:
+ - type: Transform
+ pos: 36.5,31.5
+ parent: 2
+ - uid: 927
+ components:
+ - type: Transform
+ pos: 30.5,31.5
+ parent: 2
+ - uid: 928
+ components:
+ - type: Transform
+ pos: 5.5,28.5
+ parent: 2
+ - uid: 929
+ components:
+ - type: Transform
+ pos: 15.5,40.5
+ parent: 2
+ - uid: 930
+ components:
+ - type: Transform
+ pos: 2.5,27.5
+ parent: 2
+ - uid: 931
+ components:
+ - type: Transform
+ pos: 12.5,39.5
+ parent: 2
+ - uid: 932
+ components:
+ - type: Transform
+ pos: 5.5,29.5
+ parent: 2
+ - uid: 933
+ components:
+ - type: Transform
+ pos: 4.5,27.5
+ parent: 2
+ - uid: 934
+ components:
+ - type: Transform
+ pos: 11.5,39.5
+ parent: 2
+ - uid: 935
+ components:
+ - type: Transform
+ pos: 33.5,31.5
+ parent: 2
+ - uid: 936
+ components:
+ - type: Transform
+ pos: 36.5,24.5
+ parent: 2
+ - uid: 937
+ components:
+ - type: Transform
+ pos: 36.5,29.5
+ parent: 2
+ - uid: 938
+ components:
+ - type: Transform
+ pos: 29.5,31.5
+ parent: 2
+ - uid: 939
+ components:
+ - type: Transform
+ pos: 31.5,31.5
+ parent: 2
+ - uid: 940
+ components:
+ - type: Transform
+ pos: 34.5,31.5
+ parent: 2
+ - uid: 941
+ components:
+ - type: Transform
+ pos: 36.5,23.5
+ parent: 2
+ - uid: 942
+ components:
+ - type: Transform
+ pos: 36.5,30.5
+ parent: 2
+ - uid: 943
+ components:
+ - type: Transform
+ pos: 36.5,28.5
+ parent: 2
+ - uid: 944
+ components:
+ - type: Transform
+ pos: 32.5,31.5
+ parent: 2
+ - uid: 945
+ components:
+ - type: Transform
+ pos: 36.5,27.5
+ parent: 2
+ - uid: 946
+ components:
+ - type: Transform
+ pos: 17.5,39.5
+ parent: 2
+ - uid: 947
+ components:
+ - type: Transform
+ pos: -19.5,30.5
+ parent: 2
+ - uid: 950
+ components:
+ - type: Transform
+ pos: -35.5,8.5
+ parent: 2
+ - uid: 1215
+ components:
+ - type: Transform
+ pos: 22.5,-10.5
+ parent: 2
+ - uid: 1221
+ components:
+ - type: Transform
+ pos: -48.5,0.5
+ parent: 2
+ - uid: 1222
+ components:
+ - type: Transform
+ pos: -20.5,31.5
+ parent: 2
+ - uid: 1225
+ components:
+ - type: Transform
+ pos: -19.5,31.5
+ parent: 2
+ - uid: 1232
+ components:
+ - type: Transform
+ pos: -31.5,13.5
+ parent: 2
+ - uid: 1241
+ components:
+ - type: Transform
+ pos: -44.5,-10.5
+ parent: 2
+ - uid: 1264
+ components:
+ - type: Transform
+ pos: -49.5,-14.5
+ parent: 2
+ - uid: 1274
+ components:
+ - type: Transform
+ pos: -47.5,0.5
+ parent: 2
+ - uid: 1281
+ components:
+ - type: Transform
+ pos: -30.5,-24.5
+ parent: 2
+ - uid: 1282
+ components:
+ - type: Transform
+ pos: -30.5,-25.5
+ parent: 2
+ - uid: 1283
+ components:
+ - type: Transform
+ pos: -31.5,-24.5
+ parent: 2
+ - uid: 1284
+ components:
+ - type: Transform
+ pos: -31.5,-25.5
+ parent: 2
+ - uid: 1285
+ components:
+ - type: Transform
+ pos: -30.5,-27.5
+ parent: 2
+ - uid: 1287
+ components:
+ - type: Transform
+ pos: -31.5,-23.5
+ parent: 2
+ - uid: 1288
+ components:
+ - type: Transform
+ pos: -31.5,-22.5
+ parent: 2
+ - uid: 1289
+ components:
+ - type: Transform
+ pos: -31.5,-21.5
+ parent: 2
+ - uid: 1290
+ components:
+ - type: Transform
+ pos: -31.5,-20.5
+ parent: 2
+ - uid: 1291
+ components:
+ - type: Transform
+ pos: -31.5,-19.5
+ parent: 2
+ - uid: 1292
+ components:
+ - type: Transform
+ pos: -31.5,-18.5
+ parent: 2
+ - uid: 1293
+ components:
+ - type: Transform
+ pos: -31.5,-17.5
+ parent: 2
+ - uid: 1294
+ components:
+ - type: Transform
+ pos: -31.5,-16.5
+ parent: 2
+ - uid: 1295
+ components:
+ - type: Transform
+ pos: -31.5,-15.5
+ parent: 2
+ - uid: 1296
+ components:
+ - type: Transform
+ pos: -41.5,0.5
+ parent: 2
+ - uid: 1297
+ components:
+ - type: Transform
+ pos: -32.5,-22.5
+ parent: 2
+ - uid: 1298
+ components:
+ - type: Transform
+ pos: -32.5,-21.5
+ parent: 2
+ - uid: 1299
+ components:
+ - type: Transform
+ pos: -32.5,-18.5
+ parent: 2
+ - uid: 1300
+ components:
+ - type: Transform
+ pos: -32.5,-17.5
+ parent: 2
+ - uid: 1303
+ components:
+ - type: Transform
+ pos: -34.5,-14.5
+ parent: 2
+ - uid: 1304
+ components:
+ - type: Transform
+ pos: -34.5,-13.5
+ parent: 2
+ - uid: 1306
+ components:
+ - type: Transform
+ pos: -41.5,-10.5
+ parent: 2
+ - uid: 1307
+ components:
+ - type: Transform
+ pos: -34.5,-12.5
+ parent: 2
+ - uid: 1308
+ components:
+ - type: Transform
+ pos: -34.5,-11.5
+ parent: 2
+ - uid: 1309
+ components:
+ - type: Transform
+ pos: -44.5,0.5
+ parent: 2
+ - uid: 1310
+ components:
+ - type: Transform
+ pos: -33.5,-10.5
+ parent: 2
+ - uid: 1311
+ components:
+ - type: Transform
+ pos: -33.5,-9.5
+ parent: 2
+ - uid: 1312
+ components:
+ - type: Transform
+ pos: -33.5,-8.5
+ parent: 2
+ - uid: 1313
+ components:
+ - type: Transform
+ pos: -33.5,-7.5
+ parent: 2
+ - uid: 1314
+ components:
+ - type: Transform
+ pos: -33.5,-6.5
+ parent: 2
+ - uid: 1315
+ components:
+ - type: Transform
+ pos: -33.5,-5.5
+ parent: 2
+ - uid: 1316
+ components:
+ - type: Transform
+ pos: -33.5,-4.5
+ parent: 2
+ - uid: 1317
+ components:
+ - type: Transform
+ pos: -33.5,-3.5
+ parent: 2
+ - uid: 1318
+ components:
+ - type: Transform
+ pos: -33.5,-2.5
+ parent: 2
+ - uid: 1319
+ components:
+ - type: Transform
+ pos: -34.5,-2.5
+ parent: 2
+ - uid: 1320
+ components:
+ - type: Transform
+ pos: -37.5,-2.5
+ parent: 2
+ - uid: 1321
+ components:
+ - type: Transform
+ pos: -42.5,-10.5
+ parent: 2
+ - uid: 1322
+ components:
+ - type: Transform
+ pos: -40.5,-2.5
+ parent: 2
+ - uid: 1323
+ components:
+ - type: Transform
+ pos: -41.5,-2.5
+ parent: 2
+ - uid: 1324
+ components:
+ - type: Transform
+ pos: -41.5,-3.5
+ parent: 2
+ - uid: 1325
+ components:
+ - type: Transform
+ pos: -41.5,-4.5
+ parent: 2
+ - uid: 1326
+ components:
+ - type: Transform
+ pos: -41.5,-5.5
+ parent: 2
+ - uid: 1327
+ components:
+ - type: Transform
+ pos: -41.5,-6.5
+ parent: 2
+ - uid: 1328
+ components:
+ - type: Transform
+ pos: -40.5,-6.5
+ parent: 2
+ - uid: 1329
+ components:
+ - type: Transform
+ pos: -38.5,-6.5
+ parent: 2
+ - uid: 1330
+ components:
+ - type: Transform
+ pos: -37.5,-6.5
+ parent: 2
+ - uid: 1331
+ components:
+ - type: Transform
+ pos: -36.5,-6.5
+ parent: 2
+ - uid: 1332
+ components:
+ - type: Transform
+ pos: -34.5,-6.5
+ parent: 2
+ - uid: 1333
+ components:
+ - type: Transform
+ pos: -38.5,-7.5
+ parent: 2
+ - uid: 1334
+ components:
+ - type: Transform
+ pos: -38.5,-8.5
+ parent: 2
+ - uid: 1335
+ components:
+ - type: Transform
+ pos: -37.5,-8.5
+ parent: 2
+ - uid: 1336
+ components:
+ - type: Transform
+ pos: -38.5,-9.5
+ parent: 2
+ - uid: 1337
+ components:
+ - type: Transform
+ pos: -38.5,-10.5
+ parent: 2
+ - uid: 1338
+ components:
+ - type: Transform
+ pos: -38.5,-11.5
+ parent: 2
+ - uid: 1339
+ components:
+ - type: Transform
+ pos: -36.5,-11.5
+ parent: 2
+ - uid: 1340
+ components:
+ - type: Transform
+ pos: -37.5,-11.5
+ parent: 2
+ - uid: 1341
+ components:
+ - type: Transform
+ pos: -42.5,-13.5
+ parent: 2
+ - uid: 1342
+ components:
+ - type: Transform
+ pos: -42.5,-12.5
+ parent: 2
+ - uid: 1343
+ components:
+ - type: Transform
+ pos: -42.5,-11.5
+ parent: 2
+ - uid: 1346
+ components:
+ - type: Transform
+ pos: -49.5,-6.5
+ parent: 2
+ - uid: 1347
+ components:
+ - type: Transform
+ pos: -49.5,-7.5
+ parent: 2
+ - uid: 1352
+ components:
+ - type: Transform
+ pos: -47.5,-16.5
+ parent: 2
+ - uid: 1353
+ components:
+ - type: Transform
+ pos: -47.5,-15.5
+ parent: 2
+ - uid: 1354
+ components:
+ - type: Transform
+ pos: -46.5,-16.5
+ parent: 2
+ - uid: 1355
+ components:
+ - type: Transform
+ pos: -46.5,-15.5
+ parent: 2
+ - uid: 1356
+ components:
+ - type: Transform
+ pos: -43.5,-16.5
+ parent: 2
+ - uid: 1357
+ components:
+ - type: Transform
+ pos: -42.5,-16.5
+ parent: 2
+ - uid: 1358
+ components:
+ - type: Transform
+ pos: -49.5,-2.5
+ parent: 2
+ - uid: 1359
+ components:
+ - type: Transform
+ pos: -49.5,-4.5
+ parent: 2
+ - uid: 1360
+ components:
+ - type: Transform
+ pos: -49.5,-5.5
+ parent: 2
+ - uid: 1361
+ components:
+ - type: Transform
+ pos: -49.5,-3.5
+ parent: 2
+ - uid: 1362
+ components:
+ - type: Transform
+ pos: -35.5,-15.5
+ parent: 2
+ - uid: 1363
+ components:
+ - type: Transform
+ pos: -36.5,-15.5
+ parent: 2
+ - uid: 1364
+ components:
+ - type: Transform
+ pos: -37.5,-15.5
+ parent: 2
+ - uid: 1366
+ components:
+ - type: Transform
+ pos: -39.5,-15.5
+ parent: 2
+ - uid: 1367
+ components:
+ - type: Transform
+ pos: -40.5,-15.5
+ parent: 2
+ - uid: 1368
+ components:
+ - type: Transform
+ pos: -38.5,-15.5
+ parent: 2
+ - uid: 1369
+ components:
+ - type: Transform
+ pos: -41.5,-15.5
+ parent: 2
+ - uid: 1370
+ components:
+ - type: Transform
+ pos: -51.5,-16.5
+ parent: 2
+ - uid: 1371
+ components:
+ - type: Transform
+ pos: -49.5,-9.5
+ parent: 2
+ - uid: 1372
+ components:
+ - type: Transform
+ pos: -50.5,-10.5
+ parent: 2
+ - uid: 1373
+ components:
+ - type: Transform
+ pos: -48.5,-15.5
+ parent: 2
+ - uid: 1374
+ components:
+ - type: Transform
+ pos: -50.5,-15.5
+ parent: 2
+ - uid: 1375
+ components:
+ - type: Transform
+ pos: -49.5,-10.5
+ parent: 2
+ - uid: 1376
+ components:
+ - type: Transform
+ pos: -48.5,-10.5
+ parent: 2
+ - uid: 1378
+ components:
+ - type: Transform
+ pos: -51.5,-15.5
+ parent: 2
+ - uid: 1379
+ components:
+ - type: Transform
+ pos: -50.5,-11.5
+ parent: 2
+ - uid: 1380
+ components:
+ - type: Transform
+ pos: -51.5,-10.5
+ parent: 2
+ - uid: 1381
+ components:
+ - type: Transform
+ pos: -50.5,-9.5
+ parent: 2
+ - uid: 1382
+ components:
+ - type: Transform
+ pos: -39.5,-16.5
+ parent: 2
+ - uid: 1383
+ components:
+ - type: Transform
+ pos: -38.5,-16.5
+ parent: 2
+ - uid: 1385
+ components:
+ - type: Transform
+ pos: -50.5,-13.5
+ parent: 2
+ - uid: 1386
+ components:
+ - type: Transform
+ pos: -49.5,-11.5
+ parent: 2
+ - uid: 1387
+ components:
+ - type: Transform
+ pos: -49.5,-13.5
+ parent: 2
+ - uid: 1388
+ components:
+ - type: Transform
+ pos: -34.5,-16.5
+ parent: 2
+ - uid: 1389
+ components:
+ - type: Transform
+ pos: -35.5,-16.5
+ parent: 2
+ - uid: 1390
+ components:
+ - type: Transform
+ pos: -50.5,-12.5
+ parent: 2
+ - uid: 1391
+ components:
+ - type: Transform
+ pos: -50.5,-3.5
+ parent: 2
+ - uid: 1392
+ components:
+ - type: Transform
+ pos: -50.5,-4.5
+ parent: 2
+ - uid: 1393
+ components:
+ - type: Transform
+ pos: -50.5,0.5
+ parent: 2
+ - uid: 1395
+ components:
+ - type: Transform
+ pos: -46.5,0.5
+ parent: 2
+ - uid: 1396
+ components:
+ - type: Transform
+ pos: -39.5,-10.5
+ parent: 2
+ - uid: 1397
+ components:
+ - type: Transform
+ pos: -33.5,-11.5
+ parent: 2
+ - uid: 1399
+ components:
+ - type: Transform
+ pos: -49.5,-12.5
+ parent: 2
+ - uid: 1400
+ components:
+ - type: Transform
+ pos: -49.5,-15.5
+ parent: 2
+ - uid: 1401
+ components:
+ - type: Transform
+ pos: -51.5,-9.5
+ parent: 2
+ - uid: 1402
+ components:
+ - type: Transform
+ pos: -45.5,0.5
+ parent: 2
+ - uid: 1403
+ components:
+ - type: Transform
+ pos: -50.5,-5.5
+ parent: 2
+ - uid: 1406
+ components:
+ - type: Transform
+ pos: -49.5,-1.5
+ parent: 2
+ - uid: 1407
+ components:
+ - type: Transform
+ pos: -49.5,-0.5
+ parent: 2
+ - uid: 1408
+ components:
+ - type: Transform
+ pos: -49.5,0.5
+ parent: 2
+ - uid: 1409
+ components:
+ - type: Transform
+ pos: -49.5,2.5
+ parent: 2
+ - uid: 1410
+ components:
+ - type: Transform
+ pos: -49.5,1.5
+ parent: 2
+ - uid: 1411
+ components:
+ - type: Transform
+ pos: 2.5,28.5
+ parent: 2
+ - uid: 1412
+ components:
+ - type: Transform
+ pos: -4.5,28.5
+ parent: 2
+ - uid: 1417
+ components:
+ - type: Transform
+ pos: -49.5,3.5
+ parent: 2
+ - uid: 1418
+ components:
+ - type: Transform
+ pos: -49.5,4.5
+ parent: 2
+ - uid: 1419
+ components:
+ - type: Transform
+ pos: -49.5,5.5
+ parent: 2
+ - uid: 1420
+ components:
+ - type: Transform
+ pos: -49.5,6.5
+ parent: 2
+ - uid: 1421
+ components:
+ - type: Transform
+ pos: -48.5,6.5
+ parent: 2
+ - uid: 1422
+ components:
+ - type: Transform
+ pos: -47.5,6.5
+ parent: 2
+ - uid: 1423
+ components:
+ - type: Transform
+ pos: -46.5,6.5
+ parent: 2
+ - uid: 1424
+ components:
+ - type: Transform
+ pos: -45.5,6.5
+ parent: 2
+ - uid: 1425
+ components:
+ - type: Transform
+ pos: -44.5,6.5
+ parent: 2
+ - uid: 1426
+ components:
+ - type: Transform
+ pos: -43.5,6.5
+ parent: 2
+ - uid: 1427
+ components:
+ - type: Transform
+ pos: -41.5,6.5
+ parent: 2
+ - uid: 1428
+ components:
+ - type: Transform
+ pos: -40.5,6.5
+ parent: 2
+ - uid: 1429
+ components:
+ - type: Transform
+ pos: -35.5,6.5
+ parent: 2
+ - uid: 1430
+ components:
+ - type: Transform
+ pos: -34.5,6.5
+ parent: 2
+ - uid: 1431
+ components:
+ - type: Transform
+ pos: -32.5,6.5
+ parent: 2
+ - uid: 1432
+ components:
+ - type: Transform
+ pos: -31.5,6.5
+ parent: 2
+ - uid: 1433
+ components:
+ - type: Transform
+ pos: -31.5,7.5
+ parent: 2
+ - uid: 1434
+ components:
+ - type: Transform
+ pos: -31.5,8.5
+ parent: 2
+ - uid: 1435
+ components:
+ - type: Transform
+ pos: -31.5,9.5
+ parent: 2
+ - uid: 1436
+ components:
+ - type: Transform
+ pos: -31.5,10.5
+ parent: 2
+ - uid: 1449
+ components:
+ - type: Transform
+ pos: 25.5,5.5
+ parent: 2
+ - uid: 1484
+ components:
+ - type: Transform
+ pos: -31.5,11.5
+ parent: 2
+ - uid: 1485
+ components:
+ - type: Transform
+ pos: -31.5,12.5
+ parent: 2
+ - uid: 1486
+ components:
+ - type: Transform
+ pos: -31.5,14.5
+ parent: 2
+ - uid: 1487
+ components:
+ - type: Transform
+ pos: 10.5,-20.5
+ parent: 2
+ - uid: 1499
+ components:
+ - type: Transform
+ pos: 3.5,27.5
+ parent: 2
+ - uid: 1559
+ components:
+ - type: Transform
+ pos: -32.5,-15.5
+ parent: 2
+ - uid: 1589
+ components:
+ - type: Transform
+ pos: -19.5,-22.5
+ parent: 2
+ - uid: 1592
+ components:
+ - type: Transform
+ pos: -16.5,-16.5
+ parent: 2
+ - uid: 1593
+ components:
+ - type: Transform
+ pos: -12.5,-16.5
+ parent: 2
+ - uid: 1601
+ components:
+ - type: Transform
+ pos: -33.5,-15.5
+ parent: 2
+ - uid: 1694
+ components:
+ - type: Transform
+ pos: -91.5,12.5
+ parent: 2
+ - uid: 1695
+ components:
+ - type: Transform
+ pos: -97.5,8.5
+ parent: 2
+ - uid: 5246
+ components:
+ - type: Transform
+ pos: -8.5,66.5
+ parent: 2
+ - uid: 5247
+ components:
+ - type: Transform
+ pos: -8.5,67.5
+ parent: 2
+ - uid: 5249
+ components:
+ - type: Transform
+ pos: -10.5,66.5
+ parent: 2
+ - uid: 5250
+ components:
+ - type: Transform
+ pos: -11.5,66.5
+ parent: 2
+ - uid: 5251
+ components:
+ - type: Transform
+ pos: -11.5,67.5
+ parent: 2
+ - uid: 5252
+ components:
+ - type: Transform
+ pos: -11.5,68.5
+ parent: 2
+ - uid: 5253
+ components:
+ - type: Transform
+ pos: -11.5,69.5
+ parent: 2
+ - uid: 5254
+ components:
+ - type: Transform
+ pos: -11.5,70.5
+ parent: 2
+ - uid: 5255
+ components:
+ - type: Transform
+ pos: -11.5,71.5
+ parent: 2
+ - uid: 5256
+ components:
+ - type: Transform
+ pos: -10.5,71.5
+ parent: 2
+ - uid: 5257
+ components:
+ - type: Transform
+ pos: -9.5,71.5
+ parent: 2
+ - uid: 5258
+ components:
+ - type: Transform
+ pos: -8.5,71.5
+ parent: 2
+ - uid: 5259
+ components:
+ - type: Transform
+ pos: -8.5,70.5
+ parent: 2
+ - uid: 8855
+ components:
+ - type: Transform
+ pos: -45.5,-30.5
+ parent: 2
+ - uid: 8856
+ components:
+ - type: Transform
+ pos: -41.5,-26.5
+ parent: 2
+ - uid: 8857
+ components:
+ - type: Transform
+ pos: -41.5,-25.5
+ parent: 2
+ - uid: 8861
+ components:
+ - type: Transform
+ pos: -45.5,-25.5
+ parent: 2
+ - uid: 8862
+ components:
+ - type: Transform
+ pos: -45.5,-26.5
+ parent: 2
+ - uid: 8863
+ components:
+ - type: Transform
+ pos: -44.5,-24.5
+ parent: 2
+ - uid: 8864
+ components:
+ - type: Transform
+ pos: -43.5,-25.5
+ parent: 2
+ - uid: 8865
+ components:
+ - type: Transform
+ pos: -41.5,-30.5
+ parent: 2
+ - uid: 8877
+ components:
+ - type: Transform
+ pos: -45.5,-24.5
+ parent: 2
+ - uid: 8879
+ components:
+ - type: Transform
+ pos: -41.5,-24.5
+ parent: 2
+ - uid: 8881
+ components:
+ - type: Transform
+ pos: -43.5,-24.5
+ parent: 2
+ - uid: 13440
+ components:
+ - type: Transform
+ pos: -15.5,31.5
+ parent: 2
+ - uid: 13441
+ components:
+ - type: Transform
+ pos: -15.5,30.5
+ parent: 2
+ - uid: 13442
+ components:
+ - type: Transform
+ pos: -49.5,-8.5
+ parent: 2
+ - uid: 14165
+ components:
+ - type: Transform
+ pos: 26.5,5.5
+ parent: 2
+ - uid: 14237
+ components:
+ - type: Transform
+ pos: -12.5,-15.5
+ parent: 2
+ - uid: 14238
+ components:
+ - type: Transform
+ pos: -19.5,-18.5
+ parent: 2
+ - uid: 14242
+ components:
+ - type: Transform
+ pos: -19.5,-17.5
+ parent: 2
+ - uid: 14243
+ components:
+ - type: Transform
+ pos: -19.5,-16.5
+ parent: 2
+ - uid: 14244
+ components:
+ - type: Transform
+ pos: -19.5,-15.5
+ parent: 2
+ - uid: 14246
+ components:
+ - type: Transform
+ pos: -18.5,-15.5
+ parent: 2
+ - uid: 14281
+ components:
+ - type: Transform
+ pos: -15.5,-20.5
+ parent: 2
+ - uid: 14426
+ components:
+ - type: Transform
+ pos: -16.5,-23.5
+ parent: 2
+ - uid: 14522
+ components:
+ - type: Transform
+ pos: 17.5,17.5
+ parent: 2
+ - uid: 14570
+ components:
+ - type: Transform
+ pos: 17.5,15.5
+ parent: 2
+ - uid: 14571
+ components:
+ - type: Transform
+ pos: 17.5,16.5
+ parent: 2
+ - uid: 14572
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 2
+ - uid: 14573
+ components:
+ - type: Transform
+ pos: 20.5,17.5
+ parent: 2
+ - uid: 14574
+ components:
+ - type: Transform
+ pos: 19.5,17.5
+ parent: 2
+ - uid: 14575
+ components:
+ - type: Transform
+ pos: 18.5,17.5
+ parent: 2
+ - uid: 14576
+ components:
+ - type: Transform
+ pos: 18.5,14.5
+ parent: 2
+ - uid: 14579
+ components:
+ - type: Transform
+ pos: 19.5,14.5
+ parent: 2
+ - uid: 14580
+ components:
+ - type: Transform
+ pos: 17.5,10.5
+ parent: 2
+ - uid: 14581
+ components:
+ - type: Transform
+ pos: 18.5,10.5
+ parent: 2
+ - uid: 14582
+ components:
+ - type: Transform
+ pos: 17.5,9.5
+ parent: 2
+ - uid: 14583
+ components:
+ - type: Transform
+ pos: 17.5,8.5
+ parent: 2
+ - uid: 14584
+ components:
+ - type: Transform
+ pos: 17.5,7.5
+ parent: 2
+ - uid: 14585
+ components:
+ - type: Transform
+ pos: 18.5,7.5
+ parent: 2
+ - uid: 14586
+ components:
+ - type: Transform
+ pos: 19.5,7.5
+ parent: 2
+ - uid: 14587
+ components:
+ - type: Transform
+ pos: 20.5,7.5
+ parent: 2
+ - uid: 14594
+ components:
+ - type: Transform
+ pos: 24.5,8.5
+ parent: 2
+ - uid: 14597
+ components:
+ - type: Transform
+ pos: 24.5,6.5
+ parent: 2
+ - uid: 14598
+ components:
+ - type: Transform
+ pos: 26.5,6.5
+ parent: 2
+ - uid: 14599
+ components:
+ - type: Transform
+ pos: 25.5,8.5
+ parent: 2
+ - uid: 14600
+ components:
+ - type: Transform
+ pos: 24.5,7.5
+ parent: 2
+ - uid: 14601
+ components:
+ - type: Transform
+ pos: 26.5,8.5
+ parent: 2
+ - uid: 14602
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 2
+ - uid: 14603
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 2
+ - uid: 14604
+ components:
+ - type: Transform
+ pos: 30.5,7.5
+ parent: 2
+ - uid: 14605
+ components:
+ - type: Transform
+ pos: 30.5,4.5
+ parent: 2
+ - uid: 14606
+ components:
+ - type: Transform
+ pos: 30.5,3.5
+ parent: 2
+ - uid: 14607
+ components:
+ - type: Transform
+ pos: 29.5,3.5
+ parent: 2
+ - uid: 14608
+ components:
+ - type: Transform
+ pos: 28.5,3.5
+ parent: 2
+ - uid: 14610
+ components:
+ - type: Transform
+ pos: 20.5,14.5
+ parent: 2
+ - uid: 14611
+ components:
+ - type: Transform
+ pos: 20.5,16.5
+ parent: 2
+ - uid: 14612
+ components:
+ - type: Transform
+ pos: 24.5,16.5
+ parent: 2
+ - uid: 14613
+ components:
+ - type: Transform
+ pos: 25.5,16.5
+ parent: 2
+ - uid: 14614
+ components:
+ - type: Transform
+ pos: 26.5,16.5
+ parent: 2
+ - uid: 14615
+ components:
+ - type: Transform
+ pos: 30.5,16.5
+ parent: 2
+ - uid: 14616
+ components:
+ - type: Transform
+ pos: 31.5,16.5
+ parent: 2
+ - uid: 14618
+ components:
+ - type: Transform
+ pos: 31.5,13.5
+ parent: 2
+ - uid: 14619
+ components:
+ - type: Transform
+ pos: 31.5,11.5
+ parent: 2
+ - uid: 14620
+ components:
+ - type: Transform
+ pos: 30.5,11.5
+ parent: 2
+ - uid: 14621
+ components:
+ - type: Transform
+ pos: 31.5,10.5
+ parent: 2
+ - uid: 14622
+ components:
+ - type: Transform
+ pos: 31.5,9.5
+ parent: 2
+ - uid: 14623
+ components:
+ - type: Transform
+ pos: 31.5,8.5
+ parent: 2
+ - uid: 14692
+ components:
+ - type: Transform
+ pos: 31.5,15.5
+ parent: 2
+- proto: CP14WallStonebrickCrushedLow
+ entities:
+ - uid: 857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,19.5
+ parent: 2
+ - uid: 859
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,7.5
+ parent: 2
+ - uid: 911
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,13.5
+ parent: 2
+ - uid: 912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,21.5
+ parent: 2
+ - uid: 1705
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -91.5,8.5
+ parent: 2
+ - uid: 14624
+ components:
+ - type: Transform
+ pos: 26.5,11.5
+ parent: 2
+ - uid: 14626
+ components:
+ - type: Transform
+ pos: 25.5,10.5
+ parent: 2
+ - uid: 14627
+ components:
+ - type: Transform
+ pos: 24.5,11.5
+ parent: 2
+ - uid: 14628
+ components:
+ - type: Transform
+ pos: 21.5,7.5
+ parent: 2
+ - uid: 14629
+ components:
+ - type: Transform
+ pos: 20.5,10.5
+ parent: 2
+ - uid: 14630
+ components:
+ - type: Transform
+ pos: 20.5,11.5
+ parent: 2
+ - uid: 14631
+ components:
+ - type: Transform
+ pos: 20.5,13.5
+ parent: 2
+ - uid: 14632
+ components:
+ - type: Transform
+ pos: 20.5,12.5
+ parent: 2
+ - uid: 14695
+ components:
+ - type: Transform
+ pos: 31.5,14.5
+ parent: 2
+- proto: CP14WallStonebrickCrushedMedium
+ entities:
+ - uid: 728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,19.5
+ parent: 2
+ - uid: 763
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,22.5
+ parent: 2
+ - uid: 771
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,14.5
+ parent: 2
+ - uid: 855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,8.5
+ parent: 2
+ - uid: 914
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,17.5
+ parent: 2
+ - uid: 925
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,22.5
+ parent: 2
+ - uid: 1255
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,3.5
+ parent: 2
+ - uid: 1398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -97.5,12.5
+ parent: 2
+ - uid: 14578
+ components:
+ - type: Transform
+ pos: 19.5,10.5
+ parent: 2
+ - uid: 14625
+ components:
+ - type: Transform
+ pos: 25.5,11.5
+ parent: 2
+ - uid: 14633
+ components:
+ - type: Transform
+ pos: 27.5,8.5
+ parent: 2
+ - uid: 14634
+ components:
+ - type: Transform
+ pos: 28.5,8.5
+ parent: 2
+ - uid: 14636
+ components:
+ - type: Transform
+ pos: 31.5,12.5
+ parent: 2
+- proto: CP14WallWooden
+ entities:
+ - uid: 25
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 2
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 17.5,33.5
+ parent: 2
+ - uid: 114
+ components:
+ - type: Transform
+ pos: -1.5,-15.5
+ parent: 2
+ - uid: 166
+ components:
+ - type: Transform
+ pos: -29.5,10.5
+ parent: 2
+ - uid: 172
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 2
+ - uid: 182
+ components:
+ - type: Transform
+ pos: 2.5,5.5
+ parent: 2
+ - uid: 186
+ components:
+ - type: Transform
+ pos: -10.5,17.5
+ parent: 2
+ - uid: 189
+ components:
+ - type: Transform
+ pos: -5.5,5.5
+ parent: 2
+ - uid: 190
+ components:
+ - type: Transform
+ pos: -6.5,5.5
+ parent: 2
+ - uid: 191
+ components:
+ - type: Transform
+ pos: -6.5,4.5
+ parent: 2
+ - uid: 193
+ components:
+ - type: Transform
+ pos: -6.5,2.5
+ parent: 2
+ - uid: 195
+ components:
+ - type: Transform
+ pos: -6.5,-1.5
+ parent: 2
+ - uid: 196
+ components:
+ - type: Transform
+ pos: -5.5,-1.5
+ parent: 2
+ - uid: 199
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 2
+ - uid: 200
+ components:
+ - type: Transform
+ pos: -12.5,-7.5
+ parent: 2
+ - uid: 201
+ components:
+ - type: Transform
+ pos: -10.5,-6.5
+ parent: 2
+ - uid: 202
+ components:
+ - type: Transform
+ pos: -10.5,-5.5
+ parent: 2
+ - uid: 203
+ components:
+ - type: Transform
+ pos: -10.5,-3.5
+ parent: 2
+ - uid: 204
+ components:
+ - type: Transform
+ pos: -11.5,-3.5
+ parent: 2
+ - uid: 205
+ components:
+ - type: Transform
+ pos: -19.5,-12.5
+ parent: 2
+ - uid: 206
+ components:
+ - type: Transform
+ pos: -16.5,-12.5
+ parent: 2
+ - uid: 207
+ components:
+ - type: Transform
+ pos: -16.5,-9.5
+ parent: 2
+ - uid: 210
+ components:
+ - type: Transform
+ pos: -19.5,-9.5
+ parent: 2
+ - uid: 211
+ components:
+ - type: Transform
+ pos: -19.5,-11.5
+ parent: 2
+ - uid: 213
+ components:
+ - type: Transform
+ pos: -18.5,-12.5
+ parent: 2
+ - uid: 214
+ components:
+ - type: Transform
+ pos: -19.5,-3.5
+ parent: 2
+ - uid: 215
+ components:
+ - type: Transform
+ pos: -19.5,-4.5
+ parent: 2
+ - uid: 218
+ components:
+ - type: Transform
+ pos: -19.5,-7.5
+ parent: 2
+ - uid: 219
+ components:
+ - type: Transform
+ pos: -19.5,-8.5
+ parent: 2
+ - uid: 220
+ components:
+ - type: Transform
+ pos: -16.5,-8.5
+ parent: 2
+ - uid: 222
+ components:
+ - type: Transform
+ pos: -12.5,-8.5
+ parent: 2
+ - uid: 223
+ components:
+ - type: Transform
+ pos: -18.5,-3.5
+ parent: 2
+ - uid: 224
+ components:
+ - type: Transform
+ pos: -17.5,-3.5
+ parent: 2
+ - uid: 225
+ components:
+ - type: Transform
+ pos: -16.5,-3.5
+ parent: 2
+ - uid: 226
+ components:
+ - type: Transform
+ pos: -15.5,-3.5
+ parent: 2
+ - uid: 227
+ components:
+ - type: Transform
+ pos: -15.5,0.5
+ parent: 2
+ - uid: 228
+ components:
+ - type: Transform
+ pos: -14.5,0.5
+ parent: 2
+ - uid: 229
+ components:
+ - type: Transform
+ pos: -13.5,0.5
+ parent: 2
+ - uid: 230
+ components:
+ - type: Transform
+ pos: -12.5,0.5
+ parent: 2
+ - uid: 231
+ components:
+ - type: Transform
+ pos: -15.5,-0.5
+ parent: 2
+ - uid: 232
+ components:
+ - type: Transform
+ pos: -15.5,-1.5
+ parent: 2
+ - uid: 233
+ components:
+ - type: Transform
+ pos: -15.5,-2.5
+ parent: 2
+ - uid: 234
+ components:
+ - type: Transform
+ pos: -12.5,-0.5
+ parent: 2
+ - uid: 235
+ components:
+ - type: Transform
+ pos: -12.5,-1.5
+ parent: 2
+ - uid: 236
+ components:
+ - type: Transform
+ pos: -12.5,-2.5
+ parent: 2
+ - uid: 237
+ components:
+ - type: Transform
+ pos: -12.5,-3.5
+ parent: 2
+ - uid: 238
+ components:
+ - type: Transform
+ pos: -12.5,-6.5
+ parent: 2
+ - uid: 239
+ components:
+ - type: Transform
+ pos: -12.5,-5.5
+ parent: 2
+ - uid: 240
+ components:
+ - type: Transform
+ pos: -20.5,17.5
+ parent: 2
+ - uid: 241
+ components:
+ - type: Transform
+ pos: -14.5,-3.5
+ parent: 2
+ - uid: 242
+ components:
+ - type: Transform
+ pos: -6.5,-8.5
+ parent: 2
+ - uid: 243
+ components:
+ - type: Transform
+ pos: -6.5,-12.5
+ parent: 2
+ - uid: 244
+ components:
+ - type: Transform
+ pos: -5.5,-8.5
+ parent: 2
+ - uid: 245
+ components:
+ - type: Transform
+ pos: -4.5,-6.5
+ parent: 2
+ - uid: 246
+ components:
+ - type: Transform
+ pos: -4.5,-5.5
+ parent: 2
+ - uid: 247
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 2
+ - uid: 248
+ components:
+ - type: Transform
+ pos: -4.5,-8.5
+ parent: 2
+ - uid: 249
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 2
+ - uid: 250
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 2
+ - uid: 251
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 2
+ - uid: 252
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 2
+ - uid: 253
+ components:
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 2
+ - uid: 254
+ components:
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 2
+ - uid: 255
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 2
+ - uid: 256
+ components:
+ - type: Transform
+ pos: 2.5,-8.5
+ parent: 2
+ - uid: 257
+ components:
+ - type: Transform
+ pos: 3.5,-8.5
+ parent: 2
+ - uid: 258
+ components:
+ - type: Transform
+ pos: -3.5,5.5
+ parent: 2
+ - uid: 260
+ components:
+ - type: Transform
+ pos: 3.5,-11.5
+ parent: 2
+ - uid: 261
+ components:
+ - type: Transform
+ pos: 3.5,-12.5
+ parent: 2
+ - uid: 262
+ components:
+ - type: Transform
+ pos: 2.5,-12.5
+ parent: 2
+ - uid: 263
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 2
+ - uid: 264
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - uid: 265
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+ - uid: 266
+ components:
+ - type: Transform
+ pos: -1.5,-12.5
+ parent: 2
+ - uid: 270
+ components:
+ - type: Transform
+ pos: -5.5,-12.5
+ parent: 2
+ - uid: 283
+ components:
+ - type: Transform
+ pos: -16.5,-11.5
+ parent: 2
+ - uid: 285
+ components:
+ - type: Transform
+ pos: -3.5,-8.5
+ parent: 2
+ - uid: 308
+ components:
+ - type: Transform
+ pos: 5.5,17.5
+ parent: 2
+ - uid: 309
+ components:
+ - type: Transform
+ pos: 5.5,16.5
+ parent: 2
+ - uid: 310
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 2
+ - uid: 311
+ components:
+ - type: Transform
+ pos: 5.5,19.5
+ parent: 2
+ - uid: 312
+ components:
+ - type: Transform
+ pos: 5.5,20.5
+ parent: 2
+ - uid: 313
+ components:
+ - type: Transform
+ pos: 5.5,21.5
+ parent: 2
+ - uid: 314
+ components:
+ - type: Transform
+ pos: 5.5,23.5
+ parent: 2
+ - uid: 315
+ components:
+ - type: Transform
+ pos: 0.5,24.5
+ parent: 2
+ - uid: 316
+ components:
+ - type: Transform
+ pos: -18.5,28.5
+ parent: 2
+ - uid: 317
+ components:
+ - type: Transform
+ pos: 1.5,24.5
+ parent: 2
+ - uid: 318
+ components:
+ - type: Transform
+ pos: -5.5,24.5
+ parent: 2
+ - uid: 319
+ components:
+ - type: Transform
+ pos: -1.5,24.5
+ parent: 2
+ - uid: 320
+ components:
+ - type: Transform
+ pos: -4.5,24.5
+ parent: 2
+ - uid: 321
+ components:
+ - type: Transform
+ pos: 3.5,24.5
+ parent: 2
+ - uid: 322
+ components:
+ - type: Transform
+ pos: -2.5,24.5
+ parent: 2
+ - uid: 323
+ components:
+ - type: Transform
+ pos: 4.5,24.5
+ parent: 2
+ - uid: 324
+ components:
+ - type: Transform
+ pos: -6.5,23.5
+ parent: 2
+ - uid: 325
+ components:
+ - type: Transform
+ pos: -6.5,21.5
+ parent: 2
+ - uid: 326
+ components:
+ - type: Transform
+ pos: -6.5,20.5
+ parent: 2
+ - uid: 327
+ components:
+ - type: Transform
+ pos: -6.5,19.5
+ parent: 2
+ - uid: 328
+ components:
+ - type: Transform
+ pos: -6.5,24.5
+ parent: 2
+ - uid: 329
+ components:
+ - type: Transform
+ pos: -6.5,17.5
+ parent: 2
+ - uid: 330
+ components:
+ - type: Transform
+ pos: -6.5,16.5
+ parent: 2
+ - uid: 331
+ components:
+ - type: Transform
+ pos: -5.5,16.5
+ parent: 2
+ - uid: 332
+ components:
+ - type: Transform
+ pos: -4.5,16.5
+ parent: 2
+ - uid: 333
+ components:
+ - type: Transform
+ pos: -29.5,11.5
+ parent: 2
+ - uid: 334
+ components:
+ - type: Transform
+ pos: -2.5,16.5
+ parent: 2
+ - uid: 335
+ components:
+ - type: Transform
+ pos: -1.5,16.5
+ parent: 2
+ - uid: 336
+ components:
+ - type: Transform
+ pos: -17.5,-12.5
+ parent: 2
+ - uid: 337
+ components:
+ - type: Transform
+ pos: 0.5,16.5
+ parent: 2
+ - uid: 338
+ components:
+ - type: Transform
+ pos: 1.5,16.5
+ parent: 2
+ - uid: 339
+ components:
+ - type: Transform
+ pos: 3.5,16.5
+ parent: 2
+ - uid: 340
+ components:
+ - type: Transform
+ pos: 5.5,24.5
+ parent: 2
+ - uid: 341
+ components:
+ - type: Transform
+ pos: -5.5,20.5
+ parent: 2
+ - uid: 342
+ components:
+ - type: Transform
+ pos: -4.5,20.5
+ parent: 2
+ - uid: 343
+ components:
+ - type: Transform
+ pos: -3.5,20.5
+ parent: 2
+ - uid: 344
+ components:
+ - type: Transform
+ pos: -2.5,20.5
+ parent: 2
+ - uid: 345
+ components:
+ - type: Transform
+ pos: -1.5,20.5
+ parent: 2
+ - uid: 346
+ components:
+ - type: Transform
+ pos: -0.5,20.5
+ parent: 2
+ - uid: 347
+ components:
+ - type: Transform
+ pos: 0.5,20.5
+ parent: 2
+ - uid: 348
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 2
+ - uid: 349
+ components:
+ - type: Transform
+ pos: 2.5,20.5
+ parent: 2
+ - uid: 350
+ components:
+ - type: Transform
+ pos: 3.5,20.5
+ parent: 2
+ - uid: 351
+ components:
+ - type: Transform
+ pos: 4.5,20.5
+ parent: 2
+ - uid: 352
+ components:
+ - type: Transform
+ pos: 1.5,17.5
+ parent: 2
+ - uid: 353
+ components:
+ - type: Transform
+ pos: 1.5,18.5
+ parent: 2
+ - uid: 354
+ components:
+ - type: Transform
+ pos: 1.5,19.5
+ parent: 2
+ - uid: 355
+ components:
+ - type: Transform
+ pos: -2.5,19.5
+ parent: 2
+ - uid: 356
+ components:
+ - type: Transform
+ pos: -2.5,18.5
+ parent: 2
+ - uid: 357
+ components:
+ - type: Transform
+ pos: -2.5,17.5
+ parent: 2
+ - uid: 358
+ components:
+ - type: Transform
+ pos: -2.5,21.5
+ parent: 2
+ - uid: 359
+ components:
+ - type: Transform
+ pos: -2.5,22.5
+ parent: 2
+ - uid: 360
+ components:
+ - type: Transform
+ pos: -2.5,23.5
+ parent: 2
+ - uid: 361
+ components:
+ - type: Transform
+ pos: 1.5,23.5
+ parent: 2
+ - uid: 362
+ components:
+ - type: Transform
+ pos: 1.5,22.5
+ parent: 2
+ - uid: 363
+ components:
+ - type: Transform
+ pos: 1.5,21.5
+ parent: 2
+ - uid: 364
+ components:
+ - type: Transform
+ pos: -11.5,17.5
+ parent: 2
+ - uid: 365
+ components:
+ - type: Transform
+ pos: -10.5,21.5
+ parent: 2
+ - uid: 366
+ components:
+ - type: Transform
+ pos: -10.5,20.5
+ parent: 2
+ - uid: 368
+ components:
+ - type: Transform
+ pos: -10.5,18.5
+ parent: 2
+ - uid: 369
+ components:
+ - type: Transform
+ pos: -13.5,17.5
+ parent: 2
+ - uid: 370
+ components:
+ - type: Transform
+ pos: -14.5,17.5
+ parent: 2
+ - uid: 371
+ components:
+ - type: Transform
+ pos: -15.5,17.5
+ parent: 2
+ - uid: 372
+ components:
+ - type: Transform
+ pos: -17.5,17.5
+ parent: 2
+ - uid: 373
+ components:
+ - type: Transform
+ pos: -18.5,17.5
+ parent: 2
+ - uid: 374
+ components:
+ - type: Transform
+ pos: -19.5,17.5
+ parent: 2
+ - uid: 375
+ components:
+ - type: Transform
+ pos: -12.5,17.5
+ parent: 2
+ - uid: 376
+ components:
+ - type: Transform
+ pos: -21.5,17.5
+ parent: 2
+ - uid: 377
+ components:
+ - type: Transform
+ pos: -22.5,17.5
+ parent: 2
+ - uid: 378
+ components:
+ - type: Transform
+ pos: -22.5,18.5
+ parent: 2
+ - uid: 379
+ components:
+ - type: Transform
+ pos: -22.5,20.5
+ parent: 2
+ - uid: 380
+ components:
+ - type: Transform
+ pos: -22.5,21.5
+ parent: 2
+ - uid: 381
+ components:
+ - type: Transform
+ pos: -21.5,21.5
+ parent: 2
+ - uid: 382
+ components:
+ - type: Transform
+ pos: -20.5,21.5
+ parent: 2
+ - uid: 383
+ components:
+ - type: Transform
+ pos: -18.5,21.5
+ parent: 2
+ - uid: 384
+ components:
+ - type: Transform
+ pos: -17.5,21.5
+ parent: 2
+ - uid: 385
+ components:
+ - type: Transform
+ pos: -15.5,21.5
+ parent: 2
+ - uid: 386
+ components:
+ - type: Transform
+ pos: -14.5,21.5
+ parent: 2
+ - uid: 387
+ components:
+ - type: Transform
+ pos: -24.5,14.5
+ parent: 2
+ - uid: 388
+ components:
+ - type: Transform
+ pos: -12.5,21.5
+ parent: 2
+ - uid: 389
+ components:
+ - type: Transform
+ pos: -11.5,21.5
+ parent: 2
+ - uid: 390
+ components:
+ - type: Transform
+ pos: -14.5,20.5
+ parent: 2
+ - uid: 391
+ components:
+ - type: Transform
+ pos: -14.5,19.5
+ parent: 2
+ - uid: 392
+ components:
+ - type: Transform
+ pos: -14.5,18.5
+ parent: 2
+ - uid: 393
+ components:
+ - type: Transform
+ pos: -18.5,20.5
+ parent: 2
+ - uid: 394
+ components:
+ - type: Transform
+ pos: -18.5,19.5
+ parent: 2
+ - uid: 395
+ components:
+ - type: Transform
+ pos: -18.5,18.5
+ parent: 2
+ - uid: 396
+ components:
+ - type: Transform
+ pos: -17.5,28.5
+ parent: 2
+ - uid: 397
+ components:
+ - type: Transform
+ pos: -16.5,28.5
+ parent: 2
+ - uid: 398
+ components:
+ - type: Transform
+ pos: -15.5,28.5
+ parent: 2
+ - uid: 399
+ components:
+ - type: Transform
+ pos: -14.5,28.5
+ parent: 2
+ - uid: 400
+ components:
+ - type: Transform
+ pos: -13.5,28.5
+ parent: 2
+ - uid: 401
+ components:
+ - type: Transform
+ pos: -12.5,28.5
+ parent: 2
+ - uid: 402
+ components:
+ - type: Transform
+ pos: -10.5,-4.5
+ parent: 2
+ - uid: 403
+ components:
+ - type: Transform
+ pos: -10.5,28.5
+ parent: 2
+ - uid: 404
+ components:
+ - type: Transform
+ pos: -9.5,28.5
+ parent: 2
+ - uid: 405
+ components:
+ - type: Transform
+ pos: -13.5,27.5
+ parent: 2
+ - uid: 406
+ components:
+ - type: Transform
+ pos: -13.5,26.5
+ parent: 2
+ - uid: 407
+ components:
+ - type: Transform
+ pos: -13.5,25.5
+ parent: 2
+ - uid: 408
+ components:
+ - type: Transform
+ pos: -13.5,24.5
+ parent: 2
+ - uid: 409
+ components:
+ - type: Transform
+ pos: -9.5,27.5
+ parent: 2
+ - uid: 410
+ components:
+ - type: Transform
+ pos: -9.5,26.5
+ parent: 2
+ - uid: 411
+ components:
+ - type: Transform
+ pos: -9.5,25.5
+ parent: 2
+ - uid: 412
+ components:
+ - type: Transform
+ pos: -9.5,24.5
+ parent: 2
+ - uid: 413
+ components:
+ - type: Transform
+ pos: -10.5,24.5
+ parent: 2
+ - uid: 414
+ components:
+ - type: Transform
+ pos: -12.5,24.5
+ parent: 2
+ - uid: 415
+ components:
+ - type: Transform
+ pos: -15.5,24.5
+ parent: 2
+ - uid: 416
+ components:
+ - type: Transform
+ pos: -25.5,20.5
+ parent: 2
+ - uid: 417
+ components:
+ - type: Transform
+ pos: -17.5,24.5
+ parent: 2
+ - uid: 418
+ components:
+ - type: Transform
+ pos: -18.5,24.5
+ parent: 2
+ - uid: 419
+ components:
+ - type: Transform
+ pos: -18.5,25.5
+ parent: 2
+ - uid: 420
+ components:
+ - type: Transform
+ pos: -18.5,26.5
+ parent: 2
+ - uid: 421
+ components:
+ - type: Transform
+ pos: -18.5,27.5
+ parent: 2
+ - uid: 422
+ components:
+ - type: Transform
+ pos: -26.5,20.5
+ parent: 2
+ - uid: 423
+ components:
+ - type: Transform
+ pos: -27.5,20.5
+ parent: 2
+ - uid: 424
+ components:
+ - type: Transform
+ pos: -28.5,20.5
+ parent: 2
+ - uid: 425
+ components:
+ - type: Transform
+ pos: -29.5,20.5
+ parent: 2
+ - uid: 431
+ components:
+ - type: Transform
+ pos: -29.5,16.5
+ parent: 2
+ - uid: 432
+ components:
+ - type: Transform
+ pos: -28.5,16.5
+ parent: 2
+ - uid: 433
+ components:
+ - type: Transform
+ pos: -27.5,16.5
+ parent: 2
+ - uid: 434
+ components:
+ - type: Transform
+ pos: -26.5,16.5
+ parent: 2
+ - uid: 435
+ components:
+ - type: Transform
+ pos: -25.5,16.5
+ parent: 2
+ - uid: 437
+ components:
+ - type: Transform
+ pos: -25.5,14.5
+ parent: 2
+ - uid: 438
+ components:
+ - type: Transform
+ pos: -26.5,14.5
+ parent: 2
+ - uid: 439
+ components:
+ - type: Transform
+ pos: -27.5,14.5
+ parent: 2
+ - uid: 440
+ components:
+ - type: Transform
+ pos: -28.5,14.5
+ parent: 2
+ - uid: 441
+ components:
+ - type: Transform
+ pos: -29.5,12.5
+ parent: 2
+ - uid: 442
+ components:
+ - type: Transform
+ pos: -29.5,13.5
+ parent: 2
+ - uid: 443
+ components:
+ - type: Transform
+ pos: -29.5,14.5
+ parent: 2
+ - uid: 444
+ components:
+ - type: Transform
+ pos: -28.5,10.5
+ parent: 2
+ - uid: 445
+ components:
+ - type: Transform
+ pos: -24.5,10.5
+ parent: 2
+ - uid: 446
+ components:
+ - type: Transform
+ pos: -25.5,10.5
+ parent: 2
+ - uid: 447
+ components:
+ - type: Transform
+ pos: -26.5,10.5
+ parent: 2
+ - uid: 448
+ components:
+ - type: Transform
+ pos: -27.5,10.5
+ parent: 2
+ - uid: 449
+ components:
+ - type: Transform
+ pos: -24.5,12.5
+ parent: 2
+ - uid: 453
+ components:
+ - type: Transform
+ pos: -24.5,8.5
+ parent: 2
+ - uid: 454
+ components:
+ - type: Transform
+ pos: -25.5,8.5
+ parent: 2
+ - uid: 457
+ components:
+ - type: Transform
+ pos: -28.5,8.5
+ parent: 2
+ - uid: 458
+ components:
+ - type: Transform
+ pos: -29.5,8.5
+ parent: 2
+ - uid: 459
+ components:
+ - type: Transform
+ pos: -29.5,7.5
+ parent: 2
+ - uid: 461
+ components:
+ - type: Transform
+ pos: -29.5,5.5
+ parent: 2
+ - uid: 463
+ components:
+ - type: Transform
+ pos: -26.5,5.5
+ parent: 2
+ - uid: 466
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 2
+ - uid: 474
+ components:
+ - type: Transform
+ pos: 1.5,5.5
+ parent: 2
+ - uid: 498
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 2
+ - uid: 499
+ components:
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 2
+ - uid: 500
+ components:
+ - type: Transform
+ pos: 5.5,-20.5
+ parent: 2
+ - uid: 501
+ components:
+ - type: Transform
+ pos: 6.5,-20.5
+ parent: 2
+ - uid: 502
+ components:
+ - type: Transform
+ pos: 4.5,-20.5
+ parent: 2
+ - uid: 503
+ components:
+ - type: Transform
+ pos: 3.5,-20.5
+ parent: 2
+ - uid: 504
+ components:
+ - type: Transform
+ pos: 2.5,-20.5
+ parent: 2
+ - uid: 505
+ components:
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 2
+ - uid: 506
+ components:
+ - type: Transform
+ pos: 1.5,-20.5
+ parent: 2
+ - uid: 507
+ components:
+ - type: Transform
+ pos: 0.5,-20.5
+ parent: 2
+ - uid: 508
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 2
+ - uid: 509
+ components:
+ - type: Transform
+ pos: 0.5,-18.5
+ parent: 2
+ - uid: 510
+ components:
+ - type: Transform
+ pos: 0.5,-16.5
+ parent: 2
+ - uid: 511
+ components:
+ - type: Transform
+ pos: 0.5,-15.5
+ parent: 2
+ - uid: 512
+ components:
+ - type: Transform
+ pos: 0.5,-17.5
+ parent: 2
+ - uid: 514
+ components:
+ - type: Transform
+ pos: 1.5,-15.5
+ parent: 2
+ - uid: 515
+ components:
+ - type: Transform
+ pos: 6.5,-15.5
+ parent: 2
+ - uid: 516
+ components:
+ - type: Transform
+ pos: 6.5,-16.5
+ parent: 2
+ - uid: 517
+ components:
+ - type: Transform
+ pos: 6.5,-19.5
+ parent: 2
+ - uid: 519
+ components:
+ - type: Transform
+ pos: 5.5,-15.5
+ parent: 2
+ - uid: 520
+ components:
+ - type: Transform
+ pos: 3.5,-15.5
+ parent: 2
+ - uid: 521
+ components:
+ - type: Transform
+ pos: -6.5,11.5
+ parent: 2
+ - uid: 526
+ components:
+ - type: Transform
+ pos: -1.5,-16.5
+ parent: 2
+ - uid: 527
+ components:
+ - type: Transform
+ pos: -1.5,-17.5
+ parent: 2
+ - uid: 528
+ components:
+ - type: Transform
+ pos: -1.5,-19.5
+ parent: 2
+ - uid: 529
+ components:
+ - type: Transform
+ pos: -1.5,-20.5
+ parent: 2
+ - uid: 530
+ components:
+ - type: Transform
+ pos: -1.5,-21.5
+ parent: 2
+ - uid: 531
+ components:
+ - type: Transform
+ pos: -1.5,-22.5
+ parent: 2
+ - uid: 532
+ components:
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 2
+ - uid: 533
+ components:
+ - type: Transform
+ pos: -2.5,-22.5
+ parent: 2
+ - uid: 534
+ components:
+ - type: Transform
+ pos: -2.5,-24.5
+ parent: 2
+ - uid: 535
+ components:
+ - type: Transform
+ pos: -2.5,-25.5
+ parent: 2
+ - uid: 536
+ components:
+ - type: Transform
+ pos: -3.5,-25.5
+ parent: 2
+ - uid: 537
+ components:
+ - type: Transform
+ pos: -4.5,-25.5
+ parent: 2
+ - uid: 538
+ components:
+ - type: Transform
+ pos: -5.5,-25.5
+ parent: 2
+ - uid: 539
+ components:
+ - type: Transform
+ pos: -6.5,-25.5
+ parent: 2
+ - uid: 540
+ components:
+ - type: Transform
+ pos: -6.5,-24.5
+ parent: 2
+ - uid: 541
+ components:
+ - type: Transform
+ pos: -6.5,-23.5
+ parent: 2
+ - uid: 542
+ components:
+ - type: Transform
+ pos: -6.5,-22.5
+ parent: 2
+ - uid: 543
+ components:
+ - type: Transform
+ pos: -5.5,-22.5
+ parent: 2
+ - uid: 544
+ components:
+ - type: Transform
+ pos: -3.5,-22.5
+ parent: 2
+ - uid: 545
+ components:
+ - type: Transform
+ pos: -8.5,-22.5
+ parent: 2
+ - uid: 546
+ components:
+ - type: Transform
+ pos: -8.5,-21.5
+ parent: 2
+ - uid: 547
+ components:
+ - type: Transform
+ pos: -9.5,-22.5
+ parent: 2
+ - uid: 548
+ components:
+ - type: Transform
+ pos: -10.5,-22.5
+ parent: 2
+ - uid: 549
+ components:
+ - type: Transform
+ pos: -10.5,-21.5
+ parent: 2
+ - uid: 550
+ components:
+ - type: Transform
+ pos: -10.5,-20.5
+ parent: 2
+ - uid: 551
+ components:
+ - type: Transform
+ pos: -10.5,-19.5
+ parent: 2
+ - uid: 552
+ components:
+ - type: Transform
+ pos: -9.5,-19.5
+ parent: 2
+ - uid: 553
+ components:
+ - type: Transform
+ pos: -8.5,-19.5
+ parent: 2
+ - uid: 556
+ components:
+ - type: Transform
+ pos: -5.5,-15.5
+ parent: 2
+ - uid: 558
+ components:
+ - type: Transform
+ pos: -6.5,-15.5
+ parent: 2
+ - uid: 559
+ components:
+ - type: Transform
+ pos: -8.5,-15.5
+ parent: 2
+ - uid: 560
+ components:
+ - type: Transform
+ pos: -8.5,-16.5
+ parent: 2
+ - uid: 561
+ components:
+ - type: Transform
+ pos: -8.5,-17.5
+ parent: 2
+ - uid: 562
+ components:
+ - type: Transform
+ pos: -8.5,-18.5
+ parent: 2
+ - uid: 642
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 2
+ - uid: 674
+ components:
+ - type: Transform
+ pos: 22.5,0.5
+ parent: 2
+ - uid: 675
+ components:
+ - type: Transform
+ pos: 22.5,-0.5
+ parent: 2
+ - uid: 676
+ components:
+ - type: Transform
+ pos: 22.5,-1.5
+ parent: 2
+ - uid: 677
+ components:
+ - type: Transform
+ pos: 21.5,-1.5
+ parent: 2
+ - uid: 678
+ components:
+ - type: Transform
+ pos: 20.5,-1.5
+ parent: 2
+ - uid: 679
+ components:
+ - type: Transform
+ pos: 19.5,-1.5
+ parent: 2
+ - uid: 680
+ components:
+ - type: Transform
+ pos: 19.5,-0.5
+ parent: 2
+ - uid: 681
+ components:
+ - type: Transform
+ pos: 19.5,1.5
+ parent: 2
+ - uid: 682
+ components:
+ - type: Transform
+ pos: 19.5,2.5
+ parent: 2
+ - uid: 683
+ components:
+ - type: Transform
+ pos: 20.5,2.5
+ parent: 2
+ - uid: 684
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 2
+ - uid: 685
+ components:
+ - type: Transform
+ pos: 22.5,2.5
+ parent: 2
+ - uid: 690
+ components:
+ - type: Transform
+ pos: -1.5,5.5
+ parent: 2
+ - uid: 764
+ components:
+ - type: Transform
+ pos: -24.5,16.5
+ parent: 2
+ - uid: 768
+ components:
+ - type: Transform
+ pos: -24.5,18.5
+ parent: 2
+ - uid: 769
+ components:
+ - type: Transform
+ pos: -39.5,10.5
+ parent: 2
+ - uid: 776
+ components:
+ - type: Transform
+ pos: -36.5,10.5
+ parent: 2
+ - uid: 779
+ components:
+ - type: Transform
+ pos: -24.5,20.5
+ parent: 2
+ - uid: 1226
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 2
+ - uid: 1227
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 2
+ - uid: 1233
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 2
+ - uid: 1236
+ components:
+ - type: Transform
+ pos: -4.5,7.5
+ parent: 2
+ - uid: 1271
+ components:
+ - type: Transform
+ pos: -27.5,13.5
+ parent: 2
+ - uid: 1272
+ components:
+ - type: Transform
+ pos: -27.5,11.5
+ parent: 2
+ - uid: 1280
+ components:
+ - type: Transform
+ pos: -16.5,27.5
+ parent: 2
+ - uid: 1394
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 2
+ - uid: 1404
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 2
+ - uid: 1414
+ components:
+ - type: Transform
+ pos: -6.5,0.5
+ parent: 2
+ - uid: 1416
+ components:
+ - type: Transform
+ pos: -5.5,2.5
+ parent: 2
+ - uid: 1441
+ components:
+ - type: Transform
+ pos: 36.5,-8.5
+ parent: 2
+ - uid: 1443
+ components:
+ - type: Transform
+ pos: 36.5,-7.5
+ parent: 2
+ - uid: 1444
+ components:
+ - type: Transform
+ pos: 36.5,-6.5
+ parent: 2
+ - uid: 1445
+ components:
+ - type: Transform
+ pos: 36.5,-5.5
+ parent: 2
+ - uid: 1446
+ components:
+ - type: Transform
+ pos: 37.5,-5.5
+ parent: 2
+ - uid: 1447
+ components:
+ - type: Transform
+ pos: 38.5,-5.5
+ parent: 2
+ - uid: 1448
+ components:
+ - type: Transform
+ pos: 39.5,-5.5
+ parent: 2
+ - uid: 1450
+ components:
+ - type: Transform
+ pos: 40.5,-6.5
+ parent: 2
+ - uid: 1451
+ components:
+ - type: Transform
+ pos: 40.5,-7.5
+ parent: 2
+ - uid: 1452
+ components:
+ - type: Transform
+ pos: 40.5,-8.5
+ parent: 2
+ - uid: 1453
+ components:
+ - type: Transform
+ pos: 39.5,-8.5
+ parent: 2
+ - uid: 1454
+ components:
+ - type: Transform
+ pos: 38.5,-8.5
+ parent: 2
+ - uid: 1477
+ components:
+ - type: Transform
+ pos: 3.5,-9.5
+ parent: 2
+ - uid: 1480
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 2
+ - uid: 1481
+ components:
+ - type: Transform
+ pos: -29.5,18.5
+ parent: 2
+ - uid: 1482
+ components:
+ - type: Transform
+ pos: -29.5,17.5
+ parent: 2
+ - uid: 1483
+ components:
+ - type: Transform
+ pos: -29.5,19.5
+ parent: 2
+ - uid: 1491
+ components:
+ - type: Transform
+ pos: -27.5,17.5
+ parent: 2
+ - uid: 1492
+ components:
+ - type: Transform
+ pos: -27.5,19.5
+ parent: 2
+ - uid: 1497
+ components:
+ - type: Transform
+ pos: -6.5,7.5
+ parent: 2
+ - uid: 1498
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 2
+ - uid: 1500
+ components:
+ - type: Transform
+ pos: -5.5,7.5
+ parent: 2
+ - uid: 1501
+ components:
+ - type: Transform
+ pos: -6.5,8.5
+ parent: 2
+ - uid: 1502
+ components:
+ - type: Transform
+ pos: -6.5,9.5
+ parent: 2
+ - uid: 1520
+ components:
+ - type: Transform
+ pos: -6.5,10.5
+ parent: 2
+ - uid: 1523
+ components:
+ - type: Transform
+ pos: -6.5,12.5
+ parent: 2
+ - uid: 1524
+ components:
+ - type: Transform
+ pos: -2.5,11.5
+ parent: 2
+ - uid: 1525
+ components:
+ - type: Transform
+ pos: -2.5,10.5
+ parent: 2
+ - uid: 1526
+ components:
+ - type: Transform
+ pos: -2.5,12.5
+ parent: 2
+ - uid: 1527
+ components:
+ - type: Transform
+ pos: 3.5,11.5
+ parent: 2
+ - uid: 1528
+ components:
+ - type: Transform
+ pos: -0.5,12.5
+ parent: 2
+ - uid: 1529
+ components:
+ - type: Transform
+ pos: -2.5,8.5
+ parent: 2
+ - uid: 1530
+ components:
+ - type: Transform
+ pos: -2.5,9.5
+ parent: 2
+ - uid: 1531
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 2
+ - uid: 1532
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 2
+ - uid: 1533
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 2
+ - uid: 1534
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 2
+ - uid: 1535
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 2
+ - uid: 1536
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 2
+ - uid: 1538
+ components:
+ - type: Transform
+ pos: 3.5,12.5
+ parent: 2
+ - uid: 1539
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 2
+ - uid: 1540
+ components:
+ - type: Transform
+ pos: -0.5,10.5
+ parent: 2
+ - uid: 1541
+ components:
+ - type: Transform
+ pos: 2.5,7.5
+ parent: 2
+ - uid: 1543
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 2
+ - uid: 1544
+ components:
+ - type: Transform
+ pos: -4.5,12.5
+ parent: 2
+ - uid: 1545
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 2
+ - uid: 1546
+ components:
+ - type: Transform
+ pos: -0.5,11.5
+ parent: 2
+ - uid: 1547
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 2
+ - uid: 1579
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 2
+ - uid: 1580
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 2
+ - uid: 5181
+ components:
+ - type: Transform
+ pos: 3.5,65.5
+ parent: 2
+ - uid: 5182
+ components:
+ - type: Transform
+ pos: 2.5,65.5
+ parent: 2
+ - uid: 5183
+ components:
+ - type: Transform
+ pos: 5.5,65.5
+ parent: 2
+ - uid: 5184
+ components:
+ - type: Transform
+ pos: 6.5,65.5
+ parent: 2
+ - uid: 5185
+ components:
+ - type: Transform
+ pos: 2.5,74.5
+ parent: 2
+ - uid: 5186
+ components:
+ - type: Transform
+ pos: 2.5,66.5
+ parent: 2
+ - uid: 5187
+ components:
+ - type: Transform
+ pos: 2.5,67.5
+ parent: 2
+ - uid: 5188
+ components:
+ - type: Transform
+ pos: 2.5,68.5
+ parent: 2
+ - uid: 5189
+ components:
+ - type: Transform
+ pos: 2.5,69.5
+ parent: 2
+ - uid: 5190
+ components:
+ - type: Transform
+ pos: 2.5,70.5
+ parent: 2
+ - uid: 5192
+ components:
+ - type: Transform
+ pos: 2.5,72.5
+ parent: 2
+ - uid: 5193
+ components:
+ - type: Transform
+ pos: 2.5,73.5
+ parent: 2
+ - uid: 5194
+ components:
+ - type: Transform
+ pos: 3.5,74.5
+ parent: 2
+ - uid: 5195
+ components:
+ - type: Transform
+ pos: 4.5,74.5
+ parent: 2
+ - uid: 5196
+ components:
+ - type: Transform
+ pos: 6.5,74.5
+ parent: 2
+ - uid: 5197
+ components:
+ - type: Transform
+ pos: 7.5,74.5
+ parent: 2
+ - uid: 5198
+ components:
+ - type: Transform
+ pos: 1.5,68.5
+ parent: 2
+ - uid: 5199
+ components:
+ - type: Transform
+ pos: 6.5,66.5
+ parent: 2
+ - uid: 5200
+ components:
+ - type: Transform
+ pos: 6.5,73.5
+ parent: 2
+ - uid: 5201
+ components:
+ - type: Transform
+ pos: 6.5,72.5
+ parent: 2
+ - uid: 5204
+ components:
+ - type: Transform
+ pos: 6.5,69.5
+ parent: 2
+ - uid: 5205
+ components:
+ - type: Transform
+ pos: 6.5,68.5
+ parent: 2
+ - uid: 5206
+ components:
+ - type: Transform
+ pos: 6.5,67.5
+ parent: 2
+ - uid: 5207
+ components:
+ - type: Transform
+ pos: 4.5,73.5
+ parent: 2
+ - uid: 5208
+ components:
+ - type: Transform
+ pos: 4.5,75.5
+ parent: 2
+ - uid: 5209
+ components:
+ - type: Transform
+ pos: 4.5,77.5
+ parent: 2
+ - uid: 5210
+ components:
+ - type: Transform
+ pos: 4.5,78.5
+ parent: 2
+ - uid: 5211
+ components:
+ - type: Transform
+ pos: 5.5,78.5
+ parent: 2
+ - uid: 5212
+ components:
+ - type: Transform
+ pos: 6.5,78.5
+ parent: 2
+ - uid: 5213
+ components:
+ - type: Transform
+ pos: 7.5,78.5
+ parent: 2
+ - uid: 5214
+ components:
+ - type: Transform
+ pos: 8.5,78.5
+ parent: 2
+ - uid: 5215
+ components:
+ - type: Transform
+ pos: 9.5,78.5
+ parent: 2
+ - uid: 5216
+ components:
+ - type: Transform
+ pos: 8.5,74.5
+ parent: 2
+ - uid: 5217
+ components:
+ - type: Transform
+ pos: 10.5,74.5
+ parent: 2
+ - uid: 5218
+ components:
+ - type: Transform
+ pos: 11.5,74.5
+ parent: 2
+ - uid: 5219
+ components:
+ - type: Transform
+ pos: 11.5,75.5
+ parent: 2
+ - uid: 5220
+ components:
+ - type: Transform
+ pos: 11.5,76.5
+ parent: 2
+ - uid: 5221
+ components:
+ - type: Transform
+ pos: 11.5,77.5
+ parent: 2
+ - uid: 5222
+ components:
+ - type: Transform
+ pos: 11.5,78.5
+ parent: 2
+ - uid: 5223
+ components:
+ - type: Transform
+ pos: 10.5,78.5
+ parent: 2
+ - uid: 5224
+ components:
+ - type: Transform
+ pos: -1.5,68.5
+ parent: 2
+ - uid: 5225
+ components:
+ - type: Transform
+ pos: -2.5,68.5
+ parent: 2
+ - uid: 5226
+ components:
+ - type: Transform
+ pos: -2.5,69.5
+ parent: 2
+ - uid: 5227
+ components:
+ - type: Transform
+ pos: -2.5,70.5
+ parent: 2
+ - uid: 5228
+ components:
+ - type: Transform
+ pos: -2.5,71.5
+ parent: 2
+ - uid: 5229
+ components:
+ - type: Transform
+ pos: -2.5,72.5
+ parent: 2
+ - uid: 5230
+ components:
+ - type: Transform
+ pos: -2.5,73.5
+ parent: 2
+ - uid: 5231
+ components:
+ - type: Transform
+ pos: -2.5,74.5
+ parent: 2
+ - uid: 5232
+ components:
+ - type: Transform
+ pos: -1.5,74.5
+ parent: 2
+ - uid: 5233
+ components:
+ - type: Transform
+ pos: -0.5,74.5
+ parent: 2
+ - uid: 5234
+ components:
+ - type: Transform
+ pos: 0.5,74.5
+ parent: 2
+ - uid: 5235
+ components:
+ - type: Transform
+ pos: 1.5,74.5
+ parent: 2
+ - uid: 5238
+ components:
+ - type: Transform
+ pos: 7.5,65.5
+ parent: 2
+ - uid: 5240
+ components:
+ - type: Transform
+ pos: 12.5,74.5
+ parent: 2
+ - uid: 5244
+ components:
+ - type: Transform
+ pos: 13.5,65.5
+ parent: 2
+ - uid: 5385
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+ - uid: 5386
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+ - uid: 5388
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 2
+ - uid: 5391
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 2
+ - uid: 5392
+ components:
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 2
+ - uid: 5393
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 2
+ - uid: 5394
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 2
+ - uid: 5395
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 2
+ - uid: 10576
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 2
+ - uid: 10577
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 2
+ - uid: 10578
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 2
+ - uid: 14151
+ components:
+ - type: Transform
+ pos: 19.5,21.5
+ parent: 2
+ - uid: 14152
+ components:
+ - type: Transform
+ pos: 18.5,21.5
+ parent: 2
+ - uid: 14153
+ components:
+ - type: Transform
+ pos: 16.5,21.5
+ parent: 2
+ - uid: 14154
+ components:
+ - type: Transform
+ pos: 13.5,21.5
+ parent: 2
+ - uid: 14155
+ components:
+ - type: Transform
+ pos: 11.5,21.5
+ parent: 2
+ - uid: 14156
+ components:
+ - type: Transform
+ pos: 10.5,21.5
+ parent: 2
+ - uid: 14159
+ components:
+ - type: Transform
+ pos: 19.5,22.5
+ parent: 2
+ - uid: 14160
+ components:
+ - type: Transform
+ pos: 19.5,25.5
+ parent: 2
+ - uid: 14161
+ components:
+ - type: Transform
+ pos: 19.5,28.5
+ parent: 2
+ - uid: 14162
+ components:
+ - type: Transform
+ pos: 19.5,29.5
+ parent: 2
+ - uid: 14163
+ components:
+ - type: Transform
+ pos: 18.5,28.5
+ parent: 2
+ - uid: 14164
+ components:
+ - type: Transform
+ pos: 17.5,28.5
+ parent: 2
+ - uid: 14166
+ components:
+ - type: Transform
+ pos: 19.5,30.5
+ parent: 2
+ - uid: 14167
+ components:
+ - type: Transform
+ pos: 19.5,31.5
+ parent: 2
+ - uid: 14173
+ components:
+ - type: Transform
+ pos: 10.5,29.5
+ parent: 2
+ - uid: 14174
+ components:
+ - type: Transform
+ pos: 10.5,28.5
+ parent: 2
+ - uid: 14175
+ components:
+ - type: Transform
+ pos: 10.5,27.5
+ parent: 2
+ - uid: 14176
+ components:
+ - type: Transform
+ pos: 10.5,26.5
+ parent: 2
+ - uid: 14177
+ components:
+ - type: Transform
+ pos: 10.5,25.5
+ parent: 2
+ - uid: 14178
+ components:
+ - type: Transform
+ pos: 10.5,24.5
+ parent: 2
+ - uid: 14179
+ components:
+ - type: Transform
+ pos: 10.5,23.5
+ parent: 2
+ - uid: 14180
+ components:
+ - type: Transform
+ pos: 10.5,22.5
+ parent: 2
+ - uid: 14181
+ components:
+ - type: Transform
+ pos: 10.5,30.5
+ parent: 2
+ - uid: 14182
+ components:
+ - type: Transform
+ pos: 10.5,31.5
+ parent: 2
+ - uid: 14183
+ components:
+ - type: Transform
+ pos: 10.5,32.5
+ parent: 2
+ - uid: 14184
+ components:
+ - type: Transform
+ pos: 11.5,32.5
+ parent: 2
+ - uid: 14185
+ components:
+ - type: Transform
+ pos: 12.5,32.5
+ parent: 2
+ - uid: 14186
+ components:
+ - type: Transform
+ pos: 13.5,32.5
+ parent: 2
+ - uid: 14187
+ components:
+ - type: Transform
+ pos: 15.5,32.5
+ parent: 2
+ - uid: 14188
+ components:
+ - type: Transform
+ pos: 16.5,32.5
+ parent: 2
+ - uid: 14189
+ components:
+ - type: Transform
+ pos: 17.5,32.5
+ parent: 2
+ - uid: 14190
+ components:
+ - type: Transform
+ pos: 19.5,32.5
+ parent: 2
+ - uid: 14191
+ components:
+ - type: Transform
+ pos: 18.5,32.5
+ parent: 2
+ - uid: 14192
+ components:
+ - type: Transform
+ pos: 11.5,33.5
+ parent: 2
+ - uid: 14193
+ components:
+ - type: Transform
+ pos: 11.5,35.5
+ parent: 2
+ - uid: 14194
+ components:
+ - type: Transform
+ pos: 11.5,36.5
+ parent: 2
+ - uid: 14195
+ components:
+ - type: Transform
+ pos: 11.5,37.5
+ parent: 2
+ - uid: 14196
+ components:
+ - type: Transform
+ pos: 12.5,37.5
+ parent: 2
+ - uid: 14197
+ components:
+ - type: Transform
+ pos: 13.5,37.5
+ parent: 2
+ - uid: 14198
+ components:
+ - type: Transform
+ pos: 14.5,37.5
+ parent: 2
+ - uid: 14202
+ components:
+ - type: Transform
+ pos: 17.5,35.5
+ parent: 2
+ - uid: 14203
+ components:
+ - type: Transform
+ pos: 20.5,32.5
+ parent: 2
+ - uid: 14204
+ components:
+ - type: Transform
+ pos: 20.5,33.5
+ parent: 2
+ - uid: 14205
+ components:
+ - type: Transform
+ pos: 20.5,34.5
+ parent: 2
+ - uid: 14206
+ components:
+ - type: Transform
+ pos: 20.5,36.5
+ parent: 2
+ - uid: 14207
+ components:
+ - type: Transform
+ pos: 20.5,37.5
+ parent: 2
+ - uid: 14208
+ components:
+ - type: Transform
+ pos: 19.5,37.5
+ parent: 2
+ - uid: 14209
+ components:
+ - type: Transform
+ pos: 18.5,37.5
+ parent: 2
+ - uid: 14210
+ components:
+ - type: Transform
+ pos: 17.5,37.5
+ parent: 2
+ - uid: 14211
+ components:
+ - type: Transform
+ pos: 16.5,37.5
+ parent: 2
+ - uid: 14212
+ components:
+ - type: Transform
+ pos: 15.5,37.5
+ parent: 2
+ - uid: 14213
+ components:
+ - type: Transform
+ pos: 17.5,36.5
+ parent: 2
+ - uid: 14228
+ components:
+ - type: Transform
+ pos: 12.5,28.5
+ parent: 2
+ - uid: 14283
+ components:
+ - type: Transform
+ pos: -5.5,-19.5
+ parent: 2
+ - uid: 14284
+ components:
+ - type: Transform
+ pos: -6.5,-19.5
+ parent: 2
+ - uid: 14341
+ components:
+ - type: Transform
+ pos: -3.5,-15.5
+ parent: 2
+ - uid: 14414
+ components:
+ - type: Transform
+ pos: -7.5,-19.5
+ parent: 2
+ - uid: 14453
+ components:
+ - type: Transform
+ pos: -0.5,-10.5
+ parent: 2
+ - uid: 14488
+ components:
+ - type: Transform
+ pos: 40.5,-5.5
+ parent: 2
+ - uid: 15367
+ components:
+ - type: Transform
+ pos: 23.5,19.5
+ parent: 2
+ - uid: 15368
+ components:
+ - type: Transform
+ pos: 24.5,19.5
+ parent: 2
+ - uid: 15369
+ components:
+ - type: Transform
+ pos: 25.5,19.5
+ parent: 2
+ - uid: 15370
+ components:
+ - type: Transform
+ pos: 26.5,19.5
+ parent: 2
+ - uid: 15371
+ components:
+ - type: Transform
+ pos: 27.5,19.5
+ parent: 2
+ - uid: 15372
+ components:
+ - type: Transform
+ pos: 23.5,21.5
+ parent: 2
+ - uid: 15378
+ components:
+ - type: Transform
+ pos: 27.5,23.5
+ parent: 2
+ - uid: 15379
+ components:
+ - type: Transform
+ pos: 26.5,23.5
+ parent: 2
+ - uid: 15380
+ components:
+ - type: Transform
+ pos: 25.5,23.5
+ parent: 2
+ - uid: 15381
+ components:
+ - type: Transform
+ pos: 24.5,23.5
+ parent: 2
+ - uid: 15382
+ components:
+ - type: Transform
+ pos: 23.5,23.5
+ parent: 2
+ - uid: 15383
+ components:
+ - type: Transform
+ pos: 23.5,25.5
+ parent: 2
+ - uid: 15384
+ components:
+ - type: Transform
+ pos: 24.5,25.5
+ parent: 2
+ - uid: 15385
+ components:
+ - type: Transform
+ pos: 26.5,25.5
+ parent: 2
+ - uid: 15386
+ components:
+ - type: Transform
+ pos: 27.5,26.5
+ parent: 2
+ - uid: 15388
+ components:
+ - type: Transform
+ pos: 25.5,25.5
+ parent: 2
+ - uid: 15392
+ components:
+ - type: Transform
+ pos: 23.5,27.5
+ parent: 2
+ - uid: 15393
+ components:
+ - type: Transform
+ pos: 23.5,29.5
+ parent: 2
+ - uid: 15394
+ components:
+ - type: Transform
+ pos: 24.5,29.5
+ parent: 2
+ - uid: 15395
+ components:
+ - type: Transform
+ pos: 25.5,29.5
+ parent: 2
+ - uid: 15396
+ components:
+ - type: Transform
+ pos: 26.5,29.5
+ parent: 2
+ - uid: 15397
+ components:
+ - type: Transform
+ pos: 27.5,29.5
+ parent: 2
+ - uid: 15435
+ components:
+ - type: Transform
+ pos: 27.5,25.5
+ parent: 2
+ - uid: 15438
+ components:
+ - type: Transform
+ pos: 27.5,20.5
+ parent: 2
+ - uid: 15458
+ components:
+ - type: Transform
+ pos: 27.5,21.5
+ parent: 2
+ - uid: 15459
+ components:
+ - type: Transform
+ pos: 27.5,22.5
+ parent: 2
+ - uid: 15460
+ components:
+ - type: Transform
+ pos: 27.5,27.5
+ parent: 2
+ - uid: 15461
+ components:
+ - type: Transform
+ pos: 27.5,28.5
+ parent: 2
+ - uid: 15547
+ components:
+ - type: Transform
+ pos: 29.5,19.5
+ parent: 2
+ - uid: 15548
+ components:
+ - type: Transform
+ pos: 29.5,20.5
+ parent: 2
+ - uid: 15549
+ components:
+ - type: Transform
+ pos: 29.5,21.5
+ parent: 2
+ - uid: 15550
+ components:
+ - type: Transform
+ pos: 29.5,22.5
+ parent: 2
+ - uid: 15551
+ components:
+ - type: Transform
+ pos: 29.5,23.5
+ parent: 2
+ - uid: 15552
+ components:
+ - type: Transform
+ pos: 29.5,24.5
+ parent: 2
+ - uid: 15553
+ components:
+ - type: Transform
+ pos: 30.5,24.5
+ parent: 2
+ - uid: 15556
+ components:
+ - type: Transform
+ pos: 33.5,24.5
+ parent: 2
+ - uid: 15557
+ components:
+ - type: Transform
+ pos: 33.5,23.5
+ parent: 2
+ - uid: 15558
+ components:
+ - type: Transform
+ pos: 33.5,22.5
+ parent: 2
+ - uid: 15559
+ components:
+ - type: Transform
+ pos: 33.5,21.5
+ parent: 2
+ - uid: 15560
+ components:
+ - type: Transform
+ pos: 33.5,20.5
+ parent: 2
+ - uid: 15561
+ components:
+ - type: Transform
+ pos: 33.5,19.5
+ parent: 2
+ - uid: 15562
+ components:
+ - type: Transform
+ pos: 32.5,19.5
+ parent: 2
+ - uid: 15563
+ components:
+ - type: Transform
+ pos: 31.5,19.5
+ parent: 2
+- proto: CP14WindowDirectional
+ entities:
+ - uid: 8858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -44.5,-28.5
+ parent: 2
+ - uid: 8859
+ components:
+ - type: Transform
+ pos: -43.5,-27.5
+ parent: 2
+ - uid: 8876
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -43.5,-29.5
+ parent: 2
+ - uid: 8880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-28.5
+ parent: 2
+- proto: CP14WindowMarbleBrick
+ entities:
+ - uid: 525
+ components:
+ - type: Transform
+ pos: -28.5,-23.5
+ parent: 2
+ - uid: 574
+ components:
+ - type: Transform
+ pos: -26.5,-23.5
+ parent: 2
+ - uid: 575
+ components:
+ - type: Transform
+ pos: -27.5,-23.5
+ parent: 2
+- proto: CP14WindowStoneBrick
+ entities:
+ - uid: 430
+ components:
+ - type: Transform
+ pos: -44.5,9.5
+ parent: 2
+ - uid: 467
+ components:
+ - type: Transform
+ pos: -10.5,3.5
+ parent: 2
+ - uid: 468
+ components:
+ - type: Transform
+ pos: -11.5,3.5
+ parent: 2
+ - uid: 745
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,10.5
+ parent: 2
+ - uid: 746
+ components:
+ - type: Transform
+ pos: -44.5,7.5
+ parent: 2
+ - uid: 749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,10.5
+ parent: 2
+ - uid: 750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,7.5
+ parent: 2
+ - uid: 751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,10.5
+ parent: 2
+ - uid: 752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,7.5
+ parent: 2
+ - uid: 753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,9.5
+ parent: 2
+ - uid: 754
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,10.5
+ parent: 2
+ - uid: 755
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,9.5
+ parent: 2
+ - uid: 1571
+ components:
+ - type: Transform
+ pos: -39.5,-2.5
+ parent: 2
+ - uid: 1572
+ components:
+ - type: Transform
+ pos: -38.5,-2.5
+ parent: 2
+ - uid: 8866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,-30.5
+ parent: 2
+ - uid: 8867
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-30.5
+ parent: 2
+ - uid: 8868
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -44.5,-30.5
+ parent: 2
+ - uid: 8869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -45.5,-28.5
+ parent: 2
+ - uid: 8870
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -45.5,-27.5
+ parent: 2
+ - uid: 8871
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -45.5,-29.5
+ parent: 2
+ - uid: 8872
+ components:
+ - type: Transform
+ pos: -41.5,-27.5
+ parent: 2
+ - uid: 8873
+ components:
+ - type: Transform
+ pos: -41.5,-28.5
+ parent: 2
+ - uid: 8874
+ components:
+ - type: Transform
+ pos: -41.5,-29.5
+ parent: 2
+ - uid: 14342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-22.5
+ parent: 2
+ - uid: 14637
+ components:
+ - type: Transform
+ pos: 21.5,16.5
+ parent: 2
+ - uid: 14638
+ components:
+ - type: Transform
+ pos: 22.5,16.5
+ parent: 2
+ - uid: 14639
+ components:
+ - type: Transform
+ pos: 23.5,16.5
+ parent: 2
+ - uid: 14640
+ components:
+ - type: Transform
+ pos: 27.5,16.5
+ parent: 2
+ - uid: 14641
+ components:
+ - type: Transform
+ pos: 28.5,16.5
+ parent: 2
+ - uid: 14642
+ components:
+ - type: Transform
+ pos: 29.5,16.5
+ parent: 2
+- proto: CP14WindowWooden
+ entities:
+ - uid: 473
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,19.5
+ parent: 2
+ - uid: 476
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,18.5
+ parent: 2
+ - uid: 477
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,28.5
+ parent: 2
+ - uid: 478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-8.5
+ parent: 2
+ - uid: 479
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-8.5
+ parent: 2
+ - uid: 480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,17.5
+ parent: 2
+ - uid: 484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,18.5
+ parent: 2
+ - uid: 485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,22.5
+ parent: 2
+ - uid: 486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,22.5
+ parent: 2
+ - uid: 487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-8.5
+ parent: 2
+ - uid: 488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,24.5
+ parent: 2
+ - uid: 489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,19.5
+ parent: 2
+ - uid: 491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,11.5
+ parent: 2
+ - uid: 493
+ components:
+ - type: Transform
+ pos: -19.5,-5.5
+ parent: 2
+ - uid: 513
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-15.5
+ parent: 2
+ - uid: 518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-15.5
+ parent: 2
+ - uid: 524
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,2.5
+ parent: 2
+ - uid: 563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-15.5
+ parent: 2
+ - uid: 564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-15.5
+ parent: 2
+ - uid: 565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-23.5
+ parent: 2
+ - uid: 718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,2.5
+ parent: 2
+ - uid: 778
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,19.5
+ parent: 2
+ - uid: 902
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,0.5
+ parent: 2
+ - uid: 1238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-5.5
+ parent: 2
+ - uid: 1239
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-5.5
+ parent: 2
+ - uid: 1413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,1.5
+ parent: 2
+ - uid: 1415
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-0.5
+ parent: 2
+ - uid: 1475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-10.5
+ parent: 2
+ - uid: 1476
+ components:
+ - type: Transform
+ pos: 3.5,-10.5
+ parent: 2
+ - uid: 1478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-12.5
+ parent: 2
+ - uid: 1479
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-12.5
+ parent: 2
+ - uid: 1537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,12.5
+ parent: 2
+ - uid: 1542
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,12.5
+ parent: 2
+ - uid: 1558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,9.5
+ parent: 2
+ - uid: 1578
+ components:
+ - type: Transform
+ pos: 9.5,10.5
+ parent: 2
+ - uid: 5191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,68.5
+ parent: 2
+ - uid: 5202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,71.5
+ parent: 2
+ - uid: 5203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,70.5
+ parent: 2
+ - uid: 5236
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,68.5
+ parent: 2
+ - uid: 5380
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-4.5
+ parent: 2
+ - uid: 5382
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,1.5
+ parent: 2
+ - uid: 13196
+ components:
+ - type: Transform
+ pos: -19.5,-6.5
+ parent: 2
+ - uid: 14157
+ components:
+ - type: Transform
+ pos: 12.5,21.5
+ parent: 2
+ - uid: 14158
+ components:
+ - type: Transform
+ pos: 17.5,21.5
+ parent: 2
+ - uid: 14169
+ components:
+ - type: Transform
+ pos: 19.5,23.5
+ parent: 2
+ - uid: 14170
+ components:
+ - type: Transform
+ pos: 19.5,24.5
+ parent: 2
+ - uid: 14171
+ components:
+ - type: Transform
+ pos: 19.5,26.5
+ parent: 2
+ - uid: 14172
+ components:
+ - type: Transform
+ pos: 19.5,27.5
+ parent: 2
+ - uid: 14225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,35.5
+ parent: 2
+ - uid: 15399
+ components:
+ - type: Transform
+ pos: 23.5,20.5
+ parent: 2
+ - uid: 15400
+ components:
+ - type: Transform
+ pos: 23.5,26.5
+ parent: 2
+ - uid: 15554
+ components:
+ - type: Transform
+ pos: 31.5,24.5
+ parent: 2
+ - uid: 15555
+ components:
+ - type: Transform
+ pos: 32.5,24.5
+ parent: 2
+- proto: CP14WoodenBed
+ entities:
+ - uid: 177
+ components:
+ - type: Transform
+ pos: -48.5,-11.5
+ parent: 2
+ - uid: 187
+ components:
+ - type: Transform
+ pos: -46.5,-14.5
+ parent: 2
+ - uid: 1254
+ components:
+ - type: Transform
+ pos: -48.5,-14.5
+ parent: 2
+ - uid: 1302
+ components:
+ - type: Transform
+ pos: -25.5,11.5
+ parent: 2
+ - uid: 1344
+ components:
+ - type: Transform
+ pos: -44.5,-14.5
+ parent: 2
+ - uid: 1377
+ components:
+ - type: Transform
+ pos: -44.5,-11.5
+ parent: 2
+ - uid: 1600
+ components:
+ - type: Transform
+ pos: -28.5,17.5
+ parent: 2
+ - uid: 1605
+ components:
+ - type: Transform
+ pos: -19.5,18.5
+ parent: 2
+ - uid: 1612
+ components:
+ - type: Transform
+ pos: -15.5,18.5
+ parent: 2
+ - uid: 1617
+ components:
+ - type: Transform
+ pos: -11.5,18.5
+ parent: 2
+ - uid: 1619
+ components:
+ - type: Transform
+ pos: -14.5,27.5
+ parent: 2
+ - uid: 1624
+ components:
+ - type: Transform
+ pos: -10.5,27.5
+ parent: 2
+ - uid: 1628
+ components:
+ - type: Transform
+ pos: 0.5,21.5
+ parent: 2
+ - uid: 1634
+ components:
+ - type: Transform
+ pos: -3.5,21.5
+ parent: 2
+ - uid: 1640
+ components:
+ - type: Transform
+ pos: 4.5,21.5
+ parent: 2
+ - uid: 1643
+ components:
+ - type: Transform
+ pos: 4.5,19.5
+ parent: 2
+ - uid: 1644
+ components:
+ - type: Transform
+ pos: 0.5,19.5
+ parent: 2
+ - uid: 1645
+ components:
+ - type: Transform
+ pos: -5.5,17.5
+ parent: 2
+ - uid: 1658
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 2
+ - uid: 1664
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 2
+ - uid: 1669
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 2
+ - uid: 14373
+ components:
+ - type: Transform
+ pos: -13.5,-0.5
+ parent: 2
+ - uid: 14389
+ components:
+ - type: Transform
+ pos: -13.5,-23.5
+ parent: 2
+ - uid: 14418
+ components:
+ - type: Transform
+ pos: -3.5,-24.5
+ parent: 2
+ - uid: 14455
+ components:
+ - type: Transform
+ pos: 2.5,-9.5
+ parent: 2
+ - uid: 14515
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 2
+ - uid: 15436
+ components:
+ - type: Transform
+ pos: 26.5,26.5
+ parent: 2
+ - uid: 15439
+ components:
+ - type: Transform
+ pos: 26.5,20.5
+ parent: 2
+ - uid: 16007
+ components:
+ - type: Transform
+ pos: 19.5,36.5
+ parent: 2
+- proto: CP14WoodenBeerMug
+ entities:
+ - uid: 14333
+ components:
+ - type: Transform
+ pos: 12.45018,31.952408
+ parent: 2
+ - uid: 14334
+ components:
+ - type: Transform
+ pos: 12.774846,31.952408
+ parent: 2
+ - uid: 14335
+ components:
+ - type: Transform
+ pos: 12.538725,31.598425
+ parent: 2
+ - uid: 14336
+ components:
+ - type: Transform
+ pos: 12.93718,31.613174
+ parent: 2
+- proto: CP14WoodenCabinet
+ entities:
+ - uid: 1662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,9.5
+ parent: 2
+ - uid: 1663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,9.5
+ parent: 2
+ - uid: 1671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,8.5
+ parent: 2
+ - uid: 14517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-0.5
+ parent: 2
+ - uid: 14521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,3.5
+ parent: 2
+ - uid: 16019
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,33.5
+ parent: 2
+- proto: CP14WoodenCabinetAlchemist
+ entities:
+ - uid: 14456
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-11.5
+ parent: 2
+- proto: CP14WoodenCabinetBlacksmith
+ entities:
+ - uid: 14391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-23.5
+ parent: 2
+ - uid: 14461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,8.5
+ parent: 2
+- proto: CP14WoodenCabinetCommandant
+ entities:
+ - uid: 14419
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-24.5
+ parent: 2
+- proto: CP14WoodenCabinetGuildmaster
+ entities:
+ - uid: 14388
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-2.5
+ parent: 2
+- proto: CP14WoodenCabinetMerchant
+ entities:
+ - uid: 14123
+ components:
+ - type: Transform
+ pos: -28.5,-19.5
+ parent: 2
+ - uid: 14125
+ components:
+ - type: Transform
+ pos: -26.5,-19.5
+ parent: 2
+- proto: CP14WoodenChest
+ entities:
+ - uid: 14343
+ components:
+ - type: Transform
+ pos: -5.5,4.5
+ parent: 2
+ - uid: 14390
+ components:
+ - type: Transform
+ pos: -14.5,-0.5
+ parent: 2
+ - uid: 14457
+ components:
+ - type: Transform
+ pos: 1.5,-9.5
+ parent: 2
+- proto: CP14WoodenCloset
+ entities:
+ - uid: 1602
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,11.5
+ parent: 2
+ - uid: 1603
+ components:
+ - type: Transform
+ pos: -26.5,19.5
+ parent: 2
+ - uid: 1604
+ components:
+ - type: Transform
+ pos: -21.5,20.5
+ parent: 2
+ - uid: 1610
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,20.5
+ parent: 2
+ - uid: 1618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,18.5
+ parent: 2
+ - uid: 1620
+ components:
+ - type: Transform
+ pos: -15.5,27.5
+ parent: 2
+ - uid: 1625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,25.5
+ parent: 2
+ - uid: 1633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,21.5
+ parent: 2
+ - uid: 1635
+ components:
+ - type: Transform
+ pos: 0.5,23.5
+ parent: 2
+ - uid: 1641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,21.5
+ parent: 2
+ - uid: 1646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,17.5
+ parent: 2
+ - uid: 1647
+ components:
+ - type: Transform
+ pos: -1.5,19.5
+ parent: 2
+ - uid: 1648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,17.5
+ parent: 2
+ - uid: 1657
+ components:
+ - type: Transform
+ pos: -4.5,11.5
+ parent: 2
+ - uid: 1668
+ components:
+ - type: Transform
+ pos: 1.5,11.5
+ parent: 2
+ - uid: 1670
+ components:
+ - type: Transform
+ pos: 6.5,9.5
+ parent: 2
+ - uid: 15465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-18.5
+ parent: 2
+ - uid: 16013
+ components:
+ - type: Transform
+ pos: 18.5,36.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 16017
+ - 16014
+ - 16015
+ - 16016
+ - 16018
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: CP14WoodenClosetAlchemyFilled
+ entities:
+ - uid: 14458
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 2
+ - uid: 14516
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-0.5
+ parent: 2
+- proto: CP14WoodenClosetBlacksmithFilled
+ entities:
+ - uid: 14372
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.5,-23.5
+ parent: 2
+ - uid: 14460
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,7.5
+ parent: 2
+- proto: CP14WoodenClosetGuardCommanderFilled
+ entities:
+ - uid: 14436
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-21.5
+ parent: 2
+- proto: CP14WoodenClosetGuardFilled
+ entities:
+ - uid: 180
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-14.5
+ parent: 2
+ - uid: 188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -47.5,-14.5
+ parent: 2
+ - uid: 721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -43.5,-14.5
+ parent: 2
+ - uid: 1365
+ components:
+ - type: Transform
+ pos: -47.5,-11.5
+ parent: 2
+ - uid: 1384
+ components:
+ - type: Transform
+ pos: -43.5,-11.5
+ parent: 2
+- proto: CP14WoodenClosetGuildmasterFilled
+ entities:
+ - uid: 14371
+ components:
+ - type: Transform
+ pos: -15.5,-4.5
+ parent: 2
+- proto: CP14WoodenClosetMerchantFilled
+ entities:
+ - uid: 14122
+ components:
+ - type: Transform
+ pos: -29.5,-19.5
+ parent: 2
+ - uid: 14124
+ components:
+ - type: Transform
+ pos: -25.5,-19.5
+ parent: 2
+ - uid: 14248
+ components:
+ - type: Transform
+ pos: -30.5,-10.5
+ parent: 2
+- proto: CP14WoodenDoor
+ entities:
+ - uid: 14374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-17.5
+ parent: 2
+ - uid: 15572
+ components:
+ - type: Transform
+ pos: 30.5,19.5
+ parent: 2
+ - uid: 15977
+ components:
+ - type: Transform
+ pos: 37.5,-8.5
+ parent: 2
+ - uid: 16024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-17.5
+ parent: 2
+ - uid: 17810
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-0.5
+ parent: 2
+- proto: CP14WoodenDoorMirrored
+ entities:
+ - uid: 14375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-18.5
+ parent: 2
+ - uid: 14376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-21.5
+ parent: 2
+ - uid: 15978
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,1.5
+ parent: 2
+ - uid: 16026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-18.5
+ parent: 2
+ - uid: 17811
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-2.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse1
+ entities:
+ - uid: 17794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,13.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse10
+ entities:
+ - uid: 17803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,24.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse11
+ entities:
+ - uid: 17804
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse12
+ entities:
+ - uid: 17805
+ components:
+ - type: Transform
+ pos: -0.5,16.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse13
+ entities:
+ - uid: 17806
+ components:
+ - type: Transform
+ pos: -3.5,16.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse14
+ entities:
+ - uid: 17807
+ components:
+ - type: Transform
+ pos: -3.5,12.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse15
+ entities:
+ - uid: 17808
+ components:
+ - type: Transform
+ pos: 0.5,12.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse16
+ entities:
+ - uid: 17809
+ components:
+ - type: Transform
+ pos: 7.5,7.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse2
+ entities:
+ - uid: 17795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,17.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse3
+ entities:
+ - uid: 17796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,24.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse4
+ entities:
+ - uid: 17797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,24.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse5
+ entities:
+ - uid: 17798
+ components:
+ - type: Transform
+ pos: -13.5,21.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse6
+ entities:
+ - uid: 17799
+ components:
+ - type: Transform
+ pos: -16.5,21.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse7
+ entities:
+ - uid: 17800
+ components:
+ - type: Transform
+ pos: -19.5,21.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse8
+ entities:
+ - uid: 17801
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,24.5
+ parent: 2
+- proto: CP14WoodenDoorPersonalHouse9
+ entities:
+ - uid: 17802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,24.5
+ parent: 2
+- proto: CP14WoodenDoorTavernAlchemy1
+ entities:
+ - uid: 14353
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,3.5
+ parent: 2
+ - uid: 14448
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 2
+- proto: CP14WoodenDoorTavernAlchemy2
+ entities:
+ - uid: 14444
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-11.5
+ parent: 2
+ - uid: 14445
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-7.5
+ parent: 2
+ - uid: 14446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-8.5
+ parent: 2
+- proto: CP14WoodenDoorTavernAlchemyMirrored1
+ entities:
+ - uid: 14449
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 2
+ - uid: 14450
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,4.5
+ parent: 2
+ - uid: 14451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,2.5
+ parent: 2
+- proto: CP14WoodenDoorTavernHallMirrored
+ entities:
+ - uid: 14226
+ components:
+ - type: Transform
+ pos: 15.5,21.5
+ parent: 2
+- proto: CP14WoodenDoorTavernStaff
+ entities:
+ - uid: 14214
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,34.5
+ parent: 2
+ - uid: 14222
+ components:
+ - type: Transform
+ pos: 14.5,32.5
+ parent: 2
+ - uid: 14223
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,34.5
+ parent: 2
+ - uid: 14229
+ components:
+ - type: Transform
+ pos: 11.5,28.5
+ parent: 2
+- proto: CP14WoodenDoorWindowedTavernHall
+ entities:
+ - uid: 14219
+ components:
+ - type: Transform
+ pos: 14.5,21.5
+ parent: 2
+- proto: CP14WoodenPlanks20
+ entities:
+ - uid: 15599
+ components:
+ - type: Transform
+ pos: 31.461697,23.728514
+ parent: 2
+- proto: CP14Workbench
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ pos: -9.5,8.5
+ parent: 2
+ - uid: 14364
+ components:
+ - type: Transform
+ pos: -15.5,-19.5
+ parent: 2
+ - uid: 14465
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 2
+- proto: CP14WorkbenchAnvil
+ entities:
+ - uid: 495
+ components:
+ - type: Transform
+ pos: -11.5,8.5
+ parent: 2
+ - uid: 14359
+ components:
+ - type: Transform
+ pos: -15.5,-16.5
+ parent: 2
+- proto: CP14WorkbenchCooking
+ entities:
+ - uid: 14251
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,31.5
+ parent: 2
+- proto: CP14WorkbenchFurnace
+ entities:
+ - uid: 496
+ components:
+ - type: Transform
+ pos: -10.5,8.5
+ parent: 2
+ - uid: 14358
+ components:
+ - type: Transform
+ pos: -14.5,-16.5
+ parent: 2
+- proto: SpawnPointLatejoin
+ entities:
+ - uid: 17821
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-32.5
+ parent: 2
+ - uid: 17822
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-35.5
+ parent: 2
+ - uid: 17823
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-32.5
+ parent: 2
+ - uid: 17824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-35.5
+ parent: 2
+- proto: SpawnPointObserver
+ entities:
+ - uid: 17825
+ components:
+ - type: Transform
+ pos: -8.5,-5.5
+ parent: 2
+...
diff --git a/Resources/Maps/amber.yml b/Resources/Maps/amber.yml
index acaebac8aa..bb07d04813 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
- -20,-14:
- 2: 722
- 3: 32800
- -20,-17:
+ 1: 159
2: 32768
+ -20,-14:
+ 1: 722
+ 2: 32800
+ -20,-17:
+ 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
- 19,0:
- 2: 13105
- 19,-2:
- 2: 60544
- 19,-5:
- 2: 32896
- 20,-2:
- 2: 311
- 20,-7:
- 3: 24576
- 19,-7:
- 2: 32768
- 20,-6:
- 2: 16912
- 3: 36078
- 19,-6:
- 2: 200
- 20,-5:
- 2: 784
- 3: 60552
- 20,-4:
- 3: 18022
- 21,-6:
- 3: 18367
- 2: 2048
- 21,-5:
- 3: 55735
- 2: 8
- 21,-8:
- 2: 546
- 3: 34952
- 21,-7:
- 3: 34958
+ 1: 44456
2: 512
+ 19,0:
+ 1: 13105
+ 19,-2:
+ 1: 60544
+ 19,-5:
+ 1: 32896
+ 20,-2:
+ 1: 311
+ 20,-7:
+ 2: 24576
+ 19,-7:
+ 1: 32768
+ 20,-6:
+ 1: 16912
+ 2: 36078
+ 19,-6:
+ 1: 200
+ 20,-5:
+ 1: 784
+ 2: 60552
+ 20,-4:
+ 2: 18022
+ 21,-6:
+ 2: 18367
+ 1: 2048
+ 21,-5:
+ 2: 55735
+ 1: 8
+ 21,-8:
+ 1: 546
+ 2: 34952
+ 21,-7:
+ 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
- 8,-21:
- 2: 4352
- 17,-12:
- 3: 53248
- 2: 11980
- 17,-11:
- 3: 40129
- 2: 24588
- 17,-10:
- 2: 199
- 17,-13:
- 2: 17476
- 18,-12:
- 3: 61426
- 2: 4096
- 18,-11:
- 3: 30591
- 18,-10:
- 2: 112
- 18,-13:
- 2: 51336
- 19,-12:
- 3: 65520
- 19,-11:
- 3: 32766
- 2: 32768
- 19,-13:
- 2: 4096
- 19,-10:
- 3: 2
- 20,-12:
- 3: 4352
- 2: 8940
- 20,-11:
- 3: 32784
- 2: 14790
- 11,-23:
- 3: 49152
- 11,-22:
- 3: 43148
- 2: 1088
- 12,-23:
- 3: 4096
- 12,-22:
- 3: 273
- -4,-24:
- 3: 238
- 2: 19456
- -4,-25:
- 3: 57344
- -4,-23:
- 2: 52292
- 3: 128
- -4,-22:
- 2: 52428
- -3,-24:
- 2: 487
- 3: 63000
- -3,-23:
- 3: 51071
- 2: 4096
- -3,-25:
- 2: 11840
- 3: 49152
- -3,-22:
- 3: 4
- 2: 34816
- -2,-24:
- 3: 49147
- -2,-23:
- 3: 49416
- 2: 13024
- -2,-22:
- 2: 13106
- 3: 68
- -2,-25:
- 3: 34816
- 2: 640
- -1,-24:
- 3: 65535
- -1,-23:
- 2: 248
- 3: 39426
- -1,-22:
- 2: 48
- 3: 32974
- -1,-25:
- 3: 7492
- 2: 178
- 0,-24:
- 3: 30481
- 2: 35054
- 0,-23:
- 2: 58
- 3: 57284
- 0,-22:
- 3: 29439
- -16,8:
- 2: 204
- -16,7:
- 2: 51336
- -15,8:
- 2: 31
- -15,7:
- 2: 61713
- -14,8:
- 2: 127
- -14,7:
- 2: 61986
- 3: 85
- -3,9:
- 2: 18
- -16,2:
- 2: 52360
- -16,3:
- 2: 52364
- -16,4:
- 2: 52364
- -16,1:
- 2: 34952
- -15,1:
- 2: 65315
- -15,2:
- 2: 61713
- 3: 2048
- -15,3:
- 2: 61713
- 3: 2056
- -15,4:
- 2: 61713
- 3: 2056
- -14,1:
- 2: 65280
- -14,2:
- 3: 36608
- 2: 28672
- -14,3:
- 3: 36623
- 2: 28672
- -14,4:
- 3: 36623
- 2: 28672
- 0,-21:
- 3: 2
- 0,-25:
- 2: 43679
- 3: 256
- 1,-24:
- 2: 547
- 3: 60620
- 1,-23:
- 3: 52730
- 1,-22:
- 2: 96
- 1,-25:
- 2: 8449
- 3: 50910
- 2,-24:
- 3: 61438
- 2,-23:
- 3: 32552
- 2,-22:
- 3: 231
- 2: 60928
- 2,-25:
- 3: 24576
- 2: 3329
- 24,-10:
- 3: 4096
- 23,-10:
- 2: 52851
- 3: 12288
- -16,5:
- 2: 52364
- -16,6:
- 2: 34956
- -15,5:
- 2: 46353
- 3: 16392
- -15,6:
- 2: 4373
- -14,5:
- 3: 8207
- 2: 53760
- -14,6:
- 3: 21872
- 2: 8706
- -13,6:
- 3: 21872
- 2: 8706
- 20,-13:
- 2: 12850
- 3: 257
- 20,-10:
- 2: 35879
- 3: 8
- 21,-12:
- 2: 52851
- 21,-11:
- 2: 264
- 3: 4096
- 21,-10:
- 3: 33
- 2: 29124
- 22,-12:
- 2: 4096
- 22,-11:
- 2: 52851
- 22,-10:
- 2: 52792
- 23,-11:
- 2: 4096
- 16,-21:
- 3: 48058
- 16,-14:
- 2: 2
- 17,-16:
+ 1: 35016
2: 1
- 3: 65534
- 17,-15:
- 3: 34021
- 2: 25360
- 17,-17:
- 3: 65505
- 17,-14:
- 2: 17612
- 18,-16:
- 3: 62463
- 2: 3072
- 18,-15:
- 3: 45055
- 2: 20480
- 18,-14:
- 2: 35226
- 18,-17:
- 3: 63482
- 19,-16:
+ 8,-21:
+ 1: 4352
+ 17,-12:
+ 2: 53248
+ 1: 11980
+ 17,-11:
+ 2: 40129
+ 1: 24588
+ 17,-10:
+ 1: 199
+ 17,-13:
+ 1: 17476
+ 18,-12:
+ 2: 61426
+ 1: 4096
+ 18,-11:
+ 2: 30591
+ 18,-10:
+ 1: 112
+ 18,-13:
+ 1: 51336
+ 19,-12:
+ 2: 65520
+ 19,-11:
+ 2: 32766
+ 1: 32768
+ 19,-13:
+ 1: 4096
+ 19,-10:
+ 2: 2
+ 20,-12:
2: 4352
- 19,-15:
- 3: 273
- 0: 4096
- 2: 25088
- 19,-14:
- 2: 2671
- 3: 128
- 20,-14:
- 2: 12816
- 3: 256
- 17,-20:
- 3: 34989
- 2: 22032
- 17,-19:
- 2: 34055
- 3: 2240
- 17,-18:
- 2: 28417
- 3: 16
- 17,-21:
- 3: 56817
+ 1: 8940
+ 20,-11:
+ 2: 32784
+ 1: 14790
+ 11,-23:
+ 2: 49152
+ 11,-22:
+ 2: 43148
+ 1: 1088
+ 12,-23:
+ 2: 4096
+ 12,-22:
+ 2: 273
+ -4,-24:
+ 2: 238
+ 1: 19456
+ -4,-25:
+ 2: 57344
+ -4,-23:
+ 1: 52292
+ 2: 128
+ -4,-22:
+ 1: 52428
+ -3,-24:
+ 1: 487
+ 2: 63000
+ -3,-23:
+ 2: 51071
+ 1: 4096
+ -3,-25:
+ 1: 11840
+ 2: 49152
+ -3,-22:
2: 4
- 18,-20:
- 3: 65527
- 18,-19:
- 3: 56784
- 18,-18:
- 2: 1999
- 3: 61440
- 18,-21:
- 3: 12544
- 19,-19:
- 3: 4384
- 19,-18:
- 2: 4097
- 3: 34
- 19,-17:
+ 1: 34816
+ -2,-24:
+ 2: 49147
+ -2,-23:
+ 2: 49416
+ 1: 13024
+ -2,-22:
+ 1: 13106
+ 2: 68
+ -2,-25:
+ 2: 34816
+ 1: 640
+ -1,-24:
+ 2: 65535
+ -1,-23:
+ 1: 248
+ 2: 39426
+ -1,-22:
+ 1: 48
+ 2: 32974
+ -1,-25:
+ 2: 7492
+ 1: 178
+ 0,-24:
+ 2: 30481
+ 1: 35054
+ 0,-23:
+ 1: 58
+ 2: 57284
+ 0,-22:
+ 2: 29439
+ -16,8:
+ 1: 204
+ -16,7:
+ 1: 51336
+ -15,8:
+ 1: 31
+ -15,7:
+ 1: 61713
+ -14,8:
+ 1: 127
+ -14,7:
+ 1: 61986
+ 2: 85
+ -3,9:
+ 1: 18
+ -16,2:
+ 1: 52360
+ -16,3:
+ 1: 52364
+ -16,4:
+ 1: 52364
+ -16,1:
+ 1: 34952
+ -15,1:
+ 1: 65315
+ -15,2:
+ 1: 61713
+ 2: 2048
+ -15,3:
+ 1: 61713
+ 2: 2056
+ -15,4:
+ 1: 61713
+ 2: 2056
+ -14,1:
+ 1: 65280
+ -14,2:
+ 2: 36608
+ 1: 28672
+ -14,3:
+ 2: 36623
+ 1: 28672
+ -14,4:
+ 2: 36623
+ 1: 28672
+ 0,-21:
+ 2: 2
+ 0,-25:
+ 1: 43679
2: 256
- 16,-22:
- 2: 3168
- 3: 32768
- 17,-22:
- 3: 12288
- 20,-3:
- 2: 60544
- 3: 8
- 21,-3:
- 3: 127
- 2: 256
- 22,-3:
- 3: 37
- -1,-26:
+ 1,-24:
+ 1: 547
+ 2: 60620
+ 1,-23:
+ 2: 52730
+ 1,-22:
+ 1: 96
+ 1,-25:
+ 1: 8449
+ 2: 50910
+ 2,-24:
+ 2: 61438
+ 2,-23:
+ 2: 32552
+ 2,-22:
+ 2: 231
+ 1: 60928
+ 2,-25:
2: 24576
+ 1: 3329
+ 24,-10:
+ 2: 4096
+ 23,-10:
+ 1: 52851
+ 2: 12288
+ -16,5:
+ 1: 52364
+ -16,6:
+ 1: 34956
+ -15,5:
+ 1: 46353
+ 2: 16392
+ -15,6:
+ 1: 4373
+ -14,5:
+ 2: 8207
+ 1: 53760
+ -14,6:
+ 2: 21872
+ 1: 8706
+ -13,6:
+ 2: 21872
+ 1: 8706
+ 20,-13:
+ 1: 12850
+ 2: 257
+ 20,-10:
+ 1: 35879
+ 2: 8
+ 21,-12:
+ 1: 52851
+ 21,-11:
+ 1: 264
+ 2: 4096
+ 21,-10:
+ 2: 33
+ 1: 29124
+ 22,-12:
+ 1: 4096
+ 22,-11:
+ 1: 52851
+ 22,-10:
+ 1: 52792
+ 23,-11:
+ 1: 4096
+ 16,-21:
+ 2: 48058
+ 16,-14:
+ 1: 2
+ 17,-16:
+ 1: 1
+ 2: 65534
+ 17,-15:
+ 2: 34021
+ 1: 25360
+ 17,-17:
+ 2: 65505
+ 17,-14:
+ 1: 17612
+ 18,-16:
+ 2: 62463
+ 1: 3072
+ 18,-15:
+ 2: 45055
+ 1: 20480
+ 18,-14:
+ 1: 35226
+ 18,-17:
+ 2: 63482
+ 19,-16:
+ 1: 4352
+ 19,-15:
+ 2: 273
+ 0: 4096
+ 1: 25088
+ 19,-14:
+ 1: 2671
+ 2: 128
+ 20,-14:
+ 1: 12816
+ 2: 256
+ 17,-20:
+ 2: 34989
+ 1: 22032
+ 17,-19:
+ 1: 34055
+ 2: 2240
+ 17,-18:
+ 1: 28417
+ 2: 16
+ 17,-21:
+ 2: 56817
+ 1: 4
+ 18,-20:
+ 2: 65527
+ 18,-19:
+ 2: 56784
+ 18,-18:
+ 1: 1999
+ 2: 61440
+ 18,-21:
+ 2: 12544
+ 19,-19:
+ 2: 4384
+ 19,-18:
+ 1: 4097
+ 2: 34
+ 19,-17:
+ 1: 256
+ 16,-22:
+ 1: 3168
+ 2: 32768
+ 17,-22:
+ 2: 12288
+ 20,-3:
+ 1: 60544
+ 2: 8
+ 21,-3:
+ 2: 127
+ 1: 256
+ 22,-3:
+ 2: 37
+ -1,-26:
+ 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
@@ -14418,21 +14390,6 @@ entities:
- 0
- 0
- 0
- - volume: 2500
- temperature: 235
- moles:
- - 21.824879
- - 82.10312
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- volume: 2500
immutable: True
moles:
@@ -14463,6 +14420,21 @@ entities:
- 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:
@@ -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,17 +116024,17 @@ entities:
rot: -1.5707963267948966 rad
pos: 21.5,-47.5
parent: 2
+ - uid: 4890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-42.5
+ parent: 2
- uid: 6121
components:
- type: Transform
pos: 42.5,12.5
parent: 2
- - uid: 6943
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-45.5
- parent: 2
- uid: 7335
components:
- type: Transform
@@ -115988,18 +116180,24 @@ entities:
rot: 1.5707963267948966 rad
pos: -9.5,-25.5
parent: 2
- - uid: 17606
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-42.5
- parent: 2
- uid: 17723
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -5.5,-26.5
parent: 2
+ - uid: 20173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ 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:
- type: Transform
@@ -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 2ea0e587c1..c41d254048 100644
--- a/Resources/Maps/bagel.yml
+++ b/Resources/Maps/bagel.yml
@@ -77,99 +77,99 @@ entities:
chunks:
0,-1:
ind: 0,-1
- tiles: XQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAACHwAAAAADHwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAAAHwAAAAACHwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAADfgAAAAAATwAAAAAAEQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAC
+ tiles: XQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAADHwAAAAADHwAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAACHwAAAAACHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADHwAAAAAAfgAAAAAATwAAAAAAEQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAD
version: 6
-1,-1:
ind: -1,-1
- tiles: XQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAZAAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAADZAAAAAAAXQAAAAACZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAdAAAAAAAdAAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAADcwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAMwAAAAAAegAAAAACegAAAAABegAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAACMwAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAHwAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAACJAAAAAAAegAAAAACegAAAAABegAAAAAAfgAAAAAAHwAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAABegAAAAADegAAAAADfgAAAAAAHwAAAAABTQAAAAADTQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAHwAAAAACXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAB
+ tiles: XQAAAAACXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAACZAAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADZAAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAdAAAAAAAdAAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAABcwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACMwAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAACMwAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAHwAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADJAAAAAADegAAAAADegAAAAADegAAAAADfgAAAAAAHwAAAAADXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAHwAAAAADTQAAAAADTQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACXQAAAAABXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAC
version: 6
0,0:
ind: 0,0
- tiles: HwAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAABLwAAAAACLwAAAAACfQAAAAAAfgAAAAAAXQAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAABDAAAAAABDAAAAAABDAAAAAADLwAAAAABfgAAAAAAXQAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAADDAAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAADLwAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAACDAAAAAABDAAAAAADDAAAAAABDAAAAAACDAAAAAAALwAAAAAAXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAADHwAAAAAADAAAAAABDAAAAAACDAAAAAADHwAAAAACLwAAAAACXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAABLwAAAAAATgAAAAADLwAAAAACLwAAAAACfgAAAAAATQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACTQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADTQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAATQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAC
+ tiles: HwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAACLwAAAAAALwAAAAABfQAAAAAAfgAAAAAAXQAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAACDAAAAAADDAAAAAACDAAAAAADLwAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAAADAAAAAACDAAAAAACDAAAAAADDAAAAAACDAAAAAADLwAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAABLwAAAAABXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAACHwAAAAABDAAAAAACDAAAAAAADAAAAAAAHwAAAAACLwAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAADLwAAAAABTgAAAAABLwAAAAAALwAAAAAAfgAAAAAATQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAATQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABTQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABTQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADfgAAAAAAXQAAAAAB
version: 6
-1,0:
ind: -1,0
- tiles: XQAAAAABXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACXQAAAAADXQAAAAADHwAAAAACbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABXQAAAAABXQAAAAABfgAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAOAAAAAAAOAAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATQAAAAACTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADTQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACTQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADTQAAAAABTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAADHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACHwAAAAADHwAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAACegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADHwAAAAAAHwAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAABegAAAAAAegAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABegAAAAADegAAAAAAegAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAXQAAAAAB
+ tiles: XQAAAAABXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAXQAAAAADXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAXQAAAAABXQAAAAABHwAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAXQAAAAACXQAAAAABfgAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAOAAAAAAAOAAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATQAAAAADTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAADTQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADTQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACTQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAHwAAAAADfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAAAegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAACegAAAAACegAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAegAAAAACegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACegAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAXQAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: XQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACegAAAAADegAAAAADegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAATgAAAAACfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAADgAAAAADegAAAAACegAAAAADegAAAAADegAAAAADegAAAAADXQAAAAACXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAAAfgAAAAAADgAAAAABegAAAAADegAAAAACegAAAAAAegAAAAAAegAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAACDgAAAAACDgAAAAABXQAAAAAAXQAAAAADfgAAAAAATQAAAAAATQAAAAACTQAAAAACTQAAAAAATQAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACTQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAATQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAC
+ tiles: XQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAegAAAAAAegAAAAABegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAATgAAAAACfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABfgAAAAAADgAAAAADegAAAAABegAAAAABegAAAAAAegAAAAACegAAAAACXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAACfgAAAAAADgAAAAAAegAAAAABegAAAAADegAAAAABegAAAAACegAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAABDgAAAAACDgAAAAABXQAAAAACXQAAAAADfgAAAAAATQAAAAAATQAAAAABTQAAAAABTQAAAAAATQAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACTQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACTQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAC
version: 6
-1,-2:
ind: -1,-2
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACfgAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAATQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADTQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACTQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAAgAAAAACfgAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAALgAAAAAAfgAAAAAAAwAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADTQAAAAAATQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAC
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABTQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAATQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAACTQAAAAACXQAAAAABTQAAAAAATQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAAgAAAAACfgAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAALgAAAAAAfgAAAAAAAwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAALgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAC
version: 6
0,-3:
ind: 0,-3
- tiles: XQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAACXQAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAADXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAegAAAAABegAAAAABegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAA
+ tiles: XQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAABXQAAAAADXQAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAADegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAegAAAAADegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAABXQAAAAADXQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAAAXQAAAAADXQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAA
version: 6
1,-2:
ind: 1,-2
- tiles: egAAAAADegAAAAABegAAAAACegAAAAACegAAAAADegAAAAADfgAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAACfgAAAAAAHwAAAAACXQAAAAACXQAAAAABXQAAAAABegAAAAACegAAAAACegAAAAACegAAAAABegAAAAADegAAAAABfgAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAACfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAADegAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAAAXQAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAABXQAAAAAAegAAAAADegAAAAADegAAAAABegAAAAABegAAAAACegAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAABXQAAAAABDgAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAAADgAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABDgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAPAAAAAAAXQAAAAACXQAAAAAATQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAATQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADTQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACTQAAAAAATQAAAAACfgAAAAAAfgAAAAAADgAAAAAADgAAAAACDgAAAAABDgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAADDgAAAAACDgAAAAABDgAAAAABDgAAAAABDgAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAACcAAAAAADfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAADegAAAAAAegAAAAAAegAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADXQAAAAABXQAAAAAAHwAAAAADHwAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAACegAAAAABegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABHwAAAAAAHwAAAAABDgAAAAACDgAAAAACDgAAAAADDgAAAAAADgAAAAAAegAAAAACegAAAAACegAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAABXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACDgAAAAABDgAAAAABDgAAAAADDgAAAAACDgAAAAAAegAAAAACegAAAAADegAAAAAAfgAAAAAAcAAAAAACcAAAAAADfgAAAAAA
+ tiles: egAAAAACegAAAAABegAAAAACegAAAAADegAAAAAAegAAAAADfgAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACfgAAAAAAHwAAAAADXQAAAAADXQAAAAADXQAAAAABegAAAAACegAAAAABegAAAAAAegAAAAACegAAAAACegAAAAADfgAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACfgAAAAAAHwAAAAACXQAAAAAAXQAAAAACXQAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAACegAAAAAAegAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAAAXQAAAAAAegAAAAABegAAAAABegAAAAACegAAAAABegAAAAABegAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAABXQAAAAABegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACXQAAAAABXQAAAAACXQAAAAACDgAAAAABDgAAAAACDgAAAAACDgAAAAABDgAAAAADDgAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABDgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAPAAAAAAAXQAAAAADXQAAAAACTQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABTQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABTQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAATQAAAAABTQAAAAACfgAAAAAAfgAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAACDgAAAAADDgAAAAADDgAAAAADDgAAAAAADgAAAAACegAAAAABegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAcAAAAAADfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAADgAAAAADDgAAAAAADgAAAAADDgAAAAADDgAAAAACegAAAAACegAAAAADegAAAAABfgAAAAAAcAAAAAACcAAAAAACcAAAAAACXQAAAAAAXQAAAAACHwAAAAABHwAAAAABDgAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAACegAAAAADegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABHwAAAAABHwAAAAAADgAAAAADDgAAAAABDgAAAAACDgAAAAACDgAAAAACegAAAAAAegAAAAABegAAAAADfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAACegAAAAABegAAAAABegAAAAAAfgAAAAAAcAAAAAADcAAAAAAAfgAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: XQAAAAACXQAAAAAAfgAAAAAAHwAAAAAADgAAAAABDgAAAAAADgAAAAABDgAAAAABDgAAAAACegAAAAAAegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAegAAAAABegAAAAACcAAAAAADXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAACfgAAAAAAegAAAAACegAAAAAAHwAAAAADXQAAAAACXQAAAAACfgAAAAAAHwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAABEQAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: XQAAAAACXQAAAAACfgAAAAAAHwAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAAADgAAAAACegAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAegAAAAACegAAAAACcAAAAAACXQAAAAADXQAAAAACfgAAAAAAHwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAADfgAAAAAAegAAAAABegAAAAADHwAAAAADXQAAAAABXQAAAAADfgAAAAAAHwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAfgAAAAAAegAAAAABegAAAAACfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAATQAAAAADTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACEQAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: XQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAXQAAAAAAEQAAAAAAHwAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAEQAAAAAAXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAATQAAAAAATQAAAAADfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACTQAAAAAATQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAdAAAAAADdAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAcAAAAAADdAAAAAABdAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAdAAAAAADdAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAdAAAAAAAVgAAAAACfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: XQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAXQAAAAADEQAAAAAAHwAAAAACOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAEQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAATQAAAAAATQAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAATQAAAAABTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAdAAAAAABdAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACcAAAAAADdAAAAAAAdAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAdAAAAAACdAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAdAAAAAADVgAAAAADfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
-2,-2:
ind: -2,-2
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAACfAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAABTQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAATQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADTQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAHwAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABHwAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADHwAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADHwAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAATQAAAAADHwAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAFfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABfAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABTQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABTQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABTQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAATQAAAAADHwAAAAADHwAAAAACHwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACHwAAAAADTQAAAAABTQAAAAADLgAAAAAALgAAAAAATgAAAAABLgAAAAAALgAAAAAATQAAAAACTQAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACHwAAAAABTQAAAAABTQAAAAAAHwAAAAADLgAAAAAALgAAAAAALgAAAAAAHwAAAAABTQAAAAABTQAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACLgAAAAAATgAAAAACLgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAD
version: 6
-2,-1:
ind: -2,-1
- tiles: fgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAHwAAAAADHwAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAcAAAAAAAcAAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAcAAAAAACcAAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAHwAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAHwAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAATQAAAAABfgAAAAAAHwAAAAACXQAAAAABXQAAAAADfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATQAAAAACTQAAAAACXQAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABfgAAAAAAXQAAAAACXQAAAAAC
+ tiles: XQAAAAAAXQAAAAABHwAAAAAALgAAAAAALgAAAAAATgAAAAABLgAAAAAALgAAAAAAHwAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAXQAAAAAATQAAAAACTQAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACfgAAAAAATQAAAAABTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAATQAAAAACHwAAAAABHwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAABHwAAAAAAHwAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAACfgAAAAAAXQAAAAADXQAAAAAC
version: 6
-2,0:
ind: -2,0
- tiles: TQAAAAAATQAAAAABXQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAAAegAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAACXQAAAAAATQAAAAAATQAAAAACXQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABegAAAAABegAAAAABegAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAACHwAAAAADHwAAAAACXQAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAHwAAAAACHwAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAATQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADTQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADTQAAAAABXQAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACXQAAAAADHwAAAAADfgAAAAAAHwAAAAAAegAAAAADegAAAAADegAAAAACegAAAAADegAAAAABHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABEQAAAAAAHwAAAAADfgAAAAAAHwAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAABegAAAAABHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADEQAAAAAAXQAAAAACfgAAAAAAHwAAAAABegAAAAABegAAAAABegAAAAACegAAAAABegAAAAACHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABEQAAAAAAHwAAAAAAfgAAAAAAHwAAAAABegAAAAABegAAAAAAegAAAAADegAAAAABegAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAACegAAAAAAegAAAAACegAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAXQAAAAAB
+ tiles: HwAAAAADHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAACfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACTQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAATQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADTQAAAAACXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAADHwAAAAAAfgAAAAAAHwAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACEQAAAAAAHwAAAAABfgAAAAAAHwAAAAADegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADEQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAegAAAAABegAAAAABegAAAAACegAAAAACegAAAAABHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACEQAAAAAAHwAAAAACfgAAAAAAHwAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAACegAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABHwAAAAABfgAAAAAAHwAAAAAAegAAAAADegAAAAADegAAAAABegAAAAAAegAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAAB
version: 6
1,-3:
ind: 1,-3
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAABfgAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACfgAAAAAADAAAAAABDAAAAAADfgAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAABegAAAAAAegAAAAABHwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAACHwAAAAADDAAAAAAADAAAAAADfgAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAADfgAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAADfgAAAAAADAAAAAACDAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAABegAAAAACegAAAAAAfgAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAACfgAAAAAAfgAAAAAADAAAAAADDAAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADegAAAAACegAAAAADegAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAAD
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAAfgAAAAAADAAAAAABDAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAACegAAAAACegAAAAABegAAAAACHwAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACHwAAAAADDAAAAAADDAAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAACfgAAAAAADAAAAAABDAAAAAACfgAAAAAAegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAADfgAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAACfgAAAAAAfgAAAAAADAAAAAABDAAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAADegAAAAAAegAAAAADfgAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACegAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABfgAAAAAAHwAAAAADXQAAAAADXQAAAAADXQAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: HwAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAeQAAAAACeQAAAAAAfgAAAAAATQAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAATQAAAAABTQAAAAAATQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAATQAAAAACTQAAAAADTQAAAAACHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAATQAAAAAATQAAAAABTQAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAATQAAAAADTQAAAAAATQAAAAABHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAABHwAAAAAATQAAAAABTQAAAAACTQAAAAACMgAAAAADMgAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAACfgAAAAAATQAAAAAATQAAAAADTQAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAACfgAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADTQAAAAACXQAAAAABXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABegAAAAAAegAAAAABHwAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAABTQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABTQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABcAAAAAABcAAAAAACcAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADKAAAAAACHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAACcAAAAAADcAAAAAACcAAAAAAAfgAAAAAAXQAAAAABEQAAAAAAXQAAAAABKAAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAADHwAAAAACXQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAABfgAAAAAAXQAAAAACEQAAAAAAXQAAAAABaAAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAD
+ tiles: HwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAeQAAAAACeQAAAAACfgAAAAAATQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAMgAAAAACMgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACegAAAAAAegAAAAACfgAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAACTQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACegAAAAABegAAAAABHwAAAAABegAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACTQAAAAACXQAAAAACXQAAAAABXQAAAAADfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAAAfgAAAAAAegAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADTQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACKAAAAAADHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAXQAAAAACEQAAAAAAXQAAAAADKAAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAAAHwAAAAABXQAAAAABEQAAAAAAEQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAXQAAAAABEQAAAAAAXQAAAAABaAAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: ZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAKAAAAAADXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAACKAAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAAAKAAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAACegAAAAABegAAAAABegAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAATQAAAAABTQAAAAADTQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAADegAAAAADegAAAAABegAAAAABegAAAAADegAAAAACegAAAAACegAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA
+ tiles: ZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAegAAAAABegAAAAAAegAAAAACegAAAAACegAAAAACegAAAAABegAAAAABfgAAAAAATQAAAAAATQAAAAABTQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAA
version: 6
-3,-1:
ind: -3,-1
- tiles: fgAAAAAAfAAAAAAAfAAAAAABegAAAAAAegAAAAABegAAAAADfAAAAAADfAAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAABHwAAAAADXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAXQAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAACHwAAAAACXQAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATQAAAAABXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAACKAAAAAAAKAAAAAABHwAAAAADTQAAAAADXQAAAAABXQAAAAABXQAAAAADfgAAAAAATQAAAAABTQAAAAAATQAAAAAA
+ tiles: fgAAAAAAfAAAAAABfAAAAAACegAAAAAAegAAAAADegAAAAAAfAAAAAAAfAAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADbAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADXQAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAADXQAAAAACHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABKAAAAAADKAAAAAABHwAAAAABTQAAAAACXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAC
version: 6
2,-3:
ind: 2,-3
- tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATQAAAAABTQAAAAACTQAAAAACfgAAAAAAcAAAAAACcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAABcAAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAADfgAAAAAAcAAAAAABeQAAAAABcAAAAAABcAAAAAAAcAAAAAAD
+ tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABegAAAAADAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAADcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAcAAAAAADeQAAAAABcAAAAAACcAAAAAAAcAAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: XQAAAAABXQAAAAABXQAAAAADHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAcAAAAAAAcAAAAAABeQAAAAACcAAAAAADcAAAAAADcAAAAAADXQAAAAACXQAAAAADXQAAAAADHwAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAcAAAAAACeQAAAAAAcAAAAAABcAAAAAADcAAAAAACXQAAAAACXQAAAAAAXQAAAAAAHwAAAAACXQAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACcAAAAAADcAAAAAADeQAAAAADcAAAAAAAcAAAAAABdQAAAAADXQAAAAABXQAAAAADXQAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABfgAAAAAAcAAAAAACeQAAAAADcAAAAAABcAAAAAAAdQAAAAABXQAAAAAAXQAAAAABXQAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABcAAAAAAAcAAAAAABeQAAAAADcAAAAAACcAAAAAACdQAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAADPAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAcAAAAAADcAAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAACcAAAAAACfgAAAAAAcAAAAAABcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABcAAAAAAAcAAAAAABeQAAAAAAeQAAAAACeQAAAAADcAAAAAABcAAAAAADcAAAAAACeQAAAAADcAAAAAAAfgAAAAAAKAAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAcAAAAAACeQAAAAABcAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAAAcAAAAAADHwAAAAADcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAADcAAAAAAAcAAAAAADcAAAAAABcAAAAAABfgAAAAAAcAAAAAABeQAAAAACcAAAAAAAfgAAAAAAXQAAAAADcAAAAAADeQAAAAACeQAAAAACeQAAAAAAeQAAAAACeQAAAAADeQAAAAACeQAAAAABeQAAAAAAcAAAAAADXQAAAAABcAAAAAAAeQAAAAABcAAAAAABfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAACcAAAAAAAeQAAAAADeQAAAAACcAAAAAADcAAAAAACeQAAAAADcAAAAAADcAAAAAABcAAAAAACcAAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAAAeQAAAAABeQAAAAAAeQAAAAAAeQAAAAABcAAAAAABfgAAAAAAcAAAAAABeQAAAAADcAAAAAABcAAAAAABcAAAAAACcAAAAAABcAAAAAACcAAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAABfgAAAAAAcAAAAAACcAAAAAABcAAAAAABcAAAAAABcAAAAAAB
+ tiles: XQAAAAABXQAAAAAAXQAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABcAAAAAACcAAAAAABeQAAAAADcAAAAAADcAAAAAABcAAAAAACXQAAAAADXQAAAAAAXQAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACcAAAAAADcAAAAAABXQAAAAACXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACcAAAAAAAcAAAAAABeQAAAAADcAAAAAACcAAAAAACdQAAAAABXQAAAAABXQAAAAACXQAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAABeQAAAAACcAAAAAABcAAAAAACdQAAAAADXQAAAAAAXQAAAAABXQAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACcAAAAAACcAAAAAABeQAAAAAAcAAAAAAAcAAAAAABdQAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAAAPAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAADcAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADcAAAAAABcAAAAAABeQAAAAAAeQAAAAAAeQAAAAABcAAAAAABcAAAAAACcAAAAAAAeQAAAAAAcAAAAAABfgAAAAAAKAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAcAAAAAACeQAAAAABcAAAAAABfgAAAAAAHwAAAAACfgAAAAAAcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAAAcAAAAAABHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAADfgAAAAAAXQAAAAACcAAAAAACeQAAAAACeQAAAAACeQAAAAACeQAAAAADeQAAAAABeQAAAAABeQAAAAAAeQAAAAABcAAAAAAAXQAAAAABcAAAAAAAeQAAAAADcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAADeQAAAAADeQAAAAAAcAAAAAABcAAAAAABeQAAAAADcAAAAAABcAAAAAACcAAAAAACcAAAAAACeQAAAAADeQAAAAADeQAAAAADeQAAAAABeQAAAAAAeQAAAAABeQAAAAADeQAAAAADcAAAAAACfgAAAAAAcAAAAAAAeQAAAAACcAAAAAAAcAAAAAADcAAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAAD
version: 6
3,-3:
ind: 3,-3
- tiles: fgAAAAAAegAAAAADegAAAAABegAAAAACegAAAAAAegAAAAADfgAAAAAAegAAAAABfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAAAegAAAAABegAAAAADQAAAAAAAegAAAAABegAAAAADegAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAAAegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAABegAAAAADegAAAAADegAAAAABegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAZAAAAAAAXQAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABZAAAAAAAZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAABcAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA
+ tiles: fgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAADegAAAAABfgAAAAAAegAAAAABfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAADegAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAADQAAAAAAAegAAAAAAegAAAAADegAAAAABZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAegAAAAACegAAAAACfgAAAAAAegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAACegAAAAADegAAAAADegAAAAABegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZAAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAACZAAAAAAAZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAADZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: cAAAAAAAcAAAAAACcAAAAAADeQAAAAABcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAAAcAAAAAABcAAAAAABeQAAAAACcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAABdQAAAAABcAAAAAADeQAAAAABcAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfQAAAAAAdQAAAAABdQAAAAADcAAAAAACeQAAAAAAcAAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAACdQAAAAABcAAAAAACeQAAAAABcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAACcAAAAAABcAAAAAABeQAAAAACcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAKAAAAAABKAAAAAADKAAAAAADKAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAACKAAAAAAAKAAAAAADKAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAAAKAAAAAAAKAAAAAADKAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAXQAAAAAATQAAAAACXQAAAAACXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAcAAAAAABcAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAcAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
+ tiles: cAAAAAABcAAAAAACcAAAAAADeQAAAAACcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAABcAAAAAACcAAAAAABeQAAAAABcAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAABdQAAAAAAcAAAAAABeQAAAAADcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfQAAAAAAdQAAAAACdQAAAAACcAAAAAAAeQAAAAACcAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAACdQAAAAABcAAAAAABeQAAAAADcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAABcAAAAAABcAAAAAABeQAAAAAAcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAKAAAAAABKAAAAAABKAAAAAABKAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAACKAAAAAACKAAAAAACKAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAADKAAAAAAAKAAAAAACKAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAXQAAAAABTQAAAAABXQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAADcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: fgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAADeQAAAAABeQAAAAABcAAAAAABfgAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAADfgAAAAAAXQAAAAABcAAAAAABcAAAAAAAcAAAAAACcAAAAAACcAAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAACHwAAAAADcAAAAAACeQAAAAABcAAAAAABfgAAAAAAXQAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAAAcAAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAABfgAAAAAAcAAAAAAAeQAAAAADcAAAAAABfgAAAAAAXQAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAADcAAAAAADfgAAAAAAXQAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAcAAAAAADeQAAAAACcAAAAAADfgAAAAAAcAAAAAADHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAcAAAAAABeQAAAAACcAAAAAACcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAACfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAA
+ tiles: fgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAACeQAAAAACeQAAAAABcAAAAAADfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAXQAAAAABcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAACHwAAAAABcAAAAAABeQAAAAAAcAAAAAACfgAAAAAAXQAAAAADcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAADfgAAAAAAcAAAAAACeQAAAAACcAAAAAACfgAAAAAAXQAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAABfgAAAAAAXQAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAcAAAAAACeQAAAAAAcAAAAAACfgAAAAAAcAAAAAADHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAABcAAAAAAAeQAAAAADcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: cAAAAAAAfgAAAAAAcAAAAAACAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAACcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAADcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAADcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAABXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: cAAAAAABfgAAAAAAcAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAABcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAABcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAACXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAABcAAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,-4:
ind: 1,-4
@@ -197,11 +197,11 @@ entities:
version: 6
-4,-1:
ind: -4,-1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAACbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbgAAAAACfgAAAAAAbgAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAALwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAABLwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAABfgAAAAAAHwAAAAAALwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADLwAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAABbgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbgAAAAADfgAAAAAAbgAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAAALwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAACfgAAAAAAHwAAAAAALwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACLwAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACfgAAAAAAHwAAAAAALwAAAAAD
version: 6
-4,-2:
ind: -4,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA
version: 6
-6,-1:
ind: -6,-1
@@ -213,7 +213,7 @@ entities:
version: 6
-4,0:
ind: -4,0
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABcAAAAAABfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAABLwAAAAACHwAAAAAALwAAAAACHwAAAAADLwAAAAABHwAAAAACLwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAABXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAOAAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAOAAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAADfgAAAAAAOAAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAACKAAAAAACHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAKAAAAAAAKAAAAAAAKAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACcAAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAACLwAAAAAAHwAAAAADLwAAAAABHwAAAAACLwAAAAACHwAAAAACLwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAOAAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAABfgAAAAAAOAAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAOAAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAADKAAAAAADHwAAAAABfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAABKAAAAAABKAAAAAADKAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAA
version: 6
-4,-3:
ind: -4,-3
@@ -221,15 +221,15 @@ entities:
version: 6
0,-4:
ind: 0,-4
- tiles: XQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA
+ tiles: XQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAJAAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAB
+ tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAJAAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAC
version: 6
-2,-4:
ind: -2,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA
version: 6
-1,-6:
ind: -1,-6
@@ -237,23 +237,23 @@ entities:
version: 6
0,-5:
ind: 0,-5
- tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAABXQAAAAADXQAAAAADXQAAAAACBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAAXQAAAAAAXQAAAAABXQAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAAXQAAAAABXQAAAAABXQAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAADXQAAAAAAXQAAAAAAXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAADXQAAAAABXQAAAAADXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAAAXQAAAAAAXQAAAAABXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAAAXQAAAAAAXQAAAAABXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAAAXQAAAAAAXQAAAAADXQAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,-3:
ind: -3,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: XQAAAAACXQAAAAABXQAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAADegAAAAACegAAAAADegAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAATQAAAAAATQAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAATgAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADXQAAAAAA
+ tiles: XQAAAAADXQAAAAAAHwAAAAADegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACfgAAAAAAegAAAAABegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACegAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABTQAAAAABTQAAAAACfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAACHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAAAfgAAAAAATgAAAAABXQAAAAADbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAABHwAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: XQAAAAACXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAegAAAAADegAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAegAAAAAAegAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATQAAAAADXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAACegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAADfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA
version: 6
0,-6:
ind: 0,-6
@@ -261,15 +261,15 @@ entities:
version: 6
-1,-5:
ind: -1,-5
- tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAADAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAABXQAAAAAAXQAAAAABXQAAAAACDAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAABXQAAAAAAXQAAAAABXQAAAAAADAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAABXQAAAAAAXQAAAAADDAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAADXQAAAAADXQAAAAACDAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADDAAAAAAC
+ tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACDAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAACXQAAAAABXQAAAAABDAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAIXQAAAAAAXQAAAAABXQAAAAACDAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAADAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAADXQAAAAACXQAAAAAADAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADDAAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: XQAAAAADXQAAAAADfgAAAAAATQAAAAACTQAAAAACfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAABTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAATQAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA
+ tiles: XQAAAAAAXQAAAAAAfgAAAAAATQAAAAAATQAAAAACfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAATQAAAAACTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: fgAAAAAAfgAAAAAAJgAAAAACJgAAAAABJgAAAAADJgAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAegAAAAACegAAAAAAegAAAAACXQAAAAABXQAAAAABbAAAAAAAfgAAAAAAJgAAAAABLwAAAAADLwAAAAAALwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAJgAAAAACLwAAAAAALwAAAAABLwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADTQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADTQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACTQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAegAAAAACegAAAAACegAAAAABXQAAAAADXQAAAAABbAAAAAAAfgAAAAAAJgAAAAABLwAAAAABLwAAAAAALwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAJgAAAAACLwAAAAABLwAAAAABLwAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAATQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAATQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAATQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-2:
ind: 4,-2
@@ -285,27 +285,27 @@ entities:
version: 6
2,0:
ind: 2,0
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAegAAAAACegAAAAADegAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAegAAAAABegAAAAADegAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAegAAAAAAegAAAAACegAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAAfgAAAAAA
version: 6
3,1:
ind: 3,1
- tiles: XQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: aAAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADHwAAAAADXQAAAAADXQAAAAACXQAAAAACfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACegAAAAADegAAAAAAegAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADTgAAAAABXQAAAAAATgAAAAAAXQAAAAAATgAAAAACXQAAAAABTgAAAAAAXQAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAA
+ tiles: aAAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAaAAAAAADaAAAAAABaAAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABHwAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABegAAAAABegAAAAAAegAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABTgAAAAADXQAAAAABTgAAAAACXQAAAAAATgAAAAADXQAAAAABTgAAAAAAXQAAAAADegAAAAADegAAAAABegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAA
version: 6
-4,1:
ind: -4,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAATgAAAAADXQAAAAADfgAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACZAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAADTgAAAAABfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAXQAAAAADfgAAAAAAXQAAAAABegAAAAADegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAegAAAAAAegAAAAAAegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACZAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAAATgAAAAABfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAXQAAAAACfgAAAAAAXQAAAAAAegAAAAACegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAADHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAACegAAAAABegAAAAABegAAAAADegAAAAABegAAAAABHwAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAABegAAAAADegAAAAAAegAAAAADegAAAAAAHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAACegAAAAACegAAAAADegAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAACegAAAAACegAAAAACegAAAAABHwAAAAAAHwAAAAACIwAAAAAAHwAAAAABIwAAAAACfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAACegAAAAACegAAAAABegAAAAABHwAAAAABfgAAAAAAIwAAAAAAHwAAAAAAIwAAAAACfgAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACTgAAAAABXQAAAAADTgAAAAABXQAAAAACTgAAAAABXQAAAAACTgAAAAAAXQAAAAADTgAAAAABXQAAAAADTgAAAAAAXQAAAAACTgAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACfgAAAAAATQAAAAADTQAAAAABTQAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAegAAAAADegAAAAADegAAAAABegAAAAACegAAAAADHwAAAAADHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACegAAAAABegAAAAACegAAAAABegAAAAADegAAAAAAHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACegAAAAADegAAAAABegAAAAABegAAAAABegAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAAAHwAAAAAAHwAAAAACIwAAAAACHwAAAAACIwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAABegAAAAAAegAAAAACegAAAAACegAAAAABHwAAAAADfgAAAAAAIwAAAAAAHwAAAAACIwAAAAAAfgAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABTgAAAAADXQAAAAAATgAAAAAAXQAAAAADTgAAAAADXQAAAAAATgAAAAAAXQAAAAABTgAAAAADXQAAAAADTgAAAAAAXQAAAAADTgAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAABfgAAAAAATQAAAAAATQAAAAACTQAAAAADfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
-2,2:
ind: -2,2
- tiles: fgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAABTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATwAAAAAABQAAAAAAfgAAAAAATwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAXQAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAAHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAACHwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAA
+ tiles: fgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABTwAAAAAABQAAAAADfgAAAAAATwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACTwAAAAAATwAAAAAAfgAAAAAATwAAAAAAHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAA
version: 6
-1,3:
ind: -1,3
@@ -313,7 +313,7 @@ entities:
version: 6
-1,2:
ind: -1,2
- tiles: TwAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACbAAAAAAATwAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADbAAAAAAATwAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACbAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
+ tiles: TwAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAABXQAAAAACTwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADbAAAAAAATwAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACbAAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAAAXQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
version: 6
-3,2:
ind: -3,2
@@ -333,23 +333,23 @@ entities:
version: 6
0,2:
ind: 0,2
- tiles: bAAAAAAAbAAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAXQAAAAABXQAAAAADbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAHwAAAAABbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAXQAAAAABHwAAAAABbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAABHwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,2:
ind: -4,2
- tiles: AAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAA
version: 6
-4,3:
ind: -4,3
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,1:
ind: -5,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,0:
ind: -5,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
version: 6
2,-5:
ind: 2,-5
@@ -405,11 +405,11 @@ entities:
version: 6
-6,1:
ind: -6,1
- tiles: HwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,1:
ind: -7,1
- tiles: QAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAIwAAAAADOAAAAAAAOAAAAAAAIwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAACOAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: QAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAIwAAAAAAOAAAAAAAOAAAAAAAIwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAACIwAAAAACIwAAAAABIwAAAAACIwAAAAABOAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,0:
ind: -6,0
@@ -417,23 +417,23 @@ entities:
version: 6
-7,0:
ind: -7,0
- tiles: fQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAABHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAABHwAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACJAAAAAACHwAAAAABHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAEQAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAA
+ tiles: fQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAJAAAAAADHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAA
version: 6
-8,0:
ind: -8,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAADEQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAABJAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAHwAAAAADEQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAACHwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAABHwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAABEQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAJAAAAAADAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAHwAAAAABEQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAADHwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAD
version: 6
-8,1:
ind: -8,1
- tiles: AAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAADQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAABQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAABHwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACIwAAAAACIwAAAAAAIwAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADIwAAAAADOAAAAAAAOAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACIwAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACIwAAAAADOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACIwAAAAADOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABIwAAAAADOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACIwAAAAADIwAAAAADIwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAADHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAC
+ tiles: AAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAIwAAAAAAIwAAAAADIwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAIwAAAAABOAAAAAAAOAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAIwAAAAABOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADIwAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAIwAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAIwAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAIwAAAAACIwAAAAACIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAADHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAA
version: 6
-8,2:
ind: -8,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,2:
ind: -7,2
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAABHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,-1:
ind: -7,-1
@@ -445,7 +445,7 @@ entities:
version: 6
-5,3:
ind: -5,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,2:
ind: -5,2
@@ -465,11 +465,11 @@ entities:
version: 6
3,2:
ind: 3,2
- tiles: AAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: XQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAACXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAACXQAAAAACXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAACXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,3:
ind: 1,3
@@ -477,11 +477,11 @@ entities:
version: 6
2,3:
ind: 2,3
- tiles: fgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,3:
ind: 3,3
- tiles: AAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -501,6 +501,334 @@ entities:
chunkCollection:
version: 2
nodes:
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FFFFFFFF'
+ decals:
+ 55: -7,-24
+ 56: 11,-29
+ 58: 13,-28
+ 59: 16,-38
+ 60: 21,-38
+ 61: 37,-22
+ 62: 44,-37
+ 63: 44,-38
+ 67: 30,-12
+ 68: 31,-12
+ 69: 33,-12
+ 70: -45,9
+ 71: -44,9
+ 72: -45,8
+ 79: -7,9
+ 81: 17,12
+ 82: 16,13
+ 83: 17,14
+ 84: 15,16
+ 85: 11,11
+ 89: 11,15
+ 91: 1,-42
+ 92: 1,-35
+ 93: 15,-17
+ 94: 13,-17
+ 95: 17,-9
+ 98: -37,0
+ 100: -17,-1
+ 101: -17,-2
+ 102: -15,-12
+ 103: -1,-24
+ 104: 0,-28
+ 106: 19,-30
+ 107: 19,-13
+ 108: 20,-11
+ 111: -1,-31
+ 119: -11,-43
+ 120: -13,-43
+ 121: -10,-43
+ 122: -9,-43
+ 123: -7,-43
+ 124: -6,-42
+ 125: -15,-40
+ 135: -47,-33
+ 136: -45,-35
+ 137: -50,-30
+ 152: -38,-13
+ 153: -38,-14
+ 154: -38,-18
+ 155: -39,-19
+ 283: -23,-12
+ 359: 11,-21
+ 360: 12,-21
+ 374: 16,-9
+ 409: -26,31
+ 410: -27,30
+ 411: -23,31
+ 412: -23,29
+ 413: -21,29
+ 414: -18,29
+ 415: -22,27
+ 416: -24,30
+ 417: -29,31
+ 448: -16,12
+ 449: -16,23
+ 450: -23,24
+ 451: -39,24
+ 452: -42,22
+ 453: -43,21
+ 460: -58,20
+ 461: -59,18
+ 462: -60,17
+ 463: -59,25
+ 464: -60,24
+ 465: -56,24
+ 466: -57,20
+ 511: -38,8
+ 512: -38,6
+ 514: -39,12
+ 585: 47,-1
+ 586: 48,-2
+ 587: 49,-2
+ 588: 51,1
+ 589: 50,1
+ 591: 48,2
+ 592: 47,0
+ 597: 55,12
+ 598: 54,11
+ 599: 53,11
+ 600: 55,13
+ 601: 55,9
+ 602: 49,14
+ 603: 50,13
+ 607: 37,4
+ 608: 36,5
+ 675: -22,25
+ 676: -17,18
+ 677: -37,4
+ 683: -16,-5
+ 691: -16,7
+ 693: -16,4
+ 694: -15,9
+ 695: -16,0
+ 828: -9,-25
+ 829: -8,-25
+ 830: -8,-25
+ 835: -4,-24
+ 836: -1,-25
+ 895: -6,-23
+ 896: -25,-23
+ 898: -37,-24
+ 1068: -10,-55
+ 1069: -14,-56
+ 1070: -19,-55
+ 1071: -7,-54
+ 1072: -2,-54
+ 1073: -3,-57
+ 1074: 2,-59
+ 1075: -3,-64
+ 1076: 0,-61
+ 1077: -3,-66
+ 1078: -3,-71
+ 1079: -1,-73
+ 1080: 2,-71
+ 1081: 1,-55
+ 1082: -1,-47
+ 1083: 0,-45
+ 1153: 15,25
+ 1154: 16,27
+ 1156: 38,24
+ 1163: 41,20
+ 1164: 52,14
+ 1165: 48,18
+ 1166: 49,16
+ 1167: 45,7
+ 1168: 20,8
+ 1169: 32,7
+ 1170: 34,8
+ 1171: 16,8
+ 1172: 5,8
+ 1173: -7,9
+ 1174: -8,8
+ 1216: 7,-24
+ 1218: 18,-28
+ 1219: 21,-35
+ 1220: 19,-34
+ 1629: -38,9
+ 1630: -39,8
+ 1631: -39,7
+ 1632: -39,-1
+ 1641: -8,-14
+ 1642: -9,-13
+ 1657: -9,-16
+ 1658: -8,-16
+ 1659: -8,-16
+ 1981: -39,-12
+ 1983: -40,-7
+ 1986: -39,-9
+ 1987: -39,-3
+ 1988: -39,3
+ 2218: 1,13
+ 2219: 0,14
+ 2220: 0,15
+ 2221: 0,15
+ 2222: 1,15
+ 2223: 3,14
+ 2224: 5,15
+ 2225: 7,13
+ 2226: 9,14
+ 2227: 11,12
+ 2228: 11,14
+ 2229: 5,17
+ 2230: 4,17
+ 2231: 4,18
+ 2232: -4,17
+ 2233: -4,19
+ 2234: -3,20
+ 2235: -2,17
+ 2272: 3,19
+ 2273: 4,20
+ 2275: -4,21
+ 2276: -3,22
+ 2278: -2,21
+ 2279: -2,20
+ 2281: -5,28
+ 2283: -11,28
+ 2284: -12,29
+ 2285: -13,30
+ 2286: -13,31
+ 2287: -12,32
+ 2288: -22,31
+ 2289: -30,30
+ 2292: 51,-38
+ 2293: 51,-38
+ 2302: 49,-39
+ 2418: -52,-35
+ 2419: -52,-35
+ 2420: -52,-32
+ 2421: -49,-31
+ 2422: -49,-31
+ 2423: -48,-32
+ 2424: -48,-32
+ 2425: -45,-33
+ 2426: -45,-33
+ 2427: -45,-33
+ 2428: -46,-32
+ 2429: -46,-32
+ 2430: -46,-32
+ 2528: 28,21
+ 2529: 31,18
+ 2530: 31,12
+ 2531: 27,12
+ 2895: 44,9
+ 2896: 46,8
+ 2897: 44,10
+ 2898: 45,12
+ 3069: 37,1
+ 3070: 37,-1
+ 3071: 38,0
+ 3072: 36,0
+ 3073: 36,-1
+ 3074: 40,0
+ 3109: 46,-1
+ 3110: 46,1
+ 3111: 47,2
+ 3112: 48,1
+ 3115: 46,2
+ 3116: 40,2
+ 3128: 49,6
+ 3129: 48,7
+ 3132: 41,8
+ 3133: 40,9
+ 3134: 39,8
+ 3135: 41,13
+ 3136: 41,15
+ 3137: 40,16
+ 3138: 56,7
+ 3139: 41,1
+ 3140: 41,0
+ 3141: 42,2
+ 3142: 40,-1
+ 3153: 56,12
+ 3154: 54,15
+ 3155: 49,17
+ 3156: 55,7
+ 3157: 49,9
+ 3158: 50,11
+ 3159: 37,7
+ 3486: 43,-19
+ 3487: 43,-23
+ 3488: 41,-24
+ 3573: 35,-23
+ 3574: 34,-25
+ 3576: 33,-22
+ 3729: -33,8
+ 3730: -34,9
+ 3731: -35,8
+ 3732: -35,7
+ 3733: -37,8
+ 4407: 33,23
+ 4408: 34,23
+ 4409: 37,23
+ 4410: 38,25
+ 4411: 37,25
+ 4412: 19,25
+ 4413: 20,25
+ 4414: 19,23
+ 4415: 24,25
+ 4417: 28,23
+ 4418: 29,24
+ 4419: 27,23
+ 4420: 33,27
+ 4421: 33,28
+ 4423: 35,33
+ 4424: 33,38
+ 4425: 35,40
+ 4426: 35,44
+ 4427: 35,45
+ 4428: 33,46
+ 4429: 53,44
+ 4430: 53,45
+ 4431: 55,46
+ 4432: 53,48
+ 4433: 55,41
+ 4434: 53,41
+ 4435: 53,40
+ 4436: 54,39
+ 4437: 54,38
+ 4438: 53,35
+ 4439: 53,34
+ 4440: 53,28
+ 4441: 55,30
+ 4442: 55,25
+ 4443: 56,25
+ 4444: 57,24
+ 4445: 55,20
+ 4446: 54,20
+ 4447: 49,20
+ 4448: 51,25
+ 4449: 50,24
+ 4452: 50,25
+ 4453: 48,25
+ 4454: 48,24
+ 4455: 47,25
+ 4456: 46,25
+ 4632: -28,-20
+ 4634: -27,-20
+ 4636: -30,-15
+ 4637: -29,-16
+ 4638: -24,-15
+ 4639: -23,-8
+ 4640: -23,-7
+ 4641: -24,-5
+ 4642: -31,-7
+ 4643: -19,-20
+ 4660: 16,-15
+ 4661: 17,-14
+ 4662: 17,-13
+ 4663: 17,-17
+ 4664: 16,-16
+ 4665: 16,-18
+ 4666: 16,-12
+ 4667: 15,-21
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
@@ -533,7 +861,6 @@ entities:
3288: -40,42
3289: -40,44
3291: -36,30
- 3690: -39,-8
3736: 8,43
3737: 8,51
4104: 54,9
@@ -611,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
@@ -631,14 +947,12 @@ entities:
147: 6,-26
184: -2,-45
185: 12,11
- 358: -37,1
400: -27,35
401: -28,35
402: -29,35
403: -29,36
404: -28,36
405: -27,36
- 502: -15,-10
503: -32,26
566: 22,18
567: 22,19
@@ -651,7 +965,6 @@ entities:
731: -119,17
732: -98,17
1041: -4,-69
- 1066: -26,2
1221: -52,13
1222: -50,13
1264: -58,-4
@@ -669,7 +982,6 @@ entities:
1486: 30,-23
1516: -48,16
1517: -47,17
- 1691: -25,-6
1800: -19,27
1817: -27,32
1818: -28,32
@@ -683,7 +995,6 @@ entities:
1997: -42,-8
2007: -57,7
2009: -44,-4
- 2057: -40,-20
2139: -11,32
2140: -13,32
2213: 3,15
@@ -695,8 +1006,6 @@ entities:
2323: 19,-21
2339: 2,-1
2345: 3,-8
- 2349: -20,5
- 2350: -19,5
2363: -42,19
2364: -42,20
2365: 30,9
@@ -704,7 +1013,6 @@ entities:
2513: 20,16
2514: 19,16
2749: 4,-35
- 2777: -31,-19
2778: -6,-27
2779: 3,-28
2818: 45,-27
@@ -728,13 +1036,19 @@ entities:
3808: 45,1
3809: 47,17
3810: 47,18
- 3896: -13,11
3941: -5,17
3979: -56,13
3980: -54,13
4869: -31,19
4870: -31,20
4871: -31,21
+ 5045: -40,-8
+ 5065: -14,-2
+ 5094: -19,5
+ 5095: -20,5
+ 5096: -25,5
+ 5227: -25,-12
+ 5352: -14,11
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -765,11 +1079,6 @@ entities:
id: BotGreyscale
decals:
4186: 43,3
- - node:
- color: '#DE3A3AFF'
- id: BotLeft
- decals:
- 2775: -33,-21
- node:
color: '#FFFFFFFF'
id: BotLeft
@@ -790,19 +1099,15 @@ entities:
3673: 50,-11
3841: 4,-47
3897: 5,-47
+ 5047: -30,-21
+ 5069: -26,1
+ 5077: -25,-2
- node:
color: '#FFFFFFFF'
id: BotLeftGreyscale
decals:
2385: 39,-6
- - node:
- color: '#DE3A3AFF'
- id: BotRight
- decals:
- 2772: -35,-17
- 2773: -35,-18
- 2774: -35,-19
- 2776: -35,-20
+ 5078: -25,-1
- node:
color: '#FFFFFFFF'
id: BotRight
@@ -817,8 +1122,9 @@ entities:
2748: 4,-36
3205: 6,-37
3300: -15,46
- 3344: -35,5
- 3872: -28,2
+ 5048: -24,-21
+ 5070: -28,1
+ 5225: -29,-12
- node:
color: '#FF8FC9FF'
id: BotRightGreyscale
@@ -828,39 +1134,16 @@ entities:
color: '#FFFFFFFF'
id: BotRightGreyscale
decals:
- 3759: -29,-1
- 3760: -29,0
- 3761: -29,1
- 3774: 7,34
- 3775: 7,35
- 3776: 7,36
- 3777: 8,36
- 3778: 8,34
- 3779: 8,35
- - node:
- color: '#79150096'
- id: Box
- decals:
- 1888: -24,-12
- 1889: -24,-13
- - node:
- color: '#9FED5896'
- id: Box
- decals:
- 1887: -30,-8
- - node:
- color: '#EFB341FF'
- id: Box
- decals:
- 1885: -30,-13
+ 5067: -29,-1
+ 5068: -29,0
+ 5083: -29,-2
+ 5226: -29,-13
- node:
color: '#FFFFFFFF'
id: Box
decals:
1593: 38,6
1594: 38,10
- 2012: -26,0
- 2013: -28,0
3842: 5,-45
3843: 4,-45
4874: 1,25
@@ -869,11 +1152,8 @@ entities:
4877: 1,23
4879: -1,23
4880: 0,23
- - node:
- color: '#52B4E996'
- id: BoxGreyscale
- decals:
- 1886: -30,-12
+ 5079: -28,-1
+ 5080: -26,-1
- node:
color: '#DE3A3A96'
id: BoxGreyscale
@@ -951,7 +1231,6 @@ entities:
decals:
3008: 21,1
3019: 23,1
- 3773: 6,37
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSw
@@ -965,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
@@ -1019,16 +1295,12 @@ entities:
color: '#52B4E996'
id: BrickTileSteelCornerNe
decals:
- 1878: -34,-10
- 2025: -20,-5
- 2026: -20,-5
3681: 51,-22
- node:
color: '#9FED5896'
id: BrickTileSteelCornerNe
decals:
1529: -3,-26
- 1875: -34,-7
- node:
color: '#D381C996'
id: BrickTileSteelCornerNe
@@ -1038,20 +1310,10 @@ entities:
1907: -45,0
1942: -42,-4
1989: -40,12
- - node:
- color: '#DE3A3A96'
- id: BrickTileSteelCornerNe
- decals:
- 1717: -19,-16
- 1865: -19,-10
- 1866: -19,-13
- node:
color: '#52B4E996'
id: BrickTileSteelCornerNw
decals:
- 1877: -35,-10
- 2027: -19,-5
- 2028: -19,-5
3675: 47,-22
- node:
color: '#9FED5896'
@@ -1059,7 +1321,6 @@ entities:
decals:
1531: -5,-26
1532: -8,-27
- 1876: -35,-7
- node:
color: '#D381C996'
id: BrickTileSteelCornerNw
@@ -1068,26 +1329,11 @@ entities:
1938: -46,-4
1990: -43,12
3968: -57,14
- - node:
- color: '#DE3A3A96'
- id: BrickTileSteelCornerNw
- decals:
- 1718: -21,-16
- 1867: -20,-10
- 1868: -20,-13
- node:
color: '#52B4E996'
id: BrickTileSteelCornerSe
decals:
- 1880: -34,-11
- 2031: -20,-4
- 2032: -20,-4
3679: 51,-24
- - node:
- color: '#9FED5896'
- id: BrickTileSteelCornerSe
- decals:
- 1873: -34,-8
- node:
color: '#D381C996'
id: BrickTileSteelCornerSe
@@ -1098,26 +1344,11 @@ entities:
1945: -42,-9
1992: -40,11
2011: -44,-11
- - node:
- color: '#DE3A3A96'
- id: BrickTileSteelCornerSe
- decals:
- 1720: -19,-17
- 1871: -19,-14
- 1872: -19,-11
- node:
color: '#52B4E996'
id: BrickTileSteelCornerSw
decals:
- 1879: -35,-11
- 2029: -19,-4
- 2030: -19,-4
3680: 47,-24
- - node:
- color: '#9FED5896'
- id: BrickTileSteelCornerSw
- decals:
- 1874: -35,-8
- node:
color: '#D381C996'
id: BrickTileSteelCornerSw
@@ -1129,13 +1360,6 @@ entities:
1932: -46,-11
1991: -43,11
3966: -57,11
- - node:
- color: '#DE3A3A96'
- id: BrickTileSteelCornerSw
- decals:
- 1719: -21,-17
- 1869: -20,-14
- 1870: -20,-11
- node:
color: '#D381C996'
id: BrickTileSteelInnerNe
@@ -1280,7 +1504,6 @@ entities:
1643: -8,-18
1644: -9,-18
1650: -6,-18
- 1721: -20,-16
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineN
@@ -1327,7 +1550,6 @@ entities:
1645: -6,-19
1646: -7,-19
1647: -8,-19
- 1722: -20,-17
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineS
@@ -1433,6 +1655,12 @@ entities:
decals:
2719: 8,-28
2740: 5,-39
+ 5005: -34,-10
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 5000: -34,-6
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerNe
@@ -1446,18 +1674,18 @@ entities:
id: BrickTileWhiteCornerNe
decals:
2042: -41,-20
- 3345: -33,4
- 3347: -31,1
+ - node:
+ color: '#8C347F96'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 5017: -19,-10
- node:
color: '#DE3A3A96'
id: BrickTileWhiteCornerNe
decals:
- 1698: -24,-19
- - node:
- color: '#EFB34141'
- id: BrickTileWhiteCornerNe
- decals:
- 1881: -34,-13
+ 5211: -26,-9
+ 5217: -25,-11
+ 5244: -22,-4
- node:
color: '#EFD54193'
id: BrickTileWhiteCornerNe
@@ -1474,12 +1702,23 @@ entities:
id: BrickTileWhiteCornerNe
decals:
1827: -15,29
+ - node:
+ color: '#EFE54193'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 5010: -19,-6
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerNw
decals:
2720: 3,-28
2739: 3,-39
+ 5006: -35,-10
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 4999: -35,-6
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerNw
@@ -1493,7 +1732,11 @@ entities:
id: BrickTileWhiteCornerNw
decals:
2043: -47,-20
- 3346: -35,4
+ - node:
+ color: '#8C347F96'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 5018: -20,-10
- node:
color: '#D381C996'
id: BrickTileWhiteCornerNw
@@ -1503,12 +1746,9 @@ entities:
color: '#DE3A3A96'
id: BrickTileWhiteCornerNw
decals:
- 1697: -31,-19
- - node:
- color: '#EFB34141'
- id: BrickTileWhiteCornerNw
- decals:
- 1882: -35,-13
+ 5210: -28,-9
+ 5218: -29,-11
+ 5253: -32,-4
- node:
color: '#EFCC4196'
id: BrickTileWhiteCornerNw
@@ -1525,6 +1765,11 @@ entities:
decals:
1791: -23,32
1811: -31,32
+ - node:
+ color: '#EFE54193'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 5009: -20,-6
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNw
@@ -1538,6 +1783,12 @@ entities:
2726: 5,-33
2732: 8,-30
2736: 5,-40
+ 5008: -34,-12
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 4998: -34,-8
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerSe
@@ -1550,17 +1801,17 @@ entities:
id: BrickTileWhiteCornerSe
decals:
2044: -41,-22
- 3348: -31,-1
+ - node:
+ color: '#8C347F96'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 5020: -19,-12
- node:
color: '#DE3A3A96'
id: BrickTileWhiteCornerSe
decals:
- 1699: -24,-21
- - node:
- color: '#EFB34141'
- id: BrickTileWhiteCornerSe
- decals:
- 1883: -34,-14
+ 5220: -25,-13
+ 5282: -31,-17
- node:
color: '#EFD54193'
id: BrickTileWhiteCornerSe
@@ -1571,6 +1822,11 @@ entities:
id: BrickTileWhiteCornerSe
decals:
1788: -15,27
+ - node:
+ color: '#EFE54193'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 5012: -19,-8
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSe
@@ -1582,6 +1838,12 @@ entities:
decals:
2724: 3,-33
2738: 3,-40
+ 5007: -35,-12
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 4997: -35,-8
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerSw
@@ -1595,17 +1857,17 @@ entities:
id: BrickTileWhiteCornerSw
decals:
2045: -47,-22
- 3349: -35,-1
+ - node:
+ color: '#8C347F96'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 5019: -20,-12
- node:
color: '#DE3A3A96'
id: BrickTileWhiteCornerSw
decals:
- 1700: -31,-21
- - node:
- color: '#EFB34141'
- id: BrickTileWhiteCornerSw
- decals:
- 1884: -35,-14
+ 5219: -29,-13
+ 5275: -23,-17
- node:
color: '#EFCC4196'
id: BrickTileWhiteCornerSw
@@ -1623,23 +1885,22 @@ entities:
decals:
1793: -23,28
1797: -19,27
+ - node:
+ color: '#EFE54193'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 5011: -20,-8
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSw
decals:
816: 19,11
3365: -4,-11
- - node:
- color: '#79150096'
- id: BrickTileWhiteInnerNe
- decals:
- 3354: -33,1
- node:
color: '#DE3A3A96'
id: BrickTileWhiteInnerNe
decals:
- 1695: -29,-14
- 1738: -22,-23
+ 5216: -26,-11
- node:
zIndex: 5
color: '#EFCC4193'
@@ -1660,10 +1921,7 @@ entities:
color: '#DE3A3A96'
id: BrickTileWhiteInnerNw
decals:
- 1686: -31,-6
- 1696: -25,-14
- 1736: -18,-23
- 1737: -17,-22
+ 5215: -28,-11
- node:
color: '#EFCC4196'
id: BrickTileWhiteInnerNw
@@ -1674,12 +1932,6 @@ entities:
id: BrickTileWhiteInnerSe
decals:
2729: 5,-30
- - node:
- color: '#DE3A3A96'
- id: BrickTileWhiteInnerSe
- decals:
- 1690: -29,-6
- 1862: -31,-17
- node:
zIndex: 5
color: '#EFCC4193'
@@ -1696,11 +1948,6 @@ entities:
id: BrickTileWhiteInnerSw
decals:
3670: 48,-11
- - node:
- color: '#DE3A3A96'
- id: BrickTileWhiteInnerSw
- decals:
- 1689: -25,-6
- node:
color: '#EFCC4193'
id: BrickTileWhiteInnerSw
@@ -1723,6 +1970,12 @@ entities:
2727: 5,-32
2728: 5,-31
2733: 8,-29
+ 5004: -34,-11
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteLineE
+ decals:
+ 5001: -34,-7
- node:
color: '#52B4E996'
id: BrickTileWhiteLineE
@@ -1745,23 +1998,26 @@ entities:
3664: 49,-12
3665: 49,-11
- node:
- color: '#79150096'
+ color: '#8C347F96'
id: BrickTileWhiteLineE
decals:
- 3353: -31,0
- 3360: -33,3
- 3361: -33,2
+ 5015: -19,-11
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineE
decals:
- 851: -33,-21
- 852: -33,-19
- 853: -33,-18
- 854: -33,-16
- 1671: -22,-6
- 1672: -22,-5
- 1711: -24,-20
+ 5214: -26,-10
+ 5223: -25,-12
+ 5236: -22,-12
+ 5237: -22,-11
+ 5238: -22,-10
+ 5239: -22,-9
+ 5240: -22,-8
+ 5241: -22,-7
+ 5242: -22,-6
+ 5243: -22,-5
+ 5280: -31,-14
+ 5281: -31,-15
- node:
color: '#EFCC4193'
id: BrickTileWhiteLineE
@@ -1790,6 +2046,11 @@ entities:
id: BrickTileWhiteLineE
decals:
1834: -21,30
+ - node:
+ color: '#EFE54193'
+ id: BrickTileWhiteLineE
+ decals:
+ 5014: -19,-7
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineE
@@ -1811,6 +2072,9 @@ entities:
id: BrickTileWhiteLineN
decals:
3666: 48,-10
+ 5305: -21,-15
+ 5306: -20,-15
+ 5307: -19,-15
- node:
color: '#79150096'
id: BrickTileWhiteLineN
@@ -1819,8 +2083,6 @@ entities:
2039: -43,-20
2040: -45,-20
2041: -46,-20
- 3359: -34,4
- 3362: -32,1
- node:
color: '#D381C996'
id: BrickTileWhiteLineN
@@ -1830,23 +2092,15 @@ entities:
color: '#DE3A3A96'
id: BrickTileWhiteLineN
decals:
- 1675: -23,-3
- 1676: -24,-3
- 1677: -25,-3
- 1678: -26,-3
- 1679: -28,-3
- 1680: -29,-3
- 1681: -30,-3
- 1692: -26,-14
- 1693: -27,-14
- 1694: -28,-14
- 1708: -27,-19
- 1709: -29,-19
- 1710: -30,-19
- 1730: -19,-23
- 1731: -20,-23
- 1732: -21,-23
- 4627: -25,-19
+ 5212: -27,-9
+ 5245: -23,-4
+ 5246: -24,-4
+ 5247: -25,-4
+ 5248: -26,-4
+ 5249: -28,-4
+ 5250: -29,-4
+ 5251: -30,-4
+ 5252: -31,-4
- node:
color: '#EFB3414A'
id: BrickTileWhiteLineN
@@ -1923,9 +2177,6 @@ entities:
2035: -44,-22
2036: -45,-22
2037: -46,-22
- 3350: -34,-1
- 3351: -33,-1
- 3352: -32,-1
- node:
color: '#D381C925'
id: BrickTileWhiteLineS
@@ -1935,20 +2186,13 @@ entities:
color: '#DE3A3A96'
id: BrickTileWhiteLineS
decals:
- 1687: -26,-6
- 1688: -28,-6
- 1701: -30,-21
- 1702: -29,-21
- 1703: -28,-21
- 1704: -27,-21
- 1705: -26,-21
- 1706: -25,-21
- 1856: -23,-17
- 1857: -24,-17
- 1858: -25,-17
- 1859: -27,-17
- 1860: -29,-17
- 1861: -30,-17
+ 5221: -28,-13
+ 5222: -26,-13
+ 5273: -20,-17
+ 5274: -22,-17
+ 5283: -32,-17
+ 5284: -33,-17
+ 5285: -35,-17
- node:
zIndex: 5
color: '#EFCC4193'
@@ -2003,6 +2247,12 @@ entities:
2721: 3,-29
2722: 3,-31
2723: 3,-32
+ 5003: -35,-11
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteLineW
+ decals:
+ 5002: -35,-7
- node:
color: '#52B4E996'
id: BrickTileWhiteLineW
@@ -2022,13 +2272,10 @@ entities:
3668: 48,-13
3669: 48,-14
- node:
- color: '#79150096'
+ color: '#8C347F96'
id: BrickTileWhiteLineW
decals:
- 3355: -35,0
- 3356: -35,1
- 3357: -35,2
- 3358: -35,3
+ 5016: -20,-11
- node:
color: '#D381C996'
id: BrickTileWhiteLineW
@@ -2038,18 +2285,18 @@ entities:
color: '#DE3A3A96'
id: BrickTileWhiteLineW
decals:
- 845: -35,-21
- 846: -35,-20
- 847: -35,-19
- 848: -35,-18
- 849: -35,-17
- 850: -35,-16
- 1685: -31,-5
- 1733: -17,-21
- 1734: -17,-20
- 1735: -17,-19
- 1853: -21,-20
- 1854: -21,-22
+ 5213: -28,-10
+ 5224: -29,-12
+ 5254: -32,-5
+ 5255: -32,-6
+ 5256: -32,-7
+ 5257: -32,-8
+ 5258: -32,-9
+ 5259: -32,-10
+ 5260: -32,-11
+ 5261: -32,-12
+ 5276: -23,-15
+ 5277: -23,-14
- node:
color: '#EFCC4196'
id: BrickTileWhiteLineW
@@ -2072,6 +2319,11 @@ entities:
id: BrickTileWhiteLineW
decals:
1792: -23,29
+ - node:
+ color: '#EFE54193'
+ id: BrickTileWhiteLineW
+ decals:
+ 5013: -20,-7
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineW
@@ -2175,31 +2427,20 @@ entities:
color: '#FFFFFFFF'
id: Caution
decals:
- 1067: -27,-1
1662: -9,-21
3839: -26,32
+ 5081: -27,-2
- node:
color: '#DE3A3A96'
id: CautionGreyscale
decals:
1664: -7,-18
- - node:
- color: '#52B4E996'
- id: CheckerNESW
- decals:
- 1342: -20,-8
- 1343: -20,-7
- 1344: -19,-7
- 1345: -19,-8
- node:
color: '#D4D4D428'
id: CheckerNESW
decals:
156: 2,-46
157: 2,-45
- 159: -37,-5
- 160: -37,-4
- 161: -37,-3
- node:
color: '#D4D4D453'
id: CheckerNESW
@@ -2396,19 +2637,6 @@ entities:
339: -56,9
340: -55,9
341: -54,9
- - node:
- color: '#D4D4D406'
- id: CheckerNWSE
- decals:
- 2386: -33,-4
- 2387: -33,-3
- 2388: -34,-3
- 2389: -35,-3
- 2390: -35,-4
- 2391: -34,-4
- 2392: -35,-5
- 2393: -34,-5
- 2394: -33,-5
- node:
color: '#D4D4D428'
id: CheckerNWSE
@@ -2440,6 +2668,14 @@ entities:
decals:
1824: -16,30
1825: -17,30
+ 5097: -23,-20
+ 5098: -24,-20
+ 5099: -24,-19
+ 5100: -23,-19
+ 5101: -31,-20
+ 5102: -30,-20
+ 5103: -30,-19
+ 5104: -31,-19
- node:
color: '#EFB34196'
id: CheckerNWSE
@@ -2478,14 +2714,22 @@ entities:
2761: -58,26
2762: -59,26
2763: -60,27
+ - node:
+ color: '#9FED5896'
+ id: Delivery
+ decals:
+ 5038: -30,-8
- node:
color: '#DE3A3A96'
id: Delivery
decals:
- 2902: -32,-20
- 3363: -32,2
- 3364: -31,2
3674: 51,-21
+ 5027: -29,-19
+ 5028: -29,-18
+ 5029: -29,-17
+ 5030: -25,-19
+ 5031: -25,-18
+ 5032: -25,-17
- node:
color: '#FFFFFFFF'
id: Delivery
@@ -2564,6 +2808,27 @@ entities:
4575: 46,0
4576: 46,1
4873: -31,18
+ 4984: -17,6
+ 4985: -16,6
+ 4986: -15,6
+ 4991: -17,-22
+ 4992: -16,-22
+ 4993: -15,-22
+ 5040: -24,-8
+ 5107: -20,-21
+ 5108: -20,-20
+ 5109: -20,-19
+ 5110: -35,-20
+ 5111: -34,-20
+ 5112: -34,-19
+ 5125: -36,-20
+ 5126: -34,-18
+ 5127: -21,-18
+ 5128: -19,-18
+ 5129: -19,-22
+ 5130: -21,-22
+ 5350: 3,34
+ 5351: 0,30
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -2577,6 +2842,12 @@ entities:
decals:
3460: 31,-20
3461: 31,-18
+ 5039: -30,-9
+ - node:
+ color: '#C74EBDD6'
+ id: DeliveryGreyscale
+ decals:
+ 5042: -24,-9
- node:
color: '#D381C941'
id: DeliveryGreyscale
@@ -2621,6 +2892,13 @@ entities:
52: 18,-51
53: 17,-51
54: 17,-51
+ 126: -15,-43
+ 127: -16,-43
+ 128: -14,-43
+ 129: -16,-41
+ 130: -16,-42
+ 131: -15,-40
+ 132: -12,-42
2431: -45,-32
2432: -46,-32
2433: -46,-33
@@ -2798,26 +3076,21 @@ entities:
3862: -9,-12
3863: -11,-12
3864: -10,-12
- 126: -15,-43
- 127: -16,-43
- 128: -14,-43
- 129: -16,-41
- 130: -16,-42
- 131: -15,-40
- 132: -12,-42
- node:
cleanable: True
zIndex: 1
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 36: 0,-3
37: 2,-2
- 3062: 37,-2
- 3063: 37,2
64: 53,-38
65: 60,-28
86: 13,11
+ 112: -16,-43
+ 113: -14,-43
+ 114: -14,-44
+ 115: -16,-42
+ 116: -16,-40
133: -51,-30
149: -39,-14
455: -59,19
@@ -2850,17 +3123,14 @@ entities:
2764: -59,26
2765: -60,26
2894: 45,9
+ 3062: 37,-2
+ 3063: 37,2
3279: -59,20
3280: -59,22
3281: -59,22
3811: -12,-16
3813: -12,-15
3854: -13,-16
- 112: -16,-43
- 113: -14,-43
- 114: -14,-44
- 115: -16,-42
- 116: -16,-40
- node:
cleanable: True
zIndex: 1
@@ -2874,361 +3144,14 @@ entities:
3494: 8,14
3855: -11,-17
3856: -11,-14
- - node:
- cleanable: True
- zIndex: 1
- color: '#FFFFFFFF'
- decals:
- 283: -23,-12
- 284: -32,-11
- 511: -38,8
- 512: -38,6
- 513: -38,5
- 514: -39,12
- 858: -33,-20
- 859: -33,-17
- 860: -32,-20
- 3069: 37,1
- 3070: 37,-1
- 3071: 38,0
- 3072: 36,0
- 3073: 36,-1
- 3074: 40,0
- 55: -7,-24
- 56: 11,-29
- 58: 13,-28
- 59: 16,-38
- 60: 21,-38
- 61: 37,-22
- 62: 44,-37
- 63: 44,-38
- 67: 30,-12
- 68: 31,-12
- 69: 33,-12
- 70: -45,9
- 71: -44,9
- 72: -45,8
- 79: -7,9
- 81: 17,12
- 82: 16,13
- 83: 17,14
- 84: 15,16
- 85: 11,11
- 89: 11,15
- 91: 1,-42
- 92: 1,-35
- 93: 15,-17
- 94: 13,-17
- 95: 17,-9
- 98: -37,0
- 100: -17,-1
- 101: -17,-2
- 102: -15,-12
- 103: -1,-24
- 104: 0,-28
- 106: 19,-30
- 135: -47,-33
- 136: -45,-35
- 137: -50,-30
- 152: -38,-13
- 153: -38,-14
- 154: -38,-18
- 155: -39,-19
- 359: 11,-21
- 360: 12,-21
- 374: 16,-9
- 409: -26,31
- 410: -27,30
- 411: -23,31
- 412: -23,29
- 413: -21,29
- 414: -18,29
- 415: -22,27
- 416: -24,30
- 417: -29,31
- 448: -16,12
- 449: -16,23
- 450: -23,24
- 451: -39,24
- 452: -42,22
- 453: -43,21
- 460: -58,20
- 461: -59,18
- 462: -60,17
- 463: -59,25
- 464: -60,24
- 465: -56,24
- 466: -57,20
- 585: 47,-1
- 586: 48,-2
- 587: 49,-2
- 588: 51,1
- 589: 50,1
- 591: 48,2
- 592: 47,0
- 597: 55,12
- 598: 54,11
- 599: 53,11
- 600: 55,13
- 601: 55,9
- 602: 49,14
- 603: 50,13
- 607: 37,4
- 608: 36,5
- 675: -22,25
- 676: -17,18
- 677: -37,4
- 678: -37,-11
- 679: -37,-15
- 681: -17,-14
- 682: -17,-7
- 683: -16,-5
- 691: -16,7
- 693: -16,4
- 694: -15,9
- 695: -16,0
- 828: -9,-25
- 829: -8,-25
- 830: -8,-25
- 835: -4,-24
- 836: -1,-25
- 895: -6,-23
- 896: -25,-23
- 897: -34,-23
- 898: -37,-24
- 1068: -10,-55
- 1069: -14,-56
- 1070: -19,-55
- 1071: -7,-54
- 1072: -2,-54
- 1073: -3,-57
- 1074: 2,-59
- 1075: -3,-64
- 1076: 0,-61
- 1077: -3,-66
- 1078: -3,-71
- 1079: -1,-73
- 1080: 2,-71
- 1081: 1,-55
- 1082: -1,-47
- 1083: 0,-45
- 1153: 15,25
- 1154: 16,27
- 1156: 38,24
- 1163: 41,20
- 1164: 52,14
- 1165: 48,18
- 1166: 49,16
- 1167: 45,7
- 1168: 20,8
- 1169: 32,7
- 1170: 34,8
- 1171: 16,8
- 1172: 5,8
- 1173: -7,9
- 1174: -8,8
- 1216: 7,-24
- 1218: 18,-28
- 1219: 21,-35
- 1220: 19,-34
- 1629: -38,9
- 1630: -39,8
- 1631: -39,7
- 1632: -39,-1
- 1641: -8,-14
- 1642: -9,-13
- 1657: -9,-16
- 1658: -8,-16
- 1659: -8,-16
- 1981: -39,-12
- 1982: -39,-8
- 1983: -40,-7
- 1984: -39,-8
- 1986: -39,-9
- 1987: -39,-3
- 1988: -39,3
- 2218: 1,13
- 2219: 0,14
- 2220: 0,15
- 2221: 0,15
- 2222: 1,15
- 2223: 3,14
- 2224: 5,15
- 2225: 7,13
- 2226: 9,14
- 2227: 11,12
- 2228: 11,14
- 2229: 5,17
- 2230: 4,17
- 2231: 4,18
- 2232: -4,17
- 2233: -4,19
- 2234: -3,20
- 2235: -2,17
- 2272: 3,19
- 2273: 4,20
- 2275: -4,21
- 2276: -3,22
- 2278: -2,21
- 2279: -2,20
- 2281: -5,28
- 2283: -11,28
- 2284: -12,29
- 2285: -13,30
- 2286: -13,31
- 2287: -12,32
- 2288: -22,31
- 2289: -30,30
- 2292: 51,-38
- 2293: 51,-38
- 2302: 49,-39
- 2418: -52,-35
- 2419: -52,-35
- 2420: -52,-32
- 2421: -49,-31
- 2422: -49,-31
- 2423: -48,-32
- 2424: -48,-32
- 2425: -45,-33
- 2426: -45,-33
- 2427: -45,-33
- 2428: -46,-32
- 2429: -46,-32
- 2430: -46,-32
- 2528: 28,21
- 2529: 31,18
- 2530: 31,12
- 2531: 27,12
- 2895: 44,9
- 2896: 46,8
- 2897: 44,10
- 2898: 45,12
- 3109: 46,-1
- 3110: 46,1
- 3111: 47,2
- 3112: 48,1
- 3115: 46,2
- 3116: 40,2
- 3128: 49,6
- 3129: 48,7
- 3132: 41,8
- 3133: 40,9
- 3134: 39,8
- 3135: 41,13
- 3136: 41,15
- 3137: 40,16
- 3138: 56,7
- 3139: 41,1
- 3140: 41,0
- 3141: 42,2
- 3142: 40,-1
- 3153: 56,12
- 3154: 54,15
- 3155: 49,17
- 3156: 55,7
- 3157: 49,9
- 3158: 50,11
- 3159: 37,7
- 3486: 43,-19
- 3487: 43,-23
- 3488: 41,-24
- 3573: 35,-23
- 3574: 34,-25
- 3576: 33,-22
- 3729: -33,8
- 3730: -34,9
- 3731: -35,8
- 3732: -35,7
- 3733: -37,8
- 4407: 33,23
- 4408: 34,23
- 4409: 37,23
- 4410: 38,25
- 4411: 37,25
- 4412: 19,25
- 4413: 20,25
- 4414: 19,23
- 4415: 24,25
- 4417: 28,23
- 4418: 29,24
- 4419: 27,23
- 4420: 33,27
- 4421: 33,28
- 4423: 35,33
- 4424: 33,38
- 4425: 35,40
- 4426: 35,44
- 4427: 35,45
- 4428: 33,46
- 4429: 53,44
- 4430: 53,45
- 4431: 55,46
- 4432: 53,48
- 4433: 55,41
- 4434: 53,41
- 4435: 53,40
- 4436: 54,39
- 4437: 54,38
- 4438: 53,35
- 4439: 53,34
- 4440: 53,28
- 4441: 55,30
- 4442: 55,25
- 4443: 56,25
- 4444: 57,24
- 4445: 55,20
- 4446: 54,20
- 4447: 49,20
- 4448: 51,25
- 4449: 50,24
- 4452: 50,25
- 4453: 48,25
- 4454: 48,24
- 4455: 47,25
- 4456: 46,25
- 4628: -24,-19
- 4631: -27,-19
- 4632: -28,-20
- 4633: -29,-19
- 4634: -27,-20
- 4635: -30,-20
- 4636: -30,-15
- 4637: -29,-16
- 4638: -24,-15
- 4639: -23,-8
- 4640: -23,-7
- 4641: -24,-5
- 4642: -31,-7
- 4643: -19,-20
- 4644: -21,-19
- 4660: 16,-15
- 4661: 17,-14
- 4662: 17,-13
- 4663: 17,-17
- 4664: 16,-16
- 4665: 16,-18
- 4666: 16,-12
- 4667: 15,-21
- 107: 19,-13
- 108: 20,-11
- 111: -1,-31
- 119: -11,-43
- 120: -13,-43
- 121: -10,-43
- 122: -9,-43
- 123: -7,-43
- 124: -6,-42
- 125: -15,-40
- node:
cleanable: True
zIndex: 1
color: '#FFFFFFFF'
id: DirtLight
decals:
- 31: -2,-3
+ 31: 50,-33
38: 3,-2
- 39: 4,-2
- 40: -1,-3
41: 11,-4
- node:
cleanable: True
@@ -3236,21 +3159,12 @@ entities:
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 32: -2,-4
- 33: -3,-4
+ 32: 52,-33
+ 33: 51,-33
34: -6,-3
- 35: -4,-4
42: 11,-3
43: 5,-3
44: -4,-3
- 508: -38,7
- 509: -39,10
- 510: -39,11
- 3064: 36,-2
- 3065: 38,-2
- 3066: 36,2
- 3067: 38,2
- 3068: 37,1
57: 11,-28
66: 35,-12
78: -7,10
@@ -3258,7 +3172,8 @@ entities:
87: 12,11
88: 10,15
90: -1,-42
- 99: -37,-1
+ 117: -16,-42
+ 118: -12,-43
134: -50,-33
150: -39,-15
151: -39,-16
@@ -3267,6 +3182,9 @@ entities:
408: -25,31
458: -58,21
459: -59,25
+ 508: -38,7
+ 509: -39,10
+ 510: -39,11
582: 50,2
584: 49,0
690: -16,6
@@ -3297,17 +3215,18 @@ entities:
2700: -64,-10
2701: -62,-9
2702: -60,-12
+ 3064: 36,-2
+ 3065: 38,-2
+ 3066: 36,2
+ 3067: 38,2
+ 3068: 37,1
4405: 31,22
4406: 32,22
4416: 29,23
4450: 49,24
4451: 49,25
- 4629: -26,-19
- 4630: -28,-19
4658: 17,-16
4659: 17,-15
- 117: -16,-42
- 118: -12,-43
- node:
cleanable: True
color: '#FED83DFF'
@@ -3466,16 +3385,10 @@ entities:
color: '#DE3A3A96'
id: FullTileOverlayGreyscale
decals:
- 251: -33,-13
- 252: -33,-10
- 253: -33,-7
- 254: -21,-13
- 255: -21,-10
- 256: -21,-7
- 270: -26,-18
- 271: -28,-18
- 285: -22,-21
- 286: -22,-19
+ 5232: -33,-10
+ 5233: -33,-6
+ 5234: -21,-6
+ 5235: -21,-10
- node:
color: '#EFCC4196'
id: FullTileOverlayGreyscale
@@ -3694,11 +3607,11 @@ entities:
decals:
14: 48,-27
16: 49,-27
- 33: 51,-33
3910: 30,-33
3911: 31,-33
3912: 32,-33
3913: 33,-33
+ 5312: 51,-33
- node:
color: '#A4610696'
id: HalfTileOverlayGreyscale180
@@ -3709,11 +3622,6 @@ entities:
4357: 49,20
4358: 50,20
4359: 51,20
- - node:
- color: '#D381C93E'
- id: HalfTileOverlayGreyscale180
- decals:
- 332: -36,2
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale180
@@ -3723,6 +3631,11 @@ entities:
301: -41,13
302: -40,13
1975: -42,-11
+ - node:
+ color: '#DE3A3A96'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 5123: -34,-21
- node:
color: '#EFB34196'
id: HalfTileOverlayGreyscale180
@@ -3817,14 +3730,7 @@ entities:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale270
decals:
- 264: -32,-13
- 265: -32,-12
- 266: -32,-11
- 267: -32,-10
- 268: -32,-9
- 269: -32,-8
- 1669: -32,-14
- 1670: -32,-7
+ 5117: -21,-20
- node:
color: '#EFCC4196'
id: HalfTileOverlayGreyscale270
@@ -3901,19 +3807,12 @@ entities:
id: HalfTileOverlayGreyscale90
decals:
162: 17,-9
- 164: -37,-1
- node:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale90
decals:
- 257: -22,-13
- 258: -22,-12
- 259: -22,-11
- 260: -22,-10
- 261: -22,-9
- 262: -22,-8
- 263: -22,-7
- 1668: -22,-14
+ 5118: -19,-20
+ 5124: -33,-20
- node:
color: '#EFCC4196'
id: HalfTileOverlayGreyscale90
@@ -4063,7 +3962,6 @@ entities:
469: -1,-6
470: -1,-5
471: -1,-4
- 472: -1,-3
499: -3,1
500: -4,0
613: -74,18
@@ -4076,10 +3974,11 @@ entities:
882: -1,-16
883: -1,-15
884: -1,-14
- 885: -1,-13
886: -1,-12
887: -1,-11
888: -1,-10
+ 5093: -1,-13
+ 5327: -1,-3
- node:
color: '#52B4E92E'
id: QuarterTileOverlayGreyscale
@@ -4168,7 +4067,6 @@ entities:
1599: -39,9
1600: -39,8
1601: -39,7
- 1602: -39,6
1957: -40,-4
1958: -39,-4
1959: -39,-3
@@ -4213,7 +4111,6 @@ entities:
1434: -26,25
1435: -25,25
1436: -24,25
- 1460: -22,-23
1461: -23,-23
1462: -24,-23
1463: -25,-23
@@ -4356,20 +4253,19 @@ entities:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale
decals:
- 651: -17,-17
- 652: -17,-16
- 653: -17,-15
- 654: -17,-14
- 655: -17,-13
- 656: -17,-12
- 657: -17,-11
- 658: -17,-10
- 659: -17,-9
- 660: -17,-8
- 661: -17,-7
- 662: -17,-6
- 698: -18,1
- 699: -18,2
+ 5056: -18,-2
+ 5057: -18,-1
+ 5058: -18,0
+ 5131: -26,-23
+ 5132: -25,-23
+ 5133: -24,-23
+ 5134: -23,-23
+ 5135: -22,-23
+ 5152: -21,-23
+ 5153: -20,-23
+ 5154: -19,-23
+ 5155: -18,-23
+ 5156: -17,-23
- node:
color: '#EFCC4196'
id: QuarterTileOverlayGreyscale
@@ -4460,13 +4356,13 @@ entities:
decals:
13: 47,-27
23: 52,-26
- 31: 50,-33
3556: 35,-25
3557: 34,-25
3558: 33,-25
4967: 30,-25
4968: 31,-25
4969: 32,-25
+ 5313: 50,-33
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale180
@@ -4492,6 +4388,7 @@ entities:
4123: 55,6
4124: 54,6
4140: 54,5
+ 5091: 41,12
- node:
color: '#D4D4D428'
id: QuarterTileOverlayGreyscale180
@@ -4503,9 +4400,7 @@ entities:
1448: -32,7
1449: -33,7
1450: -34,7
- 1494: -14,-2
1495: -15,-2
- 1496: -15,-3
1497: -15,-4
1498: -15,-5
1499: -15,-6
@@ -4513,7 +4408,6 @@ entities:
1501: -15,-8
1502: -15,-9
1503: -15,5
- 1504: -15,6
1505: -15,7
1507: 10,7
1508: 9,7
@@ -4614,6 +4508,23 @@ entities:
4470: 36,50
4521: 44,20
4522: 45,20
+ - node:
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 5173: -37,-17
+ 5174: -37,-16
+ 5175: -37,-15
+ 5176: -37,-14
+ 5177: -37,-13
+ 5178: -37,-12
+ 5179: -37,-11
+ 5180: -37,-10
+ 5181: -37,-9
+ 5182: -37,-8
+ 5183: -37,-7
+ 5184: -37,-6
+ 5185: -37,-5
- node:
color: '#EFB3414A'
id: QuarterTileOverlayGreyscale180
@@ -4701,7 +4612,7 @@ entities:
id: QuarterTileOverlayGreyscale270
decals:
15: 50,-27
- 32: 52,-33
+ 5314: 52,-33
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale270
@@ -4724,12 +4635,12 @@ entities:
1962: -39,3
1963: -39,4
1964: -40,-8
- 1965: -39,-8
1966: -39,-9
1967: -39,-10
1968: -39,-11
1969: -39,-12
1970: -40,-7
+ 4990: -39,-8
- node:
color: '#D4D4D428'
id: QuarterTileOverlayGreyscale270
@@ -4807,7 +4718,6 @@ entities:
2564: 15,19
2565: 15,20
2566: 15,21
- 2576: -17,-22
2590: -24,23
2591: -23,23
2592: -22,23
@@ -4876,8 +4786,23 @@ entities:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale270
decals:
- 696: -18,-1
- 697: -18,0
+ 5190: -17,-21
+ 5191: -17,-20
+ 5192: -17,-19
+ 5193: -17,-18
+ 5194: -17,-17
+ 5195: -17,-16
+ 5196: -17,-15
+ 5199: -17,-14
+ 5200: -17,-13
+ 5201: -17,-12
+ 5202: -17,-11
+ 5203: -17,-10
+ 5204: -17,-9
+ 5205: -17,-8
+ 5206: -17,-7
+ 5207: -17,-6
+ 5208: -17,-5
- node:
color: '#EFB3414A'
id: QuarterTileOverlayGreyscale270
@@ -4913,7 +4838,6 @@ entities:
865: 1,-10
866: 1,-11
867: 1,-12
- 868: 1,-13
869: 1,-14
870: 1,-15
871: 1,-16
@@ -4922,6 +4846,7 @@ entities:
874: 1,-19
875: 1,-20
876: 1,-21
+ 5092: 1,-13
- node:
color: '#52B4E92E'
id: QuarterTileOverlayGreyscale90
@@ -5055,7 +4980,6 @@ entities:
1473: 30,-23
1491: -15,1
1492: -15,0
- 1493: -14,0
1838: -15,21
1839: -15,20
1840: -15,19
@@ -5072,15 +4996,9 @@ entities:
2066: -30,-23
2067: -31,-23
2068: -32,-23
- 2069: -33,-23
- 2070: -34,-23
- 2071: -35,-23
2072: -36,-23
2073: -37,-23
2074: -37,-22
- 2075: -37,-21
- 2076: -37,-20
- 2077: -37,-19
2304: -21,9
2305: -22,9
2306: -23,9
@@ -5091,12 +5009,7 @@ entities:
2557: 17,12
2558: 17,11
2570: 17,9
- 2577: -18,-23
2578: -15,-23
- 2579: -15,-22
- 2580: -15,-21
- 2581: -15,-20
- 2582: -15,-19
2583: -15,-17
2584: -15,-16
2585: -15,-15
@@ -5158,6 +5071,9 @@ entities:
4979: 20,-23
4980: 19,-23
4981: 18,-23
+ 5062: -14,-2
+ 5063: -14,-1
+ 5064: -14,0
- node:
color: '#D4D4D437'
id: QuarterTileOverlayGreyscale90
@@ -5202,21 +5118,23 @@ entities:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale90
decals:
- 663: -37,-17
- 664: -37,-16
- 665: -37,-15
- 666: -37,-14
- 667: -37,-13
- 668: -37,-12
- 669: -37,-11
- 670: -37,-10
- 671: -37,-9
- 672: -37,-8
- 673: -37,-7
- 674: -37,-6
1635: -8,-15
1636: -8,-14
1637: -8,-13
+ 5136: -28,-23
+ 5137: -29,-23
+ 5138: -30,-23
+ 5139: -31,-23
+ 5140: -32,-23
+ 5141: -33,-23
+ 5142: -34,-23
+ 5143: -36,-23
+ 5144: -35,-23
+ 5145: -37,-23
+ 5146: -37,-22
+ 5149: -37,-19
+ 5150: -37,-20
+ 5151: -37,-21
- node:
color: '#EFB34160'
id: QuarterTileOverlayGreyscale90
@@ -5284,18 +5202,14 @@ entities:
color: '#FFFFFFFF'
id: Rust
decals:
- 34: 10,-44
- 35: 10,-44
- 36: 11,-47
- 37: 15,-46
- 38: 16,-45
- 39: 16,-45
- 40: 18,-45
- 41: 13,-44
- 42: 13,-44
- 43: 13,-45
- 44: 18,-47
138: -45,-35
+ 5315: -6,-3
+ 5318: 2,-2
+ 5319: 3,-2
+ 5322: 11,-4
+ 5323: 11,-3
+ 5324: 5,-3
+ 5325: -4,-3
- node:
cleanable: True
color: '#80C71FFF'
@@ -5342,7 +5256,6 @@ entities:
id: StandClear
decals:
333: -40,-1
- 1729: -23,-20
1783: -22,26
- node:
color: '#D381C996'
@@ -5371,6 +5284,12 @@ entities:
decals:
296: -43,14
1974: -43,-10
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 5116: -21,-19
+ 5119: -35,-19
- node:
color: '#EFCC4196'
id: ThreeQuarterTileOverlayGreyscale
@@ -5404,6 +5323,12 @@ entities:
decals:
1955: -37,11
1973: -41,-11
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 5113: -19,-21
+ 5120: -33,-21
- node:
color: '#EFCC4196'
id: ThreeQuarterTileOverlayGreyscale180
@@ -5434,6 +5359,12 @@ entities:
294: -39,11
295: -43,13
1978: -43,-11
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 5114: -21,-21
+ 5122: -35,-21
- node:
color: '#EFCC4196'
id: ThreeQuarterTileOverlayGreyscale270
@@ -5473,6 +5404,12 @@ entities:
decals:
1954: -37,14
1977: -41,-10
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 5115: -19,-19
+ 5121: -33,-19
- node:
color: '#EFCC4196'
id: ThreeQuarterTileOverlayGreyscale90
@@ -5505,7 +5442,6 @@ entities:
color: '#FFFFFFFF'
id: WarnBox
decals:
- 2014: -25,2
3169: 12,-55
3170: -25,-36
3171: 23,-47
@@ -5515,6 +5451,8 @@ entities:
3176: 5,-64
3177: 39,-47
3302: -17,48
+ 5071: -25,1
+ 5228: -25,-13
- node:
color: '#FFFFFFFF'
id: WarnCorner
@@ -5537,21 +5475,11 @@ entities:
id: WarnCornerFlipped
decals:
4: 47,-32
- - node:
- color: '#DE3A3A96'
- id: WarnCornerGreyscaleNE
- decals:
- 1674: -22,-3
- node:
color: '#D381C996'
id: WarnCornerGreyscaleNW
decals:
1275: -58,-1
- - node:
- color: '#DE3A3A96'
- id: WarnCornerGreyscaleNW
- decals:
- 1682: -31,-3
- node:
color: '#FFFFFFFF'
id: WarnCornerNE
@@ -5578,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'
@@ -5594,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'
@@ -5611,9 +5539,9 @@ entities:
decals:
1050: -2,-78
3340: -19,42
- 3762: -29,-1
3894: -15,4
- 4923: -2,36
+ 5082: -29,-2
+ 5347: -2,37
- node:
zIndex: 5
color: '#FFFFFFFF'
@@ -5626,12 +5554,12 @@ entities:
decals:
727: -30,36
1049: 2,-78
- 1360: 2,36
2544: 40,-35
3329: -27,40
3339: -15,42
- 3870: -25,-1
3963: -54,6
+ 5075: -25,-2
+ 5346: 2,37
- node:
zIndex: 5
color: '#FFFFFFFF'
@@ -5643,6 +5571,9 @@ entities:
id: WarnFullGreyscale
decals:
3449: 42,-19
+ 5299: -21,-14
+ 5300: -19,-14
+ 5301: -20,-14
- node:
color: '#D381C996'
id: WarnFullGreyscale
@@ -5650,6 +5581,11 @@ entities:
1999: -58,0
3977: -56,10
3978: -55,10
+ - node:
+ color: '#DE3A3A96'
+ id: WarnFullGreyscale
+ decals:
+ 5230: -27,-14
- node:
color: '#FFFFFFFF'
id: WarnFullGreyscale
@@ -5665,6 +5601,8 @@ entities:
3258: -32,31
3259: -22,33
3260: -12,33
+ 5293: -30,-16
+ 5294: -24,-16
- node:
color: '#FFFFFFFF'
id: WarnLineE
@@ -5676,42 +5614,35 @@ entities:
862: -12,3
863: -12,4
864: -12,5
- 1353: -2,32
- 1354: -2,33
- 1355: -2,34
- 1356: -2,35
- 1744: -15,-18
1748: -37,-18
- 1752: -37,5
- 1757: -15,6
1759: -15,22
1763: 17,6
- 1765: 41,12
1773: 17,22
1774: 17,26
1775: 17,-9
1787: -21,26
- 1850: -15,-3
1894: -52,1
1895: -48,1
2113: -2,25
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
3151: 56,12
3152: 56,11
3338: -19,41
- 3390: 1,-13
3893: -15,3
4099: 17,-22
4214: -16,33
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
@@ -5731,23 +5662,10 @@ entities:
1929: -48,-6
1931: -45,-1
1949: -42,-6
- - node:
- color: '#DE3A3A96'
- id: WarnLineGreyscaleE
- decals:
- 1673: -22,-4
- 1715: -33,-20
- 1716: -33,-17
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleE
decals:
- 1726: -23,-21
- 1727: -23,-20
- 1728: -23,-19
- 1739: -18,-21
- 1740: -18,-20
- 1741: -18,-19
1802: -15,28
1808: -25,31
2264: 6,19
@@ -5758,6 +5676,11 @@ entities:
3541: -5,-54
3889: -25,30
3939: 41,-32
+ 5105: -30,-20
+ 5262: -33,-10
+ 5263: -33,-6
+ 5289: -31,-16
+ 5292: -25,-16
- node:
color: '#52B4E996'
id: WarnLineGreyscaleN
@@ -5783,9 +5706,8 @@ entities:
color: '#DE3A3A96'
id: WarnLineGreyscaleN
decals:
- 1684: -27,-3
- 4625: -28,-19
- 4626: -26,-19
+ 5231: -27,-15
+ 5311: -27,-4
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleN
@@ -5809,6 +5731,9 @@ entities:
3526: -1,-76
4148: 53,2
4149: 54,2
+ 4987: -17,5
+ 4988: -16,5
+ 4989: -15,5
- node:
color: '#334E6DC8'
id: WarnLineGreyscaleS
@@ -5844,18 +5769,13 @@ entities:
color: '#DE3A3A96'
id: WarnLineGreyscaleS
decals:
- 1667: -27,-6
- 1863: -26,-17
- 1864: -28,-17
+ 5229: -27,-13
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleS
decals:
- 1742: -19,-22
- 1743: -20,-22
1801: -18,27
1803: -22,28
- 1855: -21,-22
2263: 5,17
3032: 23,7
3369: 1,-21
@@ -5890,6 +5810,12 @@ entities:
4252: 54,27
4253: 55,27
4651: -11,27
+ 4995: -16,-21
+ 4996: -15,-21
+ 5209: -17,-21
+ 5286: -34,-17
+ 5287: -21,-17
+ 5288: -19,-17
- node:
color: '#52B4E996'
id: WarnLineGreyscaleW
@@ -5911,21 +5837,10 @@ entities:
id: WarnLineGreyscaleW
decals:
1930: -46,-6
- - node:
- color: '#DE3A3A96'
- id: WarnLineGreyscaleW
- decals:
- 1683: -31,-4
- 1851: -21,-21
- 4624: -31,-20
- 4645: -21,-19
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleW
decals:
- 1723: -23,-21
- 1724: -23,-20
- 1725: -23,-19
1805: -23,30
1806: -23,31
1809: -31,30
@@ -5943,13 +5858,15 @@ entities:
4245: 19,23
4246: 19,24
4292: 19,25
+ 5106: -24,-20
+ 5264: -21,-10
+ 5265: -21,-6
+ 5290: -23,-16
+ 5291: -29,-16
- node:
color: '#FFFFFFFF'
id: WarnLineN
decals:
- 706: -26,-1
- 707: -27,-1
- 708: -28,-1
726: -31,36
738: -117,18
739: -118,18
@@ -5959,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
@@ -5987,16 +5901,19 @@ entities:
3745: -6,31
3961: -56,6
3962: -55,6
- 3985: 14,7
- 3998: -14,7
- 4100: -14,-25
- 4103: -18,7
4211: -17,32
4243: 38,23
4881: -1,24
4882: 0,24
4883: 1,24
4983: 18,-25
+ 5072: -28,-2
+ 5073: -27,-2
+ 5074: -26,-2
+ 5090: -18,7
+ 5336: 1,37
+ 5337: 0,37
+ 5338: -1,37
- node:
color: '#DE3A3A96'
id: WarnLineS
@@ -6017,22 +5934,13 @@ entities:
1051: -20,-56
1052: -20,-55
1053: -20,-54
- 1349: 2,32
- 1350: 2,33
- 1351: 2,34
- 1352: 2,35
- 1745: -17,-18
1747: -39,-18
- 1751: -39,5
- 1755: -17,6
1760: -17,22
1762: 15,6
- 1766: 39,12
1771: 15,22
1772: 15,26
1776: 15,-9
1786: -23,26
- 1849: -17,-3
1893: -54,1
1896: -50,1
2114: 2,25
@@ -6044,13 +5952,16 @@ entities:
2846: 43,-16
3328: -27,39
3334: -15,41
- 3391: -1,-13
3780: 40,-36
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
@@ -6076,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
@@ -6116,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
@@ -6124,10 +6031,6 @@ entities:
3877: -113,30
3878: -112,30
3879: -111,30
- 3984: 14,9
- 3999: -14,9
- 4101: -14,-23
- 4102: -18,9
4137: 58,3
4187: 57,3
4213: -17,34
@@ -6136,6 +6039,14 @@ entities:
4889: 0,24
4890: 1,24
4982: 18,-23
+ 5089: -18,9
+ 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'
@@ -6208,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
@@ -6252,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
@@ -6268,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
@@ -6278,27 +6209,14 @@ 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
1282: 19,-38
1283: 20,-38
1284: 21,-38
- 2019: -20,-1
- 2020: -21,-1
- 2021: -22,-1
- 2022: -23,-1
2024: -23,-28
2054: -41,9
2055: -44,9
@@ -6315,6 +6233,13 @@ entities:
3577: -15,-53
3581: -13,-51
3582: -14,-51
+ 5052: -23,-2
+ 5053: -22,-2
+ 5054: -21,-2
+ 5055: -20,-2
+ 5363: -11,14
+ 5364: -10,14
+ 5365: -9,14
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineS
@@ -6324,14 +6249,6 @@ entities:
797: -5,-3
798: -7,-3
799: -8,-3
- 1198: -11,19
- 1199: -10,19
- 1200: -9,19
- 1201: -8,19
- 2015: -20,2
- 2016: -21,2
- 2017: -22,2
- 2018: -23,2
2046: -47,-16
2047: -46,-16
2053: -41,7
@@ -6351,6 +6268,12 @@ entities:
3703: 19,-27
3704: 20,-27
3705: 21,-27
+ 5049: -23,1
+ 5050: -22,1
+ 5051: -21,1
+ 5366: -11,20
+ 5367: -10,20
+ 5368: -9,20
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineW
@@ -6368,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'
@@ -6589,21 +6511,21 @@ entities:
-4,-5:
0: 64447
-5,-4:
- 0: 48011
+ 0: 35771
-4,-3:
0: 15295
-5,-3:
- 0: 35768
+ 0: 35771
-4,-2:
0: 13107
1: 34952
-5,-2:
- 0: 48059
+ 0: 35771
-4,-1:
0: 30515
1: 8
-5,-1:
- 0: 55483
+ 0: 56715
-4,0:
0: 64311
-3,-4:
@@ -6667,7 +6589,7 @@ entities:
1: 300
0: 60416
3,1:
- 0: 63675
+ 0: 63679
3,2:
0: 47359
3,3:
@@ -6684,18 +6606,18 @@ entities:
3,4:
0: 48056
-5,0:
- 0: 36317
+ 0: 64141
-4,1:
0: 62395
-5,1:
- 0: 63679
+ 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
@@ -6706,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:
@@ -6785,9 +6707,9 @@ entities:
-4,-6:
0: 46079
-5,-6:
- 0: 64511
+ 0: 47871
-5,-5:
- 0: 47615
+ 0: 47803
-4,-9:
0: 19921
-3,-8:
@@ -7017,30 +6939,30 @@ entities:
1: 17
0: 62668
-8,-6:
- 0: 57599
+ 0: 61695
-9,-7:
0: 61440
-9,-6:
0: 57599
-8,-5:
- 0: 61679
+ 0: 47359
-9,-5:
- 0: 61166
+ 0: 58607
-8,-4:
- 0: 32750
+ 0: 46015
-7,-7:
0: 63726
-7,-6:
0: 61695
-7,-5:
- 0: 62975
+ 0: 65535
-7,-9:
0: 65160
1: 2
-7,-8:
0: 61152
-7,-4:
- 0: 4095
+ 0: 62207
-6,-8:
0: 48057
-6,-7:
@@ -7048,50 +6970,50 @@ entities:
-6,-6:
0: 63743
-6,-5:
- 0: 45307
+ 0: 59647
-6,-9:
0: 65280
1: 6
-6,-4:
- 0: 63295
+ 0: 28399
-9,-4:
- 0: 58894
- -8,-3:
- 0: 16183
- -9,-3:
- 0: 3680
- -8,-2:
- 0: 61047
- -9,-2:
- 0: 57574
- -8,-1:
- 0: 45807
- -9,-1:
- 0: 57582
- -8,0:
- 0: 3003
- -7,-3:
- 0: 32631
- -7,-2:
- 0: 65319
- -7,-1:
- 0: 62207
- -7,0:
- 0: 4095
- -6,-3:
- 0: 28519
- -6,-2:
- 0: 30711
- -6,-1:
- 0: 58495
- -6,0:
0: 3822
+ -8,-3:
+ 0: 29691
+ -9,-3:
+ 0: 3694
+ -8,-2:
+ 0: 65527
+ -9,-2:
+ 0: 3694
+ -8,-1:
+ 0: 47903
+ -9,-1:
+ 0: 61038
+ -8,0:
+ 0: 9131
+ -7,-3:
+ 0: 30719
+ -7,-2:
+ 0: 65520
+ -7,-1:
+ 0: 65327
+ -7,0:
+ 0: 255
+ -6,-3:
+ 0: 32382
+ -6,-2:
+ 0: 32639
+ -6,-1:
+ 0: 60999
+ -6,0:
+ 0: 57582
-9,0:
- 0: 61166
+ 0: 60942
-8,1:
- 0: 61683
+ 0: 61694
-9,1:
- 0: 61679
+ 0: 61684
-8,2:
0: 45311
-9,2:
@@ -7101,7 +7023,7 @@ entities:
-9,3:
0: 61182
-7,1:
- 0: 62192
+ 0: 62143
-7,2:
0: 65279
-7,3:
@@ -7111,7 +7033,7 @@ entities:
-7,4:
0: 65535
-6,1:
- 0: 61694
+ 0: 61695
-6,2:
0: 12543
1: 32768
@@ -7249,11 +7171,11 @@ entities:
1: 17
0: 57344
-10,-6:
- 0: 65519
- -10,-5:
- 0: 61167
+ 0: 65263
-10,-9:
0: 61661
+ -10,-5:
+ 0: 61166
-10,-4:
0: 65262
-9,-9:
@@ -7945,7 +7867,7 @@ entities:
-3,7:
0: 46079
-3,8:
- 0: 48027
+ 0: 15259
-2,5:
0: 37819
-2,6:
@@ -7953,7 +7875,7 @@ entities:
-2,7:
0: 61695
-2,8:
- 0: 46079
+ 0: 4095
-1,5:
0: 64511
-1,6:
@@ -7961,7 +7883,7 @@ entities:
-1,7:
0: 53503
-1,8:
- 0: 64733
+ 0: 52701
0,4:
0: 65520
0,5:
@@ -8005,7 +7927,7 @@ entities:
1,7:
0: 65535
1,8:
- 0: 65295
+ 0: 30479
2,4:
0: 63344
2,5:
@@ -8018,8 +7940,8 @@ entities:
0: 4369
1: 19524
2,8:
- 0: 4353
- 1: 52292
+ 0: 30465
+ 1: 4
3,5:
0: 34955
1: 8960
@@ -8229,8 +8151,10 @@ entities:
0: 61567
-13,6:
0: 61440
+ -12,7:
+ 1: 240
-13,7:
- 1: 39312
+ 1: 39408
-12,8:
4: 12
5: 3072
@@ -8239,12 +8163,12 @@ entities:
-11,6:
0: 4607
1: 49152
+ -11,7:
+ 1: 17532
-11,8:
4: 1
1: 17476
5: 256
- -11,7:
- 1: 17484
-10,5:
0: 62139
-10,6:
@@ -8438,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:
@@ -8587,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
@@ -9550,15 +9474,10 @@ entities:
id: docking43669
localAnchorB: -47.5,-40
localAnchorA: 0.5,0
- damping: 1560.5402
- stiffness: 14007.377
+ damping: 1560.5565
+ stiffness: 14007.522
- proto: AcousticGuitarInstrument
entities:
- - uid: 2133
- components:
- - type: Transform
- pos: -27.45107,-11.577459
- parent: 60
- uid: 6610
components:
- type: Transform
@@ -9571,6 +9490,11 @@ entities:
- type: Transform
pos: 31.477634,-79.4623
parent: 60
+ - uid: 14226
+ components:
+ - type: Transform
+ pos: -23.537233,-10.44661
+ parent: 60
- proto: ActionToggleInternals
entities:
- uid: 13159
@@ -9597,48 +9521,116 @@ entities:
container: 18476
- proto: AirAlarm
entities:
- - uid: 249
+ - uid: 12
components:
- type: Transform
- pos: -24.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-15.5
parent: 60
- type: DeviceList
devices:
- - 21734
- - 21733
- - 5565
- - 5562
- - 8466
- - 5563
- - 6307
- - 6308
- - 1902
- - 1651
- - 1893
- - 1682
- - 5454
- - 1665
- - 1850
- - 1669
- - 1846
- - 1652
- - 1564
- - 1838
- - 6759
- - 7790
- - uid: 2103
+ - 21615
+ - 1771
+ - 1787
+ - 5952
+ - 2772
+ - 21614
+ - 6018
+ - 8388
+ - uid: 57
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-20.5
+ pos: -10.5,-21.5
parent: 60
- type: DeviceList
devices:
- - 6648
- - 8230
- - 1633
- - 1636
- - 1559
+ - 21505
+ - 1511
+ - 516
+ - 904
+ - 928
+ - 21495
+ - uid: 105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,1.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 109
+ - 8416
+ - 9157
+ - uid: 148
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-17.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 1976
+ - 1966
+ - 1974
+ - 1659
+ - 777
+ - uid: 178
+ components:
+ - type: Transform
+ pos: -29.5,-2.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 1975
+ - 1983
+ - 2009
+ - uid: 231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-17.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 1985
+ - 1971
+ - 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
+ rot: -1.5707963267948966 rad
+ pos: -13.5,1.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 1645
+ - 21407
+ - 9155
+ - 788
+ - 792
+ - uid: 3204
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-21.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 5688
+ - 5364
- uid: 4046
components:
- type: Transform
@@ -9650,6 +9642,19 @@ entities:
- 4502
- 5518
- 12511
+ - uid: 4709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-17.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 1136
+ - 1133
+ - 122
+ - 788
+ - 792
- uid: 5092
components:
- type: Transform
@@ -9679,23 +9684,16 @@ entities:
- 5065
- 7485
- 7463
- - uid: 5224
+ - uid: 5933
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,-13.5
parent: 60
- type: DeviceList
devices:
- - 780
- - 7721
- - 1017
- - 21614
- - 491
- - 8774
- - 8957
- - 6018
- - 8388
+ - 841
+ - 1845
- uid: 7065
components:
- type: Transform
@@ -9743,61 +9741,33 @@ entities:
- 21029
- 21084
- 21087
- - uid: 8260
+ - uid: 8483
components:
- type: Transform
- pos: -19.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -51.5,-16.5
parent: 60
- type: DeviceList
devices:
- - 6762
- - 5425
- - uid: 8265
+ - 116
+ - 7099
+ - uid: 8516
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,-22.5
parent: 60
- type: DeviceList
devices:
- - 8259
- - 8269
- - uid: 8271
- components:
- - type: Transform
- pos: -25.5,3.5
- parent: 60
- - type: DeviceList
- devices:
- - 3197
- - 8898
+ - 8439
+ - 9150
+ - 1682
+ - 8942
- uid: 8669
components:
- type: Transform
pos: -33.5,6.5
parent: 60
- - type: DeviceList
- devices:
- - 2861
- - 8718
- - uid: 8714
- components:
- - type: Transform
- pos: -18.5,-1.5
- parent: 60
- - type: DeviceList
- devices:
- - 11978
- - 9156
- - uid: 8791
- components:
- - type: Transform
- pos: -32.5,-1.5
- parent: 60
- - type: DeviceList
- devices:
- - 9034
- - 2791
- uid: 11464
components:
- type: Transform
@@ -9858,16 +9828,6 @@ entities:
devices:
- 16635
- 16634
- - uid: 16145
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-17.5
- parent: 60
- - type: DeviceList
- devices:
- - 8578
- - 856
- uid: 19868
components:
- type: Transform
@@ -9896,9 +9856,6 @@ entities:
- 428
- 426
- 21485
- - 18464
- - 18463
- - 18462
- uid: 21488
components:
- type: Transform
@@ -9909,9 +9866,6 @@ entities:
devices:
- 18609
- 21486
- - 18464
- - 18463
- - 18462
- 18426
- 18425
- 18429
@@ -9928,19 +9882,6 @@ entities:
- 18257
- 21491
- 18608
- - uid: 21496
- components:
- - type: Transform
- pos: -6.5,-21.5
- parent: 60
- - type: DeviceList
- devices:
- - 670
- - 672
- - 671
- - 21495
- - 928
- - 904
- uid: 21499
components:
- type: Transform
@@ -9957,27 +9898,6 @@ entities:
- 673
- 1455
- 1456
- - uid: 21504
- components:
- - type: Transform
- pos: -24.5,-21.5
- parent: 60
- - type: DeviceList
- devices:
- - 21505
- - 112
- - 81
- - 63
- - 121
- - 836
- - 158
- - 11338
- - 11339
- - 11340
- - 1511
- - 516
- - 6065
- - 6087
- uid: 21507
components:
- type: Transform
@@ -9991,30 +9911,11 @@ entities:
- 6098
- 6002
- 5962
- - 6093
- - 5961
- 15846
- 2585
- 17493
- - uid: 21509
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-5.5
- parent: 60
- - type: DeviceList
- devices:
- - 11340
- - 11339
- - 11338
- - 18859
- - 18858
- - 18857
- - 21511
- - 792
- - 788
- - 1133
- - 1136
+ - 1660
+ - 1581
- uid: 21515
components:
- type: Transform
@@ -10071,9 +9972,6 @@ entities:
devices:
- 13106
- 13107
- - 13148
- - 13149
- - 13150
- 13151
- 13152
- 13153
@@ -10088,9 +9986,6 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 13148
- - 13149
- - 13150
- 21547
- 13073
- 19403
@@ -10316,20 +10211,14 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 8957
- - 8774
- - 491
- - 9468
- - 5623
- - 8168
- - 6098
- - 6097
- - 5940
- - 21615
+ - 8388
+ - 6018
+ - 21614
- 2772
- 5952
- 1787
- 1771
+ - 21615
- uid: 21616
components:
- type: Transform
@@ -10442,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
@@ -10903,19 +10780,28 @@ entities:
parent: 60
- proto: AirlockArmoryGlassLocked
entities:
- - uid: 1467
+ - uid: 342
components:
- type: MetaData
- name: Warden Office
+ name: Ready Room
- type: Transform
- pos: -26.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-15.5
parent: 60
- - uid: 19786
+ - uid: 8471
+ components:
+ - type: Transform
+ pos: -26.5,-2.5
+ parent: 60
+- proto: AirlockArmoryLocked
+ entities:
+ - uid: 813
components:
- type: MetaData
- name: Secure Armory
+ name: Panopticon
- type: Transform
- pos: -26.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-13.5
parent: 60
- proto: AirlockAtmosphericsGlass
entities:
@@ -11012,35 +10898,35 @@ entities:
parent: 60
- proto: AirlockBrigGlassLocked
entities:
- - uid: 144
+ - uid: 242
components:
- - type: MetaData
- name: Brig Medbay
- type: Transform
- pos: -20.5,-3.5
+ pos: -20.5,-21.5
parent: 60
- - type: PaintableAirlock
- department: Medical
- - uid: 244
+ - uid: 243
components:
- - type: MetaData
- name: Security Brig
- type: Transform
- pos: -27.5,-17.5
+ pos: -20.5,-17.5
parent: 60
- - uid: 1487
+ - uid: 245
components:
- - type: MetaData
- name: Security Front Desk
- type: Transform
- pos: -21.5,-15.5
+ pos: -18.5,-17.5
parent: 60
- - uid: 7901
+ - uid: 1919
components:
- - type: MetaData
- name: Security Brig
- type: Transform
- pos: -25.5,-17.5
+ pos: -33.5,-17.5
+ parent: 60
+ - uid: 8297
+ components:
+ - type: Transform
+ pos: -35.5,-19.5
+ parent: 60
+ - uid: 8454
+ components:
+ - type: Transform
+ pos: -18.5,-21.5
parent: 60
- proto: AirlockBrigLocked
entities:
@@ -11065,6 +10951,13 @@ entities:
- type: Transform
pos: -49.5,-22.5
parent: 60
+ - uid: 14225
+ components:
+ - type: MetaData
+ name: Interrogation
+ - type: Transform
+ pos: -31.5,-2.5
+ parent: 60
- proto: AirlockCaptainGlassLocked
entities:
- uid: 18369
@@ -11310,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
@@ -11427,6 +11325,13 @@ entities:
- type: Transform
pos: -5.5,-49.5
parent: 60
+ - uid: 11660
+ components:
+ - type: MetaData
+ name: Security Substation
+ - type: Transform
+ pos: -33.5,4.5
+ parent: 60
- uid: 12015
components:
- type: Transform
@@ -11468,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
@@ -11524,8 +11423,35 @@ 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
+ components:
+ - type: Transform
+ pos: -47.5,27.5
+ parent: 60
- uid: 1543
components:
- type: Transform
@@ -11544,6 +11470,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 32.5,47.5
parent: 60
+ - uid: 4214
+ components:
+ - type: Transform
+ pos: -53.5,27.5
+ parent: 60
- uid: 4237
components:
- type: Transform
@@ -12316,26 +12247,6 @@ entities:
parent: 60
- proto: AirlockGlass
entities:
- - uid: 51
- components:
- - type: MetaData
- name: Security Lobby
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-18.5
- parent: 60
- - type: PaintableAirlock
- department: Security
- - uid: 84
- components:
- - type: MetaData
- name: Security Lobby
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-20.5
- parent: 60
- - type: PaintableAirlock
- department: Security
- uid: 211
components:
- type: Transform
@@ -12376,6 +12287,11 @@ entities:
- type: Transform
pos: 36.5,-23.5
parent: 60
+ - uid: 3149
+ components:
+ - type: Transform
+ pos: -39.5,-20.5
+ parent: 60
- uid: 3987
components:
- type: Transform
@@ -12391,6 +12307,36 @@ entities:
- type: Transform
pos: 1.5,-43.5
parent: 60
+ - uid: 4553
+ components:
+ - type: Transform
+ pos: -16.5,6.5
+ parent: 60
+ - uid: 4554
+ components:
+ - type: Transform
+ pos: -16.5,-21.5
+ parent: 60
+ - uid: 4555
+ components:
+ - type: Transform
+ pos: -15.5,-21.5
+ parent: 60
+ - uid: 4561
+ components:
+ - type: Transform
+ pos: -14.5,-21.5
+ parent: 60
+ - uid: 4566
+ components:
+ - type: Transform
+ pos: -14.5,6.5
+ parent: 60
+ - uid: 4567
+ components:
+ - type: Transform
+ pos: -15.5,6.5
+ parent: 60
- uid: 5001
components:
- type: Transform
@@ -12701,12 +12647,13 @@ entities:
parent: 60
- proto: AirlockHeadOfSecurityGlassLocked
entities:
- - uid: 1729
+ - uid: 8467
components:
- type: MetaData
- name: Head of Security Office
+ name: HoS Office
- type: Transform
- pos: -21.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-2.5
parent: 60
- proto: AirlockHydroGlassLocked
entities:
@@ -12829,18 +12776,6 @@ entities:
- type: Transform
pos: -10.5,26.5
parent: 60
-- proto: AirlockMaintGlass
- entities:
- - uid: 11660
- components:
- - type: Transform
- pos: -53.5,27.5
- parent: 60
- - uid: 11663
- components:
- - type: Transform
- pos: -47.5,27.5
- parent: 60
- proto: AirlockMaintGlassLocked
entities:
- uid: 3415
@@ -12913,13 +12848,6 @@ entities:
parent: 60
- proto: AirlockMaintLocked
entities:
- - uid: 363
- components:
- - type: MetaData
- name: Security Maintenance
- - type: Transform
- pos: -26.5,6.5
- parent: 60
- uid: 555
components:
- type: Transform
@@ -12935,6 +12863,18 @@ entities:
- type: Transform
pos: -1.5,-30.5
parent: 60
+ - uid: 1587
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,5.5
+ parent: 60
+ - uid: 1637
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,6.5
+ parent: 60
- uid: 1670
components:
- type: Transform
@@ -13002,6 +12942,12 @@ entities:
- type: Transform
pos: -39.5,-23.5
parent: 60
+ - uid: 4686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,3.5
+ parent: 60
- uid: 5227
components:
- type: Transform
@@ -13051,13 +12997,6 @@ entities:
- type: Transform
pos: 35.5,5.5
parent: 60
- - uid: 9151
- components:
- - type: MetaData
- name: Security Maintenance
- - type: Transform
- pos: -17.5,4.5
- parent: 60
- uid: 9620
components:
- type: Transform
@@ -13214,12 +13153,13 @@ entities:
parent: 60
- proto: AirlockMaintSecLocked
entities:
- - uid: 1847
+ - uid: 18781
components:
- type: MetaData
- name: Security Maintenance
+ name: Security Maint
- type: Transform
- pos: -29.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,3.5
parent: 60
- proto: AirlockMaintTheatreLocked
entities:
@@ -13479,21 +13419,12 @@ entities:
parent: 60
- proto: AirlockSecurityGlassLocked
entities:
- - uid: 1835
+ - uid: 1225
components:
- type: MetaData
- name: Security Locker Room
+ name: Ready Room
- type: Transform
- pos: -31.5,-16.5
- parent: 60
-- proto: AirlockSecurityLawyerLocked
- entities:
- - uid: 4686
- components:
- - type: MetaData
- name: Interrogation
- - type: Transform
- pos: -31.5,-3.5
+ pos: -23.5,-15.5
parent: 60
- proto: AirlockSecurityLocked
entities:
@@ -13502,32 +13433,18 @@ entities:
- type: Transform
pos: -8.5,-21.5
parent: 60
- - uid: 1889
- components:
- - type: MetaData
- name: Security Break Room
- - type: Transform
- pos: -35.5,4.5
- parent: 60
- - uid: 2086
- components:
- - type: MetaData
- name: Security Break Room
- - type: Transform
- pos: -30.5,-1.5
- parent: 60
- - uid: 8242
- components:
- - type: MetaData
- name: Security Locker Room
- - type: Transform
- pos: -31.5,-19.5
- parent: 60
- uid: 13881
components:
- type: Transform
pos: -6.5,-16.5
parent: 60
+ - uid: 19620
+ components:
+ - type: MetaData
+ name: Security Maint
+ - type: Transform
+ pos: -30.5,1.5
+ parent: 60
- proto: AirlockServiceLocked
entities:
- uid: 1333
@@ -13663,6 +13580,59 @@ entities:
- DoorStatus: DoorBolt
- proto: AirSensor
entities:
+ - uid: 109
+ components:
+ - type: Transform
+ pos: -9.5,2.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 105
+ - uid: 122
+ components:
+ - type: Transform
+ pos: -15.5,-15.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 4710
+ - 4709
+ - uid: 1645
+ components:
+ - type: Transform
+ pos: -15.5,1.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1960
+ - 1962
+ - uid: 1975
+ components:
+ - type: Transform
+ pos: -26.5,-4.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 178
+ - 177
+ - uid: 1976
+ components:
+ - type: Transform
+ pos: -20.5,-15.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1970
+ - 148
+ - uid: 1985
+ components:
+ - type: Transform
+ pos: -32.5,-15.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 230
+ - 231
- uid: 2084
components:
- type: Transform
@@ -13778,7 +13748,7 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21497
+ - 57
- uid: 21501
components:
- type: Transform
@@ -13799,17 +13769,18 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21503
+ - 4191
+ - 4190
+ - 63
+ - 57
- uid: 21508
components:
- type: Transform
pos: -31.5,-23.5
parent: 60
- - uid: 21511
- components:
- - type: Transform
- pos: -15.5,-10.5
- parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21506
- uid: 21512
components:
- type: Transform
@@ -13826,6 +13797,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21514
+ - 4545
- uid: 21538
components:
- type: Transform
@@ -13937,11 +13909,25 @@ entities:
- type: Transform
pos: -37.5,7.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21613
+ - 11347
+ - 4627
+ - 21612
+ - 12
- uid: 21615
components:
- type: Transform
pos: -37.5,-15.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21613
+ - 11347
+ - 4627
+ - 21612
+ - 12
- uid: 21624
components:
- type: Transform
@@ -14003,6 +13989,9 @@ entities:
- type: Transform
pos: -7.5,13.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1229
- uid: 21648
components:
- type: Transform
@@ -14051,23 +14040,6 @@ entities:
- type: Transform
pos: -3.5,28.5
parent: 60
- - uid: 21733
- components:
- - type: Transform
- pos: -25.5,-3.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- - uid: 21734
- components:
- - type: Transform
- pos: -27.5,-15.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21736
- - 249
- uid: 21772
components:
- type: Transform
@@ -14213,6 +14185,14 @@ entities:
parent: 60
- proto: APCBasic
entities:
+ - uid: 124
+ components:
+ - type: MetaData
+ name: Security Ready Room APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,-21.5
+ parent: 60
- uid: 283
components:
- type: MetaData
@@ -14254,6 +14234,22 @@ entities:
rot: 3.141592653589793 rad
pos: -12.5,1.5
parent: 60
+ - uid: 1955
+ components:
+ - type: MetaData
+ name: East Security APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-12.5
+ parent: 60
+ - uid: 1956
+ components:
+ - type: MetaData
+ name: West Security APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-12.5
+ parent: 60
- uid: 2277
components:
- type: MetaData
@@ -14340,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
@@ -14416,6 +14420,14 @@ entities:
- type: Transform
pos: 10.5,-52.5
parent: 60
+ - uid: 7032
+ components:
+ - type: MetaData
+ name: Warden's Office APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-13.5
+ parent: 60
- uid: 7124
components:
- type: MetaData
@@ -14469,26 +14481,12 @@ entities:
- type: Transform
pos: 9.5,-1.5
parent: 7536
- - uid: 8244
+ - uid: 8348
components:
- type: MetaData
- name: Security Locker Room APC
+ name: Interrogation APC
- type: Transform
- pos: -32.5,-14.5
- parent: 60
- - uid: 8684
- components:
- - type: MetaData
- name: Security Entrance APC
- - type: Transform
- pos: -24.5,-17.5
- parent: 60
- - uid: 8695
- components:
- - type: MetaData
- name: Security North APC
- - type: Transform
- pos: -29.5,-1.5
+ pos: -32.5,1.5
parent: 60
- uid: 9448
components:
@@ -14497,6 +14495,11 @@ entities:
- type: Transform
pos: -44.5,15.5
parent: 60
+ - uid: 9465
+ components:
+ - type: Transform
+ pos: -19.5,1.5
+ parent: 60
- uid: 9694
components:
- type: MetaData
@@ -14576,12 +14579,12 @@ entities:
- type: Transform
pos: 51.5,15.5
parent: 60
- - uid: 14328
+ - uid: 13718
components:
- type: MetaData
- name: Library APC
+ name: Armory APC
- type: Transform
- pos: -13.5,14.5
+ pos: -24.5,-2.5
parent: 60
- uid: 14552
components:
@@ -15575,18 +15578,6 @@ entities:
- type: Transform
pos: 11.5,2.5
parent: 60
-- proto: BannerSecurity
- entities:
- - uid: 8247
- components:
- - type: Transform
- pos: -28.5,-2.5
- parent: 60
- - uid: 8248
- components:
- - type: Transform
- pos: -24.5,-2.5
- parent: 60
- proto: Barricade
entities:
- uid: 3310
@@ -15746,46 +15737,31 @@ entities:
- type: Transform
pos: 52.5,-44.5
parent: 60
+ - uid: 309
+ components:
+ - type: Transform
+ pos: -34.5,-6.5
+ parent: 60
- uid: 806
components:
- type: Transform
pos: -6.5,24.5
parent: 60
- - uid: 1722
+ - uid: 1850
components:
- type: Transform
- pos: -18.5,-10.5
- parent: 60
- - uid: 1739
- components:
- - type: Transform
- pos: -18.5,-13.5
- parent: 60
- - uid: 1764
- components:
- - type: Transform
- pos: -33.5,-10.5
- parent: 60
- - uid: 1767
- components:
- - type: Transform
- pos: -33.5,-7.5
- parent: 60
- - uid: 1857
- components:
- - type: Transform
- pos: -33.5,-13.5
- parent: 60
- - uid: 1888
- components:
- - type: Transform
- pos: -19.5,0.5
+ pos: -19.5,-3.5
parent: 60
- uid: 2150
components:
- type: Transform
pos: 30.5,-14.5
parent: 60
+ - uid: 2581
+ components:
+ - type: Transform
+ pos: -34.5,-10.5
+ parent: 60
- uid: 2923
components:
- type: Transform
@@ -15846,6 +15822,11 @@ entities:
- type: Transform
pos: 3.5,-3.5
parent: 7536
+ - uid: 9223
+ components:
+ - type: Transform
+ pos: -18.5,-6.5
+ parent: 60
- uid: 13733
components:
- type: Transform
@@ -15911,6 +15892,11 @@ entities:
- type: Transform
pos: -6.5,-6.5
parent: 60
+ - uid: 19170
+ components:
+ - type: Transform
+ pos: -18.5,-10.5
+ parent: 60
- uid: 24362
components:
- type: Transform
@@ -15982,10 +15968,10 @@ entities:
parent: 60
- proto: BedsheetHOS
entities:
- - uid: 11456
+ - uid: 6117
components:
- type: Transform
- pos: -19.5,0.5
+ pos: -19.5,-3.5
parent: 60
- proto: BedsheetIan
entities:
@@ -16003,17 +15989,6 @@ entities:
- type: Transform
pos: 36.5,-16.5
parent: 60
- - uid: 1354
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-2.5
- parent: 60
- - uid: 1502
- components:
- - type: Transform
- pos: -18.5,-7.5
- parent: 60
- uid: 9005
components:
- type: Transform
@@ -16043,36 +16018,31 @@ entities:
parent: 60
- proto: BedsheetOrange
entities:
- - uid: 1717
+ - uid: 269
components:
- type: Transform
pos: -18.5,-10.5
parent: 60
- - uid: 1718
+ - uid: 6830
components:
- type: Transform
- pos: -18.5,-13.5
+ pos: -34.5,-10.5
parent: 60
- - uid: 1719
+ - uid: 10684
components:
- type: Transform
- pos: -33.5,-7.5
- parent: 60
- - uid: 1720
- components:
- - type: Transform
- pos: -33.5,-10.5
- parent: 60
- - uid: 1721
- components:
- - type: Transform
- pos: -33.5,-13.5
+ pos: -34.5,-6.5
parent: 60
- uid: 13699
components:
- type: Transform
pos: -7.5,-12.5
parent: 60
+ - uid: 17469
+ components:
+ - type: Transform
+ pos: -18.5,-6.5
+ parent: 60
- proto: BedsheetQM
entities:
- uid: 5932
@@ -16248,11 +16218,6 @@ entities:
- type: Transform
pos: -16.5,-43.5
parent: 60
- - uid: 12598
- components:
- - type: Transform
- pos: -55.5,0.5
- parent: 60
- uid: 13901
components:
- type: Transform
@@ -16328,50 +16293,148 @@ entities:
- type: Transform
pos: 55.5,-0.5
parent: 60
-- proto: BlastDoorBridgeOpen
+- proto: BlastDoorOpen
entities:
- - uid: 21763
- components:
- - type: Transform
- pos: -0.5,-1.5
- parent: 60
- - uid: 21764
- components:
- - type: Transform
- pos: 1.5,-1.5
- parent: 60
- - uid: 21765
- components:
- - type: Transform
- pos: 1.5,-8.5
- parent: 60
- - uid: 21766
- components:
- - type: Transform
- pos: -0.5,-8.5
- parent: 60
- - uid: 21767
- components:
- - type: Transform
- pos: 5.5,0.5
- parent: 60
- - uid: 21768
+ - uid: 187
components:
- type: Transform
pos: 5.5,1.5
parent: 60
- - uid: 21769
+ - uid: 188
components:
- type: Transform
- pos: -4.5,0.5
+ pos: 5.5,0.5
parent: 60
- - uid: 21770
+ - uid: 189
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 60
+ - uid: 190
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 60
+ - uid: 191
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 60
+ - uid: 206
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 60
+ - uid: 207
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 60
+ - uid: 208
components:
- type: Transform
pos: -4.5,1.5
parent: 60
-- proto: BlastDoorOpen
- entities:
+ - uid: 1238
+ components:
+ - type: Transform
+ pos: -17.5,-10.5
+ parent: 60
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: -17.5,-11.5
+ parent: 60
+ - uid: 1293
+ components:
+ - type: Transform
+ pos: -17.5,-9.5
+ parent: 60
+ - uid: 1354
+ components:
+ - type: Transform
+ pos: -17.5,-7.5
+ parent: 60
+ - uid: 1384
+ components:
+ - type: Transform
+ pos: -17.5,-6.5
+ parent: 60
+ - uid: 1638
+ components:
+ - type: Transform
+ pos: -35.5,-11.5
+ parent: 60
+ - uid: 1639
+ components:
+ - type: Transform
+ pos: -35.5,-10.5
+ parent: 60
+ - uid: 1640
+ components:
+ - type: Transform
+ pos: -35.5,-9.5
+ parent: 60
+ - uid: 1652
+ components:
+ - type: Transform
+ pos: -17.5,-5.5
+ parent: 60
+ - uid: 1653
+ components:
+ - type: Transform
+ pos: -35.5,-7.5
+ parent: 60
+ - uid: 1655
+ components:
+ - type: Transform
+ pos: -35.5,-6.5
+ parent: 60
+ - uid: 1656
+ components:
+ - type: Transform
+ pos: -35.5,-5.5
+ parent: 60
+ - uid: 1681
+ components:
+ - type: Transform
+ pos: -18.5,-1.5
+ parent: 60
+ - uid: 4457
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 60
+ - uid: 4505
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 60
+ - uid: 4542
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 60
+ - uid: 4552
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 60
+ - uid: 4563
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 60
+ - uid: 4564
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 60
+ - uid: 4565
+ components:
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 60
- uid: 5344
components:
- type: Transform
@@ -16414,6 +16477,46 @@ entities:
rot: 3.141592653589793 rad
pos: -115.5,9.5
parent: 60
+ - uid: 5432
+ components:
+ - type: Transform
+ pos: -18.5,0.5
+ parent: 60
+ - uid: 8721
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 60
+ - uid: 9679
+ components:
+ - type: Transform
+ pos: -4.5,0.5
+ parent: 60
+ - uid: 9680
+ components:
+ - type: Transform
+ pos: 4.5,3.5
+ parent: 60
+ - uid: 10622
+ components:
+ - type: Transform
+ pos: -18.5,-0.5
+ parent: 60
+ - uid: 13978
+ components:
+ - 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
@@ -16500,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
@@ -16535,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
@@ -16559,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
@@ -16566,81 +16646,71 @@ entities:
- type: Transform
pos: -5.5,-7.5
parent: 60
- - uid: 4526
+ - uid: 4794
components:
- type: Transform
- pos: -6.5,18.5
- parent: 60
- - uid: 4527
- 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
+ - uid: 11522
components:
- type: Transform
- pos: -7.5,12.5
+ pos: -11.5,20.5
parent: 60
- - uid: 14137
- components:
- - type: Transform
- pos: -6.5,14.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
- components:
- - type: Transform
- pos: -12.5,21.5
- parent: 60
- - uid: 14146
- components:
- - type: Transform
- pos: -12.5,18.5
- parent: 60
- - uid: 14175
+ - uid: 16091
components:
- type: Transform
pos: -10.5,22.5
parent: 60
- - uid: 14178
+ - uid: 16418
components:
- type: Transform
pos: -12.5,22.5
parent: 60
+ - uid: 16436
+ components:
+ - type: Transform
+ pos: -7.5,12.5
+ parent: 60
+ - uid: 16438
+ components:
+ - type: Transform
+ pos: -12.5,20.5
+ parent: 60
- uid: 17652
components:
- type: Transform
@@ -16748,10 +16818,10 @@ entities:
parent: 60
- proto: BoxFlashbang
entities:
- - uid: 7793
+ - uid: 23646
components:
- type: Transform
- pos: -25.31633,-11.483709
+ pos: -27.693483,-9.22786
parent: 60
- proto: BoxFolderBlack
entities:
@@ -16772,6 +16842,11 @@ entities:
parent: 60
- proto: BoxFolderBlue
entities:
+ - uid: 213
+ components:
+ - type: Transform
+ pos: -41.41446,-17.409948
+ parent: 60
- uid: 8972
components:
- type: Transform
@@ -16782,11 +16857,6 @@ entities:
- type: Transform
pos: 56.403923,-12.374418
parent: 60
- - uid: 11576
- components:
- - type: Transform
- pos: -40.52726,-17.397173
- parent: 60
- uid: 11581
components:
- type: Transform
@@ -16822,6 +16892,18 @@ entities:
- type: Transform
pos: -106.46888,28.590736
parent: 60
+- proto: BoxFolderClipboard
+ entities:
+ - uid: 8478
+ components:
+ - type: Transform
+ pos: -49.488464,-19.519323
+ parent: 60
+ - uid: 8673
+ components:
+ - type: Transform
+ pos: -49.332214,-19.409948
+ parent: 60
- proto: BoxFolderGrey
entities:
- uid: 9534
@@ -16892,10 +16974,10 @@ entities:
parent: 60
- proto: BoxHandcuff
entities:
- - uid: 1872
+ - uid: 8517
components:
- type: Transform
- pos: -25.850195,-13.340575
+ pos: -25.770853,-6.4264956
parent: 60
- proto: BoxLatexGloves
entities:
@@ -16918,11 +17000,6 @@ entities:
parent: 60
- proto: BoxLightMixed
entities:
- - uid: 1940
- components:
- - type: Transform
- pos: -32.45523,-0.43822744
- parent: 60
- uid: 3972
components:
- type: Transform
@@ -16933,6 +17010,11 @@ entities:
- type: Transform
pos: 1.5511138,15.604638
parent: 60
+ - uid: 6704
+ components:
+ - type: Transform
+ pos: -22.497168,-20.37416
+ parent: 60
- uid: 7217
components:
- type: Transform
@@ -17011,10 +17093,15 @@ entities:
parent: 60
- proto: BoxZiptie
entities:
- - uid: 19869
+ - uid: 13148
components:
- type: Transform
- pos: -25.488205,-11.296209
+ pos: -30.92134,-20.595226
+ parent: 60
+ - uid: 21067
+ components:
+ - type: Transform
+ pos: -27.615358,-9.430985
parent: 60
- proto: BrbSign
entities:
@@ -17030,84 +17117,62 @@ entities:
parent: 60
- proto: BrigTimer
entities:
- - uid: 1468
+ - uid: 24
components:
- type: MetaData
- name: Cell 3 Timer
+ name: Cell 1 Brig Timer
- type: Transform
- pos: -32.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-4.5
parent: 60
- type: DeviceLinkSource
linkedPorts:
- 230:
+ 1483:
- Start: Close
- - Timer: AutoClose
- Timer: Open
- - uid: 1485
+ - Timer: AutoClose
+ - uid: 1853
components:
- type: MetaData
- name: Cell 4 Timer
+ name: Cell 3 Brig Timer
- type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-4.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1548:
+ - Start: Close
+ - Timer: Open
+ - Timer: AutoClose
+ - uid: 9058
+ components:
+ - type: MetaData
+ name: Cell 2 Brig Timer
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -32.5,-8.5
parent: 60
- type: DeviceLinkSource
linkedPorts:
- 268:
+ 1555:
- Start: Close
- - Timer: AutoClose
- Timer: Open
- - uid: 1486
+ - Timer: AutoClose
+ - uid: 9158
components:
- type: MetaData
- name: Cell 5 Timer
- - type: Transform
- pos: -32.5,-11.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 243:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- - uid: 1488
- components:
- - type: MetaData
- name: Cell 1 Timer
+ name: Cell 4 Brig Timer
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -20.5,-8.5
parent: 60
- type: DeviceLinkSource
linkedPorts:
- 151:
+ 1487:
- Start: Close
- - Timer: AutoClose
- Timer: Open
- - uid: 6971
- components:
- - type: MetaData
- name: Medical Cell Timer
- - type: Transform
- pos: -20.5,-5.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 843:
- - Start: Close
- Timer: AutoClose
- - Timer: Open
- - uid: 6972
- components:
- - type: MetaData
- name: Cell 2 Timer
- - type: Transform
- pos: -20.5,-11.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 72:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- proto: BrokenBottle
entities:
- uid: 23662
@@ -17115,6 +17180,13 @@ entities:
- type: Transform
pos: -56.485756,52.334377
parent: 60
+- proto: Brutepack
+ entities:
+ - uid: 9030
+ components:
+ - type: Transform
+ pos: -19.411993,-13.214928
+ parent: 60
- proto: Bucket
entities:
- uid: 2708
@@ -17161,6 +17233,12 @@ entities:
- type: Transform
pos: -8.5,-2.5
parent: 60
+ - uid: 4551
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,1.5
+ parent: 60
- uid: 4723
components:
- type: Transform
@@ -17179,6 +17257,23 @@ entities:
rot: 3.141592653589793 rad
pos: -1.5,-1.5
parent: 60
+ - uid: 8233
+ components:
+ - type: Transform
+ pos: -54.5,0.5
+ parent: 60
+ - uid: 9682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-0.5
+ parent: 60
+ - uid: 10671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-2.5
+ parent: 60
- uid: 13637
components:
- type: Transform
@@ -17190,11 +17285,11 @@ entities:
rot: 3.141592653589793 rad
pos: 37.5,-21.5
parent: 60
- - uid: 18968
+ - uid: 16403
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,31.5
parent: 60
- uid: 19838
components:
@@ -17207,12 +17302,6 @@ entities:
- type: Transform
pos: 25.5,5.5
parent: 60
- - uid: 23939
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-18.5
- parent: 60
- uid: 25261
components:
- type: Transform
@@ -17266,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
@@ -17286,10 +17369,15 @@ entities:
parent: 60
- proto: ButtonFrameCautionSecurity
entities:
- - uid: 766
+ - uid: 4299
components:
- type: Transform
- pos: -20.5,-14.5
+ pos: -52.5,28.5
+ parent: 60
+ - uid: 4333
+ components:
+ - type: Transform
+ pos: -48.5,28.5
parent: 60
- uid: 5659
components:
@@ -17314,18 +17402,18 @@ entities:
parent: 60
- proto: ButtonFrameJanitor
entities:
+ - uid: 19869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 60
- uid: 21482
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 46.5,5.5
parent: 60
- - uid: 23940
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-14.5
- parent: 60
- uid: 25263
components:
- type: Transform
@@ -17361,11 +17449,71 @@ entities:
- type: Transform
pos: -65.5,7.5
parent: 60
+ - uid: 69
+ components:
+ - type: Transform
+ pos: -35.5,-6.5
+ parent: 60
- uid: 70
components:
- type: Transform
pos: 1.5,-77.5
parent: 60
+ - uid: 72
+ components:
+ - type: Transform
+ pos: -32.5,-5.5
+ parent: 60
+ - uid: 76
+ components:
+ - type: Transform
+ pos: -33.5,-5.5
+ parent: 60
+ - uid: 79
+ components:
+ - type: Transform
+ pos: -31.5,-6.5
+ parent: 60
+ - uid: 81
+ components:
+ - type: Transform
+ pos: -31.5,-5.5
+ parent: 60
+ - uid: 96
+ components:
+ - type: Transform
+ pos: -23.5,-5.5
+ parent: 60
+ - uid: 112
+ components:
+ - type: Transform
+ pos: -27.5,0.5
+ parent: 60
+ - uid: 115
+ components:
+ - type: Transform
+ pos: -25.5,0.5
+ parent: 60
+ - uid: 119
+ components:
+ - type: Transform
+ pos: -29.5,-5.5
+ parent: 60
+ - uid: 151
+ components:
+ - type: Transform
+ pos: -17.5,-10.5
+ parent: 60
+ - uid: 152
+ components:
+ - type: Transform
+ pos: -35.5,-5.5
+ parent: 60
+ - uid: 155
+ components:
+ - type: Transform
+ pos: -17.5,-7.5
+ parent: 60
- uid: 167
components:
- type: Transform
@@ -17391,6 +17539,11 @@ entities:
- type: Transform
pos: 50.5,23.5
parent: 60
+ - uid: 315
+ components:
+ - type: Transform
+ pos: -29.5,-10.5
+ parent: 60
- uid: 332
components:
- type: Transform
@@ -17451,11 +17604,6 @@ entities:
- type: Transform
pos: -10.5,5.5
parent: 60
- - uid: 630
- components:
- - type: Transform
- pos: -33.5,-16.5
- parent: 60
- uid: 643
components:
- type: Transform
@@ -17466,16 +17614,6 @@ entities:
- type: Transform
pos: -11.5,5.5
parent: 60
- - uid: 778
- components:
- - type: Transform
- pos: -32.5,-15.5
- parent: 60
- - uid: 781
- components:
- - type: Transform
- pos: -32.5,-14.5
- parent: 60
- uid: 815
components:
- type: Transform
@@ -17556,16 +17694,6 @@ entities:
- type: Transform
pos: -11.5,25.5
parent: 60
- - uid: 1555
- components:
- - type: Transform
- pos: -25.5,-20.5
- parent: 60
- - uid: 1560
- components:
- - type: Transform
- pos: -27.5,-21.5
- parent: 60
- uid: 1628
components:
- type: Transform
@@ -17586,20 +17714,55 @@ entities:
- type: Transform
pos: -20.5,-33.5
parent: 60
+ - uid: 1697
+ components:
+ - type: Transform
+ pos: -33.5,-21.5
+ parent: 60
+ - uid: 1701
+ components:
+ - type: Transform
+ pos: -19.5,-17.5
+ parent: 60
- uid: 1703
components:
- type: Transform
pos: 30.5,-17.5
parent: 60
+ - uid: 1706
+ components:
+ - type: Transform
+ pos: -20.5,-15.5
+ parent: 60
- uid: 1716
components:
- type: Transform
pos: 1.5,-6.5
parent: 60
- - uid: 1762
+ - uid: 1717
components:
- type: Transform
- pos: -33.5,-15.5
+ pos: -18.5,-5.5
+ parent: 60
+ - uid: 1720
+ components:
+ - type: Transform
+ pos: -17.5,-5.5
+ parent: 60
+ - uid: 1722
+ components:
+ - type: Transform
+ pos: -20.5,0.5
+ parent: 60
+ - uid: 1735
+ components:
+ - type: Transform
+ pos: -19.5,-16.5
+ parent: 60
+ - uid: 1751
+ components:
+ - type: Transform
+ pos: -19.5,-19.5
parent: 60
- uid: 1763
components:
@@ -17611,21 +17774,131 @@ entities:
- type: Transform
pos: -57.5,-22.5
parent: 60
+ - uid: 1824
+ components:
+ - type: Transform
+ pos: -21.5,-14.5
+ parent: 60
+ - uid: 1831
+ components:
+ - type: Transform
+ pos: -21.5,-12.5
+ parent: 60
+ - uid: 1835
+ components:
+ - type: Transform
+ pos: -32.5,-21.5
+ parent: 60
+ - uid: 1836
+ components:
+ - type: Transform
+ pos: -19.5,-15.5
+ parent: 60
+ - uid: 1854
+ components:
+ - type: Transform
+ pos: -18.5,-19.5
+ parent: 60
+ - uid: 1855
+ components:
+ - type: Transform
+ pos: -17.5,-19.5
+ parent: 60
+ - uid: 1859
+ components:
+ - type: Transform
+ pos: -19.5,-2.5
+ parent: 60
- uid: 1860
components:
- type: Transform
pos: 32.5,-17.5
parent: 60
- - uid: 1862
+ - uid: 1872
components:
- type: Transform
- pos: -33.5,-18.5
+ pos: -27.5,-11.5
+ parent: 60
+ - uid: 1874
+ components:
+ - type: Transform
+ pos: -26.5,-8.5
+ parent: 60
+ - uid: 1881
+ components:
+ - type: Transform
+ pos: -26.5,-7.5
+ parent: 60
+ - uid: 1883
+ components:
+ - type: Transform
+ pos: -27.5,-7.5
+ parent: 60
+ - uid: 1887
+ components:
+ - type: Transform
+ pos: -28.5,-19.5
+ parent: 60
+ - uid: 1888
+ components:
+ - type: Transform
+ pos: -26.5,-18.5
+ parent: 60
+ - uid: 1889
+ components:
+ - type: Transform
+ pos: -26.5,-9.5
parent: 60
- uid: 1891
components:
- type: Transform
pos: 52.5,-24.5
parent: 60
+ - uid: 1892
+ components:
+ - type: Transform
+ pos: -28.5,-7.5
+ parent: 60
+ - uid: 1893
+ components:
+ - type: Transform
+ pos: -26.5,-16.5
+ parent: 60
+ - uid: 1901
+ components:
+ - type: Transform
+ pos: -27.5,-15.5
+ parent: 60
+ - uid: 1935
+ components:
+ - type: Transform
+ pos: -19.5,-9.5
+ parent: 60
+ - uid: 1938
+ components:
+ - type: Transform
+ pos: -34.5,-5.5
+ parent: 60
+ - uid: 1947
+ components:
+ - type: Transform
+ pos: -17.5,-9.5
+ parent: 60
+ - uid: 1951
+ components:
+ - type: Transform
+ pos: -31.5,-10.5
+ parent: 60
+ - uid: 1958
+ components:
+ - type: Transform
+ pos: -18.5,-9.5
+ parent: 60
+ - uid: 1965
+ components:
+ - type: Transform
+ pos: -31.5,-9.5
+ parent: 60
- uid: 2019
components:
- type: Transform
@@ -17636,10 +17909,30 @@ entities:
- type: Transform
pos: -23.5,-29.5
parent: 60
- - uid: 2119
+ - uid: 2090
components:
- type: Transform
- pos: -25.5,-21.5
+ pos: -33.5,2.5
+ parent: 60
+ - uid: 2093
+ components:
+ - type: Transform
+ pos: -32.5,1.5
+ parent: 60
+ - uid: 2096
+ components:
+ - type: Transform
+ pos: -23.5,-11.5
+ parent: 60
+ - uid: 2097
+ components:
+ - type: Transform
+ pos: -19.5,0.5
+ parent: 60
+ - uid: 2099
+ components:
+ - type: Transform
+ pos: -34.5,-17.5
parent: 60
- uid: 2166
components:
@@ -17701,11 +17994,6 @@ entities:
- type: Transform
pos: -61.5,-18.5
parent: 60
- - uid: 2602
- components:
- - type: Transform
- pos: -33.5,-21.5
- parent: 60
- uid: 2606
components:
- type: Transform
@@ -17721,6 +18009,31 @@ entities:
- type: Transform
pos: 39.5,-44.5
parent: 60
+ - uid: 2760
+ components:
+ - type: Transform
+ pos: -34.5,-19.5
+ parent: 60
+ - uid: 2791
+ components:
+ - type: Transform
+ pos: -35.5,-19.5
+ parent: 60
+ - uid: 2792
+ components:
+ - type: Transform
+ pos: -33.5,-15.5
+ parent: 60
+ - uid: 2793
+ components:
+ - type: Transform
+ pos: -35.5,-18.5
+ parent: 60
+ - uid: 2807
+ components:
+ - type: Transform
+ pos: -33.5,-16.5
+ parent: 60
- uid: 2887
components:
- type: Transform
@@ -17761,6 +18074,11 @@ entities:
- type: Transform
pos: -12.5,-19.5
parent: 60
+ - uid: 3198
+ components:
+ - type: Transform
+ pos: -30.5,0.5
+ parent: 60
- uid: 3246
components:
- type: Transform
@@ -17906,6 +18224,11 @@ entities:
- type: Transform
pos: 45.5,6.5
parent: 60
+ - uid: 4009
+ components:
+ - type: Transform
+ pos: -31.5,-0.5
+ parent: 60
- uid: 4017
components:
- type: Transform
@@ -17916,6 +18239,11 @@ entities:
- type: Transform
pos: -65.5,-0.5
parent: 60
+ - uid: 4235
+ components:
+ - type: Transform
+ pos: -17.5,-20.5
+ parent: 60
- uid: 4259
components:
- type: Transform
@@ -17931,6 +18259,11 @@ entities:
- type: Transform
pos: -52.5,-13.5
parent: 60
+ - uid: 4282
+ components:
+ - type: Transform
+ pos: -43.5,26.5
+ parent: 60
- uid: 4327
components:
- type: Transform
@@ -17951,11 +18284,31 @@ entities:
- type: Transform
pos: -66.5,1.5
parent: 60
+ - uid: 4504
+ components:
+ - type: Transform
+ pos: -21.5,-7.5
+ parent: 60
+ - uid: 4516
+ components:
+ - type: Transform
+ pos: -20.5,-9.5
+ parent: 60
- uid: 4528
components:
- type: Transform
pos: 55.5,-35.5
parent: 60
+ - uid: 4562
+ components:
+ - type: Transform
+ pos: -19.5,-1.5
+ parent: 60
+ - uid: 4568
+ components:
+ - type: Transform
+ pos: -43.5,25.5
+ parent: 60
- uid: 4632
components:
- type: Transform
@@ -18301,10 +18654,10 @@ entities:
- type: Transform
pos: -15.5,-31.5
parent: 60
- - uid: 5219
+ - uid: 5224
components:
- type: Transform
- pos: -27.5,-20.5
+ pos: -29.5,-11.5
parent: 60
- uid: 5233
components:
@@ -18316,6 +18669,11 @@ entities:
- type: Transform
pos: 40.5,-7.5
parent: 60
+ - uid: 5294
+ components:
+ - type: Transform
+ pos: -31.5,-13.5
+ parent: 60
- uid: 5325
components:
- type: Transform
@@ -18361,6 +18719,21 @@ entities:
- type: Transform
pos: 8.5,5.5
parent: 60
+ - uid: 5423
+ components:
+ - type: Transform
+ pos: -29.5,-19.5
+ parent: 60
+ - uid: 5431
+ components:
+ - type: Transform
+ pos: -34.5,-21.5
+ parent: 60
+ - uid: 5436
+ components:
+ - type: Transform
+ pos: -19.5,-18.5
+ parent: 60
- uid: 5462
components:
- type: Transform
@@ -18386,6 +18759,11 @@ entities:
- type: Transform
pos: 58.5,5.5
parent: 60
+ - uid: 5662
+ components:
+ - type: Transform
+ pos: -21.5,-10.5
+ parent: 60
- uid: 5665
components:
- type: Transform
@@ -18421,21 +18799,81 @@ entities:
- type: Transform
pos: 55.5,4.5
parent: 60
+ - uid: 5810
+ components:
+ - type: Transform
+ pos: -20.5,-1.5
+ parent: 60
- uid: 5838
components:
- type: Transform
pos: -15.5,-29.5
parent: 60
+ - uid: 5925
+ components:
+ - type: Transform
+ pos: -19.5,-3.5
+ parent: 60
+ - uid: 5935
+ components:
+ - type: Transform
+ pos: -32.5,-12.5
+ parent: 60
+ - uid: 5936
+ components:
+ - type: Transform
+ pos: -21.5,-1.5
+ parent: 60
+ - uid: 5972
+ components:
+ - type: Transform
+ pos: -17.5,-18.5
+ parent: 60
+ - uid: 6043
+ components:
+ - type: Transform
+ pos: -31.5,-14.5
+ parent: 60
- uid: 6086
components:
- type: Transform
pos: 52.5,-25.5
parent: 60
+ - uid: 6087
+ components:
+ - type: Transform
+ pos: -25.5,-20.5
+ parent: 60
+ - uid: 6093
+ components:
+ - type: Transform
+ pos: -33.5,-18.5
+ parent: 60
+ - uid: 6156
+ components:
+ - type: Transform
+ pos: -21.5,-8.5
+ parent: 60
+ - uid: 6173
+ components:
+ - type: Transform
+ pos: -21.5,-11.5
+ parent: 60
+ - uid: 6174
+ components:
+ - type: Transform
+ pos: -31.5,-12.5
+ parent: 60
- uid: 6216
components:
- type: Transform
pos: -16.5,-54.5
parent: 60
+ - uid: 6365
+ components:
+ - type: Transform
+ pos: -17.5,-6.5
+ parent: 60
- uid: 6428
components:
- type: Transform
@@ -18451,11 +18889,31 @@ entities:
- type: Transform
pos: 49.5,-11.5
parent: 60
+ - uid: 6467
+ components:
+ - type: Transform
+ pos: -20.5,-12.5
+ parent: 60
+ - uid: 6541
+ components:
+ - type: Transform
+ pos: -30.5,-19.5
+ parent: 60
+ - uid: 6560
+ components:
+ - type: Transform
+ pos: -24.5,-8.5
+ parent: 60
- uid: 6591
components:
- type: Transform
pos: -57.5,-13.5
parent: 60
+ - uid: 6611
+ components:
+ - type: Transform
+ pos: -23.5,-10.5
+ parent: 60
- uid: 6664
components:
- type: Transform
@@ -18466,6 +18924,26 @@ entities:
- type: Transform
pos: -59.5,-21.5
parent: 60
+ - uid: 6702
+ components:
+ - type: Transform
+ pos: -25.5,-19.5
+ parent: 60
+ - uid: 6703
+ components:
+ - type: Transform
+ pos: -25.5,-21.5
+ parent: 60
+ - uid: 6714
+ components:
+ - type: Transform
+ pos: -32.5,-17.5
+ parent: 60
+ - uid: 6733
+ components:
+ - type: Transform
+ pos: -33.5,-20.5
+ parent: 60
- uid: 6740
components:
- type: Transform
@@ -18516,6 +18994,36 @@ entities:
- type: Transform
pos: -7.5,-54.5
parent: 60
+ - uid: 6761
+ components:
+ - type: Transform
+ pos: -23.5,-9.5
+ parent: 60
+ - uid: 6763
+ components:
+ - type: Transform
+ pos: -21.5,-6.5
+ parent: 60
+ - uid: 6794
+ components:
+ - type: Transform
+ pos: -26.5,-19.5
+ parent: 60
+ - uid: 6818
+ components:
+ - type: Transform
+ pos: -31.5,-15.5
+ parent: 60
+ - uid: 6825
+ components:
+ - type: Transform
+ pos: -33.5,-19.5
+ parent: 60
+ - uid: 6828
+ components:
+ - type: Transform
+ pos: -20.5,-5.5
+ parent: 60
- uid: 6858
components:
- type: Transform
@@ -18526,6 +19034,26 @@ entities:
- type: Transform
pos: -52.5,-16.5
parent: 60
+ - uid: 6885
+ components:
+ - type: Transform
+ pos: -25.5,-15.5
+ parent: 60
+ - uid: 6886
+ components:
+ - type: Transform
+ pos: -27.5,-13.5
+ parent: 60
+ - uid: 6888
+ components:
+ - type: Transform
+ pos: -26.5,-17.5
+ parent: 60
+ - uid: 6889
+ components:
+ - type: Transform
+ pos: -26.5,-15.5
+ parent: 60
- uid: 6921
components:
- type: Transform
@@ -18561,11 +19089,41 @@ entities:
- type: Transform
pos: -62.5,-0.5
parent: 60
+ - uid: 6971
+ components:
+ - type: Transform
+ pos: -20.5,-6.5
+ parent: 60
+ - uid: 6983
+ components:
+ - type: Transform
+ pos: -22.5,-19.5
+ parent: 60
+ - uid: 6992
+ components:
+ - type: Transform
+ pos: -24.5,-19.5
+ parent: 60
+ - uid: 6993
+ components:
+ - type: Transform
+ pos: -27.5,-19.5
+ parent: 60
+ - uid: 7006
+ components:
+ - type: Transform
+ pos: -27.5,-12.5
+ parent: 60
- uid: 7010
components:
- type: Transform
pos: -34.5,-32.5
parent: 60
+ - uid: 7041
+ components:
+ - type: Transform
+ pos: -26.5,-11.5
+ parent: 60
- uid: 7062
components:
- type: Transform
@@ -18586,6 +19144,16 @@ entities:
- type: Transform
pos: -10.5,27.5
parent: 60
+ - uid: 7231
+ components:
+ - type: Transform
+ pos: -28.5,-8.5
+ parent: 60
+ - uid: 7284
+ components:
+ - type: Transform
+ pos: -32.5,-15.5
+ parent: 60
- uid: 7366
components:
- type: Transform
@@ -18731,20 +19299,50 @@ entities:
- type: Transform
pos: -63.5,7.5
parent: 60
+ - uid: 7656
+ components:
+ - type: Transform
+ pos: -19.5,-0.5
+ parent: 60
- uid: 7668
components:
- type: Transform
pos: 3.5,33.5
parent: 60
+ - uid: 7685
+ components:
+ - type: Transform
+ pos: -21.5,0.5
+ parent: 60
- uid: 7741
components:
- type: Transform
pos: -10.5,-18.5
parent: 60
- - uid: 7907
+ - uid: 7786
components:
- type: Transform
- pos: -33.5,-19.5
+ pos: -18.5,-3.5
+ parent: 60
+ - uid: 7790
+ components:
+ - type: Transform
+ pos: -21.5,-5.5
+ parent: 60
+ - uid: 7793
+ components:
+ - type: Transform
+ pos: -33.5,-17.5
+ parent: 60
+ - uid: 7812
+ components:
+ - type: Transform
+ pos: -20.5,-10.5
+ parent: 60
+ - uid: 7917
+ components:
+ - type: Transform
+ pos: -19.5,-5.5
parent: 60
- uid: 8190
components:
@@ -18761,6 +19359,51 @@ entities:
- type: Transform
pos: 10.5,-2.5
parent: 7536
+ - uid: 8223
+ components:
+ - type: Transform
+ pos: -19.5,-20.5
+ parent: 60
+ - uid: 8226
+ components:
+ - type: Transform
+ pos: -21.5,-13.5
+ parent: 60
+ - uid: 8229
+ components:
+ - type: Transform
+ pos: -28.5,-9.5
+ parent: 60
+ - uid: 8247
+ components:
+ - type: Transform
+ pos: -29.5,-12.5
+ parent: 60
+ - uid: 8252
+ components:
+ - type: Transform
+ pos: -21.5,-9.5
+ parent: 60
+ - uid: 8263
+ components:
+ - type: Transform
+ pos: -35.5,-20.5
+ parent: 60
+ - uid: 8265
+ components:
+ - type: Transform
+ pos: -19.5,1.5
+ parent: 60
+ - uid: 8271
+ components:
+ - type: Transform
+ pos: -26.5,-10.5
+ parent: 60
+ - uid: 8273
+ components:
+ - type: Transform
+ pos: -23.5,-12.5
+ parent: 60
- uid: 8275
components:
- type: Transform
@@ -18771,110 +19414,10 @@ entities:
- type: Transform
pos: 12.5,-2.5
parent: 7536
- - uid: 8277
- components:
- - type: Transform
- pos: -18.5,4.5
- parent: 60
- - uid: 8278
- components:
- - type: Transform
- pos: -19.5,4.5
- parent: 60
- - uid: 8279
- components:
- - type: Transform
- pos: -20.5,4.5
- parent: 60
- - uid: 8280
- components:
- - type: Transform
- pos: -21.5,4.5
- parent: 60
- - uid: 8281
- components:
- - type: Transform
- pos: -21.5,5.5
- parent: 60
- uid: 8282
components:
- type: Transform
- pos: -22.5,5.5
- parent: 60
- - uid: 8283
- components:
- - type: Transform
- pos: -23.5,5.5
- parent: 60
- - uid: 8284
- components:
- - type: Transform
- pos: -24.5,5.5
- parent: 60
- - uid: 8285
- components:
- - type: Transform
- pos: -25.5,5.5
- parent: 60
- - uid: 8286
- components:
- - type: Transform
- pos: -26.5,5.5
- parent: 60
- - uid: 8287
- components:
- - type: Transform
- pos: -27.5,5.5
- parent: 60
- - uid: 8288
- components:
- - type: Transform
- pos: -28.5,5.5
- parent: 60
- - uid: 8289
- components:
- - type: Transform
- pos: -29.5,5.5
- parent: 60
- - uid: 8290
- components:
- - type: Transform
- pos: -34.5,5.5
- parent: 60
- - uid: 8291
- components:
- - type: Transform
- pos: -33.5,5.5
- parent: 60
- - uid: 8292
- components:
- - type: Transform
- pos: -30.5,5.5
- parent: 60
- - uid: 8293
- components:
- - type: Transform
- pos: -31.5,5.5
- parent: 60
- - uid: 8294
- components:
- - type: Transform
- pos: -32.5,5.5
- parent: 60
- - uid: 8295
- components:
- - type: Transform
- pos: -32.5,4.5
- parent: 60
- - uid: 8296
- components:
- - type: Transform
- pos: -32.5,3.5
- parent: 60
- - uid: 8297
- components:
- - type: Transform
- pos: -32.5,2.5
+ pos: -17.5,-11.5
parent: 60
- uid: 8315
components:
@@ -18906,145 +19449,25 @@ entities:
- type: Transform
pos: -59.5,-13.5
parent: 60
- - uid: 8326
- components:
- - type: Transform
- pos: -32.5,1.5
- parent: 60
- - uid: 8327
- components:
- - type: Transform
- pos: -32.5,0.5
- parent: 60
- - uid: 8328
- components:
- - type: Transform
- pos: -34.5,-0.5
- parent: 60
- - uid: 8329
- components:
- - type: Transform
- pos: -33.5,-0.5
- parent: 60
- - uid: 8330
- components:
- - type: Transform
- pos: -32.5,-0.5
- parent: 60
- - uid: 8331
- components:
- - type: Transform
- pos: -31.5,-0.5
- parent: 60
- - uid: 8332
- components:
- - type: Transform
- pos: -30.5,-0.5
- parent: 60
- - uid: 8333
- components:
- - type: Transform
- pos: -30.5,-1.5
- parent: 60
- - uid: 8334
- components:
- - type: Transform
- pos: -30.5,-2.5
- parent: 60
- uid: 8335
components:
- type: Transform
- pos: -34.5,-3.5
- parent: 60
- - uid: 8336
- components:
- - type: Transform
- pos: -33.5,-3.5
- parent: 60
- - uid: 8337
- components:
- - type: Transform
- pos: -32.5,-3.5
- parent: 60
- - uid: 8338
- components:
- - type: Transform
- pos: -31.5,-3.5
- parent: 60
- - uid: 8339
- components:
- - type: Transform
- pos: -30.5,-3.5
+ pos: -35.5,-11.5
parent: 60
- uid: 8340
components:
- type: Transform
- pos: -24.5,-9.5
+ pos: -35.5,-7.5
parent: 60
- uid: 8341
components:
- type: Transform
- pos: -28.5,-9.5
- parent: 60
- - uid: 8342
- components:
- - type: Transform
- pos: -27.5,-9.5
- parent: 60
- - uid: 8343
- components:
- - type: Transform
- pos: -25.5,-9.5
- parent: 60
- - uid: 8344
- components:
- - type: Transform
- pos: -26.5,-11.5
- parent: 60
- - uid: 8345
- components:
- - type: Transform
- pos: -26.5,-10.5
- parent: 60
- - uid: 8346
- components:
- - type: Transform
- pos: -26.5,-9.5
+ pos: -33.5,-9.5
parent: 60
- uid: 8347
components:
- type: Transform
- pos: -26.5,-8.5
- parent: 60
- - uid: 8348
- components:
- - type: Transform
- pos: -26.5,-7.5
- parent: 60
- - uid: 8349
- components:
- - type: Transform
- pos: -26.5,-6.5
- parent: 60
- - uid: 8350
- components:
- - type: Transform
- pos: -26.5,-5.5
- parent: 60
- - uid: 8351
- components:
- - type: Transform
- pos: -25.5,1.5
- parent: 60
- - uid: 8352
- components:
- - type: Transform
- pos: -27.5,1.5
- parent: 60
- - uid: 8353
- components:
- - type: Transform
- pos: -26.5,2.5
+ pos: -31.5,-11.5
parent: 60
- uid: 8356
components:
@@ -19066,11 +19489,6 @@ entities:
- type: Transform
pos: 5.5,-0.5
parent: 7536
- - uid: 8392
- components:
- - type: Transform
- pos: -26.5,1.5
- parent: 60
- uid: 8405
components:
- type: Transform
@@ -19086,395 +19504,35 @@ entities:
- type: Transform
pos: 5.5,-3.5
parent: 7536
- - uid: 8416
- components:
- - type: Transform
- pos: -26.5,0.5
- parent: 60
- - uid: 8417
- components:
- - type: Transform
- pos: -26.5,-0.5
- parent: 60
- - uid: 8418
- components:
- - type: Transform
- pos: -26.5,-1.5
- parent: 60
- - uid: 8419
- components:
- - type: Transform
- pos: -26.5,-2.5
- parent: 60
- - uid: 8420
- components:
- - type: Transform
- pos: -26.5,-3.5
- parent: 60
- - uid: 8421
- components:
- - type: Transform
- pos: -21.5,1.5
- parent: 60
- - uid: 8424
- components:
- - type: Transform
- pos: -20.5,1.5
- parent: 60
- - uid: 8425
- components:
- - type: Transform
- pos: -19.5,1.5
- parent: 60
- - uid: 8428
- components:
- - type: Transform
- pos: -19.5,0.5
- parent: 60
- uid: 8429
components:
- type: Transform
- pos: -19.5,-0.5
- parent: 60
- - uid: 8430
- components:
- - type: Transform
- pos: -20.5,-0.5
- parent: 60
- - uid: 8431
- components:
- - type: Transform
- pos: -21.5,-0.5
- parent: 60
- - uid: 8433
- components:
- - type: Transform
- pos: -21.5,-1.5
- parent: 60
- - uid: 8434
- components:
- - type: Transform
- pos: -21.5,-2.5
- parent: 60
- - uid: 8436
- components:
- - type: Transform
- pos: -18.5,-3.5
- parent: 60
- - uid: 8437
- components:
- - type: Transform
- pos: -19.5,-3.5
- parent: 60
- - uid: 8438
- components:
- - type: Transform
- pos: -20.5,-3.5
- parent: 60
- - uid: 8439
- components:
- - type: Transform
- pos: -21.5,-3.5
- parent: 60
- - uid: 8440
- components:
- - type: Transform
- pos: -21.5,-4.5
- parent: 60
- - uid: 8441
- components:
- - type: Transform
- pos: -22.5,-4.5
- parent: 60
- - uid: 8442
- components:
- - type: Transform
- pos: -23.5,-4.5
- parent: 60
- - uid: 8443
- components:
- - type: Transform
- pos: -24.5,-4.5
- parent: 60
- - uid: 8444
- components:
- - type: Transform
- pos: -25.5,-4.5
- parent: 60
- - uid: 8445
- components:
- - type: Transform
- pos: -26.5,-4.5
- parent: 60
- - uid: 8446
- components:
- - type: Transform
- pos: -27.5,-4.5
- parent: 60
- - uid: 8447
- components:
- - type: Transform
- pos: -28.5,-4.5
- parent: 60
- - uid: 8448
- components:
- - type: Transform
- pos: -29.5,-4.5
- parent: 60
- - uid: 8449
- components:
- - type: Transform
- pos: -29.5,-3.5
- parent: 60
- - uid: 8450
- components:
- - type: Transform
- pos: -29.5,-2.5
- parent: 60
- - uid: 8451
- components:
- - type: Transform
- pos: -29.5,-1.5
- parent: 60
- - uid: 8452
- components:
- - type: Transform
- pos: -34.5,-6.5
- parent: 60
- - uid: 8453
- components:
- - type: Transform
- pos: -33.5,-6.5
- parent: 60
- - uid: 8454
- components:
- - type: Transform
- pos: -32.5,-6.5
- parent: 60
- - uid: 8455
- components:
- - type: Transform
- pos: -31.5,-6.5
- parent: 60
- - uid: 8456
- components:
- - type: Transform
- pos: -34.5,-9.5
- parent: 60
- - uid: 8457
- components:
- - type: Transform
- pos: -33.5,-9.5
- parent: 60
- - uid: 8458
- components:
- - type: Transform
- pos: -32.5,-9.5
- parent: 60
- - uid: 8462
- components:
- - type: Transform
- pos: -31.5,-9.5
- parent: 60
- - uid: 8463
- components:
- - type: Transform
- pos: -34.5,-12.5
- parent: 60
- - uid: 8464
- components:
- - type: Transform
- pos: -33.5,-12.5
+ pos: -35.5,-10.5
parent: 60
- uid: 8465
components:
- type: Transform
- pos: -32.5,-12.5
- parent: 60
- - uid: 8467
- components:
- - type: Transform
- pos: -31.5,-12.5
- parent: 60
- - uid: 8468
- components:
- - type: Transform
- pos: -30.5,-6.5
- parent: 60
- - uid: 8469
- components:
- - type: Transform
- pos: -30.5,-7.5
+ pos: -25.5,-7.5
parent: 60
- uid: 8470
components:
- type: Transform
- pos: -30.5,-8.5
- parent: 60
- - uid: 8471
- components:
- - type: Transform
- pos: -30.5,-9.5
- parent: 60
- - uid: 8472
- components:
- - type: Transform
- pos: -30.5,-10.5
- parent: 60
- - uid: 8473
- components:
- - type: Transform
- pos: -30.5,-11.5
+ pos: -24.5,-7.5
parent: 60
- uid: 8474
components:
- type: Transform
- pos: -30.5,-12.5
- parent: 60
- - uid: 8475
- components:
- - type: Transform
- pos: -30.5,-13.5
- parent: 60
- - uid: 8476
- components:
- - type: Transform
- pos: -30.5,-14.5
- parent: 60
- - uid: 8477
- components:
- - type: Transform
- pos: -18.5,-12.5
- parent: 60
- - uid: 8478
- components:
- - type: Transform
- pos: -19.5,-12.5
- parent: 60
- - uid: 8479
- components:
- - type: Transform
- pos: -20.5,-12.5
- parent: 60
- - uid: 8480
- components:
- - type: Transform
- pos: -21.5,-12.5
- parent: 60
- - uid: 8481
- components:
- - type: Transform
- pos: -18.5,-9.5
+ pos: -29.5,-9.5
parent: 60
- uid: 8482
components:
- type: Transform
- pos: -19.5,-9.5
- parent: 60
- - uid: 8483
- components:
- - type: Transform
- pos: -20.5,-9.5
- parent: 60
- - uid: 8484
- components:
- - type: Transform
- pos: -21.5,-9.5
- parent: 60
- - uid: 8503
- components:
- - type: Transform
- pos: -19.5,-6.5
- parent: 60
- - uid: 8504
- components:
- - type: Transform
- pos: -18.5,-6.5
- parent: 60
- - uid: 8505
- components:
- - type: Transform
- pos: -21.5,-6.5
- parent: 60
- - uid: 8506
- components:
- - type: Transform
- pos: -20.5,-6.5
- parent: 60
- - uid: 8507
- components:
- - type: Transform
- pos: -22.5,-6.5
- parent: 60
- - uid: 8508
- components:
- - type: Transform
- pos: -22.5,-7.5
- parent: 60
- - uid: 8509
- components:
- - type: Transform
- pos: -22.5,-8.5
- parent: 60
- - uid: 8510
- components:
- - type: Transform
- pos: -22.5,-9.5
- parent: 60
- - uid: 8511
- components:
- - type: Transform
- pos: -22.5,-10.5
+ pos: -35.5,-9.5
parent: 60
- uid: 8512
components:
- type: Transform
- pos: -22.5,-11.5
- parent: 60
- - uid: 8513
- components:
- - type: Transform
- pos: -22.5,-12.5
- parent: 60
- - uid: 8514
- components:
- - type: Transform
- pos: -22.5,-13.5
- parent: 60
- - uid: 8515
- components:
- - type: Transform
- pos: -22.5,-14.5
- parent: 60
- - uid: 8516
- components:
- - type: Transform
- pos: -19.5,-16.5
- parent: 60
- - uid: 8517
- components:
- - type: Transform
- pos: -20.5,-15.5
- parent: 60
- - uid: 8518
- components:
- - type: Transform
- pos: -19.5,-15.5
- parent: 60
- - uid: 8519
- components:
- - type: Transform
- pos: -21.5,-15.5
- parent: 60
- - uid: 8520
- components:
- - type: Transform
- pos: -22.5,-15.5
- parent: 60
- - uid: 8523
- components:
- - type: Transform
- pos: -23.5,-15.5
+ pos: -34.5,-1.5
parent: 60
- uid: 8531
components:
@@ -19486,125 +19544,25 @@ entities:
- type: Transform
pos: 3.5,-1.5
parent: 7536
- - uid: 8569
- components:
- - type: Transform
- pos: -30.5,-15.5
- parent: 60
- - uid: 8570
- components:
- - type: Transform
- pos: -29.5,-15.5
- parent: 60
- - uid: 8571
- components:
- - type: Transform
- pos: -28.5,-15.5
- parent: 60
- - uid: 8572
- components:
- - type: Transform
- pos: -27.5,-15.5
- parent: 60
- - uid: 8573
- components:
- - type: Transform
- pos: -26.5,-15.5
- parent: 60
- - uid: 8574
- components:
- - type: Transform
- pos: -25.5,-15.5
- parent: 60
- - uid: 8575
- components:
- - type: Transform
- pos: -24.5,-15.5
- parent: 60
- - uid: 8576
- components:
- - type: Transform
- pos: -24.5,-16.5
- parent: 60
- - uid: 8582
- components:
- - type: Transform
- pos: -19.5,-18.5
- parent: 60
- - uid: 8590
- components:
- - type: Transform
- pos: -19.5,-20.5
- parent: 60
- - uid: 8595
- components:
- - type: Transform
- pos: -18.5,-19.5
- parent: 60
- - uid: 8596
- components:
- - type: Transform
- pos: -19.5,-19.5
- parent: 60
- - uid: 8597
- components:
- - type: Transform
- pos: -20.5,-19.5
- parent: 60
- - uid: 8598
- components:
- - type: Transform
- pos: -21.5,-19.5
- parent: 60
- - uid: 8601
- components:
- - type: Transform
- pos: -22.5,-19.5
- parent: 60
- - uid: 8606
- components:
- - type: Transform
- pos: -23.5,-19.5
- parent: 60
- uid: 8609
components:
- type: Transform
- pos: -29.5,-19.5
+ pos: -24.5,-4.5
parent: 60
- uid: 8610
components:
- type: Transform
- pos: -28.5,-19.5
+ pos: -27.5,-4.5
parent: 60
- - uid: 8654
+ - uid: 8695
components:
- type: Transform
- pos: -27.5,-19.5
+ pos: -32.5,2.5
parent: 60
- - uid: 8655
+ - uid: 8709
components:
- type: Transform
- pos: -26.5,-19.5
- parent: 60
- - uid: 8656
- components:
- - type: Transform
- pos: -25.5,-19.5
- parent: 60
- - uid: 8662
- components:
- - type: Transform
- pos: -24.5,-19.5
- parent: 60
- - uid: 8664
- components:
- - type: Transform
- pos: -24.5,-18.5
- parent: 60
- - uid: 8665
- components:
- - type: Transform
- pos: -24.5,-17.5
+ pos: -29.5,-4.5
parent: 60
- uid: 8739
components:
@@ -19631,11 +19589,6 @@ entities:
- type: Transform
pos: -66.5,2.5
parent: 60
- - uid: 8770
- components:
- - type: Transform
- pos: -33.5,-17.5
- parent: 60
- uid: 8786
components:
- type: Transform
@@ -19656,6 +19609,11 @@ entities:
- type: Transform
pos: -0.5,-2.5
parent: 7536
+ - uid: 8790
+ components:
+ - type: Transform
+ pos: -33.5,3.5
+ parent: 60
- uid: 8893
components:
- type: Transform
@@ -21426,6 +21384,11 @@ entities:
- type: Transform
pos: -34.5,13.5
parent: 60
+ - uid: 10368
+ components:
+ - type: Transform
+ pos: -24.5,-9.5
+ parent: 60
- uid: 10370
components:
- type: Transform
@@ -22551,6 +22514,16 @@ entities:
- type: Transform
pos: -37.5,-24.5
parent: 60
+ - uid: 10673
+ components:
+ - type: Transform
+ pos: -21.5,-15.5
+ parent: 60
+ - uid: 10677
+ components:
+ - type: Transform
+ pos: -19.5,-21.5
+ parent: 60
- uid: 10683
components:
- type: Transform
@@ -23671,6 +23644,16 @@ entities:
- type: Transform
pos: 24.5,-37.5
parent: 60
+ - uid: 11373
+ components:
+ - type: Transform
+ pos: -31.5,-8.5
+ parent: 60
+ - uid: 11374
+ components:
+ - type: Transform
+ pos: -26.5,0.5
+ parent: 60
- uid: 11380
components:
- type: Transform
@@ -23681,6 +23664,11 @@ entities:
- type: Transform
pos: -10.5,-1.5
parent: 7536
+ - uid: 11383
+ components:
+ - type: Transform
+ pos: -31.5,-7.5
+ parent: 60
- uid: 11398
components:
- type: Transform
@@ -23691,6 +23679,11 @@ entities:
- type: Transform
pos: -52.5,-15.5
parent: 60
+ - uid: 11456
+ components:
+ - type: Transform
+ pos: -30.5,2.5
+ parent: 60
- uid: 11475
components:
- type: Transform
@@ -24421,6 +24414,11 @@ entities:
- type: Transform
pos: 7.5,-20.5
parent: 60
+ - uid: 12188
+ components:
+ - type: Transform
+ pos: -25.5,-4.5
+ parent: 60
- uid: 12278
components:
- type: Transform
@@ -25391,6 +25389,16 @@ entities:
- type: Transform
pos: 36.5,-16.5
parent: 60
+ - uid: 13149
+ components:
+ - type: Transform
+ pos: -32.5,0.5
+ parent: 60
+ - uid: 13158
+ components:
+ - type: Transform
+ pos: -34.5,-9.5
+ parent: 60
- uid: 13203
components:
- type: Transform
@@ -25406,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
@@ -26226,11 +26239,31 @@ entities:
- type: Transform
pos: 31.5,-51.5
parent: 60
+ - uid: 13583
+ components:
+ - type: Transform
+ pos: -32.5,-6.5
+ parent: 60
+ - uid: 13585
+ components:
+ - type: Transform
+ pos: -32.5,-10.5
+ parent: 60
+ - uid: 13623
+ components:
+ - type: Transform
+ pos: -32.5,-0.5
+ parent: 60
- uid: 13655
components:
- type: Transform
pos: -10.5,25.5
parent: 60
+ - uid: 13662
+ components:
+ - type: Transform
+ pos: -32.5,-1.5
+ parent: 60
- uid: 13686
components:
- type: Transform
@@ -26351,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
@@ -26376,6 +26414,26 @@ 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
+ pos: -33.5,-1.5
+ parent: 60
+ - uid: 14230
+ components:
+ - type: Transform
+ pos: -26.5,-1.5
+ parent: 60
+ - uid: 14231
+ components:
+ - type: Transform
+ pos: -30.5,1.5
+ parent: 60
- uid: 14345
components:
- type: Transform
@@ -26786,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
@@ -27066,11 +27129,21 @@ entities:
- type: Transform
pos: -20.5,17.5
parent: 60
+ - uid: 14631
+ components:
+ - type: Transform
+ pos: -26.5,-4.5
+ parent: 60
- uid: 14652
components:
- type: Transform
pos: -12.5,-14.5
parent: 60
+ - uid: 14726
+ components:
+ - type: Transform
+ pos: -34.5,-2.5
+ parent: 60
- uid: 14904
components:
- type: Transform
@@ -27091,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
@@ -27161,6 +27229,11 @@ entities:
- type: Transform
pos: -17.5,48.5
parent: 60
+ - uid: 15183
+ components:
+ - type: Transform
+ pos: -26.5,-2.5
+ parent: 60
- uid: 15272
components:
- type: Transform
@@ -27471,10 +27544,15 @@ entities:
- type: Transform
pos: -50.5,16.5
parent: 60
+ - uid: 16164
+ components:
+ - type: Transform
+ pos: -30.5,-0.5
+ parent: 60
- uid: 16361
components:
- type: Transform
- pos: -3.5,35.5
+ pos: 6.5,37.5
parent: 60
- uid: 16366
components:
@@ -27486,21 +27564,26 @@ entities:
- type: Transform
pos: -7.5,39.5
parent: 60
+ - uid: 16377
+ components:
+ - type: Transform
+ pos: 5.5,37.5
+ parent: 60
- uid: 16401
components:
- type: Transform
pos: -7.5,33.5
parent: 60
- - uid: 16407
- components:
- - type: Transform
- pos: -2.5,35.5
- parent: 60
- uid: 16412
components:
- type: Transform
pos: -7.5,38.5
parent: 60
+ - uid: 16447
+ components:
+ - type: Transform
+ pos: -26.5,-0.5
+ parent: 60
- uid: 16510
components:
- type: Transform
@@ -28836,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
@@ -29236,6 +29314,11 @@ entities:
- type: Transform
pos: -44.5,15.5
parent: 60
+ - uid: 18104
+ components:
+ - type: Transform
+ pos: -32.5,-9.5
+ parent: 60
- uid: 18213
components:
- type: Transform
@@ -29606,6 +29689,16 @@ entities:
- type: Transform
pos: 3.5,-10.5
parent: 60
+ - uid: 18590
+ components:
+ - type: Transform
+ pos: -24.5,-3.5
+ parent: 60
+ - uid: 18606
+ components:
+ - type: Transform
+ pos: -31.5,2.5
+ parent: 60
- uid: 18631
components:
- type: Transform
@@ -30736,6 +30829,11 @@ entities:
- type: Transform
pos: 8.5,-23.5
parent: 60
+ - uid: 21074
+ components:
+ - type: Transform
+ pos: -28.5,-4.5
+ parent: 60
- uid: 21093
components:
- type: Transform
@@ -30859,7 +30957,7 @@ entities:
- uid: 21158
components:
- type: Transform
- pos: -33.5,-20.5
+ pos: -23.5,-4.5
parent: 60
- uid: 21171
components:
@@ -30966,6 +31064,16 @@ entities:
- type: Transform
pos: 10.5,-23.5
parent: 60
+ - uid: 21380
+ components:
+ - type: Transform
+ pos: -24.5,-2.5
+ parent: 60
+ - uid: 21409
+ components:
+ - type: Transform
+ pos: -23.5,-19.5
+ parent: 60
- uid: 21466
components:
- type: Transform
@@ -31041,6 +31149,26 @@ entities:
- type: Transform
pos: -2.5,-4.5
parent: 60
+ - uid: 21770
+ components:
+ - 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
@@ -32271,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
@@ -32341,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
@@ -33193,8 +33351,28 @@ 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
+ components:
+ - type: Transform
+ pos: -58.5,19.5
+ parent: 60
+ - uid: 8666
+ components:
+ - type: Transform
+ pos: -58.5,17.5
+ parent: 60
+ - uid: 9683
+ components:
+ - type: Transform
+ pos: -58.5,18.5
+ parent: 60
- uid: 21173
components:
- type: Transform
@@ -33212,6 +33390,11 @@ entities:
- type: Transform
pos: -65.5,-17.5
parent: 60
+ - uid: 255
+ components:
+ - type: Transform
+ pos: -26.5,6.5
+ parent: 60
- uid: 277
components:
- type: Transform
@@ -33312,6 +33495,86 @@ entities:
- type: Transform
pos: 31.5,-58.5
parent: 60
+ - uid: 1582
+ components:
+ - type: Transform
+ pos: -36.5,4.5
+ parent: 60
+ - uid: 1585
+ components:
+ - type: Transform
+ pos: -36.5,-12.5
+ parent: 60
+ - uid: 1586
+ components:
+ - type: Transform
+ pos: -36.5,-11.5
+ parent: 60
+ - uid: 1589
+ components:
+ - type: Transform
+ pos: -36.5,-9.5
+ parent: 60
+ - uid: 1594
+ components:
+ - type: Transform
+ pos: -36.5,-8.5
+ parent: 60
+ - uid: 1596
+ components:
+ - type: Transform
+ pos: -36.5,-7.5
+ parent: 60
+ - uid: 1597
+ components:
+ - type: Transform
+ pos: -36.5,-5.5
+ parent: 60
+ - uid: 1599
+ components:
+ - type: Transform
+ pos: -36.5,-4.5
+ parent: 60
+ - uid: 1600
+ components:
+ - type: Transform
+ pos: -36.5,-3.5
+ parent: 60
+ - uid: 1601
+ components:
+ - type: Transform
+ pos: -36.5,-2.5
+ parent: 60
+ - uid: 1615
+ components:
+ - type: Transform
+ pos: -36.5,-1.5
+ parent: 60
+ - uid: 1617
+ components:
+ - type: Transform
+ pos: -36.5,-0.5
+ parent: 60
+ - uid: 1618
+ components:
+ - type: Transform
+ pos: -36.5,0.5
+ parent: 60
+ - uid: 1619
+ components:
+ - type: Transform
+ pos: -36.5,1.5
+ parent: 60
+ - uid: 1620
+ components:
+ - type: Transform
+ pos: -36.5,2.5
+ parent: 60
+ - uid: 1623
+ components:
+ - type: Transform
+ pos: -36.5,3.5
+ parent: 60
- uid: 1626
components:
- type: Transform
@@ -33537,6 +33800,11 @@ entities:
- type: Transform
pos: 1.5,-39.5
parent: 60
+ - uid: 4018
+ components:
+ - type: Transform
+ pos: -27.5,5.5
+ parent: 60
- uid: 4031
components:
- type: Transform
@@ -33547,6 +33815,11 @@ entities:
- type: Transform
pos: -86.5,-16.5
parent: 60
+ - uid: 4215
+ components:
+ - type: Transform
+ pos: -46.5,27.5
+ parent: 60
- uid: 4240
components:
- type: Transform
@@ -34152,11 +34425,6 @@ entities:
- type: Transform
pos: 27.5,-62.5
parent: 60
- - uid: 6779
- components:
- - type: Transform
- pos: -33.5,4.5
- parent: 60
- uid: 6829
components:
- type: Transform
@@ -34242,11 +34510,6 @@ entities:
- type: Transform
pos: 55.5,-41.5
parent: 60
- - uid: 7909
- components:
- - type: Transform
- pos: -35.5,4.5
- parent: 60
- uid: 7910
components:
- type: Transform
@@ -34482,16 +34745,6 @@ entities:
- type: Transform
pos: -9.5,-2.5
parent: 7536
- - uid: 8221
- components:
- - type: Transform
- pos: -36.5,4.5
- parent: 60
- - uid: 8240
- components:
- - type: Transform
- pos: -34.5,4.5
- parent: 60
- uid: 8306
components:
- type: Transform
@@ -34517,6 +34770,21 @@ entities:
- type: Transform
pos: -72.5,-21.5
parent: 60
+ - uid: 8441
+ components:
+ - type: Transform
+ pos: -22.5,4.5
+ parent: 60
+ - uid: 8455
+ components:
+ - type: Transform
+ pos: -16.5,-14.5
+ parent: 60
+ - uid: 8505
+ components:
+ - type: Transform
+ pos: -16.5,-16.5
+ parent: 60
- uid: 8628
components:
- type: Transform
@@ -34577,6 +34845,21 @@ entities:
- type: Transform
pos: -80.5,-12.5
parent: 60
+ - uid: 8696
+ components:
+ - type: Transform
+ pos: -16.5,-18.5
+ parent: 60
+ - uid: 8711
+ components:
+ - type: Transform
+ pos: -16.5,-21.5
+ parent: 60
+ - uid: 8715
+ components:
+ - type: Transform
+ pos: -16.5,-17.5
+ parent: 60
- uid: 8727
components:
- type: Transform
@@ -34627,6 +34910,11 @@ entities:
- type: Transform
pos: 41.5,-44.5
parent: 60
+ - uid: 8770
+ components:
+ - type: Transform
+ pos: -16.5,-19.5
+ parent: 60
- uid: 8772
components:
- type: Transform
@@ -34672,6 +34960,11 @@ entities:
- type: Transform
pos: 37.5,-72.5
parent: 60
+ - uid: 9014
+ components:
+ - type: Transform
+ pos: -16.5,-23.5
+ parent: 60
- uid: 9025
components:
- type: Transform
@@ -34697,6 +34990,11 @@ entities:
- type: Transform
pos: 34.5,-70.5
parent: 60
+ - uid: 9031
+ components:
+ - type: Transform
+ pos: -16.5,-12.5
+ parent: 60
- uid: 9055
components:
- type: Transform
@@ -34867,6 +35165,11 @@ entities:
- type: Transform
pos: 24.5,-76.5
parent: 60
+ - uid: 9283
+ components:
+ - type: Transform
+ pos: -26.5,5.5
+ parent: 60
- uid: 9296
components:
- type: Transform
@@ -36447,115 +36750,10 @@ entities:
- type: Transform
pos: -37.5,-12.5
parent: 60
- - uid: 11361
- components:
- - type: Transform
- pos: -37.5,-11.5
- parent: 60
- - uid: 11362
- components:
- - type: Transform
- pos: -37.5,-10.5
- parent: 60
- - uid: 11363
- components:
- - type: Transform
- pos: -37.5,-9.5
- parent: 60
- - uid: 11364
- components:
- - type: Transform
- pos: -37.5,-8.5
- parent: 60
- - uid: 11365
- components:
- - type: Transform
- pos: -37.5,-7.5
- parent: 60
- - uid: 11366
- components:
- - type: Transform
- pos: -37.5,-6.5
- parent: 60
- - uid: 11367
- components:
- - type: Transform
- pos: -37.5,-5.5
- parent: 60
- - uid: 11368
- components:
- - type: Transform
- pos: -37.5,-4.5
- parent: 60
- - uid: 11369
- components:
- - type: Transform
- pos: -37.5,-3.5
- parent: 60
- - uid: 11370
- components:
- - type: Transform
- pos: -37.5,-2.5
- parent: 60
- - uid: 11371
- components:
- - type: Transform
- pos: -37.5,-1.5
- parent: 60
- - uid: 11372
- components:
- - type: Transform
- pos: -37.5,-0.5
- parent: 60
- - uid: 11373
- components:
- - type: Transform
- pos: -37.5,0.5
- parent: 60
- - uid: 11374
- components:
- - type: Transform
- pos: -37.5,1.5
- parent: 60
- - uid: 11375
- components:
- - type: Transform
- pos: -37.5,2.5
- parent: 60
- - uid: 11376
- components:
- - type: Transform
- pos: -37.5,3.5
- parent: 60
- - uid: 11377
- components:
- - type: Transform
- pos: -37.5,4.5
- parent: 60
- - uid: 11382
- components:
- - type: Transform
- pos: -33.5,5.5
- parent: 60
- - uid: 11383
- components:
- - type: Transform
- pos: -32.5,5.5
- parent: 60
- - uid: 11384
- components:
- - type: Transform
- pos: -31.5,5.5
- parent: 60
- - uid: 11385
- components:
- - type: Transform
- pos: -30.5,5.5
- parent: 60
- uid: 11386
components:
- type: Transform
- pos: -30.5,4.5
+ pos: -31.5,5.5
parent: 60
- uid: 11451
components:
@@ -36637,6 +36835,11 @@ entities:
- type: Transform
pos: -5.5,-49.5
parent: 60
+ - uid: 11510
+ components:
+ - type: Transform
+ pos: -17.5,-7.5
+ parent: 60
- uid: 11515
components:
- type: Transform
@@ -36672,6 +36875,16 @@ entities:
- type: Transform
pos: -58.5,15.5
parent: 60
+ - uid: 11536
+ components:
+ - type: Transform
+ pos: -33.5,4.5
+ parent: 60
+ - uid: 11555
+ components:
+ - type: Transform
+ pos: -15.5,-24.5
+ parent: 60
- uid: 11584
components:
- type: Transform
@@ -36775,7 +36988,7 @@ entities:
- uid: 11604
components:
- type: Transform
- pos: -46.5,27.5
+ pos: -26.5,4.5
parent: 60
- uid: 11605
components:
@@ -36897,6 +37110,11 @@ entities:
- type: Transform
pos: 38.5,-76.5
parent: 60
+ - uid: 11759
+ components:
+ - type: Transform
+ pos: -16.5,-13.5
+ parent: 60
- uid: 11786
components:
- type: Transform
@@ -37202,6 +37420,11 @@ entities:
- type: Transform
pos: 35.5,-3.5
parent: 60
+ - uid: 11978
+ components:
+ - type: Transform
+ pos: -16.5,-15.5
+ parent: 60
- uid: 11983
components:
- type: Transform
@@ -37417,6 +37640,11 @@ entities:
- type: Transform
pos: 7.5,-37.5
parent: 60
+ - uid: 12189
+ components:
+ - type: Transform
+ pos: -18.5,3.5
+ parent: 60
- uid: 12198
components:
- type: Transform
@@ -37657,6 +37885,11 @@ entities:
- type: Transform
pos: -7.5,39.5
parent: 60
+ - uid: 12598
+ components:
+ - type: Transform
+ pos: -35.5,5.5
+ parent: 60
- uid: 12649
components:
- type: Transform
@@ -37687,6 +37920,16 @@ entities:
- type: Transform
pos: 38.5,-66.5
parent: 60
+ - uid: 12684
+ components:
+ - type: Transform
+ pos: -32.5,5.5
+ parent: 60
+ - uid: 12685
+ components:
+ - type: Transform
+ pos: -18.5,4.5
+ parent: 60
- uid: 12696
components:
- type: Transform
@@ -37977,26 +38220,121 @@ entities:
- type: Transform
pos: 16.5,24.5
parent: 60
+ - uid: 13150
+ components:
+ - type: Transform
+ pos: -16.5,-24.5
+ parent: 60
- uid: 13249
components:
- type: Transform
pos: 5.5,38.5
parent: 60
+ - uid: 13478
+ components:
+ - type: Transform
+ pos: -19.5,4.5
+ parent: 60
- uid: 13532
components:
- type: Transform
pos: -58.5,9.5
parent: 60
+ - uid: 13582
+ components:
+ - type: Transform
+ pos: -16.5,-20.5
+ parent: 60
+ - uid: 13624
+ components:
+ - type: Transform
+ pos: -25.5,4.5
+ parent: 60
+ - uid: 13660
+ components:
+ - type: Transform
+ pos: -15.5,-25.5
+ parent: 60
+ - uid: 13667
+ components:
+ - type: Transform
+ pos: -23.5,4.5
+ parent: 60
- uid: 13694
components:
- 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
+ pos: -34.5,5.5
+ parent: 60
- uid: 14343
components:
- 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
@@ -38137,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
@@ -38797,31 +39130,6 @@ entities:
- type: Transform
pos: -26.5,7.5
parent: 60
- - uid: 15897
- components:
- - type: Transform
- pos: -26.5,6.5
- parent: 60
- - uid: 15898
- components:
- - type: Transform
- pos: -26.5,5.5
- parent: 60
- - uid: 15899
- components:
- - type: Transform
- pos: -27.5,5.5
- parent: 60
- - uid: 15900
- components:
- - type: Transform
- pos: -28.5,5.5
- parent: 60
- - uid: 15901
- components:
- - type: Transform
- pos: -29.5,5.5
- parent: 60
- uid: 15902
components:
- type: Transform
@@ -39687,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
@@ -39727,30 +40025,10 @@ entities:
- type: Transform
pos: 0.5,28.5
parent: 60
- - uid: 16356
+ - uid: 16456
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
+ pos: -28.5,5.5
parent: 60
- uid: 16502
components:
@@ -39767,10 +40045,10 @@ entities:
- type: Transform
pos: 6.5,38.5
parent: 60
- - uid: 16528
+ - uid: 16678
components:
- type: Transform
- pos: -2.5,35.5
+ pos: -34.5,2.5
parent: 60
- uid: 17085
components:
@@ -39887,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
@@ -40027,10 +40290,10 @@ entities:
- type: Transform
pos: -9.5,56.5
parent: 60
- - uid: 17153
+ - uid: 17467
components:
- type: Transform
- pos: 10.5,37.5
+ pos: -33.5,5.5
parent: 60
- uid: 17928
components:
@@ -40092,65 +40355,25 @@ entities:
- type: Transform
pos: -16.5,3.5
parent: 60
- - uid: 17952
- components:
- - type: Transform
- pos: -16.5,4.5
- parent: 60
- - uid: 17953
- components:
- - type: Transform
- pos: -16.5,4.5
- parent: 60
- - uid: 17954
- components:
- - type: Transform
- pos: -17.5,4.5
- parent: 60
- - uid: 17955
- components:
- - type: Transform
- pos: -18.5,4.5
- parent: 60
- uid: 17956
components:
- type: Transform
- pos: -19.5,4.5
- parent: 60
- - uid: 17957
- components:
- - type: Transform
- pos: -20.5,4.5
- parent: 60
- - uid: 17958
- components:
- - type: Transform
- pos: -21.5,4.5
+ pos: -36.5,5.5
parent: 60
- uid: 17959
components:
- type: Transform
- pos: -22.5,4.5
- parent: 60
- - uid: 17960
- components:
- - type: Transform
- pos: -22.5,5.5
- parent: 60
- - uid: 17961
- components:
- - type: Transform
- pos: -23.5,5.5
+ pos: -35.5,-6.5
parent: 60
- uid: 17962
components:
- type: Transform
- pos: -24.5,5.5
+ pos: -35.5,-11.5
parent: 60
- uid: 17963
components:
- type: Transform
- pos: -25.5,5.5
+ pos: -36.5,-6.5
parent: 60
- uid: 17964
components:
@@ -40202,6 +40425,11 @@ entities:
- type: Transform
pos: 11.5,-3.5
parent: 60
+ - uid: 17987
+ components:
+ - type: Transform
+ pos: -35.5,-7.5
+ parent: 60
- uid: 18001
components:
- type: Transform
@@ -40212,6 +40440,21 @@ entities:
- type: Transform
pos: 10.5,-3.5
parent: 60
+ - uid: 18008
+ components:
+ - type: Transform
+ pos: -16.5,2.5
+ parent: 60
+ - uid: 18092
+ components:
+ - type: Transform
+ pos: -35.5,-9.5
+ parent: 60
+ - uid: 18103
+ components:
+ - type: Transform
+ pos: -17.5,-11.5
+ parent: 60
- uid: 18108
components:
- type: Transform
@@ -40507,6 +40750,11 @@ entities:
- type: Transform
pos: 4.5,3.5
parent: 60
+ - uid: 18267
+ components:
+ - type: Transform
+ pos: -36.5,-10.5
+ parent: 60
- uid: 18405
components:
- type: Transform
@@ -40527,6 +40775,81 @@ entities:
- type: Transform
pos: -0.5,-8.5
parent: 60
+ - uid: 18463
+ components:
+ - type: Transform
+ pos: -35.5,-5.5
+ parent: 60
+ - uid: 18509
+ components:
+ - type: Transform
+ pos: -16.5,0.5
+ parent: 60
+ - uid: 18510
+ components:
+ - type: Transform
+ pos: -16.5,-1.5
+ parent: 60
+ - uid: 18592
+ components:
+ - type: Transform
+ pos: -35.5,-10.5
+ parent: 60
+ - uid: 18594
+ components:
+ - type: Transform
+ pos: -16.5,1.5
+ parent: 60
+ - uid: 18595
+ components:
+ - type: Transform
+ pos: -16.5,-9.5
+ parent: 60
+ - uid: 18596
+ components:
+ - type: Transform
+ pos: -16.5,-0.5
+ parent: 60
+ - uid: 18597
+ components:
+ - type: Transform
+ pos: -17.5,-9.5
+ parent: 60
+ - uid: 18598
+ components:
+ - type: Transform
+ pos: -16.5,-2.5
+ parent: 60
+ - uid: 18599
+ components:
+ - type: Transform
+ pos: -17.5,-10.5
+ parent: 60
+ - uid: 18600
+ components:
+ - type: Transform
+ pos: -16.5,-5.5
+ parent: 60
+ - uid: 18602
+ components:
+ - type: Transform
+ pos: -16.5,-8.5
+ parent: 60
+ - uid: 18603
+ components:
+ - type: Transform
+ pos: -16.5,-3.5
+ parent: 60
+ - uid: 18604
+ components:
+ - type: Transform
+ pos: -16.5,-7.5
+ parent: 60
+ - uid: 18605
+ components:
+ - type: Transform
+ pos: -16.5,-4.5
+ parent: 60
- uid: 18613
components:
- type: Transform
@@ -40597,6 +40920,11 @@ entities:
- type: Transform
pos: -9.5,-3.5
parent: 60
+ - uid: 18766
+ components:
+ - type: Transform
+ pos: -16.5,-6.5
+ parent: 60
- uid: 18775
components:
- type: Transform
@@ -40627,6 +40955,11 @@ entities:
- type: Transform
pos: 25.5,4.5
parent: 60
+ - uid: 18998
+ components:
+ - type: Transform
+ pos: -16.5,-10.5
+ parent: 60
- uid: 19205
components:
- type: Transform
@@ -42172,6 +42505,31 @@ entities:
- type: Transform
pos: 4.5,36.5
parent: 60
+ - uid: 21012
+ components:
+ - type: Transform
+ pos: -16.5,-11.5
+ parent: 60
+ - uid: 21050
+ components:
+ - type: Transform
+ pos: -29.5,5.5
+ parent: 60
+ - uid: 21069
+ components:
+ - type: Transform
+ pos: -30.5,5.5
+ parent: 60
+ - uid: 21214
+ components:
+ - type: Transform
+ pos: -20.5,4.5
+ parent: 60
+ - uid: 21217
+ components:
+ - type: Transform
+ pos: -24.5,4.5
+ parent: 60
- uid: 21429
components:
- type: Transform
@@ -42197,11 +42555,26 @@ entities:
- type: Transform
pos: -11.5,-34.5
parent: 60
+ - uid: 21726
+ components:
+ - type: Transform
+ pos: -33.5,3.5
+ parent: 60
- uid: 21741
components:
- type: Transform
pos: 0.5,34.5
parent: 60
+ - uid: 21763
+ components:
+ - type: Transform
+ pos: -16.5,-22.5
+ parent: 60
+ - uid: 21765
+ components:
+ - type: Transform
+ pos: -17.5,-6.5
+ parent: 60
- uid: 22475
components:
- type: Transform
@@ -42252,6 +42625,21 @@ entities:
- type: Transform
pos: -118.5,15.5
parent: 60
+ - uid: 23108
+ components:
+ - type: Transform
+ pos: -33.5,2.5
+ parent: 60
+ - uid: 23644
+ components:
+ - type: Transform
+ pos: -17.5,3.5
+ parent: 60
+ - uid: 23830
+ components:
+ - type: Transform
+ pos: -17.5,-5.5
+ parent: 60
- uid: 24416
components:
- type: Transform
@@ -42731,6 +43119,21 @@ entities:
- type: Transform
pos: -11.5,4.5
parent: 60
+ - uid: 84
+ components:
+ - type: Transform
+ pos: -31.5,2.5
+ parent: 60
+ - uid: 88
+ components:
+ - type: Transform
+ pos: -30.5,2.5
+ parent: 60
+ - uid: 113
+ components:
+ - type: Transform
+ pos: -21.5,-8.5
+ parent: 60
- uid: 117
components:
- type: Transform
@@ -42741,16 +43144,31 @@ entities:
- type: Transform
pos: 4.5,-32.5
parent: 60
+ - uid: 121
+ components:
+ - type: Transform
+ pos: -22.5,-3.5
+ parent: 60
+ - uid: 149
+ components:
+ - type: Transform
+ pos: -21.5,-5.5
+ parent: 60
+ - uid: 150
+ components:
+ - type: Transform
+ pos: -21.5,-4.5
+ parent: 60
+ - uid: 156
+ components:
+ - type: Transform
+ pos: -33.5,2.5
+ parent: 60
- uid: 166
components:
- type: Transform
pos: 41.5,-18.5
parent: 60
- - uid: 178
- components:
- - type: Transform
- pos: -20.5,-2.5
- parent: 60
- uid: 241
components:
- type: Transform
@@ -42791,31 +43209,11 @@ entities:
- type: Transform
pos: 50.5,-21.5
parent: 60
- - uid: 564
- components:
- - type: Transform
- pos: -17.5,-13.5
- parent: 60
- uid: 592
components:
- type: Transform
pos: -12.5,1.5
parent: 60
- - uid: 628
- components:
- - type: Transform
- pos: -28.5,-16.5
- parent: 60
- - uid: 634
- components:
- - type: Transform
- pos: -35.5,-7.5
- parent: 60
- - uid: 635
- components:
- - type: Transform
- pos: -29.5,-17.5
- parent: 60
- uid: 718
components:
- type: Transform
@@ -42831,46 +43229,6 @@ entities:
- type: Transform
pos: 51.5,-21.5
parent: 60
- - uid: 774
- components:
- - type: Transform
- pos: -34.5,-6.5
- parent: 60
- - uid: 776
- components:
- - type: Transform
- pos: -29.5,-16.5
- parent: 60
- - uid: 777
- components:
- - type: Transform
- pos: -22.5,-14.5
- parent: 60
- - uid: 779
- components:
- - type: Transform
- pos: -27.5,-5.5
- parent: 60
- - uid: 782
- components:
- - type: Transform
- pos: -35.5,-9.5
- parent: 60
- - uid: 783
- components:
- - type: Transform
- pos: -34.5,-12.5
- parent: 60
- - uid: 793
- components:
- - type: Transform
- pos: -35.5,-6.5
- parent: 60
- - uid: 813
- components:
- - type: Transform
- pos: -22.5,-5.5
- parent: 60
- uid: 814
components:
- type: Transform
@@ -42911,66 +43269,11 @@ entities:
- type: Transform
pos: 4.5,-27.5
parent: 60
- - uid: 1504
- components:
- - type: Transform
- pos: -26.5,-15.5
- parent: 60
- - uid: 1527
- components:
- - type: Transform
- pos: -21.5,-6.5
- parent: 60
- - uid: 1540
- components:
- - type: Transform
- pos: -30.5,5.5
- parent: 60
- - uid: 1541
- components:
- - type: Transform
- pos: -29.5,-14.5
- parent: 60
- - uid: 1542
- components:
- - type: Transform
- pos: -21.5,-11.5
- parent: 60
- - uid: 1551
- components:
- - type: Transform
- pos: -21.5,-7.5
- parent: 60
- - uid: 1552
- components:
- - type: Transform
- pos: -21.5,-9.5
- parent: 60
- - uid: 1553
- components:
- - type: Transform
- pos: -31.5,-6.5
- parent: 60
- uid: 1554
components:
- type: Transform
pos: 34.5,-15.5
parent: 60
- - uid: 1557
- components:
- - type: Transform
- pos: -21.5,-10.5
- parent: 60
- - uid: 1558
- components:
- - type: Transform
- pos: -20.5,-7.5
- parent: 60
- - uid: 1561
- components:
- - type: Transform
- pos: -22.5,-13.5
- parent: 60
- uid: 1565
components:
- type: Transform
@@ -42986,106 +43289,6 @@ entities:
- type: Transform
pos: 35.5,-16.5
parent: 60
- - uid: 1568
- components:
- - type: Transform
- pos: -20.5,-10.5
- parent: 60
- - uid: 1569
- components:
- - type: Transform
- pos: -23.5,-17.5
- parent: 60
- - uid: 1570
- components:
- - type: Transform
- pos: -31.5,-10.5
- parent: 60
- - uid: 1571
- components:
- - type: Transform
- pos: -31.5,-11.5
- parent: 60
- - uid: 1572
- components:
- - type: Transform
- pos: -32.5,-6.5
- parent: 60
- - uid: 1573
- components:
- - type: Transform
- pos: -33.5,-6.5
- parent: 60
- - uid: 1574
- components:
- - type: Transform
- pos: -31.5,-7.5
- parent: 60
- - uid: 1575
- components:
- - type: Transform
- pos: -31.5,-8.5
- parent: 60
- - uid: 1576
- components:
- - type: Transform
- pos: -26.5,-17.5
- parent: 60
- - uid: 1577
- components:
- - type: Transform
- pos: -23.5,-16.5
- parent: 60
- - uid: 1578
- components:
- - type: Transform
- pos: -29.5,-5.5
- parent: 60
- - uid: 1579
- components:
- - type: Transform
- pos: -20.5,-13.5
- parent: 60
- - uid: 1580
- components:
- - type: Transform
- pos: -32.5,-7.5
- parent: 60
- - uid: 1581
- components:
- - type: Transform
- pos: -21.5,-8.5
- parent: 60
- - uid: 1582
- components:
- - type: Transform
- pos: -32.5,-10.5
- parent: 60
- - uid: 1583
- components:
- - type: Transform
- pos: -23.5,-18.5
- parent: 60
- - uid: 1584
- components:
- - type: Transform
- pos: -32.5,-13.5
- parent: 60
- - uid: 1585
- components:
- - type: Transform
- pos: -28.5,-14.5
- parent: 60
- - uid: 1586
- components:
- - type: Transform
- pos: -21.5,-13.5
- parent: 60
- - uid: 1589
- components:
- - type: Transform
- pos: -28.5,-5.5
- parent: 60
- uid: 1590
components:
- type: Transform
@@ -43096,41 +43299,11 @@ entities:
- type: Transform
pos: 4.5,-28.5
parent: 60
- - uid: 1597
- components:
- - type: Transform
- pos: -31.5,-13.5
- parent: 60
- uid: 1598
components:
- type: Transform
pos: 32.5,-16.5
parent: 60
- - uid: 1599
- components:
- - type: Transform
- pos: -22.5,-19.5
- parent: 60
- - uid: 1617
- components:
- - type: Transform
- pos: -21.5,-12.5
- parent: 60
- - uid: 1618
- components:
- - type: Transform
- pos: -30.5,-14.5
- parent: 60
- - uid: 1623
- components:
- - type: Transform
- pos: -26.5,-16.5
- parent: 60
- - uid: 1659
- components:
- - type: Transform
- pos: -21.5,0.5
- parent: 60
- uid: 1695
components:
- type: Transform
@@ -43141,11 +43314,6 @@ entities:
- type: Transform
pos: 4.5,-29.5
parent: 60
- - uid: 1728
- components:
- - type: Transform
- pos: -18.5,0.5
- parent: 60
- uid: 1738
components:
- type: Transform
@@ -43181,20 +43349,30 @@ entities:
- type: Transform
pos: 52.5,-28.5
parent: 60
- - uid: 1843
+ - uid: 1948
components:
- type: Transform
- pos: -18.5,1.5
+ pos: -30.5,-0.5
parent: 60
- - uid: 1971
+ - uid: 1953
components:
- type: Transform
- pos: -21.5,-0.5
+ pos: -30.5,-1.5
parent: 60
- - uid: 1979
+ - uid: 1957
components:
- type: Transform
- pos: -23.5,-15.5
+ pos: -25.5,-2.5
+ parent: 60
+ - uid: 2017
+ components:
+ - type: Transform
+ pos: -34.5,2.5
+ parent: 60
+ - uid: 2042
+ components:
+ - type: Transform
+ pos: -32.5,2.5
parent: 60
- uid: 2058
components:
@@ -43216,10 +43394,25 @@ entities:
- type: Transform
pos: 11.5,-20.5
parent: 60
- - uid: 2105
+ - uid: 2086
components:
- type: Transform
- pos: -21.5,-1.5
+ pos: -25.5,-3.5
+ parent: 60
+ - uid: 2087
+ components:
+ - type: Transform
+ pos: -18.5,0.5
+ parent: 60
+ - uid: 2091
+ components:
+ - type: Transform
+ pos: -21.5,-6.5
+ parent: 60
+ - uid: 2092
+ components:
+ - type: Transform
+ pos: -30.5,-8.5
parent: 60
- uid: 2136
components:
@@ -43236,11 +43429,6 @@ entities:
- type: Transform
pos: 38.5,-18.5
parent: 60
- - uid: 2160
- components:
- - type: Transform
- pos: -23.5,-19.5
- parent: 60
- uid: 2171
components:
- type: Transform
@@ -43351,11 +43539,21 @@ entities:
- type: Transform
pos: -55.5,-18.5
parent: 60
+ - uid: 3196
+ components:
+ - type: Transform
+ pos: -20.5,-1.5
+ parent: 60
- uid: 3203
components:
- type: Transform
pos: -52.5,-18.5
parent: 60
+ - uid: 3217
+ components:
+ - type: Transform
+ pos: -31.5,-12.5
+ parent: 60
- uid: 3222
components:
- type: Transform
@@ -43396,71 +43594,31 @@ entities:
- type: Transform
pos: -7.5,38.5
parent: 60
+ - uid: 4010
+ components:
+ - type: Transform
+ pos: -30.5,-2.5
+ parent: 60
+ - uid: 4011
+ components:
+ - type: Transform
+ pos: -28.5,-15.5
+ parent: 60
+ - uid: 4080
+ components:
+ - type: Transform
+ pos: -25.5,-18.5
+ parent: 60
- uid: 4108
components:
- type: Transform
pos: -13.5,-14.5
parent: 60
- - uid: 4457
- components:
- - type: Transform
- pos: -31.5,5.5
- parent: 60
- - uid: 4504
- components:
- - type: Transform
- pos: -35.5,-10.5
- parent: 60
- - uid: 4505
- components:
- - type: Transform
- pos: -32.5,-12.5
- parent: 60
- - uid: 4506
- components:
- - type: Transform
- pos: -33.5,-12.5
- parent: 60
- uid: 4508
components:
- type: Transform
pos: -1.5,-74.5
parent: 60
- - uid: 4561
- components:
- - type: Transform
- pos: -24.5,-5.5
- parent: 60
- - uid: 4562
- components:
- - type: Transform
- pos: -33.5,-9.5
- parent: 60
- - uid: 4563
- components:
- - type: Transform
- pos: -26.5,-5.5
- parent: 60
- - uid: 4564
- components:
- - type: Transform
- pos: -32.5,-9.5
- parent: 60
- - uid: 4565
- components:
- - type: Transform
- pos: -34.5,-9.5
- parent: 60
- - uid: 4566
- components:
- - type: Transform
- pos: -23.5,-5.5
- parent: 60
- - uid: 4567
- components:
- - type: Transform
- pos: -25.5,-5.5
- parent: 60
- uid: 4619
components:
- type: Transform
@@ -43651,56 +43809,11 @@ entities:
- type: Transform
pos: 46.5,2.5
parent: 60
- - uid: 5423
- components:
- - type: Transform
- pos: -21.5,-5.5
- parent: 60
- - uid: 5427
- components:
- - type: Transform
- pos: -30.5,-5.5
- parent: 60
- - uid: 5428
- components:
- - type: Transform
- pos: -27.5,-14.5
- parent: 60
- - uid: 5429
- components:
- - type: Transform
- pos: -20.5,-17.5
- parent: 60
- - uid: 5430
- components:
- - type: Transform
- pos: -18.5,-17.5
- parent: 60
- - uid: 5431
- components:
- - type: Transform
- pos: -21.5,-16.5
- parent: 60
- - uid: 5436
- components:
- - type: Transform
- pos: -20.5,-6.5
- parent: 60
- uid: 5455
components:
- type: Transform
pos: 52.5,-29.5
parent: 60
- - uid: 5682
- components:
- - type: Transform
- pos: -23.5,-14.5
- parent: 60
- - uid: 5689
- components:
- - type: Transform
- pos: -25.5,-14.5
- parent: 60
- uid: 5833
components:
- type: Transform
@@ -43716,21 +43829,11 @@ entities:
- type: Transform
pos: 36.5,-7.5
parent: 60
- - uid: 5909
- components:
- - type: Transform
- pos: -30.5,-13.5
- parent: 60
- uid: 5934
components:
- type: Transform
pos: 48.5,-9.5
parent: 60
- - uid: 5974
- components:
- - type: Transform
- pos: -32.5,5.5
- parent: 60
- uid: 6066
components:
- type: Transform
@@ -43851,126 +43954,16 @@ entities:
- type: Transform
pos: -11.5,-54.5
parent: 60
- - uid: 6702
- components:
- - type: Transform
- pos: -35.5,-13.5
- parent: 60
- - uid: 6703
- components:
- - type: Transform
- pos: -35.5,-12.5
- parent: 60
- - uid: 6704
- components:
- - type: Transform
- pos: -17.5,-6.5
- parent: 60
- - uid: 6705
- components:
- - type: Transform
- pos: -17.5,-7.5
- parent: 60
- - uid: 6706
- components:
- - type: Transform
- pos: -20.5,-12.5
- parent: 60
- - uid: 6707
- components:
- - type: Transform
- pos: -18.5,-9.5
- parent: 60
- - uid: 6708
- components:
- - type: Transform
- pos: -20.5,-9.5
- parent: 60
- - uid: 6709
- components:
- - type: Transform
- pos: -18.5,-6.5
- parent: 60
- - uid: 6710
- components:
- - type: Transform
- pos: -17.5,-12.5
- parent: 60
- uid: 6713
components:
- type: Transform
pos: -12.5,-54.5
parent: 60
- - uid: 6794
- components:
- - type: Transform
- pos: -21.5,-2.5
- parent: 60
- uid: 6817
components:
- type: Transform
pos: 36.5,-8.5
parent: 60
- - uid: 6818
- components:
- - type: Transform
- pos: -19.5,-6.5
- parent: 60
- - uid: 6819
- components:
- - type: Transform
- pos: -19.5,-9.5
- parent: 60
- - uid: 6828
- components:
- - type: Transform
- pos: -21.5,-3.5
- parent: 60
- - uid: 6884
- components:
- - type: Transform
- pos: -21.5,-19.5
- parent: 60
- - uid: 6885
- components:
- - type: Transform
- pos: -22.5,-16.5
- parent: 60
- - uid: 6886
- components:
- - type: Transform
- pos: -20.5,-16.5
- parent: 60
- - uid: 6887
- components:
- - type: Transform
- pos: -19.5,-16.5
- parent: 60
- - uid: 6888
- components:
- - type: Transform
- pos: -18.5,-16.5
- parent: 60
- - uid: 6889
- components:
- - type: Transform
- pos: -24.5,-14.5
- parent: 60
- - uid: 6890
- components:
- - type: Transform
- pos: -26.5,-14.5
- parent: 60
- - uid: 6992
- components:
- - type: Transform
- pos: -17.5,-9.5
- parent: 60
- - uid: 7031
- components:
- - type: Transform
- pos: -18.5,-12.5
- parent: 60
- uid: 7197
components:
- type: Transform
@@ -44001,11 +43994,6 @@ entities:
- type: Transform
pos: 41.5,-42.5
parent: 60
- - uid: 7612
- components:
- - type: Transform
- pos: -19.5,-12.5
- parent: 60
- uid: 7694
components:
- type: Transform
@@ -44016,16 +44004,6 @@ entities:
- type: Transform
pos: 46.5,3.5
parent: 60
- - uid: 7813
- components:
- - type: Transform
- pos: -21.5,-4.5
- parent: 60
- - uid: 8030
- components:
- - type: Transform
- pos: -17.5,-10.5
- parent: 60
- uid: 8114
components:
- type: Transform
@@ -44161,115 +44139,255 @@ entities:
- type: Transform
pos: 41.5,-48.5
parent: 60
- - uid: 8231
+ - uid: 8280
components:
- type: Transform
- pos: -31.5,-9.5
+ pos: -19.5,0.5
parent: 60
- - uid: 8232
+ - uid: 8281
components:
- type: Transform
- pos: -31.5,-12.5
+ pos: -30.5,-4.5
parent: 60
- - uid: 8245
+ - uid: 8283
components:
- type: Transform
- pos: -30.5,-15.5
+ pos: -30.5,-7.5
parent: 60
- - uid: 8246
+ - uid: 8284
components:
- type: Transform
- pos: -31.5,-15.5
+ pos: -29.5,-3.5
+ parent: 60
+ - uid: 8285
+ components:
+ - type: Transform
+ pos: -30.5,-5.5
+ parent: 60
+ - uid: 8286
+ components:
+ - type: Transform
+ pos: -30.5,-3.5
+ parent: 60
+ - uid: 8287
+ components:
+ - type: Transform
+ pos: -30.5,-10.5
+ parent: 60
+ - uid: 8288
+ components:
+ - type: Transform
+ pos: -21.5,-7.5
+ parent: 60
+ - uid: 8289
+ components:
+ - type: Transform
+ pos: -24.5,-3.5
+ parent: 60
+ - uid: 8290
+ components:
+ - type: Transform
+ pos: -32.5,-12.5
+ parent: 60
+ - uid: 8293
+ components:
+ - type: Transform
+ pos: -27.5,-2.5
+ parent: 60
+ - uid: 8294
+ components:
+ - type: Transform
+ pos: -18.5,-1.5
+ parent: 60
+ - uid: 8295
+ components:
+ - type: Transform
+ pos: -26.5,-3.5
+ parent: 60
+ - uid: 8326
+ components:
+ - type: Transform
+ pos: -28.5,-3.5
+ parent: 60
+ - uid: 8327
+ components:
+ - type: Transform
+ pos: -27.5,-3.5
+ parent: 60
+ - uid: 8328
+ components:
+ - type: Transform
+ pos: -19.5,1.5
+ parent: 60
+ - uid: 8329
+ components:
+ - type: Transform
+ pos: -25.5,-20.5
+ parent: 60
+ - uid: 8330
+ components:
+ - type: Transform
+ pos: -30.5,-9.5
+ parent: 60
+ - uid: 8331
+ components:
+ - type: Transform
+ pos: -24.5,-2.5
+ parent: 60
+ - uid: 8332
+ components:
+ - type: Transform
+ pos: -30.5,-11.5
+ parent: 60
+ - uid: 8333
+ components:
+ - type: Transform
+ pos: -30.5,-12.5
+ parent: 60
+ - uid: 8334
+ components:
+ - type: Transform
+ pos: -26.5,-15.5
+ parent: 60
+ - uid: 8338
+ components:
+ - type: Transform
+ pos: -22.5,-15.5
+ parent: 60
+ - uid: 8351
+ components:
+ - type: Transform
+ pos: -25.5,-16.5
+ parent: 60
+ - uid: 8392
+ components:
+ - type: Transform
+ pos: -21.5,-10.5
+ parent: 60
+ - uid: 8401
+ components:
+ - type: Transform
+ pos: -30.5,-6.5
parent: 60
- uid: 8402
components:
- type: Transform
pos: -25.5,52.5
parent: 60
- - uid: 8581
+ - uid: 8403
components:
- type: Transform
- pos: -28.5,-15.5
+ pos: -18.5,-0.5
parent: 60
- - uid: 8666
+ - uid: 8418
components:
- type: Transform
- pos: -24.5,-17.5
+ pos: -21.5,-2.5
parent: 60
- - uid: 8668
+ - uid: 8425
components:
- type: Transform
- pos: -30.5,4.5
+ pos: -25.5,-17.5
parent: 60
- - uid: 8670
+ - uid: 8430
components:
- type: Transform
- pos: -32.5,4.5
+ pos: -20.5,-12.5
parent: 60
- - uid: 8671
+ - uid: 8446
components:
- type: Transform
pos: -32.5,3.5
parent: 60
- - uid: 8672
+ - uid: 8463
components:
- type: Transform
- pos: -32.5,2.5
+ pos: -30.5,-14.5
parent: 60
- - uid: 8673
+ - uid: 8507
components:
- type: Transform
- pos: -32.5,1.5
+ pos: -30.5,-13.5
+ parent: 60
+ - uid: 8515
+ components:
+ - type: Transform
+ pos: -21.5,-9.5
+ parent: 60
+ - uid: 8524
+ components:
+ - type: Transform
+ pos: -30.5,-15.5
+ parent: 60
+ - uid: 8578
+ components:
+ - type: Transform
+ pos: -22.5,-13.5
+ parent: 60
+ - uid: 8579
+ components:
+ - type: Transform
+ pos: -23.5,-15.5
parent: 60
- uid: 8674
components:
- type: Transform
- pos: -32.5,0.5
+ pos: -29.5,-15.5
parent: 60
- uid: 8675
components:
- type: Transform
- pos: -32.5,-0.5
- parent: 60
- - uid: 8676
- components:
- - type: Transform
- pos: -31.5,-0.5
- parent: 60
- - uid: 8677
- components:
- - type: Transform
- pos: -30.5,-0.5
- parent: 60
- - uid: 8678
- components:
- - type: Transform
- pos: -29.5,-1.5
- parent: 60
- - uid: 8679
- components:
- - type: Transform
- pos: -30.5,-1.5
- parent: 60
- - uid: 8680
- components:
- - type: Transform
- pos: -30.5,-2.5
- parent: 60
- - uid: 8681
- components:
- - type: Transform
- pos: -30.5,-2.5
- parent: 60
- - uid: 8682
- components:
- - type: Transform
- pos: -30.5,-3.5
+ pos: -24.5,-15.5
parent: 60
- uid: 8683
components:
- type: Transform
- pos: -30.5,-4.5
+ pos: -22.5,-12.5
+ parent: 60
+ - uid: 8684
+ components:
+ - type: Transform
+ pos: -22.5,-14.5
+ parent: 60
+ - uid: 8694
+ components:
+ - type: Transform
+ pos: -23.5,-3.5
+ parent: 60
+ - uid: 8714
+ components:
+ - type: Transform
+ pos: -25.5,-15.5
+ parent: 60
+ - uid: 8718
+ components:
+ - type: Transform
+ pos: -25.5,-21.5
+ parent: 60
+ - uid: 8719
+ components:
+ - type: Transform
+ pos: -21.5,-1.5
+ parent: 60
+ - uid: 8735
+ components:
+ - type: Transform
+ pos: -27.5,-15.5
+ parent: 60
+ - uid: 8744
+ components:
+ - type: Transform
+ pos: -21.5,-11.5
+ parent: 60
+ - uid: 8791
+ components:
+ - type: Transform
+ pos: -22.5,-2.5
+ parent: 60
+ - uid: 8883
+ components:
+ - type: Transform
+ pos: -25.5,-19.5
parent: 60
- uid: 8913
components:
@@ -45266,11 +45384,6 @@ entities:
- type: Transform
pos: 41.5,-43.5
parent: 60
- - uid: 10829
- components:
- - type: Transform
- pos: -30.5,-6.5
- parent: 60
- uid: 10846
components:
- type: Transform
@@ -45711,6 +45824,11 @@ entities:
- type: Transform
pos: 26.5,-39.5
parent: 60
+ - uid: 11375
+ components:
+ - type: Transform
+ pos: -30.5,1.5
+ parent: 60
- uid: 11467
components:
- type: Transform
@@ -45721,6 +45839,16 @@ entities:
- type: Transform
pos: 50.5,-32.5
parent: 60
+ - uid: 11556
+ components:
+ - type: Transform
+ pos: -21.5,-12.5
+ parent: 60
+ - uid: 11576
+ components:
+ - type: Transform
+ pos: -30.5,0.5
+ parent: 60
- uid: 11651
components:
- type: Transform
@@ -45766,11 +45894,6 @@ entities:
- type: Transform
pos: 29.5,18.5
parent: 60
- - uid: 11759
- components:
- - type: Transform
- pos: -20.5,-4.5
- parent: 60
- uid: 11890
components:
- type: Transform
@@ -46096,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
@@ -46176,6 +46304,11 @@ entities:
- type: Transform
pos: 52.5,14.5
parent: 60
+ - uid: 13383
+ components:
+ - type: Transform
+ pos: -21.5,-3.5
+ parent: 60
- uid: 13391
components:
- type: Transform
@@ -46351,6 +46484,56 @@ 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
+ pos: -32.5,1.5
+ parent: 60
- uid: 14329
components:
- type: Transform
@@ -46921,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
@@ -46951,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
@@ -46991,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
@@ -47181,11 +47319,6 @@ entities:
- type: Transform
pos: -8.5,2.5
parent: 60
- - uid: 18096
- components:
- - type: Transform
- pos: -32.5,-14.5
- parent: 60
- uid: 18282
components:
- type: Transform
@@ -47251,16 +47384,6 @@ entities:
- type: Transform
pos: -93.5,17.5
parent: 60
- - uid: 18521
- components:
- - type: Transform
- pos: -32.5,-15.5
- parent: 60
- - uid: 18547
- components:
- - type: Transform
- pos: -20.5,1.5
- parent: 60
- uid: 18575
components:
- type: Transform
@@ -47361,16 +47484,6 @@ entities:
- type: Transform
pos: -12.5,-4.5
parent: 60
- - uid: 18790
- components:
- - type: Transform
- pos: -21.5,1.5
- parent: 60
- - uid: 18791
- components:
- - type: Transform
- pos: -19.5,1.5
- parent: 60
- uid: 18842
components:
- type: Transform
@@ -48651,6 +48764,21 @@ entities:
- type: Transform
pos: 27.5,-34.5
parent: 60
+ - uid: 23839
+ components:
+ - type: Transform
+ pos: -26.5,-14.5
+ parent: 60
+ - uid: 23851
+ components:
+ - type: Transform
+ pos: -26.5,-13.5
+ parent: 60
+ - uid: 23852
+ components:
+ - type: Transform
+ pos: -27.5,-13.5
+ parent: 60
- uid: 24094
components:
- type: Transform
@@ -49427,21 +49555,6 @@ entities:
parent: 60
- proto: Carpet
entities:
- - uid: 1656
- components:
- - type: Transform
- pos: -20.5,0.5
- parent: 60
- - uid: 1962
- components:
- - type: Transform
- pos: -21.5,1.5
- parent: 60
- - uid: 2098
- components:
- - type: Transform
- pos: -20.5,1.5
- parent: 60
- uid: 4276
components:
- type: Transform
@@ -49462,93 +49575,46 @@ entities:
- type: Transform
pos: -46.5,-18.5
parent: 60
- - uid: 5835
+ - uid: 5660
components:
- type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,-3.5
+ parent: 60
+ - uid: 5910
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -21.5,0.5
parent: 60
+ - uid: 6091
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,0.5
+ parent: 60
- uid: 7293
components:
- type: Transform
pos: -26.5,-29.5
parent: 60
+ - uid: 8227
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-0.5
+ parent: 60
+ - uid: 8255
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-0.5
+ parent: 60
- uid: 10823
components:
- 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
@@ -49614,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
@@ -49883,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
@@ -49985,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
@@ -50163,51 +50240,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -6.5,-45.5
parent: 60
- - uid: 4211
- components:
- - type: Transform
- pos: -40.5,-20.5
- parent: 60
- - uid: 4212
- components:
- - type: Transform
- pos: -41.5,-20.5
- parent: 60
- - uid: 4213
- components:
- - type: Transform
- pos: -42.5,-20.5
- parent: 60
- - uid: 4214
- components:
- - type: Transform
- pos: -43.5,-20.5
- parent: 60
- - uid: 4215
- components:
- - type: Transform
- pos: -44.5,-20.5
- parent: 60
- - uid: 4216
- components:
- - type: Transform
- pos: -44.5,-20.5
- parent: 60
- - uid: 4217
- components:
- - type: Transform
- pos: -46.5,-20.5
- parent: 60
- - uid: 4218
- components:
- - type: Transform
- pos: -45.5,-20.5
- parent: 60
- - uid: 4220
- components:
- - type: Transform
- pos: -43.5,-19.5
- parent: 60
- uid: 6597
components:
- type: Transform
@@ -50610,6 +50642,11 @@ entities:
- type: Transform
pos: -56.5,-18.5
parent: 60
+ - uid: 98
+ components:
+ - type: Transform
+ pos: -48.5,27.5
+ parent: 60
- uid: 399
components:
- type: Transform
@@ -50660,6 +50697,11 @@ entities:
- type: Transform
pos: -12.5,24.5
parent: 60
+ - uid: 1636
+ components:
+ - type: Transform
+ pos: -52.5,27.5
+ parent: 60
- uid: 1988
components:
- type: Transform
@@ -50770,6 +50812,21 @@ entities:
- type: Transform
pos: 5.5,-41.5
parent: 60
+ - uid: 4211
+ components:
+ - type: Transform
+ pos: -32.5,5.5
+ parent: 60
+ - uid: 4212
+ components:
+ - type: Transform
+ pos: -33.5,5.5
+ parent: 60
+ - uid: 4213
+ components:
+ - type: Transform
+ pos: -34.5,5.5
+ parent: 60
- uid: 4279
components:
- type: Transform
@@ -50815,6 +50872,12 @@ entities:
- type: Transform
pos: -52.5,-22.5
parent: 60
+ - uid: 4746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,3.5
+ parent: 60
- uid: 5175
components:
- type: Transform
@@ -51575,6 +51638,12 @@ entities:
- type: Transform
pos: -73.5,-20.5
parent: 60
+ - uid: 8344
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -32.5,2.5
+ parent: 60
- uid: 8364
components:
- type: Transform
@@ -51625,6 +51694,11 @@ entities:
- type: Transform
pos: -73.5,-16.5
parent: 60
+ - uid: 8456
+ components:
+ - type: Transform
+ pos: -24.5,4.5
+ parent: 60
- uid: 8485
components:
- type: Transform
@@ -51670,6 +51744,11 @@ entities:
- type: Transform
pos: -84.5,-18.5
parent: 60
+ - uid: 8513
+ components:
+ - type: Transform
+ pos: -27.5,5.5
+ parent: 60
- uid: 8529
components:
- type: Transform
@@ -51860,6 +51939,16 @@ entities:
- type: Transform
pos: -58.5,-5.5
parent: 60
+ - uid: 9032
+ components:
+ - type: Transform
+ pos: -22.5,4.5
+ parent: 60
+ - uid: 9033
+ components:
+ - type: Transform
+ pos: -25.5,4.5
+ parent: 60
- uid: 9064
components:
- type: Transform
@@ -52390,6 +52479,12 @@ entities:
- type: Transform
pos: 47.5,-41.5
parent: 60
+ - uid: 11376
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,2.5
+ parent: 60
- uid: 11387
components:
- type: Transform
@@ -53474,6 +53569,11 @@ entities:
- type: Transform
pos: 54.5,-11.5
parent: 60
+ - uid: 13139
+ components:
+ - type: Transform
+ pos: -23.5,4.5
+ parent: 60
- uid: 13320
components:
- type: Transform
@@ -53524,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
@@ -53589,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
@@ -53889,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
@@ -54104,11 +54239,21 @@ entities:
- type: Transform
pos: -25.5,49.5
parent: 60
+ - uid: 17953
+ components:
+ - type: Transform
+ pos: -28.5,5.5
+ parent: 60
- uid: 18007
components:
- type: Transform
pos: -92.5,16.5
parent: 60
+ - uid: 18438
+ components:
+ - type: Transform
+ pos: -30.5,5.5
+ parent: 60
- uid: 18484
components:
- type: Transform
@@ -54119,47 +54264,12 @@ entities:
- type: Transform
pos: 3.5,-10.5
parent: 60
- - uid: 18590
+ - uid: 18547
components:
- type: Transform
- pos: -28.5,5.5
+ pos: -31.5,5.5
parent: 60
- uid: 18591
- components:
- - type: Transform
- pos: -27.5,5.5
- parent: 60
- - uid: 18594
- components:
- - type: Transform
- pos: -25.5,5.5
- parent: 60
- - uid: 18595
- components:
- - type: Transform
- pos: -24.5,5.5
- parent: 60
- - uid: 18596
- components:
- - type: Transform
- pos: -23.5,5.5
- parent: 60
- - uid: 18597
- components:
- - type: Transform
- pos: -22.5,4.5
- parent: 60
- - uid: 18598
- components:
- - type: Transform
- pos: -21.5,4.5
- parent: 60
- - uid: 18599
- components:
- - type: Transform
- pos: -20.5,4.5
- parent: 60
- - uid: 18600
components:
- type: Transform
pos: -19.5,4.5
@@ -54167,7 +54277,7 @@ entities:
- uid: 18601
components:
- type: Transform
- pos: -18.5,4.5
+ pos: -21.5,4.5
parent: 60
- uid: 18726
components:
@@ -54354,6 +54464,11 @@ entities:
- type: Transform
pos: 55.5,-23.5
parent: 60
+ - uid: 18827
+ components:
+ - type: Transform
+ pos: -29.5,5.5
+ parent: 60
- uid: 19000
components:
- type: Transform
@@ -54379,6 +54494,11 @@ entities:
- type: Transform
pos: 40.5,4.5
parent: 60
+ - uid: 19130
+ components:
+ - type: Transform
+ pos: -20.5,4.5
+ parent: 60
- uid: 19703
components:
- type: Transform
@@ -55946,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
@@ -56352,12 +56477,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 56.5,-5.5
parent: 60
- - uid: 69
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-18.5
- parent: 60
- uid: 662
components:
- type: Transform
@@ -56389,17 +56508,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -63.5,-13.5
parent: 60
- - uid: 1448
+ - uid: 1648
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-19.5
- parent: 60
- - uid: 1480
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-20.5
parent: 60
- uid: 1672
components:
@@ -56407,17 +56520,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -59.5,-2.5
parent: 60
- - uid: 1701
- components:
- - type: Transform
- pos: -33.5,-2.5
- parent: 60
- uid: 1810
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 54.5,-42.5
parent: 60
+ - uid: 1867
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-20.5
+ parent: 60
+ - uid: 2088
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,0.5
+ parent: 60
- uid: 2143
components:
- type: Transform
@@ -56441,54 +56561,6 @@ entities:
- type: Transform
pos: -66.5,8.5
parent: 60
- - uid: 4200
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-19.5
- parent: 60
- - uid: 4201
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-19.5
- parent: 60
- - uid: 4202
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-19.5
- parent: 60
- - uid: 4203
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,-19.5
- parent: 60
- - uid: 4206
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,-21.5
- parent: 60
- - uid: 4207
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-21.5
- parent: 60
- - uid: 4208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-21.5
- parent: 60
- - uid: 4209
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-21.5
- parent: 60
- uid: 4233
components:
- type: Transform
@@ -56558,11 +56630,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,-49.5
parent: 60
- - uid: 5010
- components:
- - type: Transform
- pos: -33.5,-15.5
- parent: 60
- uid: 5096
components:
- type: Transform
@@ -56590,12 +56657,6 @@ entities:
- type: Transform
pos: -11.5,-55.5
parent: 60
- - uid: 5971
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-20.5
- parent: 60
- uid: 6322
components:
- type: Transform
@@ -56762,11 +56823,6 @@ entities:
- type: Transform
pos: -36.5,-24.5
parent: 60
- - uid: 7786
- components:
- - type: Transform
- pos: -32.5,4.5
- parent: 60
- uid: 7791
components:
- type: Transform
@@ -56784,11 +56840,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,-50.5
parent: 60
- - uid: 9042
+ - uid: 8510
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-0.5
parent: 60
- uid: 9079
components:
@@ -56807,18 +56863,6 @@ entities:
rot: 3.141592653589793 rad
pos: 55.5,-13.5
parent: 60
- - uid: 9309
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-2.5
- parent: 60
- - uid: 9546
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-3.5
- parent: 60
- uid: 9604
components:
- type: Transform
@@ -56834,11 +56878,17 @@ entities:
- type: Transform
pos: -48.5,4.5
parent: 60
- - uid: 9680
+ - uid: 11377
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-0.5
+ parent: 60
+ - uid: 11385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,0.5
parent: 60
- uid: 11480
components:
@@ -56885,12 +56935,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,21.5
parent: 60
- - uid: 16150
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-17.5
- parent: 60
- uid: 17262
components:
- type: Transform
@@ -56921,6 +56965,12 @@ entities:
- type: Transform
pos: -26.5,26.5
parent: 60
+ - uid: 17330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-4.5
+ parent: 60
- uid: 17669
components:
- type: Transform
@@ -56980,18 +57030,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 8.5,-51.5
parent: 60
- - uid: 18103
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,0.5
- parent: 60
- - uid: 18104
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-1.5
- parent: 60
- uid: 18210
components:
- type: Transform
@@ -57002,13 +57040,7 @@ entities:
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -0.5,-6.5
- parent: 60
- - uid: 18487
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-3.5
+ pos: -0.5,-5.5
parent: 60
- uid: 18524
components:
@@ -57068,12 +57100,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 52.5,-42.5
parent: 60
- - uid: 21030
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,2.5
- parent: 60
- uid: 21399
components:
- type: Transform
@@ -57106,6 +57132,12 @@ entities:
- type: Transform
pos: -110.5,3.5
parent: 60
+ - uid: 23894
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,0.5
+ parent: 60
- uid: 24023
components:
- type: Transform
@@ -57358,36 +57390,55 @@ entities:
rot: 1.5707963267948966 rad
pos: 12.52908,-13.379191
parent: 60
+- proto: ChairFoldingSpawnFolded
+ entities:
+ - uid: 1762
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-11.5
+ parent: 60
+ - uid: 1764
+ components:
+ - type: Transform
+ pos: -19.5,-11.5
+ parent: 60
+ - uid: 1909
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-7.5
+ parent: 60
+ - uid: 8232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-7.5
+ parent: 60
- proto: ChairOfficeDark
entities:
+ - uid: 238
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-19.5
+ parent: 60
- uid: 1379
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 7.5,-27.5
parent: 60
- - uid: 1642
+ - uid: 1573
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-4.5
+ pos: -26.5,-9.5
parent: 60
- - uid: 1861
- components:
- - type: Transform
- pos: -19.5,-16.5
- parent: 60
- - uid: 1924
+ - uid: 2094
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -24.474321,-9.37935
- parent: 60
- - uid: 1937
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.568071,-9.4106
+ pos: -34.446068,-3.4362593
parent: 60
- uid: 2590
components:
@@ -57406,11 +57457,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -46.5,16.5
parent: 60
- - uid: 3070
- components:
- - type: Transform
- pos: -26.5,-10.5
- parent: 60
- uid: 3588
components:
- type: Transform
@@ -57493,6 +57539,12 @@ entities:
- type: Transform
pos: -65.5,10.5
parent: 60
+ - uid: 8345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-19.5
+ parent: 60
- uid: 8383
components:
- type: Transform
@@ -57504,12 +57556,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 13.5,19.5
parent: 60
- - uid: 8946
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-4.5
- parent: 60
- uid: 9203
components:
- type: Transform
@@ -57565,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
@@ -57956,41 +58007,17 @@ entities:
rot: -1.5707963267948966 rad
pos: 18.4897,-38.423878
parent: 60
- - uid: 14118
+ - uid: 14154
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -7.5,17.5
+ pos: -11.5321455,21.501402
parent: 60
- - uid: 14119
- 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
- parent: 60
- - uid: 14134
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,15.5
- parent: 60
- - uid: 14135
+ - uid: 14159
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -10.5,16.5
- parent: 60
- - uid: 14136
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,17.5
+ pos: -11.474271,12.4426365
parent: 60
- uid: 14187
components:
@@ -58004,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
@@ -58152,6 +58168,11 @@ entities:
- type: Transform
pos: 45.485657,-24.447033
parent: 60
+ - uid: 16150
+ components:
+ - type: Transform
+ pos: -19.84328,-13.204234
+ parent: 60
- proto: ChemDispenser
entities:
- uid: 2520
@@ -58190,11 +58211,10 @@ entities:
- type: Transform
pos: 2.5348077,-76.44673
parent: 60
- - uid: 9155
+ - uid: 8948
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.503572,-20.408875
+ pos: -34.5,-15.5
parent: 60
- uid: 13678
components:
@@ -58294,6 +58314,13 @@ entities:
- type: Transform
pos: 5.5158696,-7.3988457
parent: 60
+- proto: CigarSpent
+ entities:
+ - uid: 21734
+ components:
+ - type: Transform
+ pos: -33.433487,-2.3675175
+ parent: 60
- proto: CigPackGreen
entities:
- uid: 12874
@@ -58324,34 +58351,11 @@ entities:
parent: 60
- proto: ClosetBombFilled
entities:
- - uid: 5662
+ - uid: 2112
components:
- type: Transform
- pos: -34.5,5.5
+ pos: -23.5,-20.5
parent: 60
- - uid: 8919
- components:
- - type: Transform
- pos: -25.5,2.5
- parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.877957
- - 7.0646954
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 11346
components:
- type: Transform
@@ -58693,29 +58697,6 @@ entities:
- 0
- 0
- 0
- - uid: 18602
- components:
- - type: Transform
- pos: -18.5,5.5
- parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 19085
components:
- type: Transform
@@ -58790,6 +58771,11 @@ entities:
- 0
- 0
- 0
+ - uid: 21497
+ components:
+ - type: Transform
+ pos: -18.5,5.5
+ parent: 60
- uid: 24008
components:
- type: Transform
@@ -58817,6 +58803,11 @@ entities:
parent: 60
- proto: ClosetEmergencyN2FilledRandom
entities:
+ - uid: 21503
+ components:
+ - type: Transform
+ pos: -19.5,5.5
+ parent: 60
- uid: 24022
components:
- type: Transform
@@ -58967,6 +58958,11 @@ entities:
- 0
- 0
- 0
+ - uid: 8447
+ components:
+ - type: Transform
+ pos: -24.5,5.5
+ parent: 60
- uid: 12851
components:
- type: Transform
@@ -59023,29 +59019,6 @@ entities:
- 0
- 0
- 0
- - uid: 18603
- components:
- - type: Transform
- pos: -19.5,5.5
- parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 19893
components:
- type: Transform
@@ -59146,29 +59119,11 @@ entities:
- 0
- proto: ClosetL3SecurityFilled
entities:
- - uid: 1462
+ - uid: 8469
components:
- type: Transform
- pos: -32.5,-20.5
+ pos: -29.5,-20.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: ClosetL3VirologyFilled
entities:
- uid: 2962
@@ -60002,10 +59957,17 @@ entities:
parent: 7536
- proto: ClothingBeltSecurityFilled
entities:
- - uid: 7099
+ - uid: 6546
components:
- type: Transform
- pos: -33.78202,-0.46209612
+ 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:
@@ -60268,13 +60230,6 @@ entities:
- type: Transform
pos: -38.320274,19.65635
parent: 60
-- proto: ClothingHeadHatBeretWarden
- entities:
- - uid: 11556
- components:
- - type: Transform
- pos: -27.758022,-9.545581
- parent: 60
- proto: ClothingHeadHatBowlerHat
entities:
- uid: 8020
@@ -60316,7 +60271,7 @@ entities:
- uid: 24258
components:
- type: Transform
- pos: 12.042968,35.99082
+ pos: 12.34339,35.974167
parent: 60
- uid: 24259
components:
@@ -60356,6 +60311,13 @@ entities:
- type: Transform
pos: 42.399185,-38.15878
parent: 60
+- proto: ClothingHeadHatGreysoft
+ entities:
+ - uid: 18096
+ components:
+ - type: Transform
+ pos: -12.635327,-50.409695
+ parent: 60
- proto: ClothingHeadHatPaper
entities:
- uid: 13642
@@ -60450,13 +60412,6 @@ entities:
- type: Transform
pos: -39.62937,16.44374
parent: 60
-- proto: ClothingHeadHatWarden
- entities:
- - uid: 16450
- components:
- - type: Transform
- pos: -27.336147,-11.701831
- parent: 60
- proto: ClothingHeadHatWelding
entities:
- uid: 6584
@@ -60559,15 +60514,20 @@ entities:
parent: 60
- proto: ClothingHeadHelmetRiot
entities:
- - uid: 1866
+ - uid: 6308
components:
- type: Transform
- pos: -24.644444,1.636905
+ pos: -24.634363,-12.292603
parent: 60
- - uid: 1867
+ - uid: 6707
components:
- type: Transform
- pos: -24.644444,1.636905
+ pos: -24.634363,-12.292603
+ parent: 60
+ - uid: 7747
+ components:
+ - type: Transform
+ pos: -24.634363,-12.292603
parent: 60
- proto: ClothingHeadHelmetTemplar
entities:
@@ -60626,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
@@ -60722,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
@@ -60760,13 +60720,6 @@ entities:
- type: Transform
pos: 83.621025,-13.51627
parent: 60
-- proto: ClothingNeckBisexualPin
- entities:
- - uid: 24090
- components:
- - type: Transform
- pos: -20.494595,5.7531924
- parent: 60
- proto: ClothingNeckBling
entities:
- uid: 18461
@@ -60793,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
@@ -60823,15 +60755,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: ClothingNeckMantleHOS
- entities:
- - uid: 17672
- components:
- - type: Transform
- parent: 5933
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: ClothingNeckMantleRD
entities:
- uid: 17673
@@ -60841,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
@@ -60915,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
@@ -60931,66 +60840,44 @@ entities:
parent: 60
- proto: ClothingOuterApronChef
entities:
- - uid: 2513
- components:
- - type: MetaData
- desc: An apron-jacket used by Mr.Chang
- name: Mr.Chang Official Apron
- - type: Transform
- pos: -12.442651,-50.453358
- parent: 60
-- proto: ClothingOuterArmorBasic
- entities:
- - uid: 19886
+ - uid: 1986
components:
- type: Transform
- pos: -24.397709,1.3971437
- parent: 60
- - uid: 20003
- components:
- - type: Transform
- pos: -24.397709,1.3971437
- parent: 60
-- proto: ClothingOuterArmorBulletproof
- entities:
- - uid: 21011
- components:
- - type: Transform
- pos: -24.521177,1.5767841
- parent: 60
- - uid: 21012
- components:
- - type: Transform
- pos: -24.521177,1.5767841
- parent: 60
- - uid: 21016
- components:
- - type: Transform
- pos: -24.521177,1.5767841
+ pos: -12.119702,-50.42532
parent: 60
- proto: ClothingOuterArmorReflective
entities:
- - uid: 24113
+ - uid: 5010
components:
- type: Transform
- pos: -24.597569,1.293155
+ pos: -24.587488,-12.605103
parent: 60
- - uid: 24114
+ - uid: 5909
components:
- type: Transform
- pos: -24.597569,1.293155
+ pos: -24.587488,-12.605103
+ parent: 60
+ - uid: 7785
+ components:
+ - type: Transform
+ pos: -24.587488,-12.605103
parent: 60
- proto: ClothingOuterArmorRiot
entities:
- - uid: 1816
+ - uid: 5201
components:
- type: Transform
- pos: -24.316319,1.574405
+ pos: -24.384363,-12.511353
parent: 60
- - uid: 8203
+ - uid: 5849
components:
- type: Transform
- pos: -24.316319,1.574405
+ pos: -24.384363,-12.511353
+ parent: 60
+ - uid: 21723
+ components:
+ - type: Transform
+ pos: -24.384363,-12.511353
parent: 60
- proto: ClothingOuterCardborg
entities:
@@ -61025,13 +60912,6 @@ entities:
- type: Transform
pos: 51.556362,-34.423466
parent: 60
-- proto: ClothingOuterCoatJensen
- entities:
- - uid: 18606
- components:
- - type: Transform
- pos: -20.447735,5.5611706
- parent: 60
- proto: ClothingOuterCoatLab
entities:
- uid: 9624
@@ -61055,20 +60935,20 @@ entities:
parent: 60
- proto: ClothingOuterHardsuitSecurity
entities:
- - uid: 1820
+ - uid: 1862
components:
- type: Transform
- pos: -28.680038,2.632019
+ pos: -28.693623,1.6351235
parent: 60
- - uid: 13767
+ - uid: 5313
components:
- type: Transform
- pos: -28.414413,2.444519
+ pos: -28.552998,1.5257485
parent: 60
- - uid: 13978
+ - uid: 6367
components:
- type: Transform
- pos: -28.555038,2.538269
+ pos: -28.381123,1.4163735
parent: 60
- proto: ClothingOuterHoodieBlack
entities:
@@ -61420,11 +61300,6 @@ entities:
- type: Transform
pos: -5.5,-44.5
parent: 60
- - uid: 1957
- components:
- - type: Transform
- pos: -21.5,1.5
- parent: 60
- uid: 2249
components:
- type: Transform
@@ -61482,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
@@ -61503,11 +61390,16 @@ entities:
rot: -1.5707963267948966 rad
pos: 24.5,-40.5
parent: 60
- - uid: 7232
+ - uid: 8225
+ components:
+ - type: Transform
+ pos: -21.5,0.5
+ parent: 60
+ - uid: 8259
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -22.5,-0.5
+ pos: -22.5,-1.5
parent: 60
- uid: 8745
components:
@@ -61538,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
@@ -61550,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
@@ -61797,12 +61726,6 @@ entities:
rot: 3.141592653589793 rad
pos: -25.5,-30.5
parent: 60
- - uid: 6582
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-11.5
- parent: 60
- uid: 8705
components:
- type: Transform
@@ -61816,17 +61739,15 @@ entities:
parent: 60
- proto: ComputerCriminalRecords
entities:
- - uid: 1796
+ - uid: 617
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-10.5
+ pos: -30.5,-18.5
parent: 60
- - uid: 1868
+ - uid: 667
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,1.5
+ pos: -22.5,-18.5
parent: 60
- uid: 2024
components:
@@ -61834,17 +61755,16 @@ entities:
rot: 3.141592653589793 rad
pos: -26.5,-30.5
parent: 60
- - uid: 9153
+ - uid: 4217
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-7.5
+ pos: -27.5,-8.5
parent: 60
- - uid: 13383
+ - uid: 8213
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -20.5,-16.5
+ pos: -22.5,0.5
parent: 60
- uid: 18561
components:
@@ -62034,11 +61954,10 @@ entities:
parent: 60
- proto: ComputerStationRecords
entities:
- - uid: 6611
+ - uid: 584
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-10.5
+ pos: -23.5,-18.5
parent: 60
- uid: 10938
components:
@@ -62058,6 +61977,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 32.5,-12.5
parent: 60
+ - uid: 15898
+ components:
+ - type: Transform
+ pos: -25.5,-8.5
+ parent: 60
- uid: 19686
components:
- type: Transform
@@ -62066,10 +61990,15 @@ entities:
parent: 60
- proto: ComputerSurveillanceCameraMonitor
entities:
- - uid: 1980
+ - uid: 564
components:
- type: Transform
- pos: -21.5,2.5
+ pos: -29.5,-18.5
+ parent: 60
+ - uid: 1658
+ components:
+ - type: Transform
+ pos: -26.5,-8.5
parent: 60
- uid: 2068
components:
@@ -63127,10 +63056,10 @@ entities:
- 0
- proto: CrateSecurityTrackingMindshieldImplants
entities:
- - uid: 11097
+ - uid: 1559
components:
- type: Transform
- pos: -27.5,-8.5
+ pos: -24.5,-11.5
parent: 60
- proto: CrateServiceJanitorialSupplies
entities:
@@ -63246,6 +63175,11 @@ entities:
available: False
- proto: Crowbar
entities:
+ - uid: 1977
+ components:
+ - type: Transform
+ pos: -27.476547,-12.57161
+ parent: 60
- uid: 23156
components:
- type: Transform
@@ -63265,11 +63199,6 @@ entities:
parent: 60
- proto: CrowbarRed
entities:
- - uid: 6041
- components:
- - type: Transform
- pos: -27.486204,-11.386857
- parent: 60
- uid: 9351
components:
- type: Transform
@@ -63362,12 +63291,50 @@ entities:
parent: 60
- proto: CurtainsBlackOpen
entities:
+ - uid: 8672
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-2.5
+ parent: 60
+ - uid: 14624
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-2.5
+ parent: 60
- uid: 23835
components:
- type: Transform
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
@@ -63406,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
@@ -63486,10 +63437,10 @@ entities:
parent: 60
- proto: DefaultStationBeaconArmory
entities:
- - uid: 18267
+ - uid: 8462
components:
- type: Transform
- pos: -26.5,0.5
+ pos: -26.5,-1.5
parent: 60
- proto: DefaultStationBeaconArrivals
entities:
@@ -63533,13 +63484,6 @@ entities:
- type: Transform
pos: 0.5,0.5
parent: 60
-- proto: DefaultStationBeaconBrig
- entities:
- - uid: 4147
- components:
- - type: Transform
- pos: -25.5,-15.5
- parent: 60
- proto: DefaultStationBeaconCaptainsQuarters
entities:
- uid: 15423
@@ -63666,13 +63610,6 @@ entities:
- type: Transform
pos: 5.5,-28.5
parent: 60
-- proto: DefaultStationBeaconHOSRoom
- entities:
- - uid: 23108
- components:
- - type: Transform
- pos: -21.5,-0.5
- parent: 60
- proto: DefaultStationBeaconJanitorsCloset
entities:
- uid: 22485
@@ -63764,6 +63701,13 @@ entities:
- type: Transform
pos: 50.5,1.5
parent: 60
+- proto: DefaultStationBeaconSecurity
+ entities:
+ - uid: 21496
+ components:
+ - type: Transform
+ pos: -27.5,-19.5
+ parent: 60
- proto: DefaultStationBeaconServerRoom
entities:
- uid: 24418
@@ -63851,10 +63795,10 @@ entities:
parent: 60
- proto: DefaultStationBeaconWardensOffice
entities:
- - uid: 24426
+ - uid: 8458
components:
- type: Transform
- pos: -26.5,-8.5
+ pos: -27.5,-11.5
parent: 60
- proto: DefibrillatorCabinetFilled
entities:
@@ -63879,11 +63823,10 @@ entities:
rot: 1.5707963267948966 rad
pos: 37.5,-14.5
parent: 60
- - uid: 19450
+ - uid: 19514
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-3.5
+ pos: -19.5,-12.5
parent: 60
- uid: 21264
components:
@@ -63892,18 +63835,28 @@ entities:
parent: 60
- proto: DeployableBarrier
entities:
- - uid: 6044
+ - uid: 8606
components:
- type: Transform
- pos: -23.5,-7.5
+ pos: -34.5,-13.5
parent: 60
- - uid: 10681
+ - uid: 8722
components:
- type: Transform
- pos: -23.5,-6.5
+ pos: -33.5,-13.5
+ parent: 60
+ - uid: 21733
+ components:
+ - type: Transform
+ pos: -32.5,-13.5
parent: 60
- proto: DeskBell
entities:
+ - uid: 8279
+ components:
+ - type: Transform
+ pos: 4.6358204,12.572609
+ parent: 60
- uid: 19741
components:
- type: Transform
@@ -63920,11 +63873,6 @@ entities:
- type: Physics
canCollide: False
bodyType: Static
- - uid: 24779
- components:
- - type: Transform
- pos: -19.317991,-17.371677
- parent: 60
- proto: DiceBag
entities:
- uid: 14192
@@ -64226,22 +64174,11 @@ entities:
rot: 3.141592653589793 rad
pos: 28.5,-24.5
parent: 60
- - uid: 8273
+ - uid: 8450
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -26.5,-5.5
- parent: 60
- - uid: 8710
- components:
- - type: Transform
- pos: -18.5,-19.5
- parent: 60
- - uid: 8947
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-19.5
+ pos: -33.5,-16.5
parent: 60
- uid: 9343
components:
@@ -64271,6 +64208,12 @@ entities:
rot: 3.141592653589793 rad
pos: -48.5,-5.5
parent: 60
+ - uid: 11365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-19.5
+ parent: 60
- uid: 13092
components:
- type: Transform
@@ -64288,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
@@ -64521,6 +64459,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 33.5,-23.5
parent: 60
+ - uid: 2714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -39.5,-5.5
+ parent: 60
- uid: 3048
components:
- type: Transform
@@ -64554,11 +64498,6 @@ entities:
- type: Transform
pos: 16.5,11.5
parent: 60
- - uid: 9147
- components:
- - type: Transform
- pos: -37.5,-19.5
- parent: 60
- uid: 9392
components:
- type: Transform
@@ -64607,11 +64546,6 @@ entities:
- type: Transform
pos: 16.5,9.5
parent: 60
- - uid: 979
- components:
- - type: Transform
- pos: -15.5,-9.5
- parent: 60
- uid: 1208
components:
- type: Transform
@@ -64634,6 +64568,11 @@ entities:
- type: Transform
pos: 0.5,-23.5
parent: 60
+ - uid: 2115
+ components:
+ - type: Transform
+ pos: -37.5,-19.5
+ parent: 60
- uid: 2192
components:
- type: Transform
@@ -64652,6 +64591,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 37.5,-22.5
parent: 60
+ - uid: 3187
+ components:
+ - type: Transform
+ pos: -15.5,-1.5
+ parent: 60
- uid: 4767
components:
- type: Transform
@@ -64664,11 +64608,6 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,-44.5
parent: 60
- - uid: 6091
- components:
- - type: Transform
- pos: -37.5,1.5
- parent: 60
- uid: 6602
components:
- type: Transform
@@ -64685,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
@@ -64726,12 +64660,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 37.5,8.5
parent: 60
- - uid: 23938
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-19.5
- parent: 60
- proto: DisposalPipe
entities:
- uid: 5
@@ -65274,11 +65202,6 @@ entities:
- type: Transform
pos: -15.5,-3.5
parent: 60
- - uid: 986
- components:
- - type: Transform
- pos: -15.5,-1.5
- parent: 60
- uid: 987
components:
- type: Transform
@@ -65581,12 +65504,6 @@ entities:
- type: Transform
pos: -37.5,-22.5
parent: 60
- - uid: 1637
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-19.5
- parent: 60
- uid: 1649
components:
- type: Transform
@@ -65610,12 +65527,6 @@ entities:
- type: Transform
pos: -37.5,-21.5
parent: 60
- - uid: 1708
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-19.5
- parent: 60
- uid: 1709
components:
- type: Transform
@@ -65664,18 +65575,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 31.5,24.5
parent: 60
- - uid: 1919
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-5.5
- parent: 60
- - uid: 1922
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-19.5
- parent: 60
- uid: 1950
components:
- type: Transform
@@ -65728,6 +65627,18 @@ entities:
- type: Transform
pos: 0.5,-21.5
parent: 60
+ - uid: 2118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-1.5
+ parent: 60
+ - uid: 2119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,1.5
+ parent: 60
- uid: 2188
components:
- type: Transform
@@ -66137,12 +66048,30 @@ entities:
rot: 3.141592653589793 rad
pos: -38.5,9.5
parent: 60
+ - uid: 3156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,-6.5
+ parent: 60
+ - uid: 3493
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-19.5
+ parent: 60
- uid: 3542
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 45.5,-32.5
parent: 60
+ - uid: 3590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-18.5
+ parent: 60
- uid: 3880
components:
- type: Transform
@@ -66866,35 +66795,30 @@ entities:
rot: 1.5707963267948966 rad
pos: -0.5,-44.5
parent: 60
- - uid: 8229
- components:
- - type: Transform
- pos: -26.5,-6.5
- parent: 60
- - uid: 8251
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-19.5
- parent: 60
- - uid: 8252
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-19.5
- parent: 60
- - uid: 8253
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-19.5
- parent: 60
- uid: 8379
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 20.5,24.5
parent: 60
+ - uid: 8421
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-19.5
+ parent: 60
+ - uid: 8451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-16.5
+ parent: 60
+ - uid: 8464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-16.5
+ parent: 60
- uid: 8536
components:
- type: Transform
@@ -66925,58 +66849,18 @@ entities:
- type: Transform
pos: 16.5,23.5
parent: 60
- - uid: 8891
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-19.5
- parent: 60
- uid: 8897
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 23.5,24.5
parent: 60
- - uid: 8908
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-19.5
- parent: 60
- - uid: 8941
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-19.5
- parent: 60
- - uid: 8942
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-19.5
- parent: 60
- - uid: 8943
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-19.5
- parent: 60
- - uid: 8944
- components:
- - type: Transform
- pos: -18.5,-20.5
- parent: 60
- uid: 8971
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -12.5,-23.5
parent: 60
- - uid: 9048
- components:
- - type: Transform
- pos: -18.5,-21.5
- parent: 60
- uid: 9050
components:
- type: Transform
@@ -67046,12 +66930,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -38.5,-5.5
parent: 60
- - uid: 9397
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-5.5
- parent: 60
- uid: 9398
components:
- type: Transform
@@ -67099,6 +66977,17 @@ entities:
- type: Transform
pos: -55.5,6.5
parent: 60
+ - uid: 11364
+ components:
+ - type: Transform
+ pos: -15.5,-9.5
+ parent: 60
+ - uid: 11370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-19.5
+ parent: 60
- uid: 11881
components:
- type: Transform
@@ -67331,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
@@ -67392,17 +67275,11 @@ entities:
- type: Transform
pos: -15.5,23.5
parent: 60
- - uid: 14434
+ - uid: 14178
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,16.5
- parent: 60
- - uid: 14435
- 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:
@@ -67866,6 +67743,12 @@ entities:
- type: Transform
pos: -24.5,-24.5
parent: 60
+ - uid: 21509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-17.5
+ parent: 60
- uid: 21689
components:
- type: Transform
@@ -67997,66 +67880,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -93.5,17.5
parent: 60
- - uid: 23926
- components:
- - type: Transform
- pos: -26.5,-7.5
- parent: 60
- - uid: 23927
- components:
- - type: Transform
- pos: -26.5,-8.5
- parent: 60
- - uid: 23928
- components:
- - type: Transform
- pos: -26.5,-9.5
- parent: 60
- - uid: 23929
- components:
- - type: Transform
- pos: -26.5,-10.5
- parent: 60
- - uid: 23930
- components:
- - type: Transform
- pos: -26.5,-11.5
- parent: 60
- - uid: 23931
- components:
- - type: Transform
- pos: -26.5,-12.5
- parent: 60
- - uid: 23932
- components:
- - type: Transform
- pos: -26.5,-13.5
- parent: 60
- - uid: 23933
- components:
- - type: Transform
- pos: -26.5,-14.5
- parent: 60
- - uid: 23934
- components:
- - type: Transform
- pos: -26.5,-15.5
- parent: 60
- - uid: 23935
- components:
- - type: Transform
- pos: -26.5,-16.5
- parent: 60
- - uid: 23936
- components:
- - type: Transform
- pos: -26.5,-17.5
- parent: 60
- - uid: 23937
- components:
- - type: Transform
- pos: -26.5,-18.5
- parent: 60
- uid: 24082
components:
- type: Transform
@@ -68337,6 +68160,12 @@ entities:
rot: 3.141592653589793 rad
pos: 33.5,22.5
parent: 60
+ - uid: 2121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-1.5
+ parent: 60
- uid: 2271
components:
- type: Transform
@@ -68376,6 +68205,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 45.5,-26.5
parent: 60
+ - uid: 3199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,-7.5
+ parent: 60
- uid: 3793
components:
- type: Transform
@@ -68388,12 +68223,6 @@ entities:
rot: 3.141592653589793 rad
pos: -14.5,-43.5
parent: 60
- - uid: 4337
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-19.5
- parent: 60
- uid: 4514
components:
- type: Transform
@@ -68423,12 +68252,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,-0.5
parent: 60
- - uid: 6094
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,1.5
- parent: 60
- uid: 6327
components:
- type: Transform
@@ -68446,39 +68269,28 @@ entities:
rot: 1.5707963267948966 rad
pos: -4.5,17.5
parent: 60
- - uid: 7906
- components:
- - type: Transform
- pos: -30.5,-18.5
- parent: 60
- uid: 7959
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -1.5,-44.5
parent: 60
- - uid: 8709
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-5.5
- parent: 60
- uid: 9414
components:
- type: Transform
pos: -56.5,14.5
parent: 60
+ - uid: 11367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-16.5
+ parent: 60
- uid: 13756
components:
- type: Transform
pos: 7.5,10.5
parent: 60
- - uid: 13983
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-9.5
- parent: 60
- uid: 14067
components:
- type: Transform
@@ -68490,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
@@ -68547,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
@@ -68611,10 +68417,10 @@ entities:
- type: Transform
pos: 19.5,-20.5
parent: 60
- - uid: 77
+ - uid: 144
components:
- type: Transform
- pos: -30.5,-18.5
+ pos: -30.5,-16.5
parent: 60
- uid: 659
components:
@@ -68681,11 +68487,6 @@ entities:
- type: Transform
pos: 50.5,-31.5
parent: 60
- - uid: 4338
- components:
- - type: Transform
- pos: -39.5,-19.5
- parent: 60
- uid: 4826
components:
- type: Transform
@@ -68701,11 +68502,6 @@ entities:
- type: Transform
pos: 45.5,-8.5
parent: 60
- - uid: 5800
- components:
- - type: Transform
- pos: -24.5,-5.5
- parent: 60
- uid: 6328
components:
- type: Transform
@@ -68736,6 +68532,11 @@ entities:
- type: Transform
pos: -1.5,-44.5
parent: 60
+ - uid: 8679
+ components:
+ - type: Transform
+ pos: -39.5,-7.5
+ parent: 60
- uid: 9037
components:
- type: Transform
@@ -68751,16 +68552,16 @@ entities:
- type: Transform
pos: -43.5,-3.5
parent: 60
- - uid: 9550
- components:
- - type: Transform
- pos: -36.5,1.5
- parent: 60
- uid: 9568
components:
- type: Transform
pos: -56.5,14.5
parent: 60
+ - uid: 11363
+ components:
+ - type: Transform
+ pos: -13.5,-1.5
+ parent: 60
- uid: 11474
components:
- type: Transform
@@ -68771,21 +68572,6 @@ entities:
- type: Transform
pos: 7.5,10.5
parent: 60
- - uid: 13975
- components:
- - type: Transform
- pos: -14.5,-9.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
@@ -68831,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
@@ -68886,11 +68677,6 @@ entities:
parent: 60
- proto: DogBed
entities:
- - uid: 1201
- components:
- - type: Transform
- pos: -27.5,-9.5
- parent: 60
- uid: 2036
components:
- type: MetaData
@@ -68913,6 +68699,11 @@ entities:
- type: Transform
pos: 6.5,-29.5
parent: 60
+ - uid: 7920
+ components:
+ - type: Transform
+ pos: -25.5,-11.5
+ parent: 60
- uid: 11557
components:
- type: Transform
@@ -68928,6 +68719,11 @@ entities:
parent: 60
- proto: DonkpocketBoxSpawner
entities:
+ - uid: 628
+ components:
+ - type: Transform
+ pos: -24.5,-14.5
+ parent: 60
- uid: 3137
components:
- type: Transform
@@ -69054,10 +68850,10 @@ entities:
parent: 60
- proto: DresserHeadOfSecurityFilled
entities:
- - uid: 15403
+ - uid: 1696
components:
- type: Transform
- pos: -19.5,-0.5
+ pos: -18.5,-3.5
parent: 60
- proto: DresserQuarterMasterFilled
entities:
@@ -69096,6 +68892,16 @@ entities:
parent: 60
- proto: DrinkGlass
entities:
+ - uid: 3722
+ components:
+ - type: Transform
+ pos: -13.197583,-50.45657
+ parent: 60
+ - uid: 3737
+ components:
+ - type: Transform
+ pos: -13.135083,-50.284695
+ parent: 60
- uid: 23627
components:
- type: Transform
@@ -69127,13 +68933,6 @@ entities:
parent: 60
- type: Tag
tags: []
-- proto: DrinkMugBlack
- entities:
- - uid: 4551
- components:
- - type: Transform
- pos: -34.42806,-0.22675279
- parent: 60
- proto: DrinkMugDog
entities:
- uid: 14993
@@ -69143,10 +68942,10 @@ entities:
parent: 60
- proto: DrinkMugMetal
entities:
- - uid: 1624
+ - uid: 1915
components:
- type: Transform
- pos: -34.349934,-0.4142528
+ pos: -26.325293,-20.46791
parent: 60
- uid: 16127
components:
@@ -69169,27 +68968,17 @@ entities:
parent: 60
- proto: DrinkMugRed
entities:
- - uid: 18826
+ - uid: 9546
components:
- type: Transform
- pos: -34.58431,-0.4611278
+ pos: -26.590918,-20.34291
parent: 60
-- proto: DrinkSakeGlass
+- proto: DrinkSakeBottleFull
entities:
- - uid: 4281
+ - uid: 3742
components:
- type: Transform
- pos: -13.1094885,-50.43419
- parent: 60
- - uid: 4282
- components:
- - type: Transform
- pos: -13.1094885,-50.37169
- parent: 60
- - uid: 4545
- components:
- - type: Transform
- pos: -13.1094885,-50.49669
+ pos: -13.744458,-50.23782
parent: 60
- proto: DrinkShaker
entities:
@@ -69208,13 +68997,6 @@ entities:
- type: Transform
pos: -62.596844,46.56719
parent: 60
-- proto: DrinkShinyFlask
- entities:
- - uid: 12189
- components:
- - type: Transform
- pos: -25.703217,-11.4913645
- parent: 60
- proto: DrinkShotGlass
entities:
- uid: 6388
@@ -69297,21 +69079,6 @@ entities:
- type: Transform
pos: -7.5137773,-11.361463
parent: 60
- - uid: 14454
- components:
- - type: Transform
- pos: -27.223204,-13.440722
- parent: 60
- - uid: 14618
- components:
- - type: Transform
- pos: -27.098204,-13.175097
- parent: 60
- - uid: 14625
- components:
- - type: Transform
- pos: -27.035704,-13.425097
- parent: 60
- uid: 16380
components:
- type: Transform
@@ -69431,24 +69198,6 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
- - uid: 5234
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-5.5
- parent: 60
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 5235
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-16.5
- parent: 60
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- uid: 6186
components:
- type: Transform
@@ -69552,23 +69301,6 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
- - uid: 21380
- components:
- - type: Transform
- pos: -26.5,2.5
- parent: 60
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 21381
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-14.5
- parent: 60
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- uid: 21382
components:
- type: Transform
@@ -69639,15 +69371,6 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
- - uid: 21392
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,3.5
- parent: 60
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- uid: 25126
components:
- type: Transform
@@ -69667,10 +69390,10 @@ entities:
parent: 60
- proto: EmergencyMedipen
entities:
- - uid: 3505
+ - uid: 17955
components:
- type: Transform
- pos: -19.478468,-2.5346627
+ pos: -18.983906,-13.563609
parent: 60
- proto: EmergencyOxygenTankFilled
entities:
@@ -69735,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
@@ -69837,6 +69550,26 @@ entities:
parent: 60
- proto: ExtinguisherCabinetFilled
entities:
+ - uid: 158
+ components:
+ - type: Transform
+ pos: -34.5,10.5
+ parent: 60
+ - uid: 176
+ components:
+ - type: Transform
+ pos: -17.5,16.5
+ parent: 60
+ - uid: 1979
+ components:
+ - type: Transform
+ pos: -35.5,-14.5
+ parent: 60
+ - uid: 2005
+ components:
+ - type: Transform
+ pos: -17.5,-15.5
+ parent: 60
- uid: 3153
components:
- type: Transform
@@ -69898,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
@@ -69928,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
@@ -69963,21 +69696,6 @@ entities:
- type: Transform
pos: -52.5,8.5
parent: 60
- - uid: 21722
- components:
- - type: Transform
- pos: -35.5,1.5
- parent: 60
- - uid: 21723
- components:
- - type: Transform
- pos: -35.5,-16.5
- parent: 60
- - uid: 21726
- components:
- - type: Transform
- pos: -18.5,-0.5
- parent: 60
- uid: 21727
components:
- type: Transform
@@ -70023,6 +69741,16 @@ entities:
- type: Transform
pos: 36.5,-32.5
parent: 60
+ - uid: 21768
+ components:
+ - type: Transform
+ pos: -12.5,-25.5
+ parent: 60
+ - uid: 21769
+ components:
+ - type: Transform
+ pos: -35.5,1.5
+ parent: 60
- uid: 23077
components:
- type: Transform
@@ -70047,6 +69775,13 @@ entities:
parent: 60
- proto: FaxMachineBase
entities:
+ - uid: 1578
+ components:
+ - type: Transform
+ pos: -26.5,-6.5
+ parent: 60
+ - type: FaxMachine
+ name: Security
- uid: 4256
components:
- type: Transform
@@ -70061,6 +69796,13 @@ entities:
parent: 60
- type: FaxMachine
name: HoP Office
+ - uid: 6890
+ components:
+ - type: Transform
+ pos: -20.5,-0.5
+ parent: 60
+ - type: FaxMachine
+ name: HoS Office
- uid: 7919
components:
- type: Transform
@@ -70124,13 +69866,6 @@ entities:
parent: 60
- type: FaxMachine
name: Library
- - uid: 24176
- components:
- - type: Transform
- pos: -26.5,-13.5
- parent: 60
- - type: FaxMachine
- name: Security Fax
- proto: FaxMachineCaptain
entities:
- uid: 15836
@@ -70147,13 +69882,13 @@ 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
+ components:
+ - type: Transform
+ pos: -45.5,-15.5
+ parent: 60
- uid: 4172
components:
- type: Transform
@@ -70205,6 +69940,110 @@ entities:
parent: 60
- proto: FireAlarm
entities:
+ - uid: 63
+ components:
+ - type: Transform
+ pos: -24.5,-21.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 21505
+ - 17493
+ - 15846
+ - 2585
+ - 9052
+ - 22
+ - 1491
+ - 670
+ - 672
+ - 671
+ - uid: 177
+ components:
+ - type: Transform
+ pos: -23.5,-2.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 1975
+ - 2002
+ - 1993
+ - 182
+ - 180
+ - 210
+ - 1972
+ - 1982
+ - 1967
+ - uid: 230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-13.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 180
+ - 182
+ - 1969
+ - 1985
+ - uid: 1962
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,5.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 8574
+ - 1644
+ - 1643
+ - 1645
+ - uid: 1970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-13.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 232
+ - 184
+ - 1976
+ - 1972
+ - 210
+ - uid: 4190
+ components:
+ - type: Transform
+ pos: -12.5,-21.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 21505
+ - 17493
+ - 15846
+ - 2585
+ - 9052
+ - 22
+ - 1491
+ - 670
+ - 672
+ - 671
+ - uid: 4191
+ components:
+ - type: Transform
+ pos: -6.5,-21.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 21505
+ - 17493
+ - 15846
+ - 2585
+ - 9052
+ - 22
+ - 1491
+ - 670
+ - 672
+ - 671
- uid: 4511
components:
- type: Transform
@@ -70224,6 +70063,54 @@ entities:
- 21015
- 21023
- 21022
+ - uid: 4545
+ components:
+ - type: Transform
+ pos: -12.5,10.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 4338
+ - 4337
+ - 4361
+ - 1643
+ - 1644
+ - 8574
+ - 8986
+ - 8521
+ - 9054
+ - 21513
+ - uid: 4627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-16.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 780
+ - 7721
+ - 1017
+ - 8168
+ - 5623
+ - 9468
+ - 21614
+ - 6098
+ - 6097
+ - 5940
+ - 21615
+ - uid: 4710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-17.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 122
+ - 9052
+ - 22
+ - 1491
- uid: 4831
components:
- type: Transform
@@ -70310,13 +70197,17 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 780
- - 7721
+ - 8168
- 1017
+ - 7721
+ - 780
- 21614
- - 491
- - 8774
- - 8957
+ - 9468
+ - 5623
+ - 6098
+ - 6097
+ - 5940
+ - 21615
- uid: 12733
components:
- type: Transform
@@ -70327,21 +70218,6 @@ entities:
devices:
- 12571
- 12594
- - uid: 18592
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-8.5
- parent: 60
- - type: DeviceList
- devices:
- - 18859
- - 18858
- - 18857
- - 21511
- - 11338
- - 11339
- - 11340
- uid: 21484
components:
- type: Transform
@@ -70353,9 +70229,6 @@ entities:
- 458
- 459
- 460
- - 18464
- - 18463
- - 18462
- 21485
- uid: 21487
components:
@@ -70367,9 +70240,6 @@ entities:
devices:
- 18609
- 21486
- - 18464
- - 18463
- - 18462
- uid: 21490
components:
- type: Transform
@@ -70390,20 +70260,6 @@ entities:
devices:
- 18609
- 21494
- - uid: 21497
- components:
- - type: Transform
- pos: -10.5,-21.5
- parent: 60
- - type: DeviceList
- devices:
- - 671
- - 672
- - 670
- - 21495
- - 6147
- - 6173
- - 6156
- uid: 21498
components:
- type: Transform
@@ -70421,29 +70277,6 @@ entities:
- 9184
- 9237
- 6626
- - uid: 21503
- components:
- - type: Transform
- pos: -22.5,-21.5
- parent: 60
- - type: DeviceList
- devices:
- - 11340
- - 11339
- - 11338
- - 158
- - 836
- - 121
- - 63
- - 81
- - 112
- - 2585
- - 15846
- - 17493
- - 21505
- - 6147
- - 6173
- - 6156
- uid: 21506
components:
- type: Transform
@@ -70451,13 +70284,13 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 21508
- - 5940
- - 6097
- 6098
- - 15846
+ - 6097
+ - 5940
- 2585
+ - 15846
- 17493
+ - 21508
- uid: 21514
components:
- type: Transform
@@ -70465,14 +70298,8 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 6367
- - 6174
- - 6542
- 21512
- 21513
- - 9283
- - 9465
- - 9488
- 4127
- 13243
- uid: 21536
@@ -70502,9 +70329,6 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 13148
- - 13149
- - 13150
- 13107
- 13106
- 13153
@@ -70519,9 +70343,6 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 13148
- - 13149
- - 13150
- 21547
- 19862
- 19861
@@ -70650,15 +70471,16 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 8957
- - 8774
- - 491
+ - 5940
+ - 6097
+ - 6098
+ - 21614
- 9468
- 5623
- 8168
- - 6098
- - 6097
- - 5940
+ - 1017
+ - 7721
+ - 780
- 21615
- uid: 21617
components:
@@ -70712,9 +70534,9 @@ entities:
- 7721
- 780
- 21633
- - 9058
- - 6830
- - 6560
+ - 4338
+ - 4337
+ - 4361
- uid: 21637
components:
- type: Transform
@@ -70748,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
@@ -70830,21 +70646,6 @@ entities:
- 16558
- 21678
- 21713
- - uid: 21736
- components:
- - type: Transform
- pos: -19.5,-14.5
- parent: 60
- - type: DeviceList
- devices:
- - 13098
- - 21734
- - 5562
- - 5565
- - 5563
- - 8466
- - 6734
- - 7139
- uid: 23384
components:
- type: Transform
@@ -70887,19 +70688,6 @@ entities:
- 23765
- 23766
- 21643
- - uid: 24148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-6.5
- parent: 60
- - type: DeviceList
- devices:
- - 5562
- - 5565
- - 5563
- - 8466
- - 21733
- uid: 25156
components:
- type: Transform
@@ -71006,48 +70794,33 @@ entities:
parent: 60
- proto: FirelockEdge
entities:
- - uid: 63
+ - uid: 22
components:
- type: Transform
- pos: -18.5,-21.5
+ pos: -15.5,-20.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21503
- - uid: 81
+ - 4191
+ - 4710
+ - 4190
+ - 63
+ - uid: 184
components:
- type: Transform
- pos: -19.5,-21.5
+ pos: -18.5,-16.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21503
- - uid: 112
+ - 1970
+ - uid: 232
components:
- type: Transform
- pos: -20.5,-21.5
+ pos: -20.5,-16.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21503
- - uid: 121
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-20.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21503
- - uid: 158
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-18.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21503
+ - 1970
- uid: 458
components:
- type: Transform
@@ -71063,15 +70836,6 @@ entities:
- type: Transform
pos: -0.5,-20.5
parent: 60
- - uid: 836
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-19.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21503
- uid: 1280
components:
- type: Transform
@@ -71080,6 +70844,37 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21553
+ - uid: 1491
+ components:
+ - type: Transform
+ pos: -14.5,-20.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 4191
+ - 4710
+ - 4190
+ - 63
+ - uid: 1643
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,5.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 4545
+ - 1962
+ - uid: 1644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.5,5.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 4545
+ - 1962
- uid: 1698
components:
- type: Transform
@@ -71096,6 +70891,50 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21553
+ - uid: 1967
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-5.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 177
+ - uid: 1969
+ components:
+ - type: Transform
+ pos: -33.5,-16.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 230
+ - uid: 1982
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-9.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 177
+ - uid: 1993
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-9.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 177
+ - uid: 2002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-5.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 177
- uid: 2455
components:
- type: Transform
@@ -71128,24 +70967,6 @@ entities:
- type: Transform
pos: 1.5,-42.5
parent: 60
- - uid: 4009
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-42.5
- parent: 60
- - uid: 4010
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-41.5
- parent: 60
- - uid: 4011
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-40.5
- parent: 60
- uid: 4501
components:
- type: Transform
@@ -71222,6 +71043,17 @@ entities:
- type: DeviceNetwork
deviceLists:
- 23767
+ - 4545
+ - uid: 8574
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,5.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 4545
+ - 1962
- uid: 8986
components:
- type: Transform
@@ -71230,6 +71062,18 @@ entities:
- type: DeviceNetwork
deviceLists:
- 23767
+ - 4545
+ - uid: 9052
+ components:
+ - type: Transform
+ pos: -16.5,-20.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 4191
+ - 4710
+ - 4190
+ - 63
- uid: 9054
components:
- type: Transform
@@ -71238,6 +71082,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 23767
+ - 4545
- uid: 9095
components:
- type: Transform
@@ -71256,18 +71101,6 @@ entities:
rot: 3.141592653589793 rad
pos: -0.5,-27.5
parent: 60
- - uid: 11510
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,27.5
- parent: 60
- - uid: 11551
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,27.5
- parent: 60
- uid: 11698
components:
- type: Transform
@@ -71568,11 +71401,33 @@ entities:
parent: 60
- proto: FirelockGlass
entities:
- - uid: 491
+ - uid: 180
components:
- type: Transform
- pos: -36.5,5.5
+ pos: -30.5,-12.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 230
+ - 177
+ - uid: 182
+ components:
+ - type: Transform
+ pos: -31.5,-12.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 230
+ - 177
+ - uid: 210
+ components:
+ - type: Transform
+ pos: -22.5,-12.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1970
+ - 177
- uid: 670
components:
- type: Transform
@@ -71580,7 +71435,9 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21497
+ - 4191
+ - 4190
+ - 63
- uid: 671
components:
- type: Transform
@@ -71588,7 +71445,9 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21497
+ - 4191
+ - 4190
+ - 63
- uid: 672
components:
- type: Transform
@@ -71596,7 +71455,9 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21497
+ - 4191
+ - 4190
+ - 63
- uid: 673
components:
- type: Transform
@@ -71629,6 +71490,9 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21635
+ - 21613
+ - 11347
+ - 4627
- uid: 1017
components:
- type: Transform
@@ -71637,6 +71501,9 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21635
+ - 21613
+ - 11347
+ - 4627
- uid: 1191
components:
- type: Transform
@@ -71650,30 +71517,15 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21558
- - uid: 1559
+ - uid: 1972
components:
- type: Transform
- pos: -22.5,-20.5
+ pos: -21.5,-12.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 2103
- - uid: 1633
- components:
- - type: Transform
- pos: -22.5,-18.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 2103
- - uid: 1636
- components:
- - type: Transform
- pos: -22.5,-19.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 2103
+ - 1970
+ - 177
- uid: 2044
components:
- type: Transform
@@ -71696,7 +71548,10 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21503
+ - 4191
+ - 21506
+ - 4190
+ - 63
- uid: 2680
components:
- type: Transform
@@ -71790,6 +71645,33 @@ entities:
- type: Transform
pos: -50.5,-23.5
parent: 60
+ - uid: 4337
+ components:
+ - type: Transform
+ pos: -17.5,8.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21635
+ - 4545
+ - uid: 4338
+ components:
+ - type: Transform
+ pos: -17.5,7.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21635
+ - 4545
+ - uid: 4361
+ components:
+ - type: Transform
+ pos: -17.5,9.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21635
+ - 4545
- uid: 4369
components:
- type: Transform
@@ -71914,38 +71796,16 @@ entities:
- type: Transform
pos: 45.5,-38.5
parent: 60
- - uid: 5562
- components:
- - type: Transform
- pos: -30.5,-8.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21736
- - 249
- - uid: 5563
- components:
- - type: Transform
- pos: -22.5,-8.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21736
- - 249
- - uid: 5565
- components:
- - type: Transform
- pos: -31.5,-8.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21736
- - 249
- uid: 5623
components:
- type: Transform
pos: -39.5,-0.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21613
+ - 11347
+ - 4627
- uid: 5684
components:
- type: Transform
@@ -71966,64 +71826,39 @@ entities:
- type: Transform
pos: -36.5,-17.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21506
+ - 21613
+ - 11347
+ - 4627
- uid: 6097
components:
- type: Transform
pos: -37.5,-17.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21506
+ - 21613
+ - 11347
+ - 4627
- uid: 6098
components:
- type: Transform
pos: -38.5,-17.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21506
+ - 21613
+ - 11347
+ - 4627
- uid: 6133
components:
- type: Transform
pos: 15.5,6.5
parent: 60
- - uid: 6147
- components:
- - type: Transform
- pos: -13.5,-22.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21497
- - 21503
- - uid: 6156
- components:
- - type: Transform
- pos: -13.5,-24.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21497
- - 21503
- - uid: 6173
- components:
- - type: Transform
- pos: -13.5,-23.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21497
- - 21503
- - uid: 6174
- components:
- - type: Transform
- pos: 14.5,8.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21514
- - uid: 6367
- components:
- - type: Transform
- pos: 14.5,9.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21514
- uid: 6489
components:
- type: Transform
@@ -72034,22 +71869,6 @@ entities:
- type: Transform
pos: 20.5,-21.5
parent: 60
- - uid: 6542
- components:
- - type: Transform
- pos: 14.5,7.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21514
- - uid: 6560
- components:
- - type: Transform
- pos: -17.5,7.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21635
- uid: 6561
components:
- type: Transform
@@ -72074,14 +71893,6 @@ entities:
- type: Transform
pos: -40.5,25.5
parent: 60
- - uid: 6734
- components:
- - type: Transform
- pos: -23.5,-9.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21736
- uid: 6736
components:
- type: Transform
@@ -72092,14 +71903,6 @@ entities:
- type: Transform
pos: -40.5,24.5
parent: 60
- - uid: 6830
- components:
- - type: Transform
- pos: -17.5,8.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21635
- uid: 6854
components:
- type: Transform
@@ -72115,14 +71918,6 @@ entities:
- type: Transform
pos: -61.5,10.5
parent: 60
- - uid: 7139
- components:
- - type: Transform
- pos: -19.5,-17.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21736
- uid: 7146
components:
- type: Transform
@@ -72169,20 +71964,19 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21635
+ - 21613
+ - 11347
+ - 4627
- uid: 8168
components:
- type: Transform
pos: -39.5,-1.5
parent: 60
- - uid: 8466
- components:
- - type: Transform
- pos: -21.5,-8.5
- parent: 60
- type: DeviceNetwork
deviceLists:
- - 21736
- - 249
+ - 21613
+ - 11347
+ - 4627
- uid: 8611
components:
- type: Transform
@@ -72207,11 +72001,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21553
- - uid: 8774
- components:
- - type: Transform
- pos: -37.5,5.5
- parent: 60
- uid: 8778
components:
- type: Transform
@@ -72222,24 +72011,11 @@ entities:
- type: Transform
pos: 39.5,-38.5
parent: 60
- - uid: 8957
- components:
- - type: Transform
- pos: -38.5,5.5
- parent: 60
- uid: 8961
components:
- type: Transform
pos: 44.5,-15.5
parent: 60
- - uid: 9058
- components:
- - type: Transform
- pos: -17.5,9.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21635
- uid: 9184
components:
- type: Transform
@@ -72258,14 +72034,6 @@ entities:
deviceLists:
- 21558
- 21498
- - uid: 9283
- components:
- - type: Transform
- pos: -13.5,9.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21514
- uid: 9409
components:
- type: Transform
@@ -72289,27 +72057,16 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21630
- - uid: 9465
- components:
- - type: Transform
- pos: -13.5,8.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21514
- uid: 9468
components:
- type: Transform
pos: -39.5,0.5
parent: 60
- - uid: 9488
- components:
- - type: Transform
- pos: -13.5,7.5
- parent: 60
- type: DeviceNetwork
deviceLists:
- - 21514
+ - 21613
+ - 11347
+ - 4627
- uid: 9526
components:
- type: Transform
@@ -72325,40 +72082,11 @@ entities:
- type: Transform
pos: -49.5,1.5
parent: 60
- - uid: 10686
- components:
- - type: Transform
- pos: -16.5,6.5
- parent: 60
- uid: 11017
components:
- type: Transform
pos: 40.5,-41.5
parent: 60
- - uid: 11338
- components:
- - type: Transform
- pos: -16.5,-17.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21503
- - uid: 11339
- components:
- - type: Transform
- pos: -15.5,-17.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21503
- - uid: 11340
- components:
- - type: Transform
- pos: -14.5,-17.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21503
- uid: 11520
components:
- type: Transform
@@ -72389,14 +72117,6 @@ entities:
- type: Transform
pos: -50.5,-24.5
parent: 60
- - uid: 13098
- components:
- - type: Transform
- pos: -29.5,-9.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21736
- uid: 13106
components:
- type: Transform
@@ -72413,30 +72133,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21543
- - uid: 13148
- components:
- - type: Transform
- pos: 41.5,12.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21543
- - uid: 13149
- components:
- - type: Transform
- pos: 40.5,12.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21543
- - uid: 13150
- components:
- - type: Transform
- pos: 39.5,12.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21543
- uid: 13151
components:
- type: Transform
@@ -72477,16 +72173,6 @@ entities:
- type: Transform
pos: -15.5,26.5
parent: 60
- - uid: 13966
- components:
- - type: Transform
- pos: -14.5,6.5
- parent: 60
- - uid: 13967
- components:
- - type: Transform
- pos: -15.5,6.5
- parent: 60
- uid: 13979
components:
- type: Transform
@@ -72509,7 +72195,10 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21503
+ - 4191
+ - 21506
+ - 4190
+ - 63
- uid: 16007
components:
- type: Transform
@@ -72557,22 +72246,10 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21503
- - uid: 18462
- components:
- - type: Transform
- pos: 1.5,-12.5
- parent: 60
- - uid: 18463
- components:
- - type: Transform
- pos: 0.5,-12.5
- parent: 60
- - uid: 18464
- components:
- - type: Transform
- pos: -0.5,-12.5
- parent: 60
+ - 4191
+ - 21506
+ - 4190
+ - 63
- uid: 18608
components:
- type: Transform
@@ -72583,21 +72260,6 @@ entities:
- type: Transform
pos: 0.5,-1.5
parent: 60
- - uid: 18857
- components:
- - type: Transform
- pos: -14.5,-2.5
- parent: 60
- - uid: 18858
- components:
- - type: Transform
- pos: -15.5,-2.5
- parent: 60
- - uid: 18859
- components:
- - type: Transform
- pos: -16.5,-2.5
- parent: 60
- uid: 19088
components:
- type: Transform
@@ -72719,10 +72381,10 @@ entities:
- 25158
- proto: Fireplace
entities:
- - uid: 1532
+ - uid: 6065
components:
- type: Transform
- pos: -20.5,2.5
+ pos: -21.5,1.5
parent: 60
- uid: 7044
components:
@@ -72838,6 +72500,13 @@ entities:
- type: Transform
pos: -70.59139,20.353971
parent: 60
+- proto: FlashlightSeclite
+ entities:
+ - uid: 323
+ components:
+ - type: Transform
+ pos: -21.5,-20.5
+ parent: 60
- proto: FlippoLighter
entities:
- uid: 1352
@@ -73713,11 +73382,6 @@ entities:
parent: 60
- proto: FoodBoxDonkpocketPizza
entities:
- - uid: 177
- components:
- - type: Transform
- pos: -34.542274,1.9138722
- parent: 60
- uid: 15714
components:
- type: Transform
@@ -73725,10 +73389,10 @@ entities:
parent: 60
- proto: FoodBoxDonut
entities:
- - uid: 1930
+ - uid: 1737
components:
- type: Transform
- pos: -25.24082,-13.2937
+ pos: -25.411478,-6.2389956
parent: 60
- uid: 24664
components:
@@ -74116,7 +73780,7 @@ entities:
pos: 47.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#FF1212FF'
- proto: GasFilterFlipped
entities:
- uid: 23468
@@ -74323,7 +73987,7 @@ entities:
pos: 23.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- proto: GasPassiveVent
entities:
- uid: 2979
@@ -74547,7 +74211,7 @@ entities:
pos: 44.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 125
components:
- type: Transform
@@ -74563,7 +74227,7 @@ entities:
pos: 27.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 222
components:
- type: Transform
@@ -74571,7 +74235,7 @@ entities:
pos: 20.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 248
components:
- type: Transform
@@ -74579,21 +74243,44 @@ entities:
pos: -24.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 311
components:
- type: Transform
pos: 27.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 784
+ components:
+ - type: Transform
+ pos: -27.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 793
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 947
components:
- type: Transform
pos: 16.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 995
components:
- type: Transform
@@ -74601,14 +74288,14 @@ entities:
pos: 9.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1388
components:
- type: Transform
pos: 4.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1408
components:
- type: Transform
@@ -74616,7 +74303,7 @@ entities:
pos: 5.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1409
components:
- type: Transform
@@ -74624,45 +74311,23 @@ entities:
pos: 7.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1817
+ color: '#0335FCFF'
+ - uid: 1700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1776
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -29.5,-14.5
+ pos: -9.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1836
- components:
- - type: Transform
- pos: -30.5,-13.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1892
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-20.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1926
- components:
- - type: Transform
- pos: -29.5,-12.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1973
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-13.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2025
components:
- type: Transform
@@ -74670,7 +74335,22 @@ entities:
pos: -23.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 2113
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-20.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 2120
+ components:
+ - type: Transform
+ pos: -20.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 2203
components:
- type: Transform
@@ -74678,7 +74358,7 @@ entities:
pos: 15.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2207
components:
- type: Transform
@@ -74686,14 +74366,22 @@ entities:
pos: 32.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2274
components:
- type: Transform
pos: 34.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 2278
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 2366
components:
- type: Transform
@@ -74701,7 +74389,7 @@ entities:
pos: 30.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2443
components:
- type: Transform
@@ -74709,7 +74397,23 @@ entities:
pos: 16.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 2513
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 2569
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -22.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 2999
components:
- type: Transform
@@ -74755,7 +74459,7 @@ entities:
pos: 40.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3188
components:
- type: Transform
@@ -74763,14 +74467,6 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 3198
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-3.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 3211
components:
- type: Transform
@@ -74778,7 +74474,7 @@ entities:
pos: 49.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3960
components:
- type: Transform
@@ -74786,7 +74482,7 @@ entities:
pos: -13.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3961
components:
- type: Transform
@@ -74794,7 +74490,7 @@ entities:
pos: -13.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4739
components:
- type: Transform
@@ -74802,7 +74498,7 @@ entities:
pos: 43.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4911
components:
- type: Transform
@@ -74810,14 +74506,14 @@ entities:
pos: -2.5,-70.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4912
components:
- type: Transform
pos: -0.5,-70.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4913
components:
- type: Transform
@@ -74825,7 +74521,7 @@ entities:
pos: 3.5,-70.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4914
components:
- type: Transform
@@ -74833,7 +74529,7 @@ entities:
pos: -2.5,-63.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4935
components:
- type: Transform
@@ -74841,14 +74537,14 @@ entities:
pos: 1.5,-63.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4936
components:
- type: Transform
pos: 3.5,-63.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4961
components:
- type: Transform
@@ -74856,7 +74552,7 @@ entities:
pos: 43.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4985
components:
- type: Transform
@@ -74864,7 +74560,7 @@ entities:
pos: 1.5,-70.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4987
components:
- type: Transform
@@ -74872,7 +74568,7 @@ entities:
pos: -0.5,-63.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5474
components:
- type: Transform
@@ -74880,7 +74576,7 @@ entities:
pos: -38.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5550
components:
- type: Transform
@@ -74903,14 +74599,14 @@ entities:
pos: 8.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5695
components:
- type: Transform
pos: 8.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5699
components:
- type: Transform
@@ -74918,7 +74614,7 @@ entities:
pos: 5.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5700
components:
- type: Transform
@@ -74926,21 +74622,21 @@ entities:
pos: 6.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5701
components:
- type: Transform
pos: 6.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5702
components:
- type: Transform
pos: 5.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5703
components:
- type: Transform
@@ -74948,7 +74644,7 @@ entities:
pos: -7.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5706
components:
- type: Transform
@@ -74956,7 +74652,7 @@ entities:
pos: -7.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5709
components:
- type: Transform
@@ -74964,7 +74660,7 @@ entities:
pos: -4.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5710
components:
- type: Transform
@@ -74972,7 +74668,7 @@ entities:
pos: -4.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5711
components:
- type: Transform
@@ -74980,7 +74676,7 @@ entities:
pos: -5.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5712
components:
- type: Transform
@@ -74988,14 +74684,14 @@ entities:
pos: -5.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5819
components:
- type: Transform
pos: 19.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5902
components:
- type: Transform
@@ -75003,7 +74699,7 @@ entities:
pos: 15.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5950
components:
- type: Transform
@@ -75011,7 +74707,7 @@ entities:
pos: -54.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5967
components:
- type: Transform
@@ -75019,14 +74715,14 @@ entities:
pos: -55.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6046
components:
- type: Transform
pos: -44.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6047
components:
- type: Transform
@@ -75034,14 +74730,14 @@ entities:
pos: -49.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6062
components:
- type: Transform
pos: -43.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6112
components:
- type: Transform
@@ -75049,7 +74745,7 @@ entities:
pos: -43.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6135
components:
- type: Transform
@@ -75057,7 +74753,15 @@ entities:
pos: -44.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 6309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-1.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 6401
components:
- type: Transform
@@ -75065,37 +74769,22 @@ entities:
pos: -47.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6803
+ color: '#FF1212FF'
+ - uid: 6796
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 6823
components:
- type: Transform
pos: 17.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 7033
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-12.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 7285
- components:
- - type: Transform
- pos: -24.5,-18.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 7357
components:
- type: Transform
@@ -75115,53 +74804,104 @@ entities:
pos: 23.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8255
- components:
- - type: Transform
- pos: -37.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8258
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8579
+ color: '#FF1212FF'
+ - uid: 7907
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -30.5,-16.5
+ pos: -25.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8771
+ color: '#FF1212FF'
+ - uid: 8212
+ components:
+ - type: Transform
+ pos: -18.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8343
+ components:
+ - type: Transform
+ pos: -31.5,-1.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8386
+ components:
+ - type: Transform
+ pos: -12.5,3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8417
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -28.5,-18.5
+ pos: -45.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8948
+ color: '#0335FCFF'
+ - uid: 8472
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-0.5
+ pos: -46.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
+ - uid: 8475
+ components:
+ - type: Transform
+ pos: -43.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -43.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -46.5,-21.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 8919
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,2.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 8943
+ components:
+ - type: Transform
+ pos: -7.5,5.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 8944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,2.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 8970
components:
- type: Transform
pos: 21.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9019
components:
- type: Transform
@@ -75170,28 +74910,6 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 9030
- components:
- - type: Transform
- pos: -30.5,0.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9032
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,1.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 9157
- components:
- - type: Transform
- pos: -18.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 9638
components:
- type: Transform
@@ -75199,7 +74917,7 @@ entities:
pos: -54.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 11105
components:
- type: Transform
@@ -75214,7 +74932,7 @@ entities:
pos: -6.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11281
components:
- type: Transform
@@ -75228,7 +74946,7 @@ entities:
pos: 37.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11488
components:
- type: Transform
@@ -75236,7 +74954,7 @@ entities:
pos: 12.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11723
components:
- type: Transform
@@ -75244,7 +74962,7 @@ entities:
pos: 40.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11841
components:
- type: Transform
@@ -75252,7 +74970,7 @@ entities:
pos: 48.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12192
components:
- type: Transform
@@ -75260,7 +74978,7 @@ entities:
pos: 41.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12629
components:
- type: Transform
@@ -75268,7 +74986,7 @@ entities:
pos: 39.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12635
components:
- type: Transform
@@ -75276,7 +74994,7 @@ entities:
pos: 40.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12823
components:
- type: Transform
@@ -75284,7 +75002,7 @@ entities:
pos: -36.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12829
components:
- type: Transform
@@ -75292,7 +75010,7 @@ entities:
pos: -43.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12835
components:
- type: Transform
@@ -75300,7 +75018,7 @@ entities:
pos: -43.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13230
components:
- type: Transform
@@ -75323,7 +75041,7 @@ entities:
pos: 49.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13515
components:
- type: Transform
@@ -75331,7 +75049,7 @@ entities:
pos: 41.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13516
components:
- type: Transform
@@ -75339,7 +75057,7 @@ entities:
pos: 37.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13517
components:
- type: Transform
@@ -75347,7 +75065,7 @@ entities:
pos: 37.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13537
components:
- type: Transform
@@ -75355,7 +75073,7 @@ entities:
pos: 20.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13538
components:
- type: Transform
@@ -75363,7 +75081,7 @@ entities:
pos: 20.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13631
components:
- type: Transform
@@ -75371,30 +75089,30 @@ entities:
pos: -8.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14230
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,10.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14231
+ color: '#0335FCFF'
+ - uid: 14217
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -14.5,10.5
+ pos: -7.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ 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
pos: -14.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14297
components:
- type: Transform
@@ -75402,14 +75120,14 @@ entities:
pos: -7.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14311
components:
- type: Transform
pos: -8.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14666
components:
- type: Transform
@@ -75424,7 +75142,7 @@ entities:
pos: -12.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14668
components:
- type: Transform
@@ -75432,7 +75150,7 @@ entities:
pos: -20.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14674
components:
- type: Transform
@@ -75440,7 +75158,7 @@ entities:
pos: -20.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14698
components:
- type: Transform
@@ -75448,7 +75166,7 @@ entities:
pos: -12.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14702
components:
- type: Transform
@@ -75469,7 +75187,7 @@ entities:
pos: -20.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14842
components:
- type: Transform
@@ -75566,7 +75284,7 @@ entities:
pos: -33.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15181
components:
- type: Transform
@@ -75666,14 +75384,14 @@ entities:
pos: -22.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15594
components:
- type: Transform
pos: -10.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15612
components:
- type: Transform
@@ -75681,14 +75399,14 @@ entities:
pos: -20.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15613
components:
- type: Transform
pos: -12.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16611
components:
- type: Transform
@@ -75696,7 +75414,7 @@ entities:
pos: 1.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16641
components:
- type: Transform
@@ -75704,7 +75422,7 @@ entities:
pos: -3.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16741
components:
- type: Transform
@@ -75734,7 +75452,7 @@ entities:
pos: -47.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17290
components:
- type: Transform
@@ -75742,7 +75460,7 @@ entities:
pos: -52.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17586
components:
- type: Transform
@@ -75750,7 +75468,7 @@ entities:
pos: -41.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17587
components:
- type: Transform
@@ -75758,7 +75476,7 @@ entities:
pos: -43.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18020
components:
- type: Transform
@@ -75772,7 +75490,7 @@ entities:
pos: -2.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18250
components:
- type: Transform
@@ -75780,14 +75498,14 @@ entities:
pos: -3.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18276
components:
- type: Transform
pos: -2.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18277
components:
- type: Transform
@@ -75795,7 +75513,7 @@ entities:
pos: -4.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18366
components:
- type: Transform
@@ -75808,7 +75526,7 @@ entities:
pos: 4.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18435
components:
- type: Transform
@@ -75816,7 +75534,7 @@ entities:
pos: -3.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18511
components:
- type: Transform
@@ -75824,21 +75542,21 @@ entities:
pos: -2.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18532
components:
- type: Transform
pos: 2.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18534
components:
- type: Transform
pos: 4.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18712
components:
- type: Transform
@@ -75846,7 +75564,7 @@ entities:
pos: 39.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18713
components:
- type: Transform
@@ -75854,7 +75572,7 @@ entities:
pos: 37.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18914
components:
- type: Transform
@@ -75862,7 +75580,7 @@ entities:
pos: 47.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21325
components:
- type: Transform
@@ -75870,14 +75588,14 @@ entities:
pos: -58.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21326
components:
- type: Transform
pos: -58.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21393
components:
- type: Transform
@@ -75885,14 +75603,14 @@ entities:
pos: -15.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21440
components:
- type: Transform
pos: -7.5,-38.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21441
components:
- type: Transform
@@ -75900,7 +75618,7 @@ entities:
pos: -8.5,-38.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21534
components:
- type: Transform
@@ -75908,14 +75626,14 @@ entities:
pos: 53.5,45.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21666
components:
- type: Transform
pos: -29.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 22829
components:
- type: Transform
@@ -75923,7 +75641,7 @@ entities:
pos: -119.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22846
components:
- type: Transform
@@ -75931,7 +75649,7 @@ entities:
pos: -111.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22872
components:
- type: Transform
@@ -75939,14 +75657,14 @@ entities:
pos: -110.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22873
components:
- type: Transform
pos: -102.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22874
components:
- type: Transform
@@ -75954,35 +75672,35 @@ entities:
pos: -102.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22875
components:
- type: Transform
pos: -99.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22877
components:
- type: Transform
pos: -110.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22880
components:
- type: Transform
pos: -98.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22895
components:
- type: Transform
pos: -111.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22896
components:
- type: Transform
@@ -75990,7 +75708,7 @@ entities:
pos: -113.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22897
components:
- type: Transform
@@ -75998,7 +75716,7 @@ entities:
pos: -113.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22898
components:
- type: Transform
@@ -76006,7 +75724,7 @@ entities:
pos: -111.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22899
components:
- type: Transform
@@ -76014,7 +75732,7 @@ entities:
pos: -111.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22909
components:
- type: Transform
@@ -76250,7 +75968,7 @@ entities:
pos: 55.5,47.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24902
components:
- type: Transform
@@ -76258,14 +75976,14 @@ entities:
pos: 33.5,45.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25167
components:
- type: Transform
pos: 35.5,47.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- proto: GasPipeFourway
entities:
- uid: 467
@@ -76274,70 +75992,77 @@ entities:
pos: 1.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 483
components:
- type: Transform
pos: -0.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 872
components:
- type: Transform
pos: 44.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 942
components:
- type: Transform
pos: 45.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1040
components:
- type: Transform
pos: 15.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1177
components:
- type: Transform
pos: -16.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2002
+ color: '#FF1212FF'
+ - uid: 1664
components:
- type: Transform
- pos: -22.5,-3.5
+ pos: -22.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
+ - uid: 1744
+ components:
+ - type: Transform
+ pos: -30.5,-5.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 2361
components:
- type: Transform
pos: 23.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2470
components:
- type: Transform
pos: 21.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2491
components:
- type: Transform
pos: 39.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2903
components:
- type: Transform
@@ -76356,126 +76081,133 @@ entities:
pos: 45.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3194
components:
- type: Transform
pos: 44.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3195
components:
- type: Transform
pos: 44.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4002
components:
- type: Transform
pos: -7.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4116
components:
- type: Transform
pos: 33.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4656
components:
- type: Transform
pos: -0.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 5247
+ components:
+ - type: Transform
+ pos: -38.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 5473
+ components:
+ - type: Transform
+ pos: -9.5,7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5837
+ components:
+ - type: Transform
+ pos: -20.5,-22.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 5991
components:
- type: Transform
pos: -52.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6213
components:
- type: Transform
pos: 1.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6264
components:
- type: Transform
pos: 17.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6268
components:
- type: Transform
pos: -38.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6275
components:
- type: Transform
pos: -47.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6834
components:
- type: Transform
pos: -47.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 7563
+ color: '#FF1212FF'
+ - uid: 7904
components:
- type: Transform
- pos: -21.5,-2.5
+ pos: -14.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8720
- components:
- - type: Transform
- pos: -18.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8748
- components:
- - type: Transform
- pos: -21.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9232
components:
- type: Transform
pos: 17.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14241
components:
- type: Transform
pos: -14.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15113
components:
- type: Transform
pos: -33.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15531
components:
- type: Transform
@@ -76489,35 +76221,35 @@ entities:
pos: 39.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17887
components:
- type: Transform
pos: 45.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18231
components:
- type: Transform
pos: 1.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18239
components:
- type: Transform
pos: 1.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22822
components:
- type: Transform
pos: -111.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22997
components:
- type: Transform
@@ -76559,7 +76291,7 @@ entities:
pos: -30.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- proto: GasPipeSensorTEGCold
entities:
- uid: 15074
@@ -76587,7 +76319,7 @@ entities:
pos: -30.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- proto: GasPipeStraight
entities:
- uid: 47
@@ -76596,23 +76328,7 @@ entities:
pos: -36.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 88
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 98
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-11.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 133
components:
- type: Transform
@@ -76620,14 +76336,14 @@ entities:
pos: 23.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 171
components:
- type: Transform
pos: 44.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 195
components:
- type: Transform
@@ -76635,7 +76351,7 @@ entities:
pos: 39.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 196
components:
- type: Transform
@@ -76643,7 +76359,7 @@ entities:
pos: 40.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 198
components:
- type: Transform
@@ -76651,7 +76367,7 @@ entities:
pos: 41.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 199
components:
- type: Transform
@@ -76659,7 +76375,7 @@ entities:
pos: 42.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 202
components:
- type: Transform
@@ -76667,7 +76383,7 @@ entities:
pos: 23.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 212
components:
- type: Transform
@@ -76675,7 +76391,7 @@ entities:
pos: 21.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 221
components:
- type: Transform
@@ -76683,7 +76399,7 @@ entities:
pos: 20.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 224
components:
- type: Transform
@@ -76691,7 +76407,7 @@ entities:
pos: 21.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 272
components:
- type: Transform
@@ -76699,7 +76415,7 @@ entities:
pos: 21.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 293
components:
- type: Transform
@@ -76707,7 +76423,7 @@ entities:
pos: 20.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 294
components:
- type: Transform
@@ -76715,7 +76431,7 @@ entities:
pos: 27.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 299
components:
- type: Transform
@@ -76723,7 +76439,7 @@ entities:
pos: 21.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 301
components:
- type: Transform
@@ -76731,7 +76447,7 @@ entities:
pos: 27.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 302
components:
- type: Transform
@@ -76739,7 +76455,7 @@ entities:
pos: 23.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 305
components:
- type: Transform
@@ -76747,7 +76463,7 @@ entities:
pos: 24.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 310
components:
- type: Transform
@@ -76755,7 +76471,7 @@ entities:
pos: 26.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 312
components:
- type: Transform
@@ -76763,7 +76479,7 @@ entities:
pos: 23.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 318
components:
- type: Transform
@@ -76771,7 +76487,15 @@ entities:
pos: 27.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 336
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 360
components:
- type: Transform
@@ -76779,7 +76503,7 @@ entities:
pos: 21.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 361
components:
- type: Transform
@@ -76787,105 +76511,105 @@ entities:
pos: 25.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 412
components:
- type: Transform
pos: 1.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 413
components:
- type: Transform
pos: 1.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 414
components:
- type: Transform
pos: 1.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 415
components:
- type: Transform
pos: 1.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 416
components:
- type: Transform
pos: 1.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 418
components:
- type: Transform
pos: 1.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 420
components:
- type: Transform
pos: -0.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 421
components:
- type: Transform
pos: -0.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 422
components:
- type: Transform
pos: -0.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 423
components:
- type: Transform
pos: -0.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 424
components:
- type: Transform
pos: -0.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 425
components:
- type: Transform
pos: -0.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 427
components:
- type: Transform
pos: -0.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 440
components:
- type: Transform
pos: 44.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 462
components:
- type: Transform
@@ -76893,7 +76617,7 @@ entities:
pos: 1.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 463
components:
- type: Transform
@@ -76901,14 +76625,14 @@ entities:
pos: 0.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 465
components:
- type: Transform
pos: 45.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 468
components:
- type: Transform
@@ -76916,7 +76640,7 @@ entities:
pos: -0.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 469
components:
- type: Transform
@@ -76924,7 +76648,7 @@ entities:
pos: -1.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 470
components:
- type: Transform
@@ -76932,7 +76656,7 @@ entities:
pos: -2.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 471
components:
- type: Transform
@@ -76940,7 +76664,7 @@ entities:
pos: 2.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 472
components:
- type: Transform
@@ -76948,35 +76672,35 @@ entities:
pos: 3.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 475
components:
- type: Transform
pos: 1.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 476
components:
- type: Transform
pos: 1.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 477
components:
- type: Transform
pos: 1.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 478
components:
- type: Transform
pos: 1.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 480
components:
- type: Transform
@@ -76984,7 +76708,7 @@ entities:
pos: -0.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 481
components:
- type: Transform
@@ -76992,7 +76716,7 @@ entities:
pos: -0.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 484
components:
- type: Transform
@@ -77000,7 +76724,7 @@ entities:
pos: -0.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 485
components:
- type: Transform
@@ -77008,7 +76732,7 @@ entities:
pos: -0.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 486
components:
- type: Transform
@@ -77016,7 +76740,7 @@ entities:
pos: -0.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 495
components:
- type: Transform
@@ -77024,7 +76748,7 @@ entities:
pos: -2.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 496
components:
- type: Transform
@@ -77032,7 +76756,7 @@ entities:
pos: -1.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 505
components:
- type: Transform
@@ -77040,7 +76764,7 @@ entities:
pos: 0.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 506
components:
- type: Transform
@@ -77048,7 +76772,7 @@ entities:
pos: 1.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 507
components:
- type: Transform
@@ -77056,7 +76780,7 @@ entities:
pos: 2.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 509
components:
- type: Transform
@@ -77064,7 +76788,7 @@ entities:
pos: 4.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 510
components:
- type: Transform
@@ -77072,7 +76796,7 @@ entities:
pos: 4.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 512
components:
- type: Transform
@@ -77080,7 +76804,7 @@ entities:
pos: -3.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 532
components:
- type: Transform
@@ -77088,7 +76812,7 @@ entities:
pos: 43.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 618
components:
- type: Transform
@@ -77096,7 +76820,7 @@ entities:
pos: -32.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 619
components:
- type: Transform
@@ -77104,14 +76828,14 @@ entities:
pos: -31.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 632
components:
- type: Transform
pos: -14.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 716
components:
- type: Transform
@@ -77119,29 +76843,38 @@ entities:
pos: 13.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 720
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-15.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 735
components:
- type: Transform
pos: 30.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 764
+ color: '#FF1212FF'
+ - uid: 781
components:
- type: Transform
- pos: -27.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 782
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 794
components:
- type: Transform
@@ -77149,29 +76882,37 @@ entities:
pos: -15.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 835
+ color: '#FF1212FF'
+ - uid: 838
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -32.5,-19.5
+ pos: -23.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 839
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-10.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 874
components:
- type: Transform
pos: -3.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 875
components:
- type: Transform
pos: -3.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 879
components:
- type: Transform
@@ -77179,7 +76920,7 @@ entities:
pos: -7.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 880
components:
- type: Transform
@@ -77187,7 +76928,7 @@ entities:
pos: -6.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 881
components:
- type: Transform
@@ -77195,7 +76936,7 @@ entities:
pos: -5.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 882
components:
- type: Transform
@@ -77203,7 +76944,7 @@ entities:
pos: -4.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 883
components:
- type: Transform
@@ -77211,7 +76952,7 @@ entities:
pos: -4.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 884
components:
- type: Transform
@@ -77219,7 +76960,7 @@ entities:
pos: -8.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 885
components:
- type: Transform
@@ -77227,7 +76968,7 @@ entities:
pos: -8.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 886
components:
- type: Transform
@@ -77235,7 +76976,7 @@ entities:
pos: -9.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 888
components:
- type: Transform
@@ -77243,7 +76984,7 @@ entities:
pos: -11.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 889
components:
- type: Transform
@@ -77251,14 +76992,14 @@ entities:
pos: -12.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 890
components:
- type: Transform
pos: -9.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 891
components:
- type: Transform
@@ -77266,7 +77007,7 @@ entities:
pos: -4.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 892
components:
- type: Transform
@@ -77274,7 +77015,7 @@ entities:
pos: -5.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 893
components:
- type: Transform
@@ -77282,7 +77023,7 @@ entities:
pos: -6.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 894
components:
- type: Transform
@@ -77290,7 +77031,7 @@ entities:
pos: -7.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 897
components:
- type: Transform
@@ -77298,7 +77039,7 @@ entities:
pos: -10.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 899
components:
- type: Transform
@@ -77306,7 +77047,7 @@ entities:
pos: -11.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 900
components:
- type: Transform
@@ -77314,7 +77055,7 @@ entities:
pos: -12.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 901
components:
- type: Transform
@@ -77322,7 +77063,7 @@ entities:
pos: -13.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 903
components:
- type: Transform
@@ -77330,42 +77071,42 @@ entities:
pos: -14.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 905
components:
- type: Transform
pos: -9.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 906
components:
- type: Transform
pos: -9.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 908
components:
- type: Transform
pos: -3.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 909
components:
- type: Transform
pos: -3.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 917
components:
- type: Transform
pos: 30.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 950
components:
- type: Transform
@@ -77373,7 +77114,7 @@ entities:
pos: 42.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 951
components:
- type: Transform
@@ -77381,7 +77122,7 @@ entities:
pos: 44.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 961
components:
- type: Transform
@@ -77389,7 +77130,7 @@ entities:
pos: -13.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 991
components:
- type: Transform
@@ -77397,7 +77138,7 @@ entities:
pos: -16.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 996
components:
- type: Transform
@@ -77405,7 +77146,7 @@ entities:
pos: 14.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1029
components:
- type: Transform
@@ -77413,7 +77154,7 @@ entities:
pos: 5.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1030
components:
- type: Transform
@@ -77421,7 +77162,7 @@ entities:
pos: 6.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1031
components:
- type: Transform
@@ -77429,7 +77170,7 @@ entities:
pos: 7.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1032
components:
- type: Transform
@@ -77437,7 +77178,7 @@ entities:
pos: 8.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1033
components:
- type: Transform
@@ -77445,7 +77186,7 @@ entities:
pos: 9.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1034
components:
- type: Transform
@@ -77453,7 +77194,7 @@ entities:
pos: 10.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1035
components:
- type: Transform
@@ -77461,7 +77202,7 @@ entities:
pos: 11.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1037
components:
- type: Transform
@@ -77469,7 +77210,7 @@ entities:
pos: 13.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1038
components:
- type: Transform
@@ -77477,7 +77218,7 @@ entities:
pos: 14.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1039
components:
- type: Transform
@@ -77485,7 +77226,7 @@ entities:
pos: 15.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1041
components:
- type: Transform
@@ -77493,7 +77234,7 @@ entities:
pos: 5.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1042
components:
- type: Transform
@@ -77501,7 +77242,7 @@ entities:
pos: 6.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1044
components:
- type: Transform
@@ -77509,7 +77250,7 @@ entities:
pos: 8.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1046
components:
- type: Transform
@@ -77517,7 +77258,7 @@ entities:
pos: 10.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1048
components:
- type: Transform
@@ -77525,7 +77266,7 @@ entities:
pos: 12.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1049
components:
- type: Transform
@@ -77533,7 +77274,7 @@ entities:
pos: 13.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1050
components:
- type: Transform
@@ -77541,7 +77282,7 @@ entities:
pos: 14.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1053
components:
- type: Transform
@@ -77549,7 +77290,7 @@ entities:
pos: 17.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1054
components:
- type: Transform
@@ -77557,7 +77298,7 @@ entities:
pos: 17.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1055
components:
- type: Transform
@@ -77565,7 +77306,7 @@ entities:
pos: 15.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1056
components:
- type: Transform
@@ -77573,7 +77314,7 @@ entities:
pos: 17.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1057
components:
- type: Transform
@@ -77581,7 +77322,7 @@ entities:
pos: 17.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1058
components:
- type: Transform
@@ -77589,7 +77330,7 @@ entities:
pos: 15.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1060
components:
- type: Transform
@@ -77597,7 +77338,7 @@ entities:
pos: 17.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1062
components:
- type: Transform
@@ -77605,7 +77346,7 @@ entities:
pos: 15.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1063
components:
- type: Transform
@@ -77613,7 +77354,7 @@ entities:
pos: 15.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1064
components:
- type: Transform
@@ -77621,7 +77362,7 @@ entities:
pos: 17.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1065
components:
- type: Transform
@@ -77629,7 +77370,7 @@ entities:
pos: 17.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1067
components:
- type: Transform
@@ -77637,7 +77378,7 @@ entities:
pos: 15.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1068
components:
- type: Transform
@@ -77645,7 +77386,7 @@ entities:
pos: 17.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1069
components:
- type: Transform
@@ -77653,7 +77394,7 @@ entities:
pos: 17.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1070
components:
- type: Transform
@@ -77661,7 +77402,7 @@ entities:
pos: 15.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1073
components:
- type: Transform
@@ -77669,7 +77410,7 @@ entities:
pos: 17.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1076
components:
- type: Transform
@@ -77677,7 +77418,7 @@ entities:
pos: 17.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1078
components:
- type: Transform
@@ -77685,7 +77426,7 @@ entities:
pos: 15.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1080
components:
- type: Transform
@@ -77693,7 +77434,7 @@ entities:
pos: 17.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1081
components:
- type: Transform
@@ -77701,7 +77442,7 @@ entities:
pos: 17.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1082
components:
- type: Transform
@@ -77709,7 +77450,7 @@ entities:
pos: 15.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1083
components:
- type: Transform
@@ -77717,7 +77458,7 @@ entities:
pos: 15.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1084
components:
- type: Transform
@@ -77725,7 +77466,7 @@ entities:
pos: 17.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1085
components:
- type: Transform
@@ -77733,7 +77474,7 @@ entities:
pos: 17.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1086
components:
- type: Transform
@@ -77741,7 +77482,7 @@ entities:
pos: 15.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1087
components:
- type: Transform
@@ -77749,7 +77490,7 @@ entities:
pos: 15.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1088
components:
- type: Transform
@@ -77757,7 +77498,7 @@ entities:
pos: 17.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1089
components:
- type: Transform
@@ -77765,7 +77506,7 @@ entities:
pos: 17.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1090
components:
- type: Transform
@@ -77773,7 +77514,7 @@ entities:
pos: 15.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1091
components:
- type: Transform
@@ -77781,14 +77522,14 @@ entities:
pos: 15.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1092
components:
- type: Transform
pos: 17.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1093
components:
- type: Transform
@@ -77796,7 +77537,7 @@ entities:
pos: 15.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1094
components:
- type: Transform
@@ -77804,14 +77545,14 @@ entities:
pos: 17.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1095
components:
- type: Transform
pos: 15.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1097
components:
- type: Transform
@@ -77819,7 +77560,7 @@ entities:
pos: 15.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1098
components:
- type: Transform
@@ -77827,7 +77568,7 @@ entities:
pos: 17.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1100
components:
- type: Transform
@@ -77835,7 +77576,7 @@ entities:
pos: 17.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1101
components:
- type: Transform
@@ -77843,7 +77584,7 @@ entities:
pos: 15.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1102
components:
- type: Transform
@@ -77851,7 +77592,7 @@ entities:
pos: 17.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1103
components:
- type: Transform
@@ -77859,7 +77600,7 @@ entities:
pos: 15.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1104
components:
- type: Transform
@@ -77867,7 +77608,7 @@ entities:
pos: 17.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1105
components:
- type: Transform
@@ -77875,7 +77616,7 @@ entities:
pos: 15.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1106
components:
- type: Transform
@@ -77883,7 +77624,7 @@ entities:
pos: 17.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1107
components:
- type: Transform
@@ -77891,7 +77632,7 @@ entities:
pos: 15.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1108
components:
- type: Transform
@@ -77899,7 +77640,7 @@ entities:
pos: 17.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1109
components:
- type: Transform
@@ -77907,7 +77648,7 @@ entities:
pos: 15.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1110
components:
- type: Transform
@@ -77915,7 +77656,7 @@ entities:
pos: 17.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1111
components:
- type: Transform
@@ -77923,7 +77664,7 @@ entities:
pos: 15.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1112
components:
- type: Transform
@@ -77931,7 +77672,7 @@ entities:
pos: 17.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1113
components:
- type: Transform
@@ -77939,7 +77680,7 @@ entities:
pos: -15.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1119
components:
- type: Transform
@@ -77947,7 +77688,7 @@ entities:
pos: -14.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1120
components:
- type: Transform
@@ -77955,7 +77696,7 @@ entities:
pos: -14.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1123
components:
- type: Transform
@@ -77963,7 +77704,7 @@ entities:
pos: -14.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1124
components:
- type: Transform
@@ -77971,7 +77712,7 @@ entities:
pos: -14.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1125
components:
- type: Transform
@@ -77979,14 +77720,14 @@ entities:
pos: -16.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1126
components:
- type: Transform
pos: -16.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1127
components:
- type: Transform
@@ -77994,7 +77735,7 @@ entities:
pos: -14.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1129
components:
- type: Transform
@@ -78002,7 +77743,7 @@ entities:
pos: -16.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1130
components:
- type: Transform
@@ -78010,7 +77751,7 @@ entities:
pos: -16.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1131
components:
- type: Transform
@@ -78018,7 +77759,7 @@ entities:
pos: -14.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1132
components:
- type: Transform
@@ -78026,7 +77767,7 @@ entities:
pos: -14.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1134
components:
- type: Transform
@@ -78034,7 +77775,7 @@ entities:
pos: -16.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1135
components:
- type: Transform
@@ -78042,7 +77783,7 @@ entities:
pos: -16.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1137
components:
- type: Transform
@@ -78050,7 +77791,7 @@ entities:
pos: -14.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1138
components:
- type: Transform
@@ -78058,7 +77799,7 @@ entities:
pos: -14.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1139
components:
- type: Transform
@@ -78066,7 +77807,7 @@ entities:
pos: -16.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1140
components:
- type: Transform
@@ -78074,7 +77815,7 @@ entities:
pos: -16.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1141
components:
- type: Transform
@@ -78082,7 +77823,7 @@ entities:
pos: -14.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1142
components:
- type: Transform
@@ -78090,7 +77831,7 @@ entities:
pos: -14.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1143
components:
- type: Transform
@@ -78098,7 +77839,7 @@ entities:
pos: -16.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1144
components:
- type: Transform
@@ -78106,7 +77847,7 @@ entities:
pos: -16.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1145
components:
- type: Transform
@@ -78114,7 +77855,7 @@ entities:
pos: -14.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1146
components:
- type: Transform
@@ -78122,7 +77863,7 @@ entities:
pos: -14.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1147
components:
- type: Transform
@@ -78130,7 +77871,7 @@ entities:
pos: -16.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1149
components:
- type: Transform
@@ -78138,7 +77879,7 @@ entities:
pos: -14.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1151
components:
- type: Transform
@@ -78146,7 +77887,7 @@ entities:
pos: -16.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1152
components:
- type: Transform
@@ -78154,7 +77895,7 @@ entities:
pos: -16.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1153
components:
- type: Transform
@@ -78162,7 +77903,7 @@ entities:
pos: -14.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1154
components:
- type: Transform
@@ -78170,7 +77911,7 @@ entities:
pos: -14.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1155
components:
- type: Transform
@@ -78178,7 +77919,7 @@ entities:
pos: -16.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1156
components:
- type: Transform
@@ -78186,7 +77927,7 @@ entities:
pos: -16.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1157
components:
- type: Transform
@@ -78194,7 +77935,7 @@ entities:
pos: -14.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1158
components:
- type: Transform
@@ -78202,7 +77943,7 @@ entities:
pos: -14.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1159
components:
- type: Transform
@@ -78210,7 +77951,7 @@ entities:
pos: -16.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1160
components:
- type: Transform
@@ -78218,7 +77959,7 @@ entities:
pos: -16.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1161
components:
- type: Transform
@@ -78226,15 +77967,7 @@ entities:
pos: -14.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1162
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,0.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1163
components:
- type: Transform
@@ -78242,7 +77975,7 @@ entities:
pos: -16.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1164
components:
- type: Transform
@@ -78250,7 +77983,7 @@ entities:
pos: -16.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1165
components:
- type: Transform
@@ -78258,7 +77991,7 @@ entities:
pos: -14.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1166
components:
- type: Transform
@@ -78266,15 +77999,7 @@ entities:
pos: -14.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1168
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,3.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1169
components:
- type: Transform
@@ -78282,7 +78007,7 @@ entities:
pos: -14.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1171
components:
- type: Transform
@@ -78290,7 +78015,7 @@ entities:
pos: -16.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1172
components:
- type: Transform
@@ -78298,7 +78023,7 @@ entities:
pos: -16.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1173
components:
- type: Transform
@@ -78306,7 +78031,7 @@ entities:
pos: -14.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1176
components:
- type: Transform
@@ -78314,28 +78039,28 @@ entities:
pos: -17.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1214
components:
- type: Transform
pos: -14.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1215
components:
- type: Transform
pos: -16.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1216
components:
- type: Transform
pos: -14.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1218
components:
- type: Transform
@@ -78343,14 +78068,14 @@ entities:
pos: -13.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1219
components:
- type: Transform
pos: -16.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1220
components:
- type: Transform
@@ -78358,7 +78083,7 @@ entities:
pos: -12.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1221
components:
- type: Transform
@@ -78366,7 +78091,7 @@ entities:
pos: -12.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1222
components:
- type: Transform
@@ -78374,7 +78099,7 @@ entities:
pos: -11.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1223
components:
- type: Transform
@@ -78382,7 +78107,7 @@ entities:
pos: -11.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1224
components:
- type: Transform
@@ -78390,7 +78115,7 @@ entities:
pos: -10.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1227
components:
- type: Transform
@@ -78398,7 +78123,7 @@ entities:
pos: -9.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1228
components:
- type: Transform
@@ -78406,7 +78131,7 @@ entities:
pos: -8.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1231
components:
- type: Transform
@@ -78414,15 +78139,7 @@ entities:
pos: -15.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1257
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-24.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1260
components:
- type: Transform
@@ -78430,7 +78147,7 @@ entities:
pos: 9.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1261
components:
- type: Transform
@@ -78438,7 +78155,7 @@ entities:
pos: 10.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1263
components:
- type: Transform
@@ -78446,7 +78163,7 @@ entities:
pos: 11.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1264
components:
- type: Transform
@@ -78454,7 +78171,7 @@ entities:
pos: 11.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1266
components:
- type: Transform
@@ -78462,7 +78179,7 @@ entities:
pos: 12.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1267
components:
- type: Transform
@@ -78470,7 +78187,7 @@ entities:
pos: 13.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1268
components:
- type: Transform
@@ -78478,7 +78195,7 @@ entities:
pos: 14.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1270
components:
- type: Transform
@@ -78486,7 +78203,7 @@ entities:
pos: 14.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1271
components:
- type: Transform
@@ -78494,7 +78211,7 @@ entities:
pos: 15.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1272
components:
- type: Transform
@@ -78502,7 +78219,7 @@ entities:
pos: 16.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1274
components:
- type: Transform
@@ -78510,7 +78227,7 @@ entities:
pos: 17.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1279
components:
- type: Transform
@@ -78518,14 +78235,14 @@ entities:
pos: -48.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1281
components:
- type: Transform
pos: -16.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1306
components:
- type: Transform
@@ -78533,7 +78250,7 @@ entities:
pos: -17.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1308
components:
- type: Transform
@@ -78541,7 +78258,7 @@ entities:
pos: -1.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1359
components:
- type: Transform
@@ -78556,112 +78273,112 @@ entities:
pos: 3.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1390
components:
- type: Transform
pos: 3.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1391
components:
- type: Transform
pos: 3.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1395
components:
- type: Transform
pos: 4.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1396
components:
- type: Transform
pos: 4.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1399
components:
- type: Transform
pos: 7.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1400
components:
- type: Transform
pos: 7.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1401
components:
- type: Transform
pos: 7.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1402
components:
- type: Transform
pos: 7.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1403
components:
- type: Transform
pos: 7.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1404
components:
- type: Transform
pos: 7.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1413
components:
- type: Transform
pos: -0.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1414
components:
- type: Transform
pos: -0.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1415
components:
- type: Transform
pos: 1.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1416
components:
- type: Transform
pos: 1.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1418
components:
- type: Transform
pos: 1.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1420
components:
- type: Transform
@@ -78669,7 +78386,7 @@ entities:
pos: -0.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1421
components:
- type: Transform
@@ -78677,7 +78394,7 @@ entities:
pos: -0.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1422
components:
- type: Transform
@@ -78685,7 +78402,7 @@ entities:
pos: -0.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1423
components:
- type: Transform
@@ -78693,7 +78410,7 @@ entities:
pos: -0.5,-34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1424
components:
- type: Transform
@@ -78701,7 +78418,7 @@ entities:
pos: -0.5,-35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1425
components:
- type: Transform
@@ -78709,7 +78426,7 @@ entities:
pos: 1.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1426
components:
- type: Transform
@@ -78717,7 +78434,7 @@ entities:
pos: 1.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1427
components:
- type: Transform
@@ -78725,7 +78442,7 @@ entities:
pos: 1.5,-34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1428
components:
- type: Transform
@@ -78733,7 +78450,7 @@ entities:
pos: 1.5,-35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1497
components:
- type: Transform
@@ -78741,14 +78458,14 @@ entities:
pos: -20.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1500
components:
- type: Transform
pos: -36.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1505
components:
- type: Transform
@@ -78756,7 +78473,7 @@ entities:
pos: -21.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1506
components:
- type: Transform
@@ -78764,7 +78481,7 @@ entities:
pos: -16.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1519
components:
- type: Transform
@@ -78772,7 +78489,7 @@ entities:
pos: -22.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1526
components:
- type: Transform
@@ -78780,7 +78497,7 @@ entities:
pos: -21.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1531
components:
- type: Transform
@@ -78788,7 +78505,7 @@ entities:
pos: -24.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1588
components:
- type: Transform
@@ -78796,21 +78513,14 @@ entities:
pos: -18.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1592
components:
- type: Transform
pos: -28.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1601
- components:
- - type: Transform
- pos: -25.5,-17.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1602
components:
- type: Transform
@@ -78818,7 +78528,7 @@ entities:
pos: -16.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1605
components:
- type: Transform
@@ -78826,7 +78536,7 @@ entities:
pos: -25.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1606
components:
- type: Transform
@@ -78834,7 +78544,7 @@ entities:
pos: -27.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1607
components:
- type: Transform
@@ -78842,7 +78552,7 @@ entities:
pos: -26.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1609
components:
- type: Transform
@@ -78850,7 +78560,7 @@ entities:
pos: -23.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1612
components:
- type: Transform
@@ -78858,7 +78568,7 @@ entities:
pos: -26.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1613
components:
- type: Transform
@@ -78866,7 +78576,7 @@ entities:
pos: -27.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1614
components:
- type: Transform
@@ -78874,15 +78584,7 @@ entities:
pos: -28.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1619
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-10.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 1629
components:
- type: Transform
@@ -78890,7 +78592,7 @@ entities:
pos: -16.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1630
components:
- type: Transform
@@ -78898,7 +78600,7 @@ entities:
pos: -16.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1641
components:
- type: Transform
@@ -78906,21 +78608,54 @@ entities:
pos: 4.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1657
+ color: '#0335FCFF'
+ - uid: 1663
components:
- type: Transform
- pos: -25.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
+ - uid: 1666
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-10.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1668
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -32.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,6.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,-20.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 1692
components:
- type: Transform
pos: -36.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1694
components:
- type: Transform
@@ -78928,7 +78663,15 @@ entities:
pos: -17.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 1702
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-18.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 1705
components:
- type: Transform
@@ -78936,7 +78679,7 @@ entities:
pos: -25.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1712
components:
- type: Transform
@@ -78944,7 +78687,7 @@ entities:
pos: -29.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1713
components:
- type: Transform
@@ -78952,30 +78695,68 @@ entities:
pos: -30.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1723
+ color: '#0335FCFF'
+ - uid: 1718
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -20.5,-9.5
+ pos: -35.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
+ - uid: 1721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1724
+ components:
+ - type: Transform
+ pos: -22.5,-8.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1725
+ components:
+ - type: Transform
+ pos: -22.5,-6.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-5.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 1730
components:
- type: Transform
pos: -38.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1733
+ color: '#FF1212FF'
+ - uid: 1732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-17.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1734
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -24.5,-19.5
+ pos: -23.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1747
components:
- type: Transform
@@ -78983,46 +78764,30 @@ entities:
pos: -33.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1749
+ color: '#0335FCFF'
+ - uid: 1748
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1750
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1751
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1752
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.5,-19.5
+ pos: -31.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1753
components:
- type: Transform
pos: -38.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1754
components:
- type: Transform
@@ -79030,51 +78795,72 @@ entities:
pos: -30.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1755
components:
- type: Transform
pos: -38.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1757
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -29.5,-19.5
+ pos: -20.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
+ - uid: 1758
+ components:
+ - type: Transform
+ pos: -22.5,-13.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1765
+ components:
+ - type: Transform
+ pos: -22.5,-12.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1766
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1767
+ components:
+ - type: Transform
+ pos: -22.5,-11.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 1769
components:
- type: Transform
pos: -36.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1770
components:
- type: Transform
pos: -36.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1772
components:
- type: Transform
pos: -36.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1773
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1774
components:
- type: Transform
@@ -79082,65 +78868,49 @@ entities:
pos: -25.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1776
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1777
components:
- type: Transform
pos: -36.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1778
components:
- type: Transform
pos: -38.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1779
components:
- type: Transform
pos: -36.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1782
components:
- type: Transform
pos: -38.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1783
components:
- type: Transform
pos: -36.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1784
components:
- type: Transform
pos: -36.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1785
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1786
components:
- type: Transform
@@ -79148,44 +78918,156 @@ entities:
pos: -18.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1788
components:
- type: Transform
pos: -38.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 1790
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -36.5,-18.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 1791
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -31.5,-6.5
+ pos: -24.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1797
+ color: '#0335FCFF'
+ - uid: 1793
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -24.5,-20.5
+ pos: -37.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1809
+ color: '#FF1212FF'
+ - uid: 1794
components:
- type: Transform
- pos: -31.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 1796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-5.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1798
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -35.5,-18.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1799
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1800
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-17.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -30.5,-12.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1805
+ components:
+ - type: Transform
+ pos: -30.5,-6.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -30.5,-8.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1812
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-20.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -30.5,-13.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -30.5,-11.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1819
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1823
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-5.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 1825
components:
- type: Transform
pos: -38.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1826
components:
- type: Transform
@@ -79193,43 +79075,42 @@ entities:
pos: -30.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1827
components:
- type: Transform
pos: -38.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1828
components:
- type: Transform
pos: -38.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1829
components:
- type: Transform
pos: -36.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1834
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-20.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1837
components:
- type: Transform
pos: -36.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 1838
+ components:
+ - type: Transform
+ pos: -22.5,-10.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 1839
components:
- type: Transform
@@ -79237,15 +79118,7 @@ entities:
pos: -24.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1840
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1841
components:
- type: Transform
@@ -79253,14 +79126,22 @@ entities:
pos: -34.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1842
components:
- type: Transform
pos: -38.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 1843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -30.5,-7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 1844
components:
- type: Transform
@@ -79268,7 +79149,7 @@ entities:
pos: -19.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1851
components:
- type: Transform
@@ -79276,50 +79157,51 @@ entities:
pos: -21.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1855
+ color: '#0335FCFF'
+ - uid: 1852
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1874
+ color: '#FF1212FF'
+ - uid: 1871
components:
- type: Transform
- pos: -38.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1875
components:
- type: Transform
pos: -38.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1876
components:
- type: Transform
pos: -38.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1877
components:
- type: Transform
pos: -38.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1878
components:
- type: Transform
pos: -38.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1879
components:
- type: Transform
@@ -79327,14 +79209,14 @@ entities:
pos: -35.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1880
components:
- type: Transform
pos: -36.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1890
components:
- type: Transform
@@ -79342,28 +79224,28 @@ entities:
pos: -36.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1894
components:
- type: Transform
pos: -24.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1895
components:
- type: Transform
pos: -38.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1896
components:
- type: Transform
pos: -36.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1897
components:
- type: Transform
@@ -79371,7 +79253,7 @@ entities:
pos: -32.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1898
components:
- type: Transform
@@ -79379,7 +79261,7 @@ entities:
pos: -35.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1899
components:
- type: Transform
@@ -79387,7 +79269,7 @@ entities:
pos: -31.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1900
components:
- type: Transform
@@ -79395,189 +79277,7 @@ entities:
pos: -34.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1901
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-15.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1903
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-15.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1906
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1909
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-13.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1910
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-11.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1913
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1914
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-10.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1915
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-12.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1916
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-12.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1917
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1918
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-6.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1920
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-6.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1921
- components:
- - type: Transform
- pos: -21.5,-6.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1923
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1925
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-6.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1929
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-12.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1934
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-5.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1935
- components:
- - type: Transform
- pos: -21.5,-5.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1936
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1943
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1945
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-5.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1946
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-5.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1958
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-3.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1961
components:
- type: Transform
@@ -79585,115 +79285,23 @@ entities:
pos: -21.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1965
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1966
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1967
+ color: '#FF1212FF'
+ - uid: 1973
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -23.5,-15.5
+ pos: -21.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1968
- components:
- - type: Transform
- pos: -22.5,-14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1969
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-16.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1970
+ color: '#0335FCFF'
+ - uid: 1978
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -29.5,-5.5
+ pos: -31.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1974
- components:
- - type: Transform
- pos: -30.5,-14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1975
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1976
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1977
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-12.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1981
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-15.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1983
- components:
- - type: Transform
- pos: -31.5,-12.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1985
- components:
- - type: Transform
- pos: -31.5,-11.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1990
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-4.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1991
components:
- type: Transform
@@ -79701,36 +79309,28 @@ entities:
pos: -33.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1992
components:
- type: Transform
pos: -38.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1993
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1995
components:
- type: Transform
pos: -36.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1997
components:
- type: Transform
pos: -38.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1998
components:
- type: Transform
@@ -79738,28 +79338,28 @@ entities:
pos: -37.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1999
components:
- type: Transform
pos: -36.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2000
components:
- type: Transform
pos: -38.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2001
components:
- type: Transform
pos: -38.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2006
components:
- type: Transform
@@ -79767,30 +79367,14 @@ entities:
pos: -27.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2007
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 2010
components:
- type: Transform
pos: -24.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2011
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-15.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2013
components:
- type: Transform
@@ -79798,7 +79382,7 @@ entities:
pos: -23.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2016
components:
- type: Transform
@@ -79806,21 +79390,21 @@ entities:
pos: -36.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2020
components:
- type: Transform
pos: -23.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2021
components:
- type: Transform
pos: -23.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2023
components:
- type: Transform
@@ -79828,7 +79412,7 @@ entities:
pos: -24.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2028
components:
- type: Transform
@@ -79836,7 +79420,7 @@ entities:
pos: -24.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2029
components:
- type: Transform
@@ -79844,49 +79428,49 @@ entities:
pos: -23.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2031
components:
- type: Transform
pos: -23.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2032
components:
- type: Transform
pos: -24.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2033
components:
- type: Transform
pos: -24.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2107
components:
- type: Transform
pos: -36.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2108
components:
- type: Transform
pos: -36.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2109
components:
- type: Transform
pos: -36.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2110
components:
- type: Transform
@@ -79894,35 +79478,28 @@ entities:
pos: -39.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2111
components:
- type: Transform
pos: -38.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2112
- components:
- - type: Transform
- pos: -36.5,-20.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 2122
components:
- type: Transform
pos: -36.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2123
components:
- type: Transform
pos: -38.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2124
components:
- type: Transform
@@ -79930,7 +79507,7 @@ entities:
pos: -18.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2125
components:
- type: Transform
@@ -79938,7 +79515,7 @@ entities:
pos: -20.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2126
components:
- type: Transform
@@ -79946,7 +79523,7 @@ entities:
pos: -23.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2128
components:
- type: Transform
@@ -79954,7 +79531,7 @@ entities:
pos: -27.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2129
components:
- type: Transform
@@ -79962,15 +79539,23 @@ entities:
pos: -28.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2131
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -20.5,-10.5
+ pos: -33.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 2133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-10.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 2159
components:
- type: Transform
@@ -79978,7 +79563,15 @@ entities:
pos: 43.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 2160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,-17.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 2161
components:
- type: Transform
@@ -79986,56 +79579,70 @@ entities:
pos: -22.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 2162
+ components:
+ - type: Transform
+ pos: -18.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 2183
+ components:
+ - type: Transform
+ pos: -22.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 2194
components:
- type: Transform
pos: 15.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2195
components:
- type: Transform
pos: 15.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2196
components:
- type: Transform
pos: 15.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2197
components:
- type: Transform
pos: 15.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2198
components:
- type: Transform
pos: 15.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2201
components:
- type: Transform
pos: 16.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2202
components:
- type: Transform
pos: 16.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2204
components:
- type: Transform
@@ -80043,7 +79650,7 @@ entities:
pos: 34.5,-35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2206
components:
- type: Transform
@@ -80051,7 +79658,7 @@ entities:
pos: 33.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2209
components:
- type: Transform
@@ -80059,7 +79666,7 @@ entities:
pos: 34.5,-34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2288
components:
- type: Transform
@@ -80067,21 +79674,21 @@ entities:
pos: -4.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2356
components:
- type: Transform
pos: 32.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2357
components:
- type: Transform
pos: 32.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2362
components:
- type: Transform
@@ -80089,7 +79696,7 @@ entities:
pos: 23.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2363
components:
- type: Transform
@@ -80097,7 +79704,7 @@ entities:
pos: 23.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2364
components:
- type: Transform
@@ -80113,7 +79720,7 @@ entities:
pos: 22.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2367
components:
- type: Transform
@@ -80121,7 +79728,7 @@ entities:
pos: 23.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2372
components:
- type: Transform
@@ -80129,7 +79736,7 @@ entities:
pos: 23.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2373
components:
- type: Transform
@@ -80137,7 +79744,7 @@ entities:
pos: 25.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2460
components:
- type: Transform
@@ -80145,7 +79752,7 @@ entities:
pos: 16.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2461
components:
- type: Transform
@@ -80153,7 +79760,7 @@ entities:
pos: 17.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2462
components:
- type: Transform
@@ -80161,7 +79768,7 @@ entities:
pos: 18.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2463
components:
- type: Transform
@@ -80169,7 +79776,7 @@ entities:
pos: 19.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2464
components:
- type: Transform
@@ -80177,7 +79784,7 @@ entities:
pos: 20.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2465
components:
- type: Transform
@@ -80185,7 +79792,7 @@ entities:
pos: 18.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2466
components:
- type: Transform
@@ -80193,7 +79800,7 @@ entities:
pos: 19.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2467
components:
- type: Transform
@@ -80201,7 +79808,7 @@ entities:
pos: 20.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2468
components:
- type: Transform
@@ -80209,7 +79816,7 @@ entities:
pos: 21.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2469
components:
- type: Transform
@@ -80217,7 +79824,7 @@ entities:
pos: 22.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2471
components:
- type: Transform
@@ -80225,7 +79832,7 @@ entities:
pos: 24.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2472
components:
- type: Transform
@@ -80233,7 +79840,7 @@ entities:
pos: 25.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2474
components:
- type: Transform
@@ -80241,7 +79848,7 @@ entities:
pos: 22.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2475
components:
- type: Transform
@@ -80249,7 +79856,7 @@ entities:
pos: 23.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2476
components:
- type: Transform
@@ -80257,7 +79864,7 @@ entities:
pos: 24.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2477
components:
- type: Transform
@@ -80265,7 +79872,7 @@ entities:
pos: 25.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2478
components:
- type: Transform
@@ -80273,7 +79880,7 @@ entities:
pos: 26.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2479
components:
- type: Transform
@@ -80281,7 +79888,7 @@ entities:
pos: 27.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2480
components:
- type: Transform
@@ -80289,7 +79896,7 @@ entities:
pos: 28.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2483
components:
- type: Transform
@@ -80297,7 +79904,7 @@ entities:
pos: 31.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2484
components:
- type: Transform
@@ -80305,7 +79912,7 @@ entities:
pos: 32.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2485
components:
- type: Transform
@@ -80313,7 +79920,7 @@ entities:
pos: 33.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2487
components:
- type: Transform
@@ -80321,7 +79928,7 @@ entities:
pos: 35.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2488
components:
- type: Transform
@@ -80329,7 +79936,7 @@ entities:
pos: 36.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2489
components:
- type: Transform
@@ -80337,7 +79944,7 @@ entities:
pos: 37.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2490
components:
- type: Transform
@@ -80345,7 +79952,7 @@ entities:
pos: 38.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2492
components:
- type: Transform
@@ -80353,7 +79960,7 @@ entities:
pos: 26.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2493
components:
- type: Transform
@@ -80361,7 +79968,7 @@ entities:
pos: 27.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2494
components:
- type: Transform
@@ -80369,7 +79976,7 @@ entities:
pos: 28.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2495
components:
- type: Transform
@@ -80377,7 +79984,7 @@ entities:
pos: 29.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2496
components:
- type: Transform
@@ -80385,7 +79992,7 @@ entities:
pos: 30.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2497
components:
- type: Transform
@@ -80393,7 +80000,7 @@ entities:
pos: 31.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2500
components:
- type: Transform
@@ -80401,7 +80008,7 @@ entities:
pos: 34.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2501
components:
- type: Transform
@@ -80409,7 +80016,7 @@ entities:
pos: 35.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2502
components:
- type: Transform
@@ -80417,7 +80024,7 @@ entities:
pos: 36.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2503
components:
- type: Transform
@@ -80425,7 +80032,7 @@ entities:
pos: 37.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2504
components:
- type: Transform
@@ -80433,7 +80040,7 @@ entities:
pos: 38.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2505
components:
- type: Transform
@@ -80441,7 +80048,7 @@ entities:
pos: 39.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2545
components:
- type: Transform
@@ -80449,7 +80056,7 @@ entities:
pos: 32.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2546
components:
- type: Transform
@@ -80457,7 +80064,7 @@ entities:
pos: 30.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2547
components:
- type: Transform
@@ -80465,7 +80072,7 @@ entities:
pos: 32.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2548
components:
- type: Transform
@@ -80473,7 +80080,7 @@ entities:
pos: 30.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2549
components:
- type: Transform
@@ -80481,7 +80088,7 @@ entities:
pos: 32.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2550
components:
- type: Transform
@@ -80489,7 +80096,7 @@ entities:
pos: 30.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2554
components:
- type: Transform
@@ -80497,23 +80104,7 @@ entities:
pos: 32.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2578
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-15.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2581
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2613
components:
- type: Transform
@@ -80521,7 +80112,7 @@ entities:
pos: 29.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2638
components:
- type: Transform
@@ -80529,14 +80120,14 @@ entities:
pos: 33.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2639
components:
- type: Transform
pos: 30.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2669
components:
- type: Transform
@@ -80544,7 +80135,7 @@ entities:
pos: 19.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2670
components:
- type: Transform
@@ -80552,7 +80143,7 @@ entities:
pos: 20.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2692
components:
- type: Transform
@@ -80560,49 +80151,49 @@ entities:
pos: 18.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2695
components:
- type: Transform
pos: 40.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2696
components:
- type: Transform
pos: 40.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2697
components:
- type: Transform
pos: 40.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2698
components:
- type: Transform
pos: 39.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2699
components:
- type: Transform
pos: 39.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2700
components:
- type: Transform
pos: 39.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2701
components:
- type: Transform
@@ -80610,7 +80201,7 @@ entities:
pos: 40.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2702
components:
- type: Transform
@@ -80618,7 +80209,7 @@ entities:
pos: 41.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2703
components:
- type: Transform
@@ -80626,22 +80217,14 @@ entities:
pos: 41.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2707
components:
- type: Transform
pos: 40.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2760
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-0.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 2783
components:
- type: Transform
@@ -80649,7 +80232,7 @@ entities:
pos: 19.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2786
components:
- type: Transform
@@ -80657,7 +80240,7 @@ entities:
pos: 29.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2787
components:
- type: Transform
@@ -80665,28 +80248,14 @@ entities:
pos: 19.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2788
components:
- type: Transform
pos: 17.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2792
- components:
- - type: Transform
- pos: -25.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2793
- components:
- - type: Transform
- pos: -21.5,-3.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2794
components:
- type: Transform
@@ -80694,7 +80263,7 @@ entities:
pos: 25.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2796
components:
- type: Transform
@@ -80702,7 +80271,7 @@ entities:
pos: 24.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2797
components:
- type: Transform
@@ -80710,7 +80279,7 @@ entities:
pos: 26.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2798
components:
- type: Transform
@@ -80718,7 +80287,7 @@ entities:
pos: 31.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2800
components:
- type: Transform
@@ -80726,7 +80295,7 @@ entities:
pos: 28.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2801
components:
- type: Transform
@@ -80734,7 +80303,7 @@ entities:
pos: 27.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2803
components:
- type: Transform
@@ -80742,7 +80311,7 @@ entities:
pos: 25.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2804
components:
- type: Transform
@@ -80750,7 +80319,7 @@ entities:
pos: 33.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2805
components:
- type: Transform
@@ -80758,28 +80327,14 @@ entities:
pos: 19.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2806
- components:
- - type: Transform
- pos: -25.5,-1.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2807
- components:
- - type: Transform
- pos: -27.5,-1.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 2808
components:
- type: Transform
- pos: -27.5,-0.5
+ pos: -22.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2810
components:
- type: Transform
@@ -80787,7 +80342,7 @@ entities:
pos: 21.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2811
components:
- type: Transform
@@ -80795,7 +80350,7 @@ entities:
pos: 20.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2814
components:
- type: Transform
@@ -80803,7 +80358,7 @@ entities:
pos: 21.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2815
components:
- type: Transform
@@ -80811,7 +80366,7 @@ entities:
pos: 26.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2816
components:
- type: Transform
@@ -80819,14 +80374,14 @@ entities:
pos: 19.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2820
components:
- type: Transform
pos: 17.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2842
components:
- type: Transform
@@ -80834,7 +80389,7 @@ entities:
pos: 28.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2843
components:
- type: Transform
@@ -80842,14 +80397,14 @@ entities:
pos: 30.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2844
components:
- type: Transform
pos: 17.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2849
components:
- type: Transform
@@ -80857,15 +80412,14 @@ entities:
pos: 16.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2860
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-3.5
+ pos: -22.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 2862
components:
- type: Transform
@@ -80873,7 +80427,7 @@ entities:
pos: 42.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2863
components:
- type: Transform
@@ -80881,7 +80435,7 @@ entities:
pos: 43.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2864
components:
- type: Transform
@@ -80889,7 +80443,7 @@ entities:
pos: 44.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2867
components:
- type: Transform
@@ -80897,7 +80451,7 @@ entities:
pos: 42.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2868
components:
- type: Transform
@@ -80905,14 +80459,14 @@ entities:
pos: 43.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2885
components:
- type: Transform
pos: 45.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2899
components:
- type: Transform
@@ -80920,22 +80474,22 @@ entities:
pos: 32.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2901
components:
- type: Transform
pos: 44.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2940
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2980
components:
- type: Transform
@@ -80959,7 +80513,7 @@ entities:
pos: 46.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2987
components:
- type: Transform
@@ -80967,7 +80521,7 @@ entities:
pos: 45.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2988
components:
- type: Transform
@@ -80975,14 +80529,14 @@ entities:
pos: 45.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2990
components:
- type: Transform
pos: 45.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2991
components:
- type: Transform
@@ -80990,7 +80544,7 @@ entities:
pos: 45.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2992
components:
- type: Transform
@@ -80998,7 +80552,7 @@ entities:
pos: 45.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2993
components:
- type: Transform
@@ -81006,7 +80560,7 @@ entities:
pos: 45.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2994
components:
- type: Transform
@@ -81014,7 +80568,7 @@ entities:
pos: 45.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2995
components:
- type: Transform
@@ -81022,7 +80576,7 @@ entities:
pos: 45.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2997
components:
- type: Transform
@@ -81054,7 +80608,7 @@ entities:
pos: 22.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3011
components:
- type: Transform
@@ -81095,6 +80649,22 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#D3FC03FF'
+ - uid: 3070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 3072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 3113
components:
- type: Transform
@@ -81102,7 +80672,7 @@ entities:
pos: 46.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3148
components:
- type: Transform
@@ -81110,31 +80680,23 @@ entities:
pos: 45.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 3149
+ color: '#FF1212FF'
+ - uid: 3168
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 3186
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 3187
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-3.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 3190
components:
- type: Transform
@@ -81142,7 +80704,7 @@ entities:
pos: 43.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3191
components:
- type: Transform
@@ -81150,30 +80712,22 @@ entities:
pos: 44.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3193
components:
- type: Transform
pos: 45.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3199
+ color: '#0335FCFF'
+ - uid: 3197
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3204
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3216
components:
- type: Transform
@@ -81181,15 +80735,7 @@ entities:
pos: 45.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 3217
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 3219
components:
- type: Transform
@@ -81197,140 +80743,140 @@ entities:
pos: 42.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3561
components:
- type: Transform
pos: 45.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3562
components:
- type: Transform
pos: 45.5,-34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3563
components:
- type: Transform
pos: 45.5,-35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3564
components:
- type: Transform
pos: 45.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3565
components:
- type: Transform
pos: 45.5,-36.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3566
components:
- type: Transform
pos: 45.5,-38.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3568
components:
- type: Transform
pos: 44.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3569
components:
- type: Transform
pos: 44.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3570
components:
- type: Transform
pos: 44.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3571
components:
- type: Transform
pos: 44.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3572
components:
- type: Transform
pos: 44.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3574
components:
- type: Transform
pos: 44.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3575
components:
- type: Transform
pos: 44.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3576
components:
- type: Transform
pos: 44.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3577
components:
- type: Transform
pos: 44.5,-34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3578
components:
- type: Transform
pos: 44.5,-35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3579
components:
- type: Transform
pos: 44.5,-36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3580
components:
- type: Transform
pos: 44.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3581
components:
- type: Transform
pos: 44.5,-38.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3618
components:
- type: Transform
@@ -81338,7 +80884,7 @@ entities:
pos: -6.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3619
components:
- type: Transform
@@ -81346,7 +80892,7 @@ entities:
pos: -3.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3620
components:
- type: Transform
@@ -81354,7 +80900,7 @@ entities:
pos: -4.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3711
components:
- type: Transform
@@ -81362,105 +80908,105 @@ entities:
pos: 44.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3914
components:
- type: Transform
pos: 1.5,-36.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3916
components:
- type: Transform
pos: 1.5,-38.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3917
components:
- type: Transform
pos: 1.5,-39.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3919
components:
- type: Transform
pos: 1.5,-41.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3921
components:
- type: Transform
pos: 1.5,-43.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3922
components:
- type: Transform
pos: 1.5,-44.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3923
components:
- type: Transform
pos: 1.5,-45.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3925
components:
- type: Transform
pos: -0.5,-44.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3926
components:
- type: Transform
pos: -0.5,-43.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3927
components:
- type: Transform
pos: -0.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3928
components:
- type: Transform
pos: -0.5,-41.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3931
components:
- type: Transform
pos: -0.5,-38.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3932
components:
- type: Transform
pos: -0.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3933
components:
- type: Transform
pos: -0.5,-36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3934
components:
- type: Transform
@@ -81468,7 +81014,7 @@ entities:
pos: 0.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3935
components:
- type: Transform
@@ -81476,7 +81022,7 @@ entities:
pos: -0.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3936
components:
- type: Transform
@@ -81484,7 +81030,7 @@ entities:
pos: -1.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3937
components:
- type: Transform
@@ -81492,7 +81038,7 @@ entities:
pos: -2.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3938
components:
- type: Transform
@@ -81500,7 +81046,7 @@ entities:
pos: -3.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3939
components:
- type: Transform
@@ -81508,7 +81054,7 @@ entities:
pos: -2.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3940
components:
- type: Transform
@@ -81516,7 +81062,7 @@ entities:
pos: -3.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3941
components:
- type: Transform
@@ -81524,7 +81070,7 @@ entities:
pos: -1.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3942
components:
- type: Transform
@@ -81532,7 +81078,7 @@ entities:
pos: -4.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3943
components:
- type: Transform
@@ -81540,7 +81086,7 @@ entities:
pos: -4.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3944
components:
- type: Transform
@@ -81548,7 +81094,7 @@ entities:
pos: -5.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3945
components:
- type: Transform
@@ -81556,7 +81102,7 @@ entities:
pos: -5.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3946
components:
- type: Transform
@@ -81564,7 +81110,7 @@ entities:
pos: -6.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3947
components:
- type: Transform
@@ -81572,7 +81118,7 @@ entities:
pos: -6.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3948
components:
- type: Transform
@@ -81580,7 +81126,7 @@ entities:
pos: -7.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3951
components:
- type: Transform
@@ -81588,7 +81134,7 @@ entities:
pos: -8.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3952
components:
- type: Transform
@@ -81596,7 +81142,7 @@ entities:
pos: -9.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3953
components:
- type: Transform
@@ -81604,7 +81150,7 @@ entities:
pos: -9.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3954
components:
- type: Transform
@@ -81612,7 +81158,7 @@ entities:
pos: -10.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3955
components:
- type: Transform
@@ -81620,7 +81166,7 @@ entities:
pos: -10.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3956
components:
- type: Transform
@@ -81628,7 +81174,7 @@ entities:
pos: -11.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3957
components:
- type: Transform
@@ -81636,7 +81182,7 @@ entities:
pos: -11.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3958
components:
- type: Transform
@@ -81644,7 +81190,7 @@ entities:
pos: -12.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3959
components:
- type: Transform
@@ -81652,28 +81198,28 @@ entities:
pos: -12.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3983
components:
- type: Transform
pos: -0.5,-46.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3997
components:
- type: Transform
pos: -42.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4001
components:
- type: Transform
pos: 48.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4006
components:
- type: Transform
@@ -81681,7 +81227,7 @@ entities:
pos: 14.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4008
components:
- type: Transform
@@ -81689,15 +81235,15 @@ entities:
pos: -5.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4018
+ color: '#0335FCFF'
+ - uid: 4014
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -27.5,-14.5
+ pos: -43.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 4023
components:
- type: Transform
@@ -81705,7 +81251,7 @@ entities:
pos: -34.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4024
components:
- type: Transform
@@ -81713,7 +81259,7 @@ entities:
pos: -35.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4025
components:
- type: Transform
@@ -81721,7 +81267,7 @@ entities:
pos: -31.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4026
components:
- type: Transform
@@ -81729,7 +81275,7 @@ entities:
pos: -32.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4027
components:
- type: Transform
@@ -81737,7 +81283,7 @@ entities:
pos: -33.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4028
components:
- type: Transform
@@ -81745,7 +81291,7 @@ entities:
pos: -34.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4029
components:
- type: Transform
@@ -81753,7 +81299,7 @@ entities:
pos: -35.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4030
components:
- type: Transform
@@ -81761,7 +81307,7 @@ entities:
pos: -36.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4032
components:
- type: Transform
@@ -81769,7 +81315,15 @@ entities:
pos: -37.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 4077
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,-21.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 4107
components:
- type: Transform
@@ -81777,14 +81331,14 @@ entities:
pos: 35.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4112
components:
- type: Transform
pos: 33.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4122
components:
- type: Transform
@@ -81792,7 +81346,7 @@ entities:
pos: 30.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4126
components:
- type: Transform
@@ -81800,7 +81354,7 @@ entities:
pos: 31.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4130
components:
- type: Transform
@@ -81808,7 +81362,7 @@ entities:
pos: 34.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4132
components:
- type: Transform
@@ -81816,7 +81370,7 @@ entities:
pos: 34.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4134
components:
- type: Transform
@@ -81824,7 +81378,7 @@ entities:
pos: 34.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4137
components:
- type: Transform
@@ -81838,14 +81392,14 @@ entities:
pos: 34.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4151
components:
- type: Transform
pos: 33.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4155
components:
- type: Transform
@@ -81853,7 +81407,7 @@ entities:
pos: 43.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4183
components:
- type: Transform
@@ -81861,7 +81415,7 @@ entities:
pos: 33.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4184
components:
- type: Transform
@@ -81869,7 +81423,7 @@ entities:
pos: 31.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4185
components:
- type: Transform
@@ -81877,7 +81431,7 @@ entities:
pos: 30.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4186
components:
- type: Transform
@@ -81885,7 +81439,31 @@ entities:
pos: 33.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 4206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 4207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 4208
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-21.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 4325
components:
- type: Transform
@@ -81893,14 +81471,7 @@ entities:
pos: 36.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4333
- components:
- - type: Transform
- pos: -31.5,-8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 4335
components:
- type: Transform
@@ -81908,7 +81479,7 @@ entities:
pos: 34.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4356
components:
- type: Transform
@@ -81916,15 +81487,7 @@ entities:
pos: 35.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4361
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-20.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 4484
components:
- type: Transform
@@ -81932,7 +81495,7 @@ entities:
pos: 40.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4485
components:
- type: Transform
@@ -81940,14 +81503,14 @@ entities:
pos: 37.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4486
components:
- type: Transform
pos: 44.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4488
components:
- type: Transform
@@ -81955,7 +81518,7 @@ entities:
pos: 46.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4489
components:
- type: Transform
@@ -81963,7 +81526,7 @@ entities:
pos: 47.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4490
components:
- type: Transform
@@ -81971,7 +81534,7 @@ entities:
pos: 36.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4497
components:
- type: Transform
@@ -81979,7 +81542,7 @@ entities:
pos: 48.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4507
components:
- type: Transform
@@ -81987,37 +81550,21 @@ entities:
pos: 46.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4519
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-5.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 4550
components:
- type: Transform
pos: -36.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4627
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4629
components:
- type: Transform
pos: -0.5,-60.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4645
components:
- type: Transform
@@ -82025,42 +81572,42 @@ entities:
pos: 40.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4648
components:
- type: Transform
pos: -0.5,-59.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4649
components:
- type: Transform
pos: -0.5,-58.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4650
components:
- type: Transform
pos: -0.5,-57.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4657
components:
- type: Transform
pos: 1.5,-56.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4658
components:
- type: Transform
pos: 1.5,-57.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4666
components:
- type: Transform
@@ -82068,21 +81615,21 @@ entities:
pos: 38.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4725
components:
- type: Transform
pos: 1.5,-54.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4726
components:
- type: Transform
pos: 1.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4836
components:
- type: Transform
@@ -82090,7 +81637,7 @@ entities:
pos: 1.5,-47.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4837
components:
- type: Transform
@@ -82098,7 +81645,7 @@ entities:
pos: -0.5,-48.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4838
components:
- type: Transform
@@ -82106,7 +81653,7 @@ entities:
pos: -0.5,-49.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4839
components:
- type: Transform
@@ -82114,7 +81661,7 @@ entities:
pos: 1.5,-49.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4840
components:
- type: Transform
@@ -82122,7 +81669,7 @@ entities:
pos: 1.5,-50.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4841
components:
- type: Transform
@@ -82130,7 +81677,7 @@ entities:
pos: -0.5,-50.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4842
components:
- type: Transform
@@ -82138,7 +81685,7 @@ entities:
pos: -0.5,-51.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4843
components:
- type: Transform
@@ -82146,7 +81693,7 @@ entities:
pos: 1.5,-51.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4844
components:
- type: Transform
@@ -82154,7 +81701,7 @@ entities:
pos: -0.5,-52.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4845
components:
- type: Transform
@@ -82162,14 +81709,14 @@ entities:
pos: 1.5,-52.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4908
components:
- type: Transform
pos: 1.5,-60.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4909
components:
- type: Transform
@@ -82177,7 +81724,7 @@ entities:
pos: -2.5,-65.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4916
components:
- type: Transform
@@ -82185,7 +81732,7 @@ entities:
pos: 2.5,-70.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4917
components:
- type: Transform
@@ -82193,7 +81740,7 @@ entities:
pos: 3.5,-64.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4918
components:
- type: Transform
@@ -82201,7 +81748,7 @@ entities:
pos: 2.5,-63.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4919
components:
- type: Transform
@@ -82209,7 +81756,7 @@ entities:
pos: 3.5,-69.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4920
components:
- type: Transform
@@ -82217,7 +81764,7 @@ entities:
pos: 3.5,-68.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4921
components:
- type: Transform
@@ -82225,7 +81772,7 @@ entities:
pos: -2.5,-67.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4927
components:
- type: Transform
@@ -82233,14 +81780,14 @@ entities:
pos: -3.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4928
components:
- type: Transform
pos: -0.5,-62.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4930
components:
- type: Transform
@@ -82248,7 +81795,7 @@ entities:
pos: -4.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4931
components:
- type: Transform
@@ -82256,7 +81803,7 @@ entities:
pos: 1.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4932
components:
- type: Transform
@@ -82264,7 +81811,7 @@ entities:
pos: -5.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4933
components:
- type: Transform
@@ -82272,14 +81819,14 @@ entities:
pos: -2.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4934
components:
- type: Transform
pos: 1.5,-62.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4967
components:
- type: Transform
@@ -82287,7 +81834,7 @@ entities:
pos: -6.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4968
components:
- type: Transform
@@ -82295,7 +81842,7 @@ entities:
pos: -7.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4969
components:
- type: Transform
@@ -82303,7 +81850,7 @@ entities:
pos: -7.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4970
components:
- type: Transform
@@ -82311,7 +81858,7 @@ entities:
pos: -8.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4972
components:
- type: Transform
@@ -82319,7 +81866,7 @@ entities:
pos: -2.5,-68.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4974
components:
- type: Transform
@@ -82327,7 +81874,7 @@ entities:
pos: 2.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4975
components:
- type: Transform
@@ -82335,14 +81882,14 @@ entities:
pos: -8.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4981
components:
- type: Transform
pos: 1.5,-58.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4982
components:
- type: Transform
@@ -82350,7 +81897,7 @@ entities:
pos: -2.5,-66.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4983
components:
- type: Transform
@@ -82358,7 +81905,7 @@ entities:
pos: -2.5,-69.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4984
components:
- type: Transform
@@ -82366,14 +81913,14 @@ entities:
pos: -1.5,-70.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4986
components:
- type: Transform
pos: 1.5,-59.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4988
components:
- type: Transform
@@ -82381,7 +81928,7 @@ entities:
pos: -1.5,-63.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4989
components:
- type: Transform
@@ -82389,14 +81936,14 @@ entities:
pos: -2.5,-64.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4991
components:
- type: Transform
pos: 1.5,-71.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4994
components:
- type: Transform
@@ -82404,7 +81951,7 @@ entities:
pos: 3.5,-67.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4995
components:
- type: Transform
@@ -82412,14 +81959,14 @@ entities:
pos: 3.5,-66.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4998
components:
- type: Transform
pos: -0.5,-71.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5000
components:
- type: Transform
@@ -82427,7 +81974,7 @@ entities:
pos: 2.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5012
components:
- type: Transform
@@ -82435,15 +81982,7 @@ entities:
pos: 3.5,-65.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5020
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5055
components:
- type: Transform
@@ -82451,7 +81990,7 @@ entities:
pos: 37.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5098
components:
- type: Transform
@@ -82459,21 +81998,21 @@ entities:
pos: 6.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5115
components:
- type: Transform
pos: 1.5,-73.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5117
components:
- type: Transform
pos: 1.5,-74.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5118
components:
- type: Transform
@@ -82481,7 +82020,7 @@ entities:
pos: 4.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5142
components:
- type: Transform
@@ -82489,7 +82028,7 @@ entities:
pos: 3.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5147
components:
- type: Transform
@@ -82497,7 +82036,7 @@ entities:
pos: -9.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5148
components:
- type: Transform
@@ -82505,14 +82044,22 @@ entities:
pos: 4.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5215
components:
- type: Transform
pos: -0.5,-73.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 5246
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-9.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 5299
components:
- type: Transform
@@ -82520,51 +82067,59 @@ entities:
pos: -36.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5392
components:
- type: Transform
pos: 13.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5393
components:
- type: Transform
pos: 13.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5394
components:
- type: Transform
pos: 13.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5396
components:
- type: Transform
pos: 9.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5424
+ color: '#0335FCFF'
+ - uid: 5425
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 5426
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -20.5,-13.5
+ pos: -14.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
+ - uid: 5427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 5441
components:
- type: Transform
@@ -82572,7 +82127,7 @@ entities:
pos: 41.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5443
components:
- type: Transform
@@ -82580,7 +82135,7 @@ entities:
pos: 42.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5444
components:
- type: Transform
@@ -82588,7 +82143,7 @@ entities:
pos: 38.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5447
components:
- type: Transform
@@ -82596,7 +82151,7 @@ entities:
pos: 31.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5448
components:
- type: Transform
@@ -82604,7 +82159,7 @@ entities:
pos: 32.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5449
components:
- type: Transform
@@ -82612,14 +82167,14 @@ entities:
pos: 31.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5450
components:
- type: Transform
pos: 44.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5451
components:
- type: Transform
@@ -82627,7 +82182,7 @@ entities:
pos: 30.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5452
components:
- type: Transform
@@ -82635,15 +82190,7 @@ entities:
pos: 30.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5456
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-21.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5463
components:
- type: Transform
@@ -82651,7 +82198,7 @@ entities:
pos: 38.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5464
components:
- type: Transform
@@ -82659,7 +82206,7 @@ entities:
pos: 44.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5465
components:
- type: Transform
@@ -82667,7 +82214,7 @@ entities:
pos: -22.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5467
components:
- type: Transform
@@ -82675,7 +82222,7 @@ entities:
pos: 44.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5468
components:
- type: Transform
@@ -82683,21 +82230,21 @@ entities:
pos: 41.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5469
components:
- type: Transform
pos: -38.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5470
components:
- type: Transform
pos: -38.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5471
components:
- type: Transform
@@ -82705,7 +82252,7 @@ entities:
pos: -17.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5475
components:
- type: Transform
@@ -82713,7 +82260,7 @@ entities:
pos: -16.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5487
components:
- type: Transform
@@ -82721,7 +82268,7 @@ entities:
pos: 42.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5511
components:
- type: Transform
@@ -82729,7 +82276,7 @@ entities:
pos: -13.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5517
components:
- type: Transform
@@ -82737,7 +82284,7 @@ entities:
pos: 43.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5549
components:
- type: Transform
@@ -82753,7 +82300,7 @@ entities:
pos: 45.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5558
components:
- type: Transform
@@ -82761,7 +82308,22 @@ entities:
pos: 44.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 5563
+ components:
+ - type: Transform
+ pos: -16.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 5565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-5.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 5569
components:
- type: Transform
@@ -82769,7 +82331,7 @@ entities:
pos: -44.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5570
components:
- type: Transform
@@ -82777,7 +82339,7 @@ entities:
pos: -42.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5571
components:
- type: Transform
@@ -82785,7 +82347,7 @@ entities:
pos: -42.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5572
components:
- type: Transform
@@ -82793,7 +82355,7 @@ entities:
pos: -44.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5573
components:
- type: Transform
@@ -82801,7 +82363,7 @@ entities:
pos: -44.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5574
components:
- type: Transform
@@ -82809,7 +82371,7 @@ entities:
pos: -44.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5575
components:
- type: Transform
@@ -82817,7 +82379,7 @@ entities:
pos: -42.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5576
components:
- type: Transform
@@ -82847,7 +82409,7 @@ entities:
pos: 41.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5596
components:
- type: Transform
@@ -82855,7 +82417,7 @@ entities:
pos: 45.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5648
components:
- type: Transform
@@ -82872,6 +82434,21 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 5661
+ components:
+ - type: Transform
+ pos: -22.5,-2.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-5.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 5685
components:
- type: Transform
@@ -82879,7 +82456,15 @@ entities:
pos: 33.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 5689
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 5694
components:
- type: Transform
@@ -82887,7 +82472,7 @@ entities:
pos: 8.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5697
components:
- type: Transform
@@ -82895,7 +82480,7 @@ entities:
pos: 6.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5698
components:
- type: Transform
@@ -82903,7 +82488,7 @@ entities:
pos: 7.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5704
components:
- type: Transform
@@ -82911,7 +82496,7 @@ entities:
pos: -7.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5705
components:
- type: Transform
@@ -82919,7 +82504,7 @@ entities:
pos: -6.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5707
components:
- type: Transform
@@ -82927,7 +82512,7 @@ entities:
pos: -6.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5708
components:
- type: Transform
@@ -82935,7 +82520,7 @@ entities:
pos: -5.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5713
components:
- type: Transform
@@ -82943,7 +82528,7 @@ entities:
pos: -3.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5714
components:
- type: Transform
@@ -82951,7 +82536,7 @@ entities:
pos: -2.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5715
components:
- type: Transform
@@ -82959,7 +82544,7 @@ entities:
pos: -1.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5716
components:
- type: Transform
@@ -82967,7 +82552,7 @@ entities:
pos: 1.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5717
components:
- type: Transform
@@ -82975,7 +82560,7 @@ entities:
pos: 3.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5718
components:
- type: Transform
@@ -82983,7 +82568,7 @@ entities:
pos: 4.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5719
components:
- type: Transform
@@ -82991,7 +82576,7 @@ entities:
pos: 2.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5720
components:
- type: Transform
@@ -82999,7 +82584,7 @@ entities:
pos: -0.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5721
components:
- type: Transform
@@ -83007,7 +82592,7 @@ entities:
pos: -4.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5722
components:
- type: Transform
@@ -83015,7 +82600,7 @@ entities:
pos: -3.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5723
components:
- type: Transform
@@ -83023,7 +82608,7 @@ entities:
pos: -2.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5724
components:
- type: Transform
@@ -83031,7 +82616,7 @@ entities:
pos: -1.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5726
components:
- type: Transform
@@ -83039,7 +82624,7 @@ entities:
pos: 5.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5727
components:
- type: Transform
@@ -83047,7 +82632,7 @@ entities:
pos: 4.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5728
components:
- type: Transform
@@ -83055,7 +82640,7 @@ entities:
pos: 3.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5729
components:
- type: Transform
@@ -83063,7 +82648,7 @@ entities:
pos: 2.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5731
components:
- type: Transform
@@ -83071,7 +82656,7 @@ entities:
pos: 0.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5732
components:
- type: Transform
@@ -83079,28 +82664,59 @@ entities:
pos: 0.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5734
components:
- type: Transform
pos: -0.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5735
components:
- type: Transform
pos: 1.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5737
components:
- type: Transform
pos: 1.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 5743
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 5753
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 5754
+ components:
+ - type: Transform
+ pos: -25.5,-17.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 5756
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-11.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 5762
components:
- type: Transform
@@ -83108,7 +82724,7 @@ entities:
pos: 15.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5763
components:
- type: Transform
@@ -83116,7 +82732,7 @@ entities:
pos: 15.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5764
components:
- type: Transform
@@ -83124,7 +82740,7 @@ entities:
pos: 17.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5818
components:
- type: Transform
@@ -83132,14 +82748,7 @@ entities:
pos: 17.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5825
- components:
- - type: Transform
- pos: -25.5,-0.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5832
components:
- type: Transform
@@ -83147,21 +82756,28 @@ entities:
pos: 34.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5834
components:
- type: Transform
pos: -38.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 5842
+ components:
+ - type: Transform
+ pos: -21.5,-2.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 5846
components:
- type: Transform
pos: 1.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5852
components:
- type: Transform
@@ -83169,7 +82785,7 @@ entities:
pos: 43.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5875
components:
- type: Transform
@@ -83182,49 +82798,42 @@ entities:
pos: 15.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5893
components:
- type: Transform
pos: -28.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5894
components:
- type: Transform
pos: -29.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5895
components:
- type: Transform
pos: -29.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5896
components:
- type: Transform
pos: -28.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5904
components:
- type: Transform
pos: 48.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5910
- components:
- - type: Transform
- pos: -23.5,-13.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5913
components:
- type: Transform
@@ -83232,7 +82841,7 @@ entities:
pos: 46.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5916
components:
- type: Transform
@@ -83240,7 +82849,7 @@ entities:
pos: 6.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5920
components:
- type: Transform
@@ -83248,63 +82857,71 @@ entities:
pos: 19.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5931
components:
- type: Transform
pos: -38.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5939
components:
- type: Transform
pos: -36.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5941
components:
- type: Transform
pos: -52.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5944
components:
- type: Transform
pos: -52.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5945
components:
- type: Transform
pos: -36.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5946
components:
- type: Transform
pos: -49.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 5947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 5948
components:
- type: Transform
pos: -52.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5949
components:
- type: Transform
pos: -36.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5957
components:
- type: Transform
@@ -83312,7 +82929,7 @@ entities:
pos: -40.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5958
components:
- type: Transform
@@ -83320,7 +82937,7 @@ entities:
pos: -50.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5959
components:
- type: Transform
@@ -83328,7 +82945,15 @@ entities:
pos: -43.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 5961
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 5965
components:
- type: Transform
@@ -83336,7 +82961,7 @@ entities:
pos: -38.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5966
components:
- type: Transform
@@ -83344,14 +82969,14 @@ entities:
pos: -43.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5968
components:
- type: Transform
pos: 48.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5969
components:
- type: Transform
@@ -83359,7 +82984,7 @@ entities:
pos: -42.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5970
components:
- type: Transform
@@ -83367,7 +82992,7 @@ entities:
pos: -49.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5973
components:
- type: Transform
@@ -83375,7 +83000,15 @@ entities:
pos: -38.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 5974
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 5975
components:
- type: Transform
@@ -83383,14 +83016,14 @@ entities:
pos: -55.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5976
components:
- type: Transform
pos: -36.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5977
components:
- type: Transform
@@ -83398,7 +83031,7 @@ entities:
pos: -53.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5978
components:
- type: Transform
@@ -83406,7 +83039,7 @@ entities:
pos: -52.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5979
components:
- type: Transform
@@ -83414,7 +83047,7 @@ entities:
pos: -48.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5981
components:
- type: Transform
@@ -83422,35 +83055,35 @@ entities:
pos: -45.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5982
components:
- type: Transform
pos: -42.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5984
components:
- type: Transform
pos: -47.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5985
components:
- type: Transform
pos: -47.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5986
components:
- type: Transform
pos: -49.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5989
components:
- type: Transform
@@ -83458,7 +83091,7 @@ entities:
pos: -37.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5992
components:
- type: Transform
@@ -83466,14 +83099,14 @@ entities:
pos: -46.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5993
components:
- type: Transform
pos: -55.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5994
components:
- type: Transform
@@ -83481,7 +83114,7 @@ entities:
pos: -39.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5995
components:
- type: Transform
@@ -83489,7 +83122,7 @@ entities:
pos: -40.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5996
components:
- type: Transform
@@ -83497,7 +83130,7 @@ entities:
pos: -41.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5997
components:
- type: Transform
@@ -83505,7 +83138,7 @@ entities:
pos: -45.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5998
components:
- type: Transform
@@ -83513,7 +83146,7 @@ entities:
pos: -39.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5999
components:
- type: Transform
@@ -83521,7 +83154,7 @@ entities:
pos: -46.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6000
components:
- type: Transform
@@ -83529,7 +83162,7 @@ entities:
pos: -37.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6001
components:
- type: Transform
@@ -83537,7 +83170,7 @@ entities:
pos: -55.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6003
components:
- type: Transform
@@ -83545,7 +83178,7 @@ entities:
pos: -40.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6004
components:
- type: Transform
@@ -83553,7 +83186,7 @@ entities:
pos: -44.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6006
components:
- type: Transform
@@ -83561,7 +83194,7 @@ entities:
pos: -54.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6007
components:
- type: Transform
@@ -83569,7 +83202,7 @@ entities:
pos: -51.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6009
components:
- type: Transform
@@ -83577,7 +83210,7 @@ entities:
pos: 10.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6010
components:
- type: Transform
@@ -83585,7 +83218,7 @@ entities:
pos: -55.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6011
components:
- type: Transform
@@ -83593,14 +83226,14 @@ entities:
pos: -35.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6016
components:
- type: Transform
pos: -38.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6017
components:
- type: Transform
@@ -83608,7 +83241,7 @@ entities:
pos: -51.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6019
components:
- type: Transform
@@ -83616,7 +83249,7 @@ entities:
pos: -53.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6021
components:
- type: Transform
@@ -83624,7 +83257,7 @@ entities:
pos: -46.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6022
components:
- type: Transform
@@ -83632,7 +83265,7 @@ entities:
pos: -47.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6023
components:
- type: Transform
@@ -83640,7 +83273,7 @@ entities:
pos: -45.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6025
components:
- type: Transform
@@ -83648,7 +83281,7 @@ entities:
pos: -44.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6027
components:
- type: Transform
@@ -83656,14 +83289,14 @@ entities:
pos: -47.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6029
components:
- type: Transform
pos: -47.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6030
components:
- type: Transform
@@ -83671,7 +83304,7 @@ entities:
pos: -48.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6031
components:
- type: Transform
@@ -83679,7 +83312,7 @@ entities:
pos: -50.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6033
components:
- type: Transform
@@ -83687,7 +83320,15 @@ entities:
pos: -40.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 6034
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-10.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 6035
components:
- type: Transform
@@ -83695,7 +83336,15 @@ entities:
pos: -39.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 6039
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 6040
components:
- type: Transform
@@ -83703,7 +83352,15 @@ entities:
pos: -44.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 6044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-13.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 6045
components:
- type: Transform
@@ -83711,14 +83368,14 @@ entities:
pos: -55.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6048
components:
- type: Transform
pos: -47.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6057
components:
- type: Transform
@@ -83726,7 +83383,7 @@ entities:
pos: -45.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6059
components:
- type: Transform
@@ -83734,14 +83391,14 @@ entities:
pos: -46.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6060
components:
- type: Transform
pos: -47.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6063
components:
- type: Transform
@@ -83749,7 +83406,7 @@ entities:
pos: -45.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6064
components:
- type: Transform
@@ -83757,7 +83414,7 @@ entities:
pos: -42.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6095
components:
- type: Transform
@@ -83765,7 +83422,7 @@ entities:
pos: -43.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6096
components:
- type: Transform
@@ -83773,7 +83430,7 @@ entities:
pos: -55.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6106
components:
- type: Transform
@@ -83781,7 +83438,7 @@ entities:
pos: -44.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6107
components:
- type: Transform
@@ -83789,7 +83446,7 @@ entities:
pos: -44.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6108
components:
- type: Transform
@@ -83797,14 +83454,14 @@ entities:
pos: -44.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6110
components:
- type: Transform
pos: -49.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6111
components:
- type: Transform
@@ -83812,14 +83469,14 @@ entities:
pos: -47.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6113
components:
- type: Transform
pos: -49.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6114
components:
- type: Transform
@@ -83827,7 +83484,7 @@ entities:
pos: -46.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6115
components:
- type: Transform
@@ -83835,7 +83492,7 @@ entities:
pos: -44.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6116
components:
- type: Transform
@@ -83843,7 +83500,7 @@ entities:
pos: -44.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6122
components:
- type: Transform
@@ -83851,7 +83508,7 @@ entities:
pos: -48.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6124
components:
- type: Transform
@@ -83859,7 +83516,7 @@ entities:
pos: 11.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6134
components:
- type: Transform
@@ -83867,7 +83524,7 @@ entities:
pos: -48.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6178
components:
- type: Transform
@@ -83875,7 +83532,7 @@ entities:
pos: -19.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6180
components:
- type: Transform
@@ -83883,7 +83540,7 @@ entities:
pos: -23.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6197
components:
- type: Transform
@@ -83891,7 +83548,7 @@ entities:
pos: 7.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6198
components:
- type: Transform
@@ -83899,7 +83556,7 @@ entities:
pos: 3.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6199
components:
- type: Transform
@@ -83907,28 +83564,36 @@ entities:
pos: 5.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 6208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-5.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 6212
components:
- type: Transform
pos: -0.5,-54.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6217
components:
- type: Transform
pos: -0.5,-56.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6218
components:
- type: Transform
pos: -0.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6267
components:
- type: Transform
@@ -83936,7 +83601,7 @@ entities:
pos: -55.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6269
components:
- type: Transform
@@ -83944,7 +83609,7 @@ entities:
pos: -38.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6279
components:
- type: Transform
@@ -83952,7 +83617,7 @@ entities:
pos: 12.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6281
components:
- type: Transform
@@ -83960,7 +83625,7 @@ entities:
pos: 17.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6283
components:
- type: Transform
@@ -83968,14 +83633,14 @@ entities:
pos: 17.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6284
components:
- type: Transform
pos: 15.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6285
components:
- type: Transform
@@ -83983,7 +83648,7 @@ entities:
pos: 15.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6287
components:
- type: Transform
@@ -83991,7 +83656,7 @@ entities:
pos: 15.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6289
components:
- type: Transform
@@ -83999,7 +83664,7 @@ entities:
pos: 16.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6291
components:
- type: Transform
@@ -84007,7 +83672,7 @@ entities:
pos: 14.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6292
components:
- type: Transform
@@ -84015,7 +83680,7 @@ entities:
pos: 13.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6293
components:
- type: Transform
@@ -84023,7 +83688,7 @@ entities:
pos: 12.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6294
components:
- type: Transform
@@ -84031,7 +83696,7 @@ entities:
pos: 16.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6295
components:
- type: Transform
@@ -84039,7 +83704,7 @@ entities:
pos: 15.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6296
components:
- type: Transform
@@ -84047,7 +83712,7 @@ entities:
pos: 14.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6297
components:
- type: Transform
@@ -84055,7 +83720,7 @@ entities:
pos: 13.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6298
components:
- type: Transform
@@ -84063,14 +83728,7 @@ entities:
pos: 15.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6309
- components:
- - type: Transform
- pos: -22.5,-11.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 6358
components:
- type: Transform
@@ -84078,7 +83736,7 @@ entities:
pos: -35.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6371
components:
- type: Transform
@@ -84086,7 +83744,7 @@ entities:
pos: 17.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6379
components:
- type: Transform
@@ -84094,7 +83752,7 @@ entities:
pos: -1.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6391
components:
- type: Transform
@@ -84102,7 +83760,7 @@ entities:
pos: 17.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6399
components:
- type: Transform
@@ -84110,7 +83768,7 @@ entities:
pos: 17.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6410
components:
- type: Transform
@@ -84118,7 +83776,7 @@ entities:
pos: -2.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6457
components:
- type: Transform
@@ -84126,7 +83784,15 @@ entities:
pos: -0.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 6542
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-2.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 6596
components:
- type: Transform
@@ -84142,7 +83808,39 @@ entities:
pos: 7.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 6651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-12.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 6706
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 6710
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-13.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 6759
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 6760
components:
- type: Transform
@@ -84150,22 +83848,7 @@ entities:
pos: -19.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6761
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6763
- components:
- - type: Transform
- pos: -21.5,-0.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6778
components:
- type: Transform
@@ -84181,14 +83864,21 @@ entities:
pos: 2.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 6798
+ components:
+ - type: Transform
+ pos: -31.5,-4.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 6799
components:
- type: Transform
pos: -38.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6800
components:
- type: Transform
@@ -84196,15 +83886,15 @@ entities:
pos: -32.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6801
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6802
components:
- type: Transform
@@ -84212,14 +83902,7 @@ entities:
pos: -29.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6804
- components:
- - type: Transform
- pos: -30.5,-8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6809
components:
- type: Transform
@@ -84227,14 +83910,7 @@ entities:
pos: 17.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6824
- components:
- - type: Transform
- pos: -27.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 6833
components:
- type: Transform
@@ -84242,7 +83918,7 @@ entities:
pos: 45.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6837
components:
- type: Transform
@@ -84250,7 +83926,7 @@ entities:
pos: 41.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6838
components:
- type: Transform
@@ -84258,7 +83934,7 @@ entities:
pos: 42.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6839
components:
- type: Transform
@@ -84266,7 +83942,7 @@ entities:
pos: 44.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6840
components:
- type: Transform
@@ -84274,7 +83950,23 @@ entities:
pos: 45.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 6884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 6887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-1.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 6982
components:
- type: Transform
@@ -84282,7 +83974,7 @@ entities:
pos: -41.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7012
components:
- type: Transform
@@ -84290,7 +83982,7 @@ entities:
pos: 15.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7115
components:
- type: Transform
@@ -84303,20 +83995,13 @@ entities:
pos: 15.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7123
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -53.5,48.5
parent: 60
- - uid: 7166
- components:
- - type: Transform
- pos: -22.5,-4.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 7200
components:
- type: Transform
@@ -84324,21 +84009,21 @@ entities:
pos: 16.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7211
components:
- type: Transform
pos: -49.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7214
components:
- type: Transform
pos: -23.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7215
components:
- type: Transform
@@ -84346,15 +84031,23 @@ entities:
pos: 23.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 7284
+ color: '#0335FCFF'
+ - uid: 7220
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
+ - uid: 7225
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,10.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 7335
components:
- type: Transform
@@ -84391,21 +84084,21 @@ entities:
pos: 1.5,-75.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7382
components:
- type: Transform
pos: -0.5,-74.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7383
components:
- type: Transform
pos: -0.5,-75.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7458
components:
- type: Transform
@@ -84413,15 +84106,7 @@ entities:
pos: -28.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 7464
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-20.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7473
components:
- type: Transform
@@ -84429,7 +84114,7 @@ entities:
pos: 5.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7478
components:
- type: Transform
@@ -84437,30 +84122,47 @@ entities:
pos: 6.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7601
components:
- type: Transform
- pos: -22.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
+ - uid: 7604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-22.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 7612
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-9.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 7647
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 7649
+ color: '#0335FCFF'
+ - uid: 7657
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -22.5,-20.5
+ pos: -39.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7670
components:
- type: Transform
@@ -84468,21 +84170,21 @@ entities:
pos: 27.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7676
components:
- type: Transform
pos: -49.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7680
components:
- type: Transform
pos: -36.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7681
components:
- type: Transform
@@ -84490,14 +84192,14 @@ entities:
pos: -29.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7715
components:
- type: Transform
pos: 33.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7716
components:
- type: Transform
@@ -84505,7 +84207,7 @@ entities:
pos: 32.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7717
components:
- type: Transform
@@ -84513,22 +84215,22 @@ entities:
pos: 32.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 7785
+ color: '#FF1212FF'
+ - uid: 7787
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 7835
components:
- type: Transform
pos: 4.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7856
components:
- type: Transform
@@ -84536,13 +84238,28 @@ entities:
pos: 45.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7896
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -41.5,39.5
parent: 60
+ - uid: 7903
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,9.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 7905
+ components:
+ - type: Transform
+ pos: -36.5,4.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 7981
components:
- type: Transform
@@ -84700,7 +84417,7 @@ entities:
pos: 25.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8130
components:
- type: Transform
@@ -84708,7 +84425,7 @@ entities:
pos: -1.5,-45.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8131
components:
- type: Transform
@@ -84716,7 +84433,7 @@ entities:
pos: -2.5,-45.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8132
components:
- type: Transform
@@ -84724,7 +84441,7 @@ entities:
pos: 0.5,-46.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8133
components:
- type: Transform
@@ -84732,7 +84449,7 @@ entities:
pos: -0.5,-46.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8134
components:
- type: Transform
@@ -84740,7 +84457,7 @@ entities:
pos: -1.5,-46.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8135
components:
- type: Transform
@@ -84748,27 +84465,35 @@ entities:
pos: -2.5,-46.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8151
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -52.5,48.5
parent: 60
+ - uid: 8203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-12.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 8204
components:
- type: Transform
pos: -38.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8206
components:
- type: Transform
pos: -38.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8207
components:
- type: Transform
@@ -84776,39 +84501,46 @@ entities:
pos: -26.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8212
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8223
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8225
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8228
+ color: '#0335FCFF'
+ - uid: 8230
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -21.5,-4.5
+ pos: -25.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
+ - uid: 8242
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.5,-21.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 8244
+ components:
+ - type: Transform
+ pos: -25.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8246
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-5.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 8257
components:
- type: Transform
@@ -84816,62 +84548,71 @@ entities:
pos: 45.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8261
+ color: '#FF1212FF'
+ - uid: 8258
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-8.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8269
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,-23.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8274
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-6.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8277
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-14.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8292
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,5.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 8336
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -30.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8263
+ color: '#0335FCFF'
+ - uid: 8350
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -29.5,-2.5
+ pos: -13.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8264
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8267
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-1.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8270
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-3.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8274
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8386
- components:
- - type: Transform
- pos: -22.5,-10.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8387
components:
- type: Transform
@@ -84879,125 +84620,94 @@ entities:
pos: 23.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 8436
+ components:
+ - type: Transform
+ pos: -43.5,-17.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-2.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 8533
components:
- type: Transform
pos: 17.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8534
components:
- type: Transform
pos: 17.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8535
components:
- type: Transform
pos: 17.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8538
components:
- type: Transform
pos: 15.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8539
components:
- type: Transform
pos: 15.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8540
components:
- type: Transform
pos: 15.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8541
components:
- type: Transform
pos: 15.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8577
+ color: '#0335FCFF'
+ - uid: 8569
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -31.5,-16.5
+ pos: -39.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8711
- components:
- - type: Transform
- pos: -21.5,-1.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8712
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-1.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8713
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-0.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8717
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,0.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8719
- components:
- - type: Transform
- pos: -18.5,-17.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8721
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8749
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 8792
components:
- type: Transform
pos: -16.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 8891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,4.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 8899
components:
- type: Transform
@@ -85017,80 +84727,58 @@ entities:
pos: -55.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 8922
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-1.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 8945
components:
- type: Transform
pos: 1.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8949
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8963
components:
- type: Transform
pos: 44.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8964
components:
- type: Transform
pos: 44.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9003
components:
- type: Transform
pos: 19.5,-34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9014
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,0.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9022
components:
- type: Transform
pos: 44.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9031
+ color: '#FF1212FF'
+ - uid: 9042
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -21.5,-15.5
+ pos: -44.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 9033
- components:
- - type: Transform
- pos: -18.5,-16.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9043
- components:
- - type: Transform
- pos: -18.5,-18.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 9045
components:
- type: Transform
@@ -85098,31 +84786,46 @@ entities:
pos: 39.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9148
+ color: '#FF1212FF'
+ - uid: 9111
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,-22.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 9149
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,-21.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 9151
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 9153
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -35.5,4.5
+ pos: -11.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 9158
+ color: '#FF1212FF'
+ - uid: 9154
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-2.5
+ pos: -45.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 9159
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9358
components:
- type: Transform
@@ -85143,6 +84846,14 @@ entities:
- type: Transform
pos: -53.5,15.5
parent: 60
+ - uid: 9488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 9609
components:
- type: Transform
@@ -85150,7 +84861,7 @@ entities:
pos: -46.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9610
components:
- type: Transform
@@ -85158,7 +84869,7 @@ entities:
pos: -45.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9635
components:
- type: Transform
@@ -85166,7 +84877,7 @@ entities:
pos: -53.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9636
components:
- type: Transform
@@ -85174,7 +84885,7 @@ entities:
pos: -54.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9639
components:
- type: Transform
@@ -85182,7 +84893,7 @@ entities:
pos: -39.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9640
components:
- type: Transform
@@ -85190,7 +84901,7 @@ entities:
pos: -40.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9642
components:
- type: Transform
@@ -85198,7 +84909,7 @@ entities:
pos: -43.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9649
components:
- type: Transform
@@ -85206,7 +84917,7 @@ entities:
pos: -44.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9650
components:
- type: Transform
@@ -85214,7 +84925,7 @@ entities:
pos: -45.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9653
components:
- type: Transform
@@ -85222,63 +84933,63 @@ entities:
pos: -53.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9654
components:
- type: Transform
pos: -54.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9655
components:
- type: Transform
pos: -54.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9657
components:
- type: Transform
pos: -54.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9658
components:
- type: Transform
pos: -54.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9659
components:
- type: Transform
pos: -54.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9660
components:
- type: Transform
pos: -54.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9661
components:
- type: Transform
pos: -54.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9662
components:
- type: Transform
pos: -54.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9663
components:
- type: Transform
@@ -85308,13 +85019,37 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 9681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-4.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 10310
components:
- type: Transform
pos: -58.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 10585
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-6.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 10676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-9.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 10695
components:
- type: Transform
@@ -85322,7 +85057,7 @@ entities:
pos: -51.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 10696
components:
- type: Transform
@@ -85330,15 +85065,7 @@ entities:
pos: -49.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 10828
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,4.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 11132
components:
- type: Transform
@@ -85346,7 +85073,7 @@ entities:
pos: 46.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11158
components:
- type: Transform
@@ -85354,7 +85081,23 @@ entities:
pos: 43.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 11361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-20.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 11371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-1.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 11379
components:
- type: Transform
@@ -85362,7 +85105,7 @@ entities:
pos: 14.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11739
components:
- type: Transform
@@ -85370,7 +85113,7 @@ entities:
pos: 44.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11757
components:
- type: Transform
@@ -85378,7 +85121,7 @@ entities:
pos: 47.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11814
components:
- type: Transform
@@ -85386,7 +85129,7 @@ entities:
pos: 45.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11830
components:
- type: Transform
@@ -85394,14 +85137,14 @@ entities:
pos: 48.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12221
components:
- type: Transform
pos: 9.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12284
components:
- type: Transform
@@ -85409,7 +85152,7 @@ entities:
pos: 42.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12522
components:
- type: Transform
@@ -85430,28 +85173,28 @@ entities:
pos: 41.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12620
components:
- type: Transform
pos: 49.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12627
components:
- type: Transform
pos: 38.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12628
components:
- type: Transform
pos: 38.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12630
components:
- type: Transform
@@ -85459,7 +85202,7 @@ entities:
pos: 40.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12824
components:
- type: Transform
@@ -85467,7 +85210,7 @@ entities:
pos: -37.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12826
components:
- type: Transform
@@ -85475,7 +85218,7 @@ entities:
pos: -40.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12827
components:
- type: Transform
@@ -85483,7 +85226,7 @@ entities:
pos: -41.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12828
components:
- type: Transform
@@ -85491,42 +85234,42 @@ entities:
pos: -42.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12830
components:
- type: Transform
pos: -43.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12831
components:
- type: Transform
pos: -43.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12832
components:
- type: Transform
pos: -43.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12833
components:
- type: Transform
pos: -43.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12834
components:
- type: Transform
pos: -43.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12836
components:
- type: Transform
@@ -85534,7 +85277,7 @@ entities:
pos: -44.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12838
components:
- type: Transform
@@ -85542,7 +85285,7 @@ entities:
pos: -47.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12843
components:
- type: Transform
@@ -85550,7 +85293,7 @@ entities:
pos: -39.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12844
components:
- type: Transform
@@ -85558,21 +85301,21 @@ entities:
pos: -38.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12847
components:
- type: Transform
pos: -43.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12848
components:
- type: Transform
pos: -43.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12849
components:
- type: Transform
@@ -85580,7 +85323,7 @@ entities:
pos: -46.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12850
components:
- type: Transform
@@ -85588,7 +85331,7 @@ entities:
pos: -45.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13081
components:
- type: Transform
@@ -85596,7 +85339,7 @@ entities:
pos: 43.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13140
components:
- type: Transform
@@ -85604,14 +85347,14 @@ entities:
pos: 38.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13206
components:
- type: Transform
pos: 49.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13210
components:
- type: Transform
@@ -85619,7 +85362,7 @@ entities:
pos: 40.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13237
components:
- type: Transform
@@ -85627,7 +85370,7 @@ entities:
pos: 18.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13239
components:
- type: Transform
@@ -85635,7 +85378,7 @@ entities:
pos: 17.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13240
components:
- type: Transform
@@ -85643,7 +85386,7 @@ entities:
pos: 18.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13244
components:
- type: Transform
@@ -85651,7 +85394,7 @@ entities:
pos: 24.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13268
components:
- type: Transform
@@ -85664,7 +85407,7 @@ entities:
pos: 49.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13505
components:
- type: Transform
@@ -85672,7 +85415,7 @@ entities:
pos: 46.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13506
components:
- type: Transform
@@ -85680,7 +85423,7 @@ entities:
pos: 45.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13507
components:
- type: Transform
@@ -85688,14 +85431,14 @@ entities:
pos: 41.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13508
components:
- type: Transform
pos: 49.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13509
components:
- type: Transform
@@ -85703,14 +85446,14 @@ entities:
pos: 41.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13511
components:
- type: Transform
pos: 49.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13512
components:
- type: Transform
@@ -85718,7 +85461,7 @@ entities:
pos: 44.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13513
components:
- type: Transform
@@ -85726,7 +85469,7 @@ entities:
pos: 43.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13518
components:
- type: Transform
@@ -85734,7 +85477,7 @@ entities:
pos: 38.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13539
components:
- type: Transform
@@ -85742,7 +85485,7 @@ entities:
pos: 17.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13540
components:
- type: Transform
@@ -85750,7 +85493,7 @@ entities:
pos: 18.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13541
components:
- type: Transform
@@ -85758,7 +85501,7 @@ entities:
pos: 19.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13542
components:
- type: Transform
@@ -85766,7 +85509,7 @@ entities:
pos: 18.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13543
components:
- type: Transform
@@ -85774,7 +85517,7 @@ entities:
pos: 19.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13544
components:
- type: Transform
@@ -85782,7 +85525,7 @@ entities:
pos: 20.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13545
components:
- type: Transform
@@ -85790,7 +85533,7 @@ entities:
pos: 21.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13550
components:
- type: Transform
@@ -85798,7 +85541,7 @@ entities:
pos: -32.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13564
components:
- type: Transform
@@ -85806,7 +85549,7 @@ entities:
pos: 23.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13565
components:
- type: Transform
@@ -85814,7 +85557,7 @@ entities:
pos: 24.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13566
components:
- type: Transform
@@ -85822,7 +85565,7 @@ entities:
pos: 39.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13573
components:
- type: Transform
@@ -85830,7 +85573,7 @@ entities:
pos: 13.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13587
components:
- type: Transform
@@ -85838,7 +85581,7 @@ entities:
pos: 26.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13588
components:
- type: Transform
@@ -85846,14 +85589,14 @@ entities:
pos: 3.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13591
components:
- type: Transform
pos: 49.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13594
components:
- type: Transform
@@ -85861,7 +85604,7 @@ entities:
pos: 27.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13595
components:
- type: Transform
@@ -85869,7 +85612,7 @@ entities:
pos: 28.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13596
components:
- type: Transform
@@ -85877,7 +85620,7 @@ entities:
pos: 29.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13597
components:
- type: Transform
@@ -85885,7 +85628,7 @@ entities:
pos: 30.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13630
components:
- type: Transform
@@ -85893,7 +85636,7 @@ entities:
pos: 32.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13640
components:
- type: Transform
@@ -85901,7 +85644,7 @@ entities:
pos: 12.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13643
components:
- type: Transform
@@ -85921,7 +85664,7 @@ entities:
pos: 33.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13652
components:
- type: Transform
@@ -85929,7 +85672,7 @@ entities:
pos: 34.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13653
components:
- type: Transform
@@ -85937,7 +85680,7 @@ entities:
pos: 35.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13674
components:
- type: Transform
@@ -85945,7 +85688,7 @@ entities:
pos: -8.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13675
components:
- type: Transform
@@ -85953,7 +85696,7 @@ entities:
pos: -8.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13676
components:
- type: Transform
@@ -85961,7 +85704,7 @@ entities:
pos: -8.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13806
components:
- type: Transform
@@ -85969,7 +85712,7 @@ entities:
pos: 36.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13807
components:
- type: Transform
@@ -85977,7 +85720,7 @@ entities:
pos: 37.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13809
components:
- type: Transform
@@ -85985,7 +85728,7 @@ entities:
pos: 39.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13810
components:
- type: Transform
@@ -85993,7 +85736,7 @@ entities:
pos: 22.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13822
components:
- type: Transform
@@ -86001,7 +85744,7 @@ entities:
pos: 25.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13836
components:
- type: Transform
@@ -86009,7 +85752,7 @@ entities:
pos: 25.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13837
components:
- type: Transform
@@ -86017,7 +85760,7 @@ entities:
pos: 26.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13839
components:
- type: Transform
@@ -86025,7 +85768,7 @@ entities:
pos: -26.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13840
components:
- type: Transform
@@ -86033,7 +85776,7 @@ entities:
pos: -26.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13841
components:
- type: Transform
@@ -86041,7 +85784,7 @@ entities:
pos: -26.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13843
components:
- type: Transform
@@ -86049,7 +85792,7 @@ entities:
pos: 27.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13869
components:
- type: Transform
@@ -86057,7 +85800,7 @@ entities:
pos: -30.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13877
components:
- type: Transform
@@ -86071,7 +85814,7 @@ entities:
pos: 28.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13920
components:
- type: Transform
@@ -86079,7 +85822,7 @@ entities:
pos: 29.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13921
components:
- type: Transform
@@ -86087,7 +85830,7 @@ entities:
pos: 30.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13932
components:
- type: Transform
@@ -86095,7 +85838,7 @@ entities:
pos: -14.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13935
components:
- type: Transform
@@ -86115,7 +85858,7 @@ entities:
pos: 31.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14003
components:
- type: Transform
@@ -86123,7 +85866,7 @@ entities:
pos: -26.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14004
components:
- type: Transform
@@ -86131,7 +85874,7 @@ entities:
pos: -26.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14005
components:
- type: Transform
@@ -86139,7 +85882,7 @@ entities:
pos: -26.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14016
components:
- type: Transform
@@ -86147,7 +85890,7 @@ entities:
pos: 33.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14017
components:
- type: Transform
@@ -86155,7 +85898,7 @@ entities:
pos: 34.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14018
components:
- type: Transform
@@ -86163,7 +85906,7 @@ entities:
pos: 35.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14019
components:
- type: Transform
@@ -86171,7 +85914,7 @@ entities:
pos: 36.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14020
components:
- type: Transform
@@ -86179,7 +85922,7 @@ entities:
pos: 37.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14023
components:
- type: Transform
@@ -86187,7 +85930,7 @@ entities:
pos: 16.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14024
components:
- type: Transform
@@ -86195,7 +85938,7 @@ entities:
pos: 17.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14025
components:
- type: Transform
@@ -86203,7 +85946,7 @@ entities:
pos: 18.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14026
components:
- type: Transform
@@ -86211,7 +85954,7 @@ entities:
pos: 19.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14027
components:
- type: Transform
@@ -86219,7 +85962,7 @@ entities:
pos: 20.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14028
components:
- type: Transform
@@ -86227,7 +85970,7 @@ entities:
pos: 21.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14030
components:
- type: Transform
@@ -86235,7 +85978,7 @@ entities:
pos: 23.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14031
components:
- type: Transform
@@ -86243,7 +85986,7 @@ entities:
pos: 24.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14032
components:
- type: Transform
@@ -86251,7 +85994,7 @@ entities:
pos: 25.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14033
components:
- type: Transform
@@ -86259,7 +86002,7 @@ entities:
pos: 26.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14034
components:
- type: Transform
@@ -86267,7 +86010,7 @@ entities:
pos: 27.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14035
components:
- type: Transform
@@ -86275,7 +86018,7 @@ entities:
pos: 28.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14036
components:
- type: Transform
@@ -86283,7 +86026,7 @@ entities:
pos: 29.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14037
components:
- type: Transform
@@ -86291,7 +86034,7 @@ entities:
pos: 30.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14038
components:
- type: Transform
@@ -86299,7 +86042,7 @@ entities:
pos: 31.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14039
components:
- type: Transform
@@ -86307,7 +86050,7 @@ entities:
pos: 32.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14041
components:
- type: Transform
@@ -86315,7 +86058,7 @@ entities:
pos: 34.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14042
components:
- type: Transform
@@ -86323,7 +86066,7 @@ entities:
pos: 35.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14045
components:
- type: Transform
@@ -86331,7 +86074,7 @@ entities:
pos: 37.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14046
components:
- type: Transform
@@ -86339,7 +86082,7 @@ entities:
pos: 38.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14048
components:
- type: Transform
@@ -86347,21 +86090,37 @@ entities:
pos: 40.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14132
components:
- type: Transform
pos: -9.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14153
components:
- type: Transform
pos: -9.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ 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
@@ -86369,7 +86128,7 @@ entities:
pos: -21.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14209
components:
- type: Transform
@@ -86377,7 +86136,7 @@ entities:
pos: -13.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14214
components:
- type: Transform
@@ -86385,15 +86144,7 @@ entities:
pos: -15.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14229
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 14232
components:
- type: Transform
@@ -86401,7 +86152,7 @@ entities:
pos: -16.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14233
components:
- type: Transform
@@ -86409,7 +86160,7 @@ entities:
pos: -16.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14234
components:
- type: Transform
@@ -86417,7 +86168,7 @@ entities:
pos: -16.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14235
components:
- type: Transform
@@ -86425,7 +86176,7 @@ entities:
pos: -16.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14236
components:
- type: Transform
@@ -86433,7 +86184,7 @@ entities:
pos: -16.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14238
components:
- type: Transform
@@ -86441,7 +86192,7 @@ entities:
pos: -16.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14239
components:
- type: Transform
@@ -86449,7 +86200,7 @@ entities:
pos: -16.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14240
components:
- type: Transform
@@ -86457,7 +86208,7 @@ entities:
pos: -16.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14242
components:
- type: Transform
@@ -86465,7 +86216,7 @@ entities:
pos: -16.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14243
components:
- type: Transform
@@ -86473,7 +86224,7 @@ entities:
pos: -16.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14244
components:
- type: Transform
@@ -86481,7 +86232,7 @@ entities:
pos: -16.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14245
components:
- type: Transform
@@ -86489,7 +86240,7 @@ entities:
pos: -14.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14246
components:
- type: Transform
@@ -86497,7 +86248,7 @@ entities:
pos: -14.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14247
components:
- type: Transform
@@ -86505,7 +86256,7 @@ entities:
pos: -14.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14248
components:
- type: Transform
@@ -86513,7 +86264,7 @@ entities:
pos: -14.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14249
components:
- type: Transform
@@ -86521,7 +86272,7 @@ entities:
pos: -14.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14250
components:
- type: Transform
@@ -86529,7 +86280,7 @@ entities:
pos: -14.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14252
components:
- type: Transform
@@ -86537,7 +86288,7 @@ entities:
pos: -14.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14253
components:
- type: Transform
@@ -86545,7 +86296,7 @@ entities:
pos: -14.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14254
components:
- type: Transform
@@ -86553,7 +86304,7 @@ entities:
pos: -14.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14255
components:
- type: Transform
@@ -86561,7 +86312,7 @@ entities:
pos: -14.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14256
components:
- type: Transform
@@ -86569,7 +86320,7 @@ entities:
pos: -14.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14257
components:
- type: Transform
@@ -86577,7 +86328,7 @@ entities:
pos: -14.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14258
components:
- type: Transform
@@ -86585,7 +86336,7 @@ entities:
pos: -14.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14261
components:
- type: Transform
@@ -86593,7 +86344,7 @@ entities:
pos: -17.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14262
components:
- type: Transform
@@ -86601,7 +86352,7 @@ entities:
pos: -18.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14263
components:
- type: Transform
@@ -86609,7 +86360,7 @@ entities:
pos: -19.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14264
components:
- type: Transform
@@ -86617,7 +86368,7 @@ entities:
pos: -20.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14265
components:
- type: Transform
@@ -86625,7 +86376,7 @@ entities:
pos: -21.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14266
components:
- type: Transform
@@ -86633,14 +86384,14 @@ entities:
pos: -22.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14267
components:
- type: Transform
pos: 49.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14268
components:
- type: Transform
@@ -86648,7 +86399,7 @@ entities:
pos: -24.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14269
components:
- type: Transform
@@ -86656,7 +86407,7 @@ entities:
pos: -25.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14271
components:
- type: Transform
@@ -86664,7 +86415,7 @@ entities:
pos: -27.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14272
components:
- type: Transform
@@ -86672,7 +86423,7 @@ entities:
pos: -28.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14273
components:
- type: Transform
@@ -86680,7 +86431,7 @@ entities:
pos: -29.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14275
components:
- type: Transform
@@ -86688,7 +86439,7 @@ entities:
pos: -15.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14276
components:
- type: Transform
@@ -86696,7 +86447,7 @@ entities:
pos: -16.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14277
components:
- type: Transform
@@ -86704,7 +86455,7 @@ entities:
pos: -17.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14278
components:
- type: Transform
@@ -86712,7 +86463,7 @@ entities:
pos: -18.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14281
components:
- type: Transform
@@ -86720,7 +86471,7 @@ entities:
pos: -21.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14282
components:
- type: Transform
@@ -86728,7 +86479,7 @@ entities:
pos: -22.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14283
components:
- type: Transform
@@ -86736,7 +86487,7 @@ entities:
pos: -23.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14284
components:
- type: Transform
@@ -86744,7 +86495,7 @@ entities:
pos: -25.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14290
components:
- type: Transform
@@ -86758,7 +86509,7 @@ entities:
pos: -13.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14292
components:
- type: Transform
@@ -86766,7 +86517,7 @@ entities:
pos: -12.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14294
components:
- type: Transform
@@ -86774,7 +86525,7 @@ entities:
pos: -10.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14296
components:
- type: Transform
@@ -86782,7 +86533,7 @@ entities:
pos: -8.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14298
components:
- type: Transform
@@ -86790,7 +86541,7 @@ entities:
pos: -7.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14299
components:
- type: Transform
@@ -86798,7 +86549,7 @@ entities:
pos: -7.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14300
components:
- type: Transform
@@ -86806,7 +86557,7 @@ entities:
pos: -7.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14301
components:
- type: Transform
@@ -86814,7 +86565,7 @@ entities:
pos: -7.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14304
components:
- type: Transform
@@ -86822,7 +86573,7 @@ entities:
pos: -15.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14305
components:
- type: Transform
@@ -86830,7 +86581,7 @@ entities:
pos: -14.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14306
components:
- type: Transform
@@ -86838,7 +86589,7 @@ entities:
pos: -12.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14307
components:
- type: Transform
@@ -86846,7 +86597,7 @@ entities:
pos: -13.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14309
components:
- type: Transform
@@ -86854,7 +86605,7 @@ entities:
pos: -10.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14310
components:
- type: Transform
@@ -86862,7 +86613,7 @@ entities:
pos: -9.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14314
components:
- type: Transform
@@ -86870,7 +86621,7 @@ entities:
pos: -8.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14315
components:
- type: Transform
@@ -86878,7 +86629,7 @@ entities:
pos: -8.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14316
components:
- type: Transform
@@ -86886,7 +86637,7 @@ entities:
pos: -8.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14317
components:
- type: Transform
@@ -86894,56 +86645,57 @@ entities:
pos: -8.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14319
+ color: '#FF1212FF'
+ - uid: 14318
components:
- type: Transform
- pos: -9.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14320
components:
- type: Transform
pos: -9.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14321
components:
- type: Transform
pos: -9.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14322
components:
- type: Transform
pos: -9.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14323
components:
- type: Transform
pos: -9.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14324
components:
- type: Transform
pos: -9.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14455
components:
- type: Transform
pos: -27.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14456
components:
- type: Transform
@@ -86951,7 +86703,7 @@ entities:
pos: -26.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14457
components:
- type: Transform
@@ -86959,7 +86711,7 @@ entities:
pos: -26.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14458
components:
- type: Transform
@@ -86967,7 +86719,7 @@ entities:
pos: -26.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14459
components:
- type: Transform
@@ -86975,7 +86727,7 @@ entities:
pos: -26.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14460
components:
- type: Transform
@@ -86983,7 +86735,7 @@ entities:
pos: -26.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14461
components:
- type: Transform
@@ -86991,119 +86743,119 @@ entities:
pos: -26.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14462
components:
- type: Transform
pos: -24.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14463
components:
- type: Transform
pos: -24.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14464
components:
- type: Transform
pos: -24.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14465
components:
- type: Transform
pos: -24.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14466
components:
- type: Transform
pos: -24.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14467
components:
- type: Transform
pos: -24.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14469
components:
- type: Transform
pos: -24.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14470
components:
- type: Transform
pos: -24.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14471
components:
- type: Transform
pos: -24.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14472
components:
- type: Transform
pos: -24.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14473
components:
- type: Transform
pos: -24.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14474
components:
- type: Transform
pos: -24.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14475
components:
- type: Transform
pos: -24.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14476
components:
- type: Transform
pos: -24.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14489
components:
- type: Transform
pos: -27.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14495
components:
- type: Transform
pos: -23.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14643
components:
- type: Transform
@@ -87111,7 +86863,7 @@ entities:
pos: -20.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14644
components:
- type: Transform
@@ -87119,7 +86871,7 @@ entities:
pos: -22.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14662
components:
- type: Transform
@@ -87132,7 +86884,7 @@ entities:
pos: -16.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14669
components:
- type: Transform
@@ -87140,7 +86892,7 @@ entities:
pos: -24.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14671
components:
- type: Transform
@@ -87148,7 +86900,7 @@ entities:
pos: -23.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14672
components:
- type: Transform
@@ -87156,7 +86908,7 @@ entities:
pos: -22.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14686
components:
- type: Transform
@@ -87197,7 +86949,7 @@ entities:
pos: 41.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14742
components:
- type: Transform
@@ -87205,7 +86957,7 @@ entities:
pos: -29.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14743
components:
- type: Transform
@@ -87213,7 +86965,7 @@ entities:
pos: -28.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14744
components:
- type: Transform
@@ -87221,7 +86973,7 @@ entities:
pos: -27.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14747
components:
- type: Transform
@@ -87229,7 +86981,7 @@ entities:
pos: -24.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14748
components:
- type: Transform
@@ -87237,7 +86989,7 @@ entities:
pos: -23.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14754
components:
- type: Transform
@@ -87245,7 +86997,7 @@ entities:
pos: -20.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14755
components:
- type: Transform
@@ -87253,7 +87005,7 @@ entities:
pos: -20.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14757
components:
- type: Transform
@@ -87261,7 +87013,7 @@ entities:
pos: -25.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14758
components:
- type: Transform
@@ -87269,7 +87021,7 @@ entities:
pos: -22.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14759
components:
- type: Transform
@@ -87277,7 +87029,7 @@ entities:
pos: -22.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14760
components:
- type: Transform
@@ -87285,7 +87037,7 @@ entities:
pos: -22.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14761
components:
- type: Transform
@@ -87293,7 +87045,7 @@ entities:
pos: -22.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14762
components:
- type: Transform
@@ -87301,7 +87053,7 @@ entities:
pos: -22.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14764
components:
- type: Transform
@@ -87309,7 +87061,7 @@ entities:
pos: -36.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14765
components:
- type: Transform
@@ -87317,7 +87069,7 @@ entities:
pos: -35.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14767
components:
- type: Transform
@@ -87325,7 +87077,7 @@ entities:
pos: -33.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14768
components:
- type: Transform
@@ -87333,14 +87085,14 @@ entities:
pos: -32.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14769
components:
- type: Transform
pos: -41.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14771
components:
- type: Transform
@@ -87348,7 +87100,7 @@ entities:
pos: -35.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14773
components:
- type: Transform
@@ -87356,7 +87108,7 @@ entities:
pos: -29.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14777
components:
- type: Transform
@@ -87364,7 +87116,7 @@ entities:
pos: -26.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14778
components:
- type: Transform
@@ -87372,7 +87124,7 @@ entities:
pos: -25.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14781
components:
- type: Transform
@@ -87386,7 +87138,7 @@ entities:
pos: -28.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14786
components:
- type: Transform
@@ -87394,7 +87146,7 @@ entities:
pos: -31.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14790
components:
- type: Transform
@@ -87402,7 +87154,7 @@ entities:
pos: -34.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14794
components:
- type: Transform
@@ -87434,14 +87186,14 @@ entities:
pos: -27.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14871
components:
- type: Transform
pos: -43.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14878
components:
- type: Transform
@@ -87449,7 +87201,7 @@ entities:
pos: -33.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14879
components:
- type: Transform
@@ -87457,7 +87209,7 @@ entities:
pos: -31.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14883
components:
- type: Transform
@@ -87489,7 +87241,7 @@ entities:
pos: -33.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14897
components:
- type: Transform
@@ -87531,7 +87283,7 @@ entities:
pos: -26.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14934
components:
- type: Transform
@@ -87539,7 +87291,7 @@ entities:
pos: -27.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14935
components:
- type: Transform
@@ -87547,7 +87299,7 @@ entities:
pos: -28.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14936
components:
- type: Transform
@@ -87555,7 +87307,7 @@ entities:
pos: -26.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14938
components:
- type: Transform
@@ -87563,7 +87315,7 @@ entities:
pos: -31.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14940
components:
- type: Transform
@@ -87589,14 +87341,14 @@ entities:
pos: 1.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14987
components:
- type: Transform
pos: -33.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14991
components:
- type: Transform
@@ -87800,7 +87552,7 @@ entities:
pos: -32.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15118
components:
- type: Transform
@@ -87886,7 +87638,7 @@ entities:
pos: -33.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15146
components:
- type: Transform
@@ -87906,7 +87658,7 @@ entities:
pos: 13.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15172
components:
- type: Transform
@@ -87931,14 +87683,6 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 15183
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 15273
components:
- type: Transform
@@ -87998,7 +87742,7 @@ entities:
pos: -19.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15358
components:
- type: Transform
@@ -88006,7 +87750,7 @@ entities:
pos: -17.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15365
components:
- type: Transform
@@ -88321,7 +88065,7 @@ entities:
pos: -22.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15589
components:
- type: Transform
@@ -88329,7 +88073,7 @@ entities:
pos: -22.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15590
components:
- type: Transform
@@ -88337,7 +88081,7 @@ entities:
pos: -22.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15592
components:
- type: Transform
@@ -88345,7 +88089,7 @@ entities:
pos: -22.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15598
components:
- type: Transform
@@ -88353,7 +88097,7 @@ entities:
pos: -18.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15606
components:
- type: Transform
@@ -88361,7 +88105,7 @@ entities:
pos: -10.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15607
components:
- type: Transform
@@ -88369,7 +88113,7 @@ entities:
pos: -10.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15608
components:
- type: Transform
@@ -88377,7 +88121,7 @@ entities:
pos: -10.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15609
components:
- type: Transform
@@ -88385,7 +88129,7 @@ entities:
pos: -10.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15610
components:
- type: Transform
@@ -88393,7 +88137,7 @@ entities:
pos: -10.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15611
components:
- type: Transform
@@ -88401,7 +88145,7 @@ entities:
pos: -10.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15614
components:
- type: Transform
@@ -88409,7 +88153,7 @@ entities:
pos: -20.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15615
components:
- type: Transform
@@ -88417,7 +88161,7 @@ entities:
pos: -20.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15616
components:
- type: Transform
@@ -88425,7 +88169,7 @@ entities:
pos: -19.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15618
components:
- type: Transform
@@ -88433,7 +88177,7 @@ entities:
pos: -17.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15619
components:
- type: Transform
@@ -88441,7 +88185,7 @@ entities:
pos: -16.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15620
components:
- type: Transform
@@ -88449,7 +88193,7 @@ entities:
pos: -15.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15622
components:
- type: Transform
@@ -88457,28 +88201,28 @@ entities:
pos: -13.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15623
components:
- type: Transform
pos: -12.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15624
components:
- type: Transform
pos: -12.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15625
components:
- type: Transform
pos: -12.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15627
components:
- type: Transform
@@ -88486,7 +88230,7 @@ entities:
pos: -19.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15628
components:
- type: Transform
@@ -88494,7 +88238,7 @@ entities:
pos: -18.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15629
components:
- type: Transform
@@ -88502,7 +88246,7 @@ entities:
pos: -17.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15630
components:
- type: Transform
@@ -88510,7 +88254,7 @@ entities:
pos: -16.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15631
components:
- type: Transform
@@ -88518,7 +88262,7 @@ entities:
pos: -15.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15632
components:
- type: Transform
@@ -88526,7 +88270,7 @@ entities:
pos: -14.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15633
components:
- type: Transform
@@ -88534,14 +88278,14 @@ entities:
pos: -13.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15634
components:
- type: Transform
pos: -12.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15638
components:
- type: Transform
@@ -88549,7 +88293,7 @@ entities:
pos: -16.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15639
components:
- type: Transform
@@ -88557,7 +88301,7 @@ entities:
pos: -16.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15640
components:
- type: Transform
@@ -88565,7 +88309,7 @@ entities:
pos: -16.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15641
components:
- type: Transform
@@ -88573,7 +88317,7 @@ entities:
pos: -15.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15642
components:
- type: Transform
@@ -88581,7 +88325,7 @@ entities:
pos: -14.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15643
components:
- type: Transform
@@ -88589,7 +88333,7 @@ entities:
pos: -13.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15644
components:
- type: Transform
@@ -88597,7 +88341,7 @@ entities:
pos: -12.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15645
components:
- type: Transform
@@ -88605,35 +88349,35 @@ entities:
pos: -11.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15646
components:
- type: Transform
pos: -10.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15655
components:
- type: Transform
pos: -0.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15656
components:
- type: Transform
pos: -0.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15657
components:
- type: Transform
pos: -0.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15658
components:
- type: Transform
@@ -88641,7 +88385,7 @@ entities:
pos: 0.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15659
components:
- type: Transform
@@ -88649,21 +88393,21 @@ entities:
pos: -9.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15662
components:
- type: Transform
pos: 1.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15663
components:
- type: Transform
pos: 1.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15746
components:
- type: Transform
@@ -88671,14 +88415,14 @@ entities:
pos: 0.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16562
components:
- type: Transform
pos: -16.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16564
components:
- type: Transform
@@ -88686,7 +88430,7 @@ entities:
pos: -8.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16565
components:
- type: Transform
@@ -88694,7 +88438,7 @@ entities:
pos: -7.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16566
components:
- type: Transform
@@ -88702,7 +88446,7 @@ entities:
pos: -6.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16567
components:
- type: Transform
@@ -88710,7 +88454,7 @@ entities:
pos: -5.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16568
components:
- type: Transform
@@ -88718,7 +88462,7 @@ entities:
pos: -4.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16569
components:
- type: Transform
@@ -88726,56 +88470,56 @@ entities:
pos: -3.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16570
components:
- type: Transform
pos: -2.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16572
components:
- type: Transform
pos: -2.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16573
components:
- type: Transform
pos: -2.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16574
components:
- type: Transform
pos: -2.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16575
components:
- type: Transform
pos: -2.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16577
components:
- type: Transform
pos: -2.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16578
components:
- type: Transform
pos: -2.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16579
components:
- type: Transform
@@ -88783,7 +88527,7 @@ entities:
pos: -1.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16583
components:
- type: Transform
@@ -88791,7 +88535,7 @@ entities:
pos: -11.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16584
components:
- type: Transform
@@ -88799,7 +88543,7 @@ entities:
pos: -10.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16585
components:
- type: Transform
@@ -88807,7 +88551,7 @@ entities:
pos: -9.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16586
components:
- type: Transform
@@ -88815,7 +88559,7 @@ entities:
pos: -8.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16587
components:
- type: Transform
@@ -88823,7 +88567,7 @@ entities:
pos: -7.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16588
components:
- type: Transform
@@ -88831,7 +88575,7 @@ entities:
pos: -6.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16589
components:
- type: Transform
@@ -88839,7 +88583,7 @@ entities:
pos: -5.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16590
components:
- type: Transform
@@ -88847,28 +88591,28 @@ entities:
pos: -4.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16591
components:
- type: Transform
pos: -3.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16592
components:
- type: Transform
pos: -3.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16593
components:
- type: Transform
pos: -3.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16595
components:
- type: Transform
@@ -88876,28 +88620,28 @@ entities:
pos: -3.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16596
components:
- type: Transform
pos: -3.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16597
components:
- type: Transform
pos: -3.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16598
components:
- type: Transform
pos: -3.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16600
components:
- type: Transform
@@ -88905,7 +88649,7 @@ entities:
pos: -2.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16601
components:
- type: Transform
@@ -88913,7 +88657,7 @@ entities:
pos: -1.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16602
components:
- type: Transform
@@ -88921,7 +88665,7 @@ entities:
pos: -0.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16603
components:
- type: Transform
@@ -88929,7 +88673,7 @@ entities:
pos: 0.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16606
components:
- type: Transform
@@ -88937,7 +88681,7 @@ entities:
pos: -2.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16607
components:
- type: Transform
@@ -88945,7 +88689,7 @@ entities:
pos: -1.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16609
components:
- type: Transform
@@ -88953,7 +88697,7 @@ entities:
pos: -0.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16610
components:
- type: Transform
@@ -88961,7 +88705,7 @@ entities:
pos: 0.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16613
components:
- type: Transform
@@ -88969,7 +88713,7 @@ entities:
pos: -0.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16614
components:
- type: Transform
@@ -88977,7 +88721,7 @@ entities:
pos: -0.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16617
components:
- type: Transform
@@ -88985,7 +88729,7 @@ entities:
pos: 1.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16618
components:
- type: Transform
@@ -88993,7 +88737,7 @@ entities:
pos: 1.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16622
components:
- type: Transform
@@ -89001,7 +88745,7 @@ entities:
pos: -2.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16624
components:
- type: Transform
@@ -89009,7 +88753,7 @@ entities:
pos: -0.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16625
components:
- type: Transform
@@ -89017,7 +88761,7 @@ entities:
pos: 1.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16626
components:
- type: Transform
@@ -89025,7 +88769,7 @@ entities:
pos: 2.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16627
components:
- type: Transform
@@ -89033,7 +88777,7 @@ entities:
pos: 3.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16628
components:
- type: Transform
@@ -89041,7 +88785,7 @@ entities:
pos: 4.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16629
components:
- type: Transform
@@ -89049,7 +88793,7 @@ entities:
pos: 2.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16630
components:
- type: Transform
@@ -89057,7 +88801,7 @@ entities:
pos: 3.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16631
components:
- type: Transform
@@ -89065,35 +88809,35 @@ entities:
pos: 4.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16637
components:
- type: Transform
pos: -3.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16638
components:
- type: Transform
pos: -3.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16639
components:
- type: Transform
pos: -3.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16640
components:
- type: Transform
pos: -2.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16644
components:
- type: Transform
@@ -89101,7 +88845,7 @@ entities:
pos: 2.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16646
components:
- type: Transform
@@ -89109,7 +88853,7 @@ entities:
pos: 1.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16649
components:
- type: Transform
@@ -89117,7 +88861,7 @@ entities:
pos: 5.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16650
components:
- type: Transform
@@ -89125,7 +88869,7 @@ entities:
pos: 6.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16651
components:
- type: Transform
@@ -89133,7 +88877,7 @@ entities:
pos: 7.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16652
components:
- type: Transform
@@ -89141,7 +88885,7 @@ entities:
pos: 8.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16653
components:
- type: Transform
@@ -89149,7 +88893,7 @@ entities:
pos: 9.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16655
components:
- type: Transform
@@ -89157,7 +88901,7 @@ entities:
pos: 11.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16657
components:
- type: Transform
@@ -89165,14 +88909,14 @@ entities:
pos: 3.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16658
components:
- type: Transform
pos: 4.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16660
components:
- type: Transform
@@ -89180,7 +88924,7 @@ entities:
pos: 6.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16661
components:
- type: Transform
@@ -89188,7 +88932,7 @@ entities:
pos: 7.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16662
components:
- type: Transform
@@ -89196,7 +88940,7 @@ entities:
pos: 8.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16663
components:
- type: Transform
@@ -89204,7 +88948,7 @@ entities:
pos: 9.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16665
components:
- type: Transform
@@ -89212,7 +88956,7 @@ entities:
pos: 11.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16671
components:
- type: Transform
@@ -89220,7 +88964,7 @@ entities:
pos: 5.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16676
components:
- type: Transform
@@ -89228,7 +88972,7 @@ entities:
pos: 5.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16677
components:
- type: Transform
@@ -89236,7 +88980,7 @@ entities:
pos: 5.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16742
components:
- type: Transform
@@ -89267,7 +89011,7 @@ entities:
pos: -50.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17458
components:
- type: Transform
@@ -89275,7 +89019,7 @@ entities:
pos: -44.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17506
components:
- type: Transform
@@ -89283,7 +89027,7 @@ entities:
pos: 18.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17507
components:
- type: Transform
@@ -89291,7 +89035,7 @@ entities:
pos: 19.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17508
components:
- type: Transform
@@ -89299,7 +89043,7 @@ entities:
pos: 20.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17510
components:
- type: Transform
@@ -89307,7 +89051,7 @@ entities:
pos: 22.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17511
components:
- type: Transform
@@ -89315,7 +89059,7 @@ entities:
pos: 23.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17512
components:
- type: Transform
@@ -89323,7 +89067,7 @@ entities:
pos: 24.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17513
components:
- type: Transform
@@ -89331,7 +89075,7 @@ entities:
pos: 25.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17514
components:
- type: Transform
@@ -89339,7 +89083,7 @@ entities:
pos: 26.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17515
components:
- type: Transform
@@ -89347,7 +89091,7 @@ entities:
pos: 27.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17516
components:
- type: Transform
@@ -89355,7 +89099,7 @@ entities:
pos: 28.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17517
components:
- type: Transform
@@ -89363,7 +89107,7 @@ entities:
pos: 29.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17518
components:
- type: Transform
@@ -89371,7 +89115,7 @@ entities:
pos: 30.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17519
components:
- type: Transform
@@ -89379,7 +89123,7 @@ entities:
pos: 31.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17520
components:
- type: Transform
@@ -89387,7 +89131,7 @@ entities:
pos: 32.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17521
components:
- type: Transform
@@ -89395,7 +89139,7 @@ entities:
pos: 33.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17522
components:
- type: Transform
@@ -89403,7 +89147,7 @@ entities:
pos: 34.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17524
components:
- type: Transform
@@ -89411,7 +89155,7 @@ entities:
pos: 36.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17526
components:
- type: Transform
@@ -89419,7 +89163,7 @@ entities:
pos: 38.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17527
components:
- type: Transform
@@ -89427,7 +89171,7 @@ entities:
pos: 39.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17528
components:
- type: Transform
@@ -89435,105 +89179,105 @@ entities:
pos: 40.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17530
components:
- type: Transform
pos: 41.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17531
components:
- type: Transform
pos: 41.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17532
components:
- type: Transform
pos: 41.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17533
components:
- type: Transform
pos: 41.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17534
components:
- type: Transform
pos: 41.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17535
components:
- type: Transform
pos: 41.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17536
components:
- type: Transform
pos: 41.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17537
components:
- type: Transform
pos: 41.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17539
components:
- type: Transform
pos: 41.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17540
components:
- type: Transform
pos: 41.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17541
components:
- type: Transform
pos: 41.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17542
components:
- type: Transform
pos: 41.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17543
components:
- type: Transform
pos: 41.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17544
components:
- type: Transform
pos: 41.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17546
components:
- type: Transform
@@ -89541,7 +89285,7 @@ entities:
pos: 40.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17547
components:
- type: Transform
@@ -89549,28 +89293,28 @@ entities:
pos: 39.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17548
components:
- type: Transform
pos: 39.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17549
components:
- type: Transform
pos: 39.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17550
components:
- type: Transform
pos: 39.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17569
components:
- type: Transform
@@ -89578,7 +89322,7 @@ entities:
pos: -37.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17571
components:
- type: Transform
@@ -89586,7 +89330,7 @@ entities:
pos: -39.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17572
components:
- type: Transform
@@ -89594,7 +89338,7 @@ entities:
pos: -40.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17573
components:
- type: Transform
@@ -89602,7 +89346,7 @@ entities:
pos: -41.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17574
components:
- type: Transform
@@ -89616,7 +89360,7 @@ entities:
pos: -37.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17576
components:
- type: Transform
@@ -89624,7 +89368,7 @@ entities:
pos: -38.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17577
components:
- type: Transform
@@ -89632,7 +89376,7 @@ entities:
pos: -39.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17578
components:
- type: Transform
@@ -89640,7 +89384,7 @@ entities:
pos: -40.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17579
components:
- type: Transform
@@ -89653,21 +89397,21 @@ entities:
pos: -43.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17582
components:
- type: Transform
pos: -43.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17584
components:
- type: Transform
pos: -41.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17588
components:
- type: Transform
@@ -89675,7 +89419,7 @@ entities:
pos: -41.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17589
components:
- type: Transform
@@ -89683,7 +89427,7 @@ entities:
pos: -42.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17590
components:
- type: Transform
@@ -89691,7 +89435,7 @@ entities:
pos: -43.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17591
components:
- type: Transform
@@ -89699,7 +89443,7 @@ entities:
pos: -45.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17592
components:
- type: Transform
@@ -89707,7 +89451,7 @@ entities:
pos: -45.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17593
components:
- type: Transform
@@ -89715,7 +89459,7 @@ entities:
pos: -44.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17594
components:
- type: Transform
@@ -89729,7 +89473,7 @@ entities:
pos: -43.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17596
components:
- type: Transform
@@ -89737,7 +89481,7 @@ entities:
pos: -44.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17597
components:
- type: Transform
@@ -89745,7 +89489,7 @@ entities:
pos: -45.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17598
components:
- type: Transform
@@ -89753,7 +89497,7 @@ entities:
pos: -44.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17599
components:
- type: Transform
@@ -89761,77 +89505,77 @@ entities:
pos: -45.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17605
components:
- type: Transform
pos: -38.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17606
components:
- type: Transform
pos: -38.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17607
components:
- type: Transform
pos: -38.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17608
components:
- type: Transform
pos: -38.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17609
components:
- type: Transform
pos: -36.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17610
components:
- type: Transform
pos: -36.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17611
components:
- type: Transform
pos: -36.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17612
components:
- type: Transform
pos: -36.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17613
components:
- type: Transform
pos: -34.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17614
components:
- type: Transform
pos: -34.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17699
components:
- type: Transform
@@ -89839,84 +89583,84 @@ entities:
pos: 23.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17711
components:
- type: Transform
pos: 39.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17746
components:
- type: Transform
pos: 39.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17747
components:
- type: Transform
pos: 39.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17748
components:
- type: Transform
pos: 39.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17842
components:
- type: Transform
pos: 39.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17846
components:
- type: Transform
pos: 39.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17847
components:
- type: Transform
pos: 39.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17848
components:
- type: Transform
pos: 39.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17849
components:
- type: Transform
pos: 39.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17850
components:
- type: Transform
pos: 39.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17862
components:
- type: Transform
pos: 39.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17866
components:
- type: Transform
@@ -89924,7 +89668,7 @@ entities:
pos: 23.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17869
components:
- type: Transform
@@ -89932,7 +89676,7 @@ entities:
pos: 23.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17880
components:
- type: Transform
@@ -89940,7 +89684,7 @@ entities:
pos: 40.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17881
components:
- type: Transform
@@ -89948,7 +89692,7 @@ entities:
pos: 41.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17882
components:
- type: Transform
@@ -89956,7 +89700,7 @@ entities:
pos: 42.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17885
components:
- type: Transform
@@ -89964,7 +89708,7 @@ entities:
pos: 43.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17886
components:
- type: Transform
@@ -89972,7 +89716,7 @@ entities:
pos: 44.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17888
components:
- type: Transform
@@ -89980,7 +89724,7 @@ entities:
pos: 46.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17889
components:
- type: Transform
@@ -89988,7 +89732,7 @@ entities:
pos: 47.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17890
components:
- type: Transform
@@ -89996,7 +89740,7 @@ entities:
pos: 48.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18097
components:
- type: Transform
@@ -90004,7 +89748,7 @@ entities:
pos: 50.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18101
components:
- type: Transform
@@ -90012,7 +89756,7 @@ entities:
pos: 51.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18102
components:
- type: Transform
@@ -90020,7 +89764,7 @@ entities:
pos: 42.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18216
components:
- type: Transform
@@ -90028,7 +89772,7 @@ entities:
pos: -2.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18218
components:
- type: Transform
@@ -90036,84 +89780,84 @@ entities:
pos: 1.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18219
components:
- type: Transform
pos: 1.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18220
components:
- type: Transform
pos: 1.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18221
components:
- type: Transform
pos: 1.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18222
components:
- type: Transform
pos: 1.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18224
components:
- type: Transform
pos: 1.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18225
components:
- type: Transform
pos: 1.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18226
components:
- type: Transform
pos: 1.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18227
components:
- type: Transform
pos: 1.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18228
components:
- type: Transform
pos: 1.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18229
components:
- type: Transform
pos: 1.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18230
components:
- type: Transform
pos: -0.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18232
components:
- type: Transform
@@ -90121,35 +89865,35 @@ entities:
pos: -0.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18233
components:
- type: Transform
pos: -0.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18234
components:
- type: Transform
pos: -0.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18235
components:
- type: Transform
pos: -0.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18236
components:
- type: Transform
pos: -0.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18237
components:
- type: Transform
@@ -90157,28 +89901,28 @@ entities:
pos: 0.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18238
components:
- type: Transform
pos: -0.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18240
components:
- type: Transform
pos: -0.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18241
components:
- type: Transform
pos: -0.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18244
components:
- type: Transform
@@ -90186,7 +89930,7 @@ entities:
pos: -1.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18245
components:
- type: Transform
@@ -90194,7 +89938,7 @@ entities:
pos: 0.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18246
components:
- type: Transform
@@ -90202,7 +89946,7 @@ entities:
pos: -0.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18247
components:
- type: Transform
@@ -90210,7 +89954,7 @@ entities:
pos: -1.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18248
components:
- type: Transform
@@ -90218,28 +89962,28 @@ entities:
pos: -2.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18251
components:
- type: Transform
pos: -2.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18252
components:
- type: Transform
pos: -2.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18253
components:
- type: Transform
pos: -2.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18262
components:
- type: Transform
@@ -90247,28 +89991,28 @@ entities:
pos: -6.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18263
components:
- type: Transform
pos: -3.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18264
components:
- type: Transform
pos: -3.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18265
components:
- type: Transform
pos: -3.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18268
components:
- type: Transform
@@ -90276,7 +90020,7 @@ entities:
pos: -5.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18269
components:
- type: Transform
@@ -90284,7 +90028,7 @@ entities:
pos: -6.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18274
components:
- type: Transform
@@ -90292,7 +90036,7 @@ entities:
pos: -2.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18275
components:
- type: Transform
@@ -90300,7 +90044,7 @@ entities:
pos: -2.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18278
components:
- type: Transform
@@ -90308,7 +90052,7 @@ entities:
pos: -4.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18279
components:
- type: Transform
@@ -90316,7 +90060,7 @@ entities:
pos: -4.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18280
components:
- type: Transform
@@ -90324,7 +90068,7 @@ entities:
pos: -3.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18417
components:
- type: Transform
@@ -90332,7 +90076,7 @@ entities:
pos: 2.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18418
components:
- type: Transform
@@ -90340,7 +90084,7 @@ entities:
pos: 3.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18419
components:
- type: Transform
@@ -90348,7 +90092,7 @@ entities:
pos: 4.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18420
components:
- type: Transform
@@ -90356,7 +90100,7 @@ entities:
pos: 1.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18421
components:
- type: Transform
@@ -90364,7 +90108,7 @@ entities:
pos: 2.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18422
components:
- type: Transform
@@ -90372,7 +90116,7 @@ entities:
pos: 3.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18431
components:
- type: Transform
@@ -90380,7 +90124,7 @@ entities:
pos: -3.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18432
components:
- type: Transform
@@ -90388,7 +90132,7 @@ entities:
pos: -3.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18433
components:
- type: Transform
@@ -90396,7 +90140,15 @@ entities:
pos: -3.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 18464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 18502
components:
- type: Transform
@@ -90404,7 +90156,7 @@ entities:
pos: -5.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18533
components:
- type: Transform
@@ -90412,7 +90164,7 @@ entities:
pos: 1.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18535
components:
- type: Transform
@@ -90420,7 +90172,7 @@ entities:
pos: 3.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18536
components:
- type: Transform
@@ -90428,7 +90180,7 @@ entities:
pos: 4.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18537
components:
- type: Transform
@@ -90436,7 +90188,7 @@ entities:
pos: 4.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18538
components:
- type: Transform
@@ -90444,7 +90196,7 @@ entities:
pos: 4.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18543
components:
- type: Transform
@@ -90452,7 +90204,7 @@ entities:
pos: 45.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18545
components:
- type: Transform
@@ -90460,7 +90212,7 @@ entities:
pos: 46.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18551
components:
- type: Transform
@@ -90468,7 +90220,7 @@ entities:
pos: 47.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18585
components:
- type: Transform
@@ -90476,7 +90228,7 @@ entities:
pos: 49.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18648
components:
- type: Transform
@@ -90484,7 +90236,7 @@ entities:
pos: 50.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18650
components:
- type: Transform
@@ -90492,7 +90244,7 @@ entities:
pos: 45.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18651
components:
- type: Transform
@@ -90500,7 +90252,7 @@ entities:
pos: 45.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18654
components:
- type: Transform
@@ -90508,7 +90260,7 @@ entities:
pos: 43.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18655
components:
- type: Transform
@@ -90516,7 +90268,7 @@ entities:
pos: 43.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18656
components:
- type: Transform
@@ -90524,21 +90276,21 @@ entities:
pos: 43.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18660
components:
- type: Transform
pos: 52.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18661
components:
- type: Transform
pos: 52.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18665
components:
- type: Transform
@@ -90546,7 +90298,7 @@ entities:
pos: 51.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18666
components:
- type: Transform
@@ -90554,7 +90306,7 @@ entities:
pos: 50.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18667
components:
- type: Transform
@@ -90562,7 +90314,7 @@ entities:
pos: 49.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18670
components:
- type: Transform
@@ -90570,7 +90322,7 @@ entities:
pos: 51.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18672
components:
- type: Transform
@@ -90578,7 +90330,7 @@ entities:
pos: 51.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18673
components:
- type: Transform
@@ -90586,7 +90338,7 @@ entities:
pos: 51.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18674
components:
- type: Transform
@@ -90594,7 +90346,7 @@ entities:
pos: 51.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18675
components:
- type: Transform
@@ -90602,7 +90354,7 @@ entities:
pos: 51.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18680
components:
- type: Transform
@@ -90610,7 +90362,7 @@ entities:
pos: 50.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18684
components:
- type: Transform
@@ -90618,7 +90370,7 @@ entities:
pos: 49.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18688
components:
- type: Transform
@@ -90626,7 +90378,7 @@ entities:
pos: 52.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18689
components:
- type: Transform
@@ -90634,7 +90386,7 @@ entities:
pos: 52.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18690
components:
- type: Transform
@@ -90642,7 +90394,7 @@ entities:
pos: 39.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18692
components:
- type: Transform
@@ -90650,7 +90402,7 @@ entities:
pos: 39.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18711
components:
- type: Transform
@@ -90658,7 +90410,7 @@ entities:
pos: 39.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18714
components:
- type: Transform
@@ -90666,35 +90418,35 @@ entities:
pos: 38.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18715
components:
- type: Transform
pos: 37.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18716
components:
- type: Transform
pos: 37.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18718
components:
- type: Transform
pos: 37.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18872
components:
- type: Transform
pos: 48.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18892
components:
- type: Transform
@@ -90707,21 +90459,21 @@ entities:
pos: 47.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18912
components:
- type: Transform
pos: 47.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18913
components:
- type: Transform
pos: 47.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18928
components:
- type: Transform
@@ -90757,7 +90509,7 @@ entities:
pos: 16.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19172
components:
- type: Transform
@@ -90765,7 +90517,7 @@ entities:
pos: 17.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19173
components:
- type: Transform
@@ -90773,7 +90525,7 @@ entities:
pos: 18.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19174
components:
- type: Transform
@@ -90781,7 +90533,7 @@ entities:
pos: 19.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19175
components:
- type: Transform
@@ -90789,7 +90541,7 @@ entities:
pos: 20.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19176
components:
- type: Transform
@@ -90797,7 +90549,7 @@ entities:
pos: 18.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 19177
components:
- type: Transform
@@ -90805,7 +90557,7 @@ entities:
pos: 19.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 19178
components:
- type: Transform
@@ -90813,7 +90565,31 @@ entities:
pos: 20.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 19786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 19794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-20.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 19879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 21289
components:
- type: Transform
@@ -90821,7 +90597,7 @@ entities:
pos: -56.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21301
components:
- type: Transform
@@ -90829,7 +90605,7 @@ entities:
pos: -57.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21302
components:
- type: Transform
@@ -90837,7 +90613,7 @@ entities:
pos: -58.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21304
components:
- type: Transform
@@ -90845,7 +90621,7 @@ entities:
pos: -58.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21305
components:
- type: Transform
@@ -90853,7 +90629,7 @@ entities:
pos: -59.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21306
components:
- type: Transform
@@ -90861,7 +90637,7 @@ entities:
pos: -60.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21307
components:
- type: Transform
@@ -90869,7 +90645,7 @@ entities:
pos: -61.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21308
components:
- type: Transform
@@ -90877,7 +90653,7 @@ entities:
pos: -62.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21309
components:
- type: Transform
@@ -90885,7 +90661,7 @@ entities:
pos: -63.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21310
components:
- type: Transform
@@ -90893,7 +90669,7 @@ entities:
pos: -64.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21311
components:
- type: Transform
@@ -90901,7 +90677,7 @@ entities:
pos: -65.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21312
components:
- type: Transform
@@ -90909,7 +90685,7 @@ entities:
pos: -66.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21313
components:
- type: Transform
@@ -90917,7 +90693,7 @@ entities:
pos: -67.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21314
components:
- type: Transform
@@ -90925,7 +90701,7 @@ entities:
pos: -68.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21315
components:
- type: Transform
@@ -90933,7 +90709,7 @@ entities:
pos: -69.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21316
components:
- type: Transform
@@ -90941,7 +90717,7 @@ entities:
pos: -70.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21317
components:
- type: Transform
@@ -90949,7 +90725,7 @@ entities:
pos: -71.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21319
components:
- type: Transform
@@ -90957,7 +90733,7 @@ entities:
pos: -73.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21320
components:
- type: Transform
@@ -90965,7 +90741,7 @@ entities:
pos: -74.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21321
components:
- type: Transform
@@ -90973,7 +90749,7 @@ entities:
pos: -75.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21322
components:
- type: Transform
@@ -90981,7 +90757,7 @@ entities:
pos: -76.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21323
components:
- type: Transform
@@ -90989,7 +90765,7 @@ entities:
pos: -77.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21324
components:
- type: Transform
@@ -90997,7 +90773,7 @@ entities:
pos: -78.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21329
components:
- type: Transform
@@ -91020,6 +90796,14 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 21410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-11.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 21412
components:
- type: Transform
@@ -91042,7 +90826,7 @@ entities:
pos: -7.5,-39.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21659
components:
- type: Transform
@@ -91050,7 +90834,7 @@ entities:
pos: -23.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21660
components:
- type: Transform
@@ -91058,7 +90842,7 @@ entities:
pos: -24.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21661
components:
- type: Transform
@@ -91066,7 +90850,7 @@ entities:
pos: -25.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21662
components:
- type: Transform
@@ -91074,7 +90858,7 @@ entities:
pos: -26.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21663
components:
- type: Transform
@@ -91082,7 +90866,7 @@ entities:
pos: -27.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21664
components:
- type: Transform
@@ -91090,7 +90874,7 @@ entities:
pos: -28.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 22790
components:
- type: Transform
@@ -91098,7 +90882,7 @@ entities:
pos: -79.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22791
components:
- type: Transform
@@ -91106,7 +90890,7 @@ entities:
pos: -80.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22792
components:
- type: Transform
@@ -91114,7 +90898,7 @@ entities:
pos: -81.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22793
components:
- type: Transform
@@ -91122,7 +90906,7 @@ entities:
pos: -82.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22794
components:
- type: Transform
@@ -91130,7 +90914,7 @@ entities:
pos: -83.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22795
components:
- type: Transform
@@ -91138,7 +90922,7 @@ entities:
pos: -84.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22796
components:
- type: Transform
@@ -91146,7 +90930,7 @@ entities:
pos: -85.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22797
components:
- type: Transform
@@ -91154,7 +90938,7 @@ entities:
pos: -86.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22798
components:
- type: Transform
@@ -91162,7 +90946,7 @@ entities:
pos: -87.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22799
components:
- type: Transform
@@ -91170,7 +90954,7 @@ entities:
pos: -88.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22800
components:
- type: Transform
@@ -91178,7 +90962,7 @@ entities:
pos: -89.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22801
components:
- type: Transform
@@ -91186,7 +90970,7 @@ entities:
pos: -90.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22802
components:
- type: Transform
@@ -91194,7 +90978,7 @@ entities:
pos: -91.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22803
components:
- type: Transform
@@ -91202,7 +90986,7 @@ entities:
pos: -92.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22804
components:
- type: Transform
@@ -91210,7 +90994,7 @@ entities:
pos: -93.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22805
components:
- type: Transform
@@ -91218,7 +91002,7 @@ entities:
pos: -94.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22806
components:
- type: Transform
@@ -91226,7 +91010,7 @@ entities:
pos: -95.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22807
components:
- type: Transform
@@ -91234,7 +91018,7 @@ entities:
pos: -96.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22808
components:
- type: Transform
@@ -91242,7 +91026,7 @@ entities:
pos: -97.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22809
components:
- type: Transform
@@ -91250,7 +91034,7 @@ entities:
pos: -98.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22811
components:
- type: Transform
@@ -91258,7 +91042,7 @@ entities:
pos: -100.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22812
components:
- type: Transform
@@ -91266,7 +91050,7 @@ entities:
pos: -101.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22813
components:
- type: Transform
@@ -91274,7 +91058,7 @@ entities:
pos: -102.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22815
components:
- type: Transform
@@ -91282,7 +91066,7 @@ entities:
pos: -104.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22816
components:
- type: Transform
@@ -91290,7 +91074,7 @@ entities:
pos: -105.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22817
components:
- type: Transform
@@ -91298,7 +91082,7 @@ entities:
pos: -106.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22818
components:
- type: Transform
@@ -91306,7 +91090,7 @@ entities:
pos: -107.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22819
components:
- type: Transform
@@ -91314,7 +91098,7 @@ entities:
pos: -108.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22820
components:
- type: Transform
@@ -91322,7 +91106,7 @@ entities:
pos: -109.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22821
components:
- type: Transform
@@ -91330,7 +91114,7 @@ entities:
pos: -110.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22824
components:
- type: Transform
@@ -91338,7 +91122,7 @@ entities:
pos: -113.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22825
components:
- type: Transform
@@ -91346,7 +91130,7 @@ entities:
pos: -114.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22826
components:
- type: Transform
@@ -91354,7 +91138,7 @@ entities:
pos: -115.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22827
components:
- type: Transform
@@ -91362,7 +91146,7 @@ entities:
pos: -116.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22830
components:
- type: Transform
@@ -91370,7 +91154,7 @@ entities:
pos: -111.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22831
components:
- type: Transform
@@ -91378,7 +91162,7 @@ entities:
pos: -111.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22832
components:
- type: Transform
@@ -91386,7 +91170,7 @@ entities:
pos: -111.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22833
components:
- type: Transform
@@ -91394,7 +91178,7 @@ entities:
pos: -111.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22834
components:
- type: Transform
@@ -91402,7 +91186,7 @@ entities:
pos: -111.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22835
components:
- type: Transform
@@ -91410,7 +91194,7 @@ entities:
pos: -111.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22836
components:
- type: Transform
@@ -91418,7 +91202,7 @@ entities:
pos: -111.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22837
components:
- type: Transform
@@ -91426,7 +91210,7 @@ entities:
pos: -111.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22838
components:
- type: Transform
@@ -91434,7 +91218,7 @@ entities:
pos: -111.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22840
components:
- type: Transform
@@ -91442,7 +91226,7 @@ entities:
pos: -111.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22841
components:
- type: Transform
@@ -91450,7 +91234,7 @@ entities:
pos: -111.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22842
components:
- type: Transform
@@ -91458,7 +91242,7 @@ entities:
pos: -111.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22843
components:
- type: Transform
@@ -91466,7 +91250,7 @@ entities:
pos: -111.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22844
components:
- type: Transform
@@ -91474,7 +91258,7 @@ entities:
pos: -111.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22845
components:
- type: Transform
@@ -91482,7 +91266,7 @@ entities:
pos: -111.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22848
components:
- type: Transform
@@ -91490,7 +91274,7 @@ entities:
pos: -99.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22849
components:
- type: Transform
@@ -91498,7 +91282,7 @@ entities:
pos: -99.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22850
components:
- type: Transform
@@ -91506,7 +91290,7 @@ entities:
pos: -99.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22851
components:
- type: Transform
@@ -91514,7 +91298,7 @@ entities:
pos: -100.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22852
components:
- type: Transform
@@ -91522,91 +91306,91 @@ entities:
pos: -101.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22853
components:
- type: Transform
pos: -102.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22854
components:
- type: Transform
pos: -102.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22855
components:
- type: Transform
pos: -102.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22856
components:
- type: Transform
pos: -102.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22857
components:
- type: Transform
pos: -102.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22858
components:
- type: Transform
pos: -102.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22859
components:
- type: Transform
pos: -102.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22860
components:
- type: Transform
pos: -102.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22861
components:
- type: Transform
pos: -102.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22862
components:
- type: Transform
pos: -102.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22863
components:
- type: Transform
pos: -102.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22864
components:
- type: Transform
pos: -102.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22865
components:
- type: Transform
@@ -91614,7 +91398,7 @@ entities:
pos: -103.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22866
components:
- type: Transform
@@ -91622,7 +91406,7 @@ entities:
pos: -104.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22867
components:
- type: Transform
@@ -91630,7 +91414,7 @@ entities:
pos: -105.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22868
components:
- type: Transform
@@ -91638,7 +91422,7 @@ entities:
pos: -106.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22869
components:
- type: Transform
@@ -91646,7 +91430,7 @@ entities:
pos: -107.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22870
components:
- type: Transform
@@ -91654,7 +91438,7 @@ entities:
pos: -108.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22871
components:
- type: Transform
@@ -91662,7 +91446,7 @@ entities:
pos: -109.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22900
components:
- type: Transform
@@ -91670,35 +91454,35 @@ entities:
pos: -112.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22901
components:
- type: Transform
pos: -113.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22902
components:
- type: Transform
pos: -113.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22903
components:
- type: Transform
pos: -113.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22904
components:
- type: Transform
pos: -113.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22905
components:
- type: Transform
@@ -91706,7 +91490,7 @@ entities:
pos: -112.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22919
components:
- type: Transform
@@ -92776,22 +92560,22 @@ entities:
rot: -1.5707963267948966 rad
pos: -54.5,51.5
parent: 60
- - uid: 23924
+ - uid: 23647
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -30.5,-7.5
+ pos: -30.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23925
+ color: '#0335FCFF'
+ - uid: 23652
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 23977
components:
- type: Transform
@@ -92799,7 +92583,7 @@ entities:
pos: 15.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24128
components:
- type: Transform
@@ -92807,7 +92591,7 @@ entities:
pos: -6.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24130
components:
- type: Transform
@@ -92815,7 +92599,7 @@ entities:
pos: -7.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24131
components:
- type: Transform
@@ -92823,7 +92607,7 @@ entities:
pos: -8.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24132
components:
- type: Transform
@@ -92831,7 +92615,7 @@ entities:
pos: -7.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24135
components:
- type: Transform
@@ -92839,7 +92623,7 @@ entities:
pos: -6.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24357
components:
- type: Transform
@@ -92847,7 +92631,7 @@ entities:
pos: 46.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24750
components:
- type: Transform
@@ -92855,7 +92639,7 @@ entities:
pos: 54.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24827
components:
- type: Transform
@@ -92863,7 +92647,7 @@ entities:
pos: 53.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24828
components:
- type: Transform
@@ -92871,7 +92655,7 @@ entities:
pos: 52.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24829
components:
- type: Transform
@@ -92879,7 +92663,7 @@ entities:
pos: 51.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24830
components:
- type: Transform
@@ -92887,7 +92671,7 @@ entities:
pos: 50.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24831
components:
- type: Transform
@@ -92895,7 +92679,7 @@ entities:
pos: 49.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24832
components:
- type: Transform
@@ -92903,7 +92687,7 @@ entities:
pos: 48.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24833
components:
- type: Transform
@@ -92911,7 +92695,7 @@ entities:
pos: 47.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24835
components:
- type: Transform
@@ -92919,7 +92703,7 @@ entities:
pos: 44.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24836
components:
- type: Transform
@@ -92927,7 +92711,7 @@ entities:
pos: 43.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24837
components:
- type: Transform
@@ -92935,7 +92719,7 @@ entities:
pos: 42.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24838
components:
- type: Transform
@@ -92943,7 +92727,7 @@ entities:
pos: 46.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24839
components:
- type: Transform
@@ -92951,7 +92735,7 @@ entities:
pos: 42.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24840
components:
- type: Transform
@@ -92959,7 +92743,7 @@ entities:
pos: 44.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24841
components:
- type: Transform
@@ -92967,7 +92751,7 @@ entities:
pos: 45.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24842
components:
- type: Transform
@@ -92975,7 +92759,7 @@ entities:
pos: 46.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24843
components:
- type: Transform
@@ -92983,7 +92767,7 @@ entities:
pos: 47.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24844
components:
- type: Transform
@@ -92991,7 +92775,7 @@ entities:
pos: 48.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24846
components:
- type: Transform
@@ -92999,7 +92783,7 @@ entities:
pos: 49.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24847
components:
- type: Transform
@@ -93007,7 +92791,7 @@ entities:
pos: 50.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24848
components:
- type: Transform
@@ -93015,7 +92799,7 @@ entities:
pos: 51.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24849
components:
- type: Transform
@@ -93023,7 +92807,7 @@ entities:
pos: 52.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24850
components:
- type: Transform
@@ -93031,7 +92815,7 @@ entities:
pos: 55.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24851
components:
- type: Transform
@@ -93039,7 +92823,7 @@ entities:
pos: 55.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24852
components:
- type: Transform
@@ -93047,7 +92831,7 @@ entities:
pos: 55.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24853
components:
- type: Transform
@@ -93055,7 +92839,7 @@ entities:
pos: 55.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24854
components:
- type: Transform
@@ -93063,7 +92847,7 @@ entities:
pos: 55.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24855
components:
- type: Transform
@@ -93071,7 +92855,7 @@ entities:
pos: 55.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24856
components:
- type: Transform
@@ -93079,7 +92863,7 @@ entities:
pos: 55.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24857
components:
- type: Transform
@@ -93087,7 +92871,7 @@ entities:
pos: 55.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24858
components:
- type: Transform
@@ -93095,7 +92879,7 @@ entities:
pos: 55.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24859
components:
- type: Transform
@@ -93103,7 +92887,7 @@ entities:
pos: 55.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24860
components:
- type: Transform
@@ -93111,7 +92895,7 @@ entities:
pos: 55.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24861
components:
- type: Transform
@@ -93119,7 +92903,7 @@ entities:
pos: 55.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24862
components:
- type: Transform
@@ -93127,7 +92911,7 @@ entities:
pos: 55.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24863
components:
- type: Transform
@@ -93135,7 +92919,7 @@ entities:
pos: 55.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24864
components:
- type: Transform
@@ -93143,7 +92927,7 @@ entities:
pos: 55.5,40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24865
components:
- type: Transform
@@ -93151,7 +92935,7 @@ entities:
pos: 55.5,41.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24866
components:
- type: Transform
@@ -93159,7 +92943,7 @@ entities:
pos: 55.5,38.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24867
components:
- type: Transform
@@ -93167,7 +92951,7 @@ entities:
pos: 55.5,43.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24868
components:
- type: Transform
@@ -93175,7 +92959,7 @@ entities:
pos: 55.5,44.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24869
components:
- type: Transform
@@ -93183,7 +92967,7 @@ entities:
pos: 55.5,45.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24870
components:
- type: Transform
@@ -93191,7 +92975,7 @@ entities:
pos: 55.5,42.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24872
components:
- type: Transform
@@ -93199,7 +92983,7 @@ entities:
pos: 53.5,44.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24873
components:
- type: Transform
@@ -93207,7 +92991,7 @@ entities:
pos: 53.5,43.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24874
components:
- type: Transform
@@ -93215,7 +92999,7 @@ entities:
pos: 53.5,42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24875
components:
- type: Transform
@@ -93223,7 +93007,7 @@ entities:
pos: 53.5,41.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24876
components:
- type: Transform
@@ -93231,7 +93015,7 @@ entities:
pos: 53.5,39.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24877
components:
- type: Transform
@@ -93239,7 +93023,7 @@ entities:
pos: 53.5,38.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24879
components:
- type: Transform
@@ -93247,7 +93031,7 @@ entities:
pos: 53.5,40.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24880
components:
- type: Transform
@@ -93255,7 +93039,7 @@ entities:
pos: 53.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24881
components:
- type: Transform
@@ -93263,7 +93047,7 @@ entities:
pos: 53.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24882
components:
- type: Transform
@@ -93271,7 +93055,7 @@ entities:
pos: 53.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24883
components:
- type: Transform
@@ -93279,7 +93063,7 @@ entities:
pos: 53.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24884
components:
- type: Transform
@@ -93287,7 +93071,7 @@ entities:
pos: 53.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24885
components:
- type: Transform
@@ -93295,7 +93079,7 @@ entities:
pos: 53.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24886
components:
- type: Transform
@@ -93303,7 +93087,7 @@ entities:
pos: 53.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24887
components:
- type: Transform
@@ -93311,7 +93095,7 @@ entities:
pos: 53.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24888
components:
- type: Transform
@@ -93319,7 +93103,7 @@ entities:
pos: 53.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24889
components:
- type: Transform
@@ -93327,7 +93111,7 @@ entities:
pos: 53.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24890
components:
- type: Transform
@@ -93335,7 +93119,7 @@ entities:
pos: 53.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24892
components:
- type: Transform
@@ -93343,7 +93127,7 @@ entities:
pos: 33.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24893
components:
- type: Transform
@@ -93351,7 +93135,7 @@ entities:
pos: 33.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24894
components:
- type: Transform
@@ -93359,7 +93143,7 @@ entities:
pos: 33.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24895
components:
- type: Transform
@@ -93367,7 +93151,7 @@ entities:
pos: 33.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24896
components:
- type: Transform
@@ -93375,7 +93159,7 @@ entities:
pos: 33.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24897
components:
- type: Transform
@@ -93383,7 +93167,7 @@ entities:
pos: 33.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24898
components:
- type: Transform
@@ -93391,7 +93175,7 @@ entities:
pos: 33.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24899
components:
- type: Transform
@@ -93399,7 +93183,7 @@ entities:
pos: 33.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24900
components:
- type: Transform
@@ -93407,7 +93191,7 @@ entities:
pos: 33.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24901
components:
- type: Transform
@@ -93415,7 +93199,7 @@ entities:
pos: 33.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24903
components:
- type: Transform
@@ -93423,7 +93207,7 @@ entities:
pos: 33.5,38.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24904
components:
- type: Transform
@@ -93431,7 +93215,7 @@ entities:
pos: 33.5,39.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24905
components:
- type: Transform
@@ -93439,7 +93223,7 @@ entities:
pos: 33.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24906
components:
- type: Transform
@@ -93447,7 +93231,7 @@ entities:
pos: 33.5,40.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24907
components:
- type: Transform
@@ -93455,7 +93239,7 @@ entities:
pos: 33.5,41.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24908
components:
- type: Transform
@@ -93463,7 +93247,7 @@ entities:
pos: 33.5,42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24909
components:
- type: Transform
@@ -93471,7 +93255,7 @@ entities:
pos: 33.5,43.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24910
components:
- type: Transform
@@ -93479,7 +93263,7 @@ entities:
pos: 33.5,44.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24911
components:
- type: Transform
@@ -93487,7 +93271,7 @@ entities:
pos: 35.5,44.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24912
components:
- type: Transform
@@ -93495,7 +93279,7 @@ entities:
pos: 35.5,43.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24913
components:
- type: Transform
@@ -93503,7 +93287,7 @@ entities:
pos: 35.5,42.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24914
components:
- type: Transform
@@ -93511,7 +93295,7 @@ entities:
pos: 35.5,41.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24915
components:
- type: Transform
@@ -93519,7 +93303,7 @@ entities:
pos: 35.5,40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24917
components:
- type: Transform
@@ -93527,7 +93311,7 @@ entities:
pos: 35.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24918
components:
- type: Transform
@@ -93535,7 +93319,7 @@ entities:
pos: 35.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24919
components:
- type: Transform
@@ -93543,7 +93327,7 @@ entities:
pos: 35.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24920
components:
- type: Transform
@@ -93551,7 +93335,7 @@ entities:
pos: 35.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24921
components:
- type: Transform
@@ -93559,7 +93343,7 @@ entities:
pos: 35.5,38.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24922
components:
- type: Transform
@@ -93567,7 +93351,7 @@ entities:
pos: 35.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24923
components:
- type: Transform
@@ -93575,7 +93359,7 @@ entities:
pos: 35.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24924
components:
- type: Transform
@@ -93583,7 +93367,7 @@ entities:
pos: 35.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24925
components:
- type: Transform
@@ -93591,7 +93375,7 @@ entities:
pos: 35.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24926
components:
- type: Transform
@@ -93599,7 +93383,7 @@ entities:
pos: 35.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24927
components:
- type: Transform
@@ -93607,7 +93391,7 @@ entities:
pos: 35.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24928
components:
- type: Transform
@@ -93615,7 +93399,7 @@ entities:
pos: 35.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24929
components:
- type: Transform
@@ -93623,7 +93407,7 @@ entities:
pos: 35.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24930
components:
- type: Transform
@@ -93631,7 +93415,7 @@ entities:
pos: 35.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24931
components:
- type: Transform
@@ -93639,7 +93423,7 @@ entities:
pos: 35.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25169
components:
- type: Transform
@@ -93647,7 +93431,7 @@ entities:
pos: 35.5,45.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25170
components:
- type: Transform
@@ -93655,14 +93439,14 @@ entities:
pos: 35.5,46.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25171
components:
- type: Transform
pos: 55.5,46.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25187
components:
- type: Transform
@@ -93670,7 +93454,7 @@ entities:
pos: 53.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25188
components:
- type: Transform
@@ -93678,7 +93462,7 @@ entities:
pos: 53.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- proto: GasPipeTJunction
entities:
- uid: 46
@@ -93688,7 +93472,7 @@ entities:
pos: -33.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 220
components:
- type: Transform
@@ -93696,7 +93480,7 @@ entities:
pos: 23.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 306
components:
- type: Transform
@@ -93704,7 +93488,7 @@ entities:
pos: 21.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 409
components:
- type: Transform
@@ -93712,7 +93496,7 @@ entities:
pos: 1.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 417
components:
- type: Transform
@@ -93720,7 +93504,7 @@ entities:
pos: -0.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 429
components:
- type: Transform
@@ -93728,7 +93512,7 @@ entities:
pos: 45.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 474
components:
- type: Transform
@@ -93736,7 +93520,7 @@ entities:
pos: 1.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 479
components:
- type: Transform
@@ -93744,7 +93528,7 @@ entities:
pos: -0.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 499
components:
- type: Transform
@@ -93752,29 +93536,21 @@ entities:
pos: -14.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 508
components:
- type: Transform
pos: 3.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 511
components:
- type: Transform
pos: -3.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 617
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-22.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 795
components:
- type: Transform
@@ -93782,21 +93558,29 @@ entities:
pos: -38.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 840
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-10.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 877
components:
- type: Transform
pos: -4.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 878
components:
- type: Transform
pos: -8.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 887
components:
- type: Transform
@@ -93804,14 +93588,14 @@ entities:
pos: -10.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 896
components:
- type: Transform
pos: -9.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 953
components:
- type: Transform
@@ -93819,7 +93603,7 @@ entities:
pos: -36.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 960
components:
- type: Transform
@@ -93827,21 +93611,21 @@ entities:
pos: -9.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1036
components:
- type: Transform
pos: 11.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1043
components:
- type: Transform
pos: 7.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1045
components:
- type: Transform
@@ -93849,7 +93633,7 @@ entities:
pos: 15.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1047
components:
- type: Transform
@@ -93857,14 +93641,14 @@ entities:
pos: 12.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1051
components:
- type: Transform
pos: 16.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1052
components:
- type: Transform
@@ -93872,7 +93656,7 @@ entities:
pos: 17.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1059
components:
- type: Transform
@@ -93880,7 +93664,7 @@ entities:
pos: 17.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1061
components:
- type: Transform
@@ -93888,7 +93672,7 @@ entities:
pos: 15.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1066
components:
- type: Transform
@@ -93896,7 +93680,7 @@ entities:
pos: 9.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1077
components:
- type: Transform
@@ -93904,7 +93688,7 @@ entities:
pos: 17.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1079
components:
- type: Transform
@@ -93912,7 +93696,7 @@ entities:
pos: 15.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1096
components:
- type: Transform
@@ -93920,7 +93704,7 @@ entities:
pos: 15.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1114
components:
- type: Transform
@@ -93928,7 +93712,7 @@ entities:
pos: -14.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1115
components:
- type: Transform
@@ -93936,22 +93720,14 @@ entities:
pos: -16.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1116
components:
- type: Transform
pos: -24.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1122
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1128
components:
- type: Transform
@@ -93959,7 +93735,7 @@ entities:
pos: -16.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1148
components:
- type: Transform
@@ -93967,7 +93743,7 @@ entities:
pos: -14.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1150
components:
- type: Transform
@@ -93975,59 +93751,28 @@ entities:
pos: -16.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1174
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1217
- components:
- - type: Transform
- pos: -14.5,9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1225
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 1226
components:
- type: Transform
pos: -10.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1229
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1259
components:
- type: Transform
pos: 13.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1262
components:
- type: Transform
pos: 10.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1265
components:
- type: Transform
@@ -94035,14 +93780,14 @@ entities:
pos: 12.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1269
components:
- type: Transform
pos: 9.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1273
components:
- type: Transform
@@ -94050,7 +93795,7 @@ entities:
pos: 15.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1275
components:
- type: Transform
@@ -94058,7 +93803,7 @@ entities:
pos: 15.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1276
components:
- type: Transform
@@ -94066,7 +93811,7 @@ entities:
pos: 17.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1410
components:
- type: Transform
@@ -94074,7 +93819,7 @@ entities:
pos: 3.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1417
components:
- type: Transform
@@ -94082,7 +93827,7 @@ entities:
pos: -0.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1419
components:
- type: Transform
@@ -94090,7 +93835,7 @@ entities:
pos: 1.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1498
components:
- type: Transform
@@ -94098,67 +93843,52 @@ entities:
pos: -19.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1510
- components:
- - type: Transform
- pos: -20.5,-22.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1529
+ color: '#FF1212FF'
+ - uid: 1579
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -22.5,-5.5
+ pos: -18.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1600
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-18.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1608
components:
- type: Transform
pos: -29.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1610
components:
- type: Transform
pos: -23.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1658
+ color: '#0335FCFF'
+ - uid: 1665
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -31.5,-13.5
+ pos: -21.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1668
+ color: '#FF1212FF'
+ - uid: 1708
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 1714
components:
- type: Transform
pos: -28.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1715
components:
- type: Transform
@@ -94166,21 +93896,30 @@ entities:
pos: -30.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 1719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-14.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-18.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 1756
components:
- type: Transform
pos: -22.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1768
- components:
- - type: Transform
- pos: -25.5,-14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1775
components:
- type: Transform
@@ -94188,37 +93927,54 @@ entities:
pos: -20.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1781
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1813
+ color: '#FF1212FF'
+ - uid: 1785
components:
- type: Transform
- pos: -26.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -28.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1822
+ color: '#0335FCFF'
+ - uid: 1814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1820
+ components:
+ - type: Transform
+ pos: -15.5,3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1830
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-9.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1834
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -31.5,-10.5
+ pos: -30.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1845
- components:
- - type: Transform
- pos: -27.5,-15.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1848
components:
- type: Transform
@@ -94226,70 +93982,7 @@ entities:
pos: -36.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1927
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-12.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1928
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1933
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-5.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1947
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1948
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-12.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1960
- components:
- - type: Transform
- pos: -26.5,-14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1972
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-10.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1982
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-13.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1994
components:
- type: Transform
@@ -94297,15 +93990,15 @@ entities:
pos: -36.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2090
+ color: '#0335FCFF'
+ - uid: 2105
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2127
components:
- type: Transform
@@ -94313,7 +94006,15 @@ entities:
pos: -26.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 2182
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 2276
components:
- type: Transform
@@ -94321,7 +94022,7 @@ entities:
pos: 32.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2358
components:
- type: Transform
@@ -94329,7 +94030,7 @@ entities:
pos: 32.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2359
components:
- type: Transform
@@ -94337,21 +94038,21 @@ entities:
pos: 30.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2377
components:
- type: Transform
pos: 24.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2380
components:
- type: Transform
pos: 25.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2473
components:
- type: Transform
@@ -94359,21 +94060,21 @@ entities:
pos: 23.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2481
components:
- type: Transform
pos: 30.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2482
components:
- type: Transform
pos: 32.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2486
components:
- type: Transform
@@ -94381,7 +94082,7 @@ entities:
pos: 34.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2498
components:
- type: Transform
@@ -94389,7 +94090,7 @@ entities:
pos: 29.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2499
components:
- type: Transform
@@ -94397,7 +94098,7 @@ entities:
pos: 33.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2537
components:
- type: Transform
@@ -94405,14 +94106,22 @@ entities:
pos: 32.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 2578
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-11.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 2693
components:
- type: Transform
pos: 40.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2694
components:
- type: Transform
@@ -94420,7 +94129,7 @@ entities:
pos: 40.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2799
components:
- type: Transform
@@ -94428,7 +94137,7 @@ entities:
pos: 19.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2802
components:
- type: Transform
@@ -94436,7 +94145,7 @@ entities:
pos: 17.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2812
components:
- type: Transform
@@ -94444,7 +94153,7 @@ entities:
pos: 17.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2869
components:
- type: Transform
@@ -94452,7 +94161,7 @@ entities:
pos: 44.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2881
components:
- type: Transform
@@ -94460,7 +94169,7 @@ entities:
pos: 35.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2902
components:
- type: Transform
@@ -94468,7 +94177,7 @@ entities:
pos: 44.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2981
components:
- type: Transform
@@ -94484,7 +94193,7 @@ entities:
pos: 45.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2989
components:
- type: Transform
@@ -94492,7 +94201,7 @@ entities:
pos: 44.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3001
components:
- type: Transform
@@ -94508,7 +94217,7 @@ entities:
pos: 44.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3121
components:
- type: Transform
@@ -94523,7 +94232,7 @@ entities:
pos: 47.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3189
components:
- type: Transform
@@ -94531,15 +94240,7 @@ entities:
pos: 33.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3196
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3205
components:
- type: Transform
@@ -94547,7 +94248,7 @@ entities:
pos: 45.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3209
components:
- type: Transform
@@ -94570,15 +94271,7 @@ entities:
pos: 45.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3224
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-4.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 3367
components:
- type: Transform
@@ -94586,7 +94279,7 @@ entities:
pos: -3.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3573
components:
- type: Transform
@@ -94594,7 +94287,7 @@ entities:
pos: 45.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3915
components:
- type: Transform
@@ -94602,7 +94295,7 @@ entities:
pos: 1.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3918
components:
- type: Transform
@@ -94610,7 +94303,7 @@ entities:
pos: -0.5,-39.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3920
components:
- type: Transform
@@ -94618,7 +94311,7 @@ entities:
pos: -0.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3924
components:
- type: Transform
@@ -94626,7 +94319,7 @@ entities:
pos: 1.5,-46.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3929
components:
- type: Transform
@@ -94634,7 +94327,7 @@ entities:
pos: 1.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3930
components:
- type: Transform
@@ -94642,7 +94335,7 @@ entities:
pos: 1.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3950
components:
- type: Transform
@@ -94650,7 +94343,7 @@ entities:
pos: -8.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3984
components:
- type: Transform
@@ -94658,7 +94351,7 @@ entities:
pos: -0.5,-45.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3998
components:
- type: Transform
@@ -94666,7 +94359,7 @@ entities:
pos: -54.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4110
components:
- type: Transform
@@ -94674,7 +94367,7 @@ entities:
pos: 34.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4117
components:
- type: Transform
@@ -94682,7 +94375,7 @@ entities:
pos: 45.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4123
components:
- type: Transform
@@ -94690,7 +94383,7 @@ entities:
pos: 33.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4146
components:
- type: Transform
@@ -94698,7 +94391,7 @@ entities:
pos: 33.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4154
components:
- type: Transform
@@ -94706,14 +94399,22 @@ entities:
pos: 34.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 4220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-11.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 4336
components:
- type: Transform
pos: 39.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4354
components:
- type: Transform
@@ -94721,7 +94422,7 @@ entities:
pos: 39.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4483
components:
- type: Transform
@@ -94729,14 +94430,14 @@ entities:
pos: 34.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4541
components:
- type: Transform
pos: -4.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4630
components:
- type: Transform
@@ -94744,7 +94445,7 @@ entities:
pos: -0.5,-61.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4834
components:
- type: Transform
@@ -94752,7 +94453,7 @@ entities:
pos: -0.5,-47.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4835
components:
- type: Transform
@@ -94760,7 +94461,7 @@ entities:
pos: 1.5,-48.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4915
components:
- type: Transform
@@ -94768,7 +94469,7 @@ entities:
pos: 1.5,-72.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4965
components:
- type: Transform
@@ -94776,7 +94477,7 @@ entities:
pos: 1.5,-61.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4990
components:
- type: Transform
@@ -94784,15 +94485,15 @@ entities:
pos: -0.5,-72.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5473
+ color: '#FF1212FF'
+ - uid: 5472
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -15.5,7.5
+ pos: -27.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5476
components:
- type: Transform
@@ -94800,7 +94501,7 @@ entities:
pos: -38.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5532
components:
- type: Transform
@@ -94808,7 +94509,15 @@ entities:
pos: 17.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 5562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,0.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 5583
components:
- type: Transform
@@ -94822,7 +94531,7 @@ entities:
pos: -0.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5730
components:
- type: Transform
@@ -94830,7 +94539,7 @@ entities:
pos: 1.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5733
components:
- type: Transform
@@ -94838,7 +94547,7 @@ entities:
pos: -0.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5736
components:
- type: Transform
@@ -94846,7 +94555,7 @@ entities:
pos: 1.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5746
components:
- type: Transform
@@ -94854,14 +94563,7 @@ entities:
pos: -9.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5758
- components:
- - type: Transform
- pos: -14.5,7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5765
components:
- type: Transform
@@ -94869,14 +94571,14 @@ entities:
pos: 16.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5817
components:
- type: Transform
pos: 18.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5829
components:
- type: Transform
@@ -94884,7 +94586,7 @@ entities:
pos: 34.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5847
components:
- type: Transform
@@ -94892,7 +94594,7 @@ entities:
pos: 1.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5865
components:
- type: Transform
@@ -94900,21 +94602,21 @@ entities:
pos: -36.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5890
components:
- type: Transform
pos: 12.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5891
components:
- type: Transform
pos: -36.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5892
components:
- type: Transform
@@ -94922,7 +94624,7 @@ entities:
pos: -28.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5921
components:
- type: Transform
@@ -94930,7 +94632,7 @@ entities:
pos: 30.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5922
components:
- type: Transform
@@ -94938,29 +94640,29 @@ entities:
pos: 32.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5942
components:
- type: Transform
pos: -37.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5947
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,4.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5953
components:
- type: Transform
pos: -37.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 5971
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-14.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 6005
components:
- type: Transform
@@ -94968,7 +94670,7 @@ entities:
pos: -41.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6008
components:
- type: Transform
@@ -94976,7 +94678,7 @@ entities:
pos: -38.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6012
components:
- type: Transform
@@ -94984,14 +94686,14 @@ entities:
pos: -36.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6020
components:
- type: Transform
pos: -49.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6024
components:
- type: Transform
@@ -94999,7 +94701,7 @@ entities:
pos: -44.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6026
components:
- type: Transform
@@ -95007,14 +94709,14 @@ entities:
pos: -42.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6037
components:
- type: Transform
pos: -42.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6109
components:
- type: Transform
@@ -95022,7 +94724,7 @@ entities:
pos: -49.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6120
components:
- type: Transform
@@ -95030,14 +94732,14 @@ entities:
pos: -49.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6214
components:
- type: Transform
pos: 0.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6278
components:
- type: Transform
@@ -95045,7 +94747,7 @@ entities:
pos: 15.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6280
components:
- type: Transform
@@ -95053,7 +94755,7 @@ entities:
pos: 15.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6282
components:
- type: Transform
@@ -95061,42 +94763,43 @@ entities:
pos: 15.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6365
+ color: '#0335FCFF'
+ - uid: 6333
components:
- type: Transform
- pos: -31.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 6380
components:
- type: Transform
pos: -41.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6426
components:
- type: Transform
pos: 0.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6660
components:
- type: Transform
pos: -42.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6662
components:
- type: Transform
pos: -42.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6810
components:
- type: Transform
@@ -95104,15 +94807,31 @@ entities:
pos: 17.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6825
+ color: '#FF1212FF'
+ - uid: 7285
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 7464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.5,-18.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 7603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 7682
components:
- type: Transform
@@ -95120,7 +94839,7 @@ entities:
pos: -38.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7683
components:
- type: Transform
@@ -95128,7 +94847,23 @@ entities:
pos: -38.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 7902
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 8079
components:
- type: Transform
@@ -95151,38 +94886,22 @@ entities:
pos: -36.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8224
components:
- type: Transform
pos: -31.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8226
+ color: '#FF1212FF'
+ - uid: 8228
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,-20.5
+ pos: -21.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8227
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8233
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8241
components:
- type: Transform
@@ -95190,7 +94909,38 @@ entities:
pos: -36.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 8245
+ components:
+ - type: Transform
+ pos: -24.5,-3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-20.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 8260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,-21.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 8353
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 8537
components:
- type: Transform
@@ -95198,7 +94948,7 @@ entities:
pos: 15.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8548
components:
- type: Transform
@@ -95206,46 +94956,15 @@ entities:
pos: 15.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8580
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-15.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8715
- components:
- - type: Transform
- pos: -27.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8722
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-6.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8735
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-6.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8790
+ color: '#0335FCFF'
+ - uid: 8570
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -26.5,-5.5
+ pos: -45.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 8884
components:
- type: Transform
@@ -95253,7 +94972,22 @@ entities:
pos: 23.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 8941
+ components:
+ - type: Transform
+ pos: -42.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 9148
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 9233
components:
- type: Transform
@@ -95261,7 +94995,7 @@ entities:
pos: 17.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9455
components:
- type: Transform
@@ -95269,21 +95003,21 @@ entities:
pos: -55.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9458
components:
- type: Transform
pos: -52.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9637
components:
- type: Transform
pos: -55.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11153
components:
- type: Transform
@@ -95291,14 +95025,14 @@ entities:
pos: 41.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 11722
components:
- type: Transform
pos: 42.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 11734
components:
- type: Transform
@@ -95306,7 +95040,7 @@ entities:
pos: 15.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11761
components:
- type: Transform
@@ -95314,7 +95048,7 @@ entities:
pos: 17.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12196
components:
- type: Transform
@@ -95338,7 +95072,7 @@ entities:
pos: 39.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12626
components:
- type: Transform
@@ -95346,7 +95080,7 @@ entities:
pos: 38.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12744
components:
- type: Transform
@@ -95354,28 +95088,28 @@ entities:
pos: 49.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13113
components:
- type: Transform
pos: 48.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13245
components:
- type: Transform
pos: 23.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13443
components:
- type: Transform
pos: -21.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13447
components:
- type: Transform
@@ -95383,7 +95117,7 @@ entities:
pos: -21.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13448
components:
- type: Transform
@@ -95391,14 +95125,14 @@ entities:
pos: -21.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13504
components:
- type: Transform
pos: 47.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13534
components:
- type: Transform
@@ -95406,14 +95140,14 @@ entities:
pos: 43.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13546
components:
- type: Transform
pos: 21.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13612
components:
- type: Transform
@@ -95421,7 +95155,7 @@ entities:
pos: 31.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13673
components:
- type: Transform
@@ -95429,7 +95163,7 @@ entities:
pos: -8.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13808
components:
- type: Transform
@@ -95437,56 +95171,56 @@ entities:
pos: 38.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13914
components:
- type: Transform
pos: 49.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14015
components:
- type: Transform
pos: 32.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14021
components:
- type: Transform
pos: 38.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14022
components:
- type: Transform
pos: 17.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14029
components:
- type: Transform
pos: 36.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14044
components:
- type: Transform
pos: 22.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14047
components:
- type: Transform
pos: 39.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14237
components:
- type: Transform
@@ -95494,7 +95228,7 @@ entities:
pos: -16.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14251
components:
- type: Transform
@@ -95502,7 +95236,7 @@ entities:
pos: -16.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14259
components:
- type: Transform
@@ -95510,21 +95244,21 @@ entities:
pos: -16.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14270
components:
- type: Transform
pos: -26.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14274
components:
- type: Transform
pos: -36.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14280
components:
- type: Transform
@@ -95532,30 +95266,30 @@ entities:
pos: -22.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14293
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,17.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 14295
components:
- type: Transform
pos: -9.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14308
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
+ - uid: 14312
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,14.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 14313
components:
- type: Transform
@@ -95563,7 +95297,7 @@ entities:
pos: -8.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14468
components:
- type: Transform
@@ -95571,7 +95305,7 @@ entities:
pos: -23.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14478
components:
- type: Transform
@@ -95579,7 +95313,7 @@ entities:
pos: -24.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14490
components:
- type: Transform
@@ -95587,7 +95321,7 @@ entities:
pos: -26.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14491
components:
- type: Transform
@@ -95595,7 +95329,7 @@ entities:
pos: -27.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14492
components:
- type: Transform
@@ -95603,7 +95337,7 @@ entities:
pos: -24.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14496
components:
- type: Transform
@@ -95611,7 +95345,7 @@ entities:
pos: -23.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14735
components:
- type: Transform
@@ -95619,7 +95353,7 @@ entities:
pos: -22.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14736
components:
- type: Transform
@@ -95632,7 +95366,7 @@ entities:
pos: -29.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14746
components:
- type: Transform
@@ -95640,7 +95374,7 @@ entities:
pos: -25.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14750
components:
- type: Transform
@@ -95648,7 +95382,7 @@ entities:
pos: -22.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14751
components:
- type: Transform
@@ -95656,7 +95390,7 @@ entities:
pos: -16.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14753
components:
- type: Transform
@@ -95664,7 +95398,7 @@ entities:
pos: -20.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14763
components:
- type: Transform
@@ -95672,28 +95406,28 @@ entities:
pos: -20.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14800
components:
- type: Transform
pos: -34.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14827
components:
- type: Transform
pos: -20.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14866
components:
- type: Transform
pos: -24.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14880
components:
- type: Transform
@@ -95723,7 +95457,7 @@ entities:
pos: -16.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15138
components:
- type: Transform
@@ -95739,7 +95473,7 @@ entities:
pos: -32.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15164
components:
- type: Transform
@@ -95873,14 +95607,14 @@ entities:
pos: -11.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15605
components:
- type: Transform
pos: -21.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15617
components:
- type: Transform
@@ -95888,7 +95622,7 @@ entities:
pos: -18.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15621
components:
- type: Transform
@@ -95896,7 +95630,7 @@ entities:
pos: -14.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15626
components:
- type: Transform
@@ -95904,7 +95638,7 @@ entities:
pos: -10.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15635
components:
- type: Transform
@@ -95912,7 +95646,7 @@ entities:
pos: -12.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15637
components:
- type: Transform
@@ -95920,7 +95654,7 @@ entities:
pos: -10.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15647
components:
- type: Transform
@@ -95928,7 +95662,7 @@ entities:
pos: -12.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15661
components:
- type: Transform
@@ -95936,7 +95670,7 @@ entities:
pos: -0.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15664
components:
- type: Transform
@@ -95944,14 +95678,14 @@ entities:
pos: -3.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16563
components:
- type: Transform
pos: -2.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16571
components:
- type: Transform
@@ -95959,7 +95693,7 @@ entities:
pos: -2.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16576
components:
- type: Transform
@@ -95967,14 +95701,14 @@ entities:
pos: -3.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16580
components:
- type: Transform
pos: -0.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16581
components:
- type: Transform
@@ -95982,14 +95716,14 @@ entities:
pos: -2.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16582
components:
- type: Transform
pos: -3.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16594
components:
- type: Transform
@@ -95997,7 +95731,7 @@ entities:
pos: -3.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16599
components:
- type: Transform
@@ -96005,7 +95739,7 @@ entities:
pos: -2.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16608
components:
- type: Transform
@@ -96013,7 +95747,7 @@ entities:
pos: -0.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16612
components:
- type: Transform
@@ -96021,7 +95755,7 @@ entities:
pos: -1.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16632
components:
- type: Transform
@@ -96029,28 +95763,28 @@ entities:
pos: 1.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16645
components:
- type: Transform
pos: 1.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16647
components:
- type: Transform
pos: 5.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16648
components:
- type: Transform
pos: 4.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16654
components:
- type: Transform
@@ -96058,14 +95792,14 @@ entities:
pos: 10.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16656
components:
- type: Transform
pos: 2.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16659
components:
- type: Transform
@@ -96073,7 +95807,7 @@ entities:
pos: 3.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16664
components:
- type: Transform
@@ -96081,7 +95815,7 @@ entities:
pos: 10.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16971
components:
- type: Transform
@@ -96097,7 +95831,7 @@ entities:
pos: 37.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17525
components:
- type: Transform
@@ -96105,14 +95839,14 @@ entities:
pos: 21.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17529
components:
- type: Transform
pos: 41.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17538
components:
- type: Transform
@@ -96120,28 +95854,28 @@ entities:
pos: 39.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17570
components:
- type: Transform
pos: -38.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17580
components:
- type: Transform
pos: -43.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17583
components:
- type: Transform
pos: -30.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17585
components:
- type: Transform
@@ -96149,7 +95883,7 @@ entities:
pos: -31.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17629
components:
- type: Transform
@@ -96157,7 +95891,7 @@ entities:
pos: 22.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17841
components:
- type: Transform
@@ -96165,7 +95899,7 @@ entities:
pos: 41.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18067
components:
- type: Transform
@@ -96179,7 +95913,7 @@ entities:
pos: -0.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18223
components:
- type: Transform
@@ -96187,28 +95921,28 @@ entities:
pos: -0.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18242
components:
- type: Transform
pos: 1.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18243
components:
- type: Transform
pos: -0.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18255
components:
- type: Transform
pos: -3.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18256
components:
- type: Transform
@@ -96216,7 +95950,7 @@ entities:
pos: -3.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18424
components:
- type: Transform
@@ -96224,7 +95958,7 @@ entities:
pos: -0.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18440
components:
- type: Transform
@@ -96232,7 +95966,15 @@ entities:
pos: 44.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 18504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-18.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 18531
components:
- type: Transform
@@ -96240,7 +95982,7 @@ entities:
pos: 2.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18649
components:
- type: Transform
@@ -96248,7 +95990,7 @@ entities:
pos: 51.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18659
components:
- type: Transform
@@ -96256,21 +95998,21 @@ entities:
pos: 52.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18662
components:
- type: Transform
pos: 52.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18669
components:
- type: Transform
pos: 51.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18717
components:
- type: Transform
@@ -96278,7 +96020,7 @@ entities:
pos: 37.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21168
components:
- type: Transform
@@ -96286,7 +96028,7 @@ entities:
pos: -16.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21318
components:
- type: Transform
@@ -96294,7 +96036,15 @@ entities:
pos: -72.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 21408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 21416
components:
- type: Transform
@@ -96334,7 +96084,7 @@ entities:
pos: -29.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 22810
components:
- type: Transform
@@ -96342,28 +96092,28 @@ entities:
pos: -99.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22814
components:
- type: Transform
pos: -103.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22823
components:
- type: Transform
pos: -112.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22828
components:
- type: Transform
pos: -117.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22839
components:
- type: Transform
@@ -96371,7 +96121,7 @@ entities:
pos: -111.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22847
components:
- type: Transform
@@ -96379,7 +96129,7 @@ entities:
pos: -99.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22883
components:
- type: Transform
@@ -96387,7 +96137,7 @@ entities:
pos: -118.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22892
components:
- type: Transform
@@ -96395,7 +96145,7 @@ entities:
pos: -111.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22930
components:
- type: Transform
@@ -96488,7 +96238,7 @@ entities:
pos: -6.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24658
components:
- type: Transform
@@ -96496,7 +96246,7 @@ entities:
pos: -1.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24748
components:
- type: Transform
@@ -96504,7 +96254,7 @@ entities:
pos: 55.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24749
components:
- type: Transform
@@ -96512,14 +96262,14 @@ entities:
pos: 53.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24845
components:
- type: Transform
pos: 43.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24871
components:
- type: Transform
@@ -96527,7 +96277,7 @@ entities:
pos: 55.5,39.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24916
components:
- type: Transform
@@ -96535,7 +96285,7 @@ entities:
pos: 35.5,39.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25168
components:
- type: Transform
@@ -96543,7 +96293,7 @@ entities:
pos: 33.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25172
components:
- type: Transform
@@ -96551,7 +96301,7 @@ entities:
pos: 53.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25182
components:
- type: Transform
@@ -96559,7 +96309,7 @@ entities:
pos: 45.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- proto: GasPort
entities:
- uid: 111
@@ -96636,14 +96386,14 @@ entities:
pos: -16.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14721
components:
- type: Transform
pos: -15.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15005
components:
- type: Transform
@@ -96692,7 +96442,7 @@ entities:
pos: -8.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21667
components:
- type: Transform
@@ -96700,7 +96450,7 @@ entities:
pos: -30.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21668
components:
- type: Transform
@@ -96708,7 +96458,7 @@ entities:
pos: -30.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21673
components:
- type: Transform
@@ -96775,7 +96525,7 @@ entities:
pos: 48.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8074
components:
- type: Transform
@@ -96826,7 +96576,7 @@ entities:
pos: -33.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14774
components:
- type: Transform
@@ -96898,7 +96648,7 @@ entities:
pos: -34.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15143
components:
- type: Transform
@@ -96906,7 +96656,7 @@ entities:
pos: -34.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15281
components:
- type: Transform
@@ -96938,21 +96688,21 @@ entities:
pos: -20.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22884
components:
- type: Transform
pos: -119.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22885
components:
- type: Transform
pos: -118.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 23049
components:
- type: Transform
@@ -97143,7 +96893,7 @@ entities:
- type: GasValve
open: False
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14837
components:
- type: Transform
@@ -97186,7 +96936,7 @@ entities:
- type: GasValve
open: False
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15345
components:
- type: Transform
@@ -97248,21 +96998,32 @@ entities:
pos: -9.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 114
components:
- type: Transform
pos: 49.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 116
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -49.5,-20.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 8483
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 127
components:
- type: Transform
pos: 20.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 179
components:
- type: Transform
@@ -97270,7 +97031,7 @@ entities:
pos: 20.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 275
components:
- type: Transform
@@ -97278,7 +97039,7 @@ entities:
pos: 21.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 426
components:
- type: Transform
@@ -97286,7 +97047,7 @@ entities:
pos: 0.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 482
components:
- type: Transform
@@ -97294,23 +97055,41 @@ entities:
pos: 0.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-20.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 148
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-18.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 231
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 792
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -15.5,-5.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1960
+ - 4709
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 856
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-16.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 910
components:
- type: Transform
@@ -97318,15 +97097,18 @@ entities:
pos: -3.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 928
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -8.5,-23.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 57
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 946
components:
- type: Transform
@@ -97334,15 +97116,18 @@ entities:
pos: -48.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1133
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -15.5,-13.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 4709
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1385
components:
- type: Transform
@@ -97358,7 +97143,7 @@ entities:
pos: 5.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1429
components:
- type: Transform
@@ -97366,7 +97151,7 @@ entities:
pos: 0.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1455
components:
- type: Transform
@@ -97374,103 +97159,115 @@ entities:
pos: 11.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1511
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -20.5,-23.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 57
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1651
+ color: '#0335FCFF'
+ - uid: 1660
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-7.5
+ pos: -37.5,-20.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 21507
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1652
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-10.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1665
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-13.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1669
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-7.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1682
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-10.5
+ pos: -44.5,-18.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 8516
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 1731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-5.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 1780
components:
- type: Transform
pos: -20.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1787
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -37.5,-13.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21612
+ - 12
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1838
+ color: '#0335FCFF'
+ - uid: 1845
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,-13.5
+ pos: -27.5,-10.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 5933
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 1966
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-14.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 148
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1971
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-14.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 231
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1983
+ components:
+ - type: Transform
+ pos: -28.5,-4.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 178
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 1996
components:
- type: Transform
pos: -33.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2027
components:
- type: Transform
@@ -97478,7 +97275,7 @@ entities:
pos: -22.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2208
components:
- type: Transform
@@ -97486,7 +97283,7 @@ entities:
pos: 34.5,-36.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2215
components:
- type: Transform
@@ -97494,7 +97291,7 @@ entities:
pos: 34.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2370
components:
- type: Transform
@@ -97502,7 +97299,7 @@ entities:
pos: 24.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2371
components:
- type: Transform
@@ -97510,7 +97307,7 @@ entities:
pos: 25.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2560
components:
- type: Transform
@@ -97518,7 +97315,7 @@ entities:
pos: 31.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2706
components:
- type: Transform
@@ -97526,18 +97323,7 @@ entities:
pos: 18.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2791
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-2.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8791
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2826
components:
- type: Transform
@@ -97545,18 +97331,7 @@ entities:
pos: 44.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2861
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,4.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8669
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2984
components:
- type: Transform
@@ -97564,7 +97339,7 @@ entities:
pos: 47.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3002
components:
- type: Transform
@@ -97580,16 +97355,6 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#D3FC03FF'
- - uid: 3197
- components:
- - type: Transform
- pos: -27.5,0.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8271
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 3567
components:
- type: Transform
@@ -97597,7 +97362,7 @@ entities:
pos: 45.5,-39.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3692
components:
- type: Transform
@@ -97605,21 +97370,21 @@ entities:
pos: 16.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3964
components:
- type: Transform
pos: -13.5,-41.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3965
components:
- type: Transform
pos: -8.5,-41.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3986
components:
- type: Transform
@@ -97627,7 +97392,7 @@ entities:
pos: 0.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4537
components:
- type: Transform
@@ -97635,7 +97400,7 @@ entities:
pos: -2.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4953
components:
- type: Transform
@@ -97643,259 +97408,8 @@ entities:
pos: 0.5,-48.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5412
- components:
- - type: Transform
- pos: 12.5,8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5425
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,1.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8260
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5439
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5445
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-16.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5446
- components:
- - type: Transform
- pos: 33.5,-14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5472
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5518
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-17.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5585
- components:
- - type: Transform
- pos: -44.5,9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5739
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,11.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5822
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-34.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5824
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-32.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5843
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5929
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-27.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5938
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-0.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5951
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-12.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5952
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-6.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5954
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-16.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5955
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-17.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5956
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-20.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5980
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,3.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5987
- components:
- - type: Transform
- pos: -43.5,-8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5990
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,13.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6002
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-23.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6032
- components:
- - type: Transform
- pos: -52.5,4.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6087
- components:
- - type: Transform
- pos: -19.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6093
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-21.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6300
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,12.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6307
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-9.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6417
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-61.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6418
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-72.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6648
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-19.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 2103
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6759
+ color: '#0335FCFF'
+ - uid: 5364
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -97903,9 +97417,215 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 3204
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 5412
+ components:
+ - type: Transform
+ pos: 12.5,8.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5446
+ components:
+ - type: Transform
+ pos: 33.5,-14.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,-17.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5585
+ components:
+ - type: Transform
+ pos: -44.5,9.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5739
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,11.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-34.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-32.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5843
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,14.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5929
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -28.5,-27.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5938
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,-0.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-12.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-6.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21612
+ - 12
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5955
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-17.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5956
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-20.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5980
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5987
+ components:
+ - type: Transform
+ pos: -43.5,-8.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5990
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,13.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 6002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-23.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 6032
+ components:
+ - type: Transform
+ pos: -52.5,4.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 6203
+ components:
+ - type: Transform
+ pos: -22.5,-1.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 6300
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,12.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 6417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-61.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 6418
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-72.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 6770
components:
- type: Transform
@@ -97913,7 +97633,7 @@ entities:
pos: 9.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6789
components:
- type: Transform
@@ -97921,7 +97641,7 @@ entities:
pos: -42.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6835
components:
- type: Transform
@@ -97929,7 +97649,7 @@ entities:
pos: 40.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7387
components:
- type: Transform
@@ -97937,7 +97657,7 @@ entities:
pos: 1.5,-76.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7476
components:
- type: Transform
@@ -97948,7 +97668,7 @@ entities:
deviceLists:
- 24769
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7484
components:
- type: Transform
@@ -97956,7 +97676,7 @@ entities:
pos: 0.5,-56.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7485
components:
- type: Transform
@@ -97964,7 +97684,15 @@ entities:
pos: -9.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 7916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-9.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 8087
components:
- type: Transform
@@ -97996,34 +97724,27 @@ entities:
pos: -3.5,-46.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8259
+ color: '#0335FCFF'
+ - uid: 8267
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-5.5
parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8265
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8388
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -37.5,8.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21612
+ - 12
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8413
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-3.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8619
components:
- type: Transform
@@ -98031,7 +97752,7 @@ entities:
pos: 16.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8962
components:
- type: Transform
@@ -98039,7 +97760,7 @@ entities:
pos: 32.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9016
components:
- type: Transform
@@ -98047,7 +97768,7 @@ entities:
pos: 47.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9046
components:
- type: Transform
@@ -98055,7 +97776,7 @@ entities:
pos: 40.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9063
components:
- type: Transform
@@ -98063,7 +97784,29 @@ entities:
pos: 29.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 9150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -44.5,-20.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 8516
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 9157
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,2.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 105
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 9471
components:
- type: Transform
@@ -98074,7 +97817,7 @@ entities:
deviceLists:
- 7065
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9472
components:
- type: Transform
@@ -98085,7 +97828,7 @@ entities:
deviceLists:
- 11464
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9607
components:
- type: Transform
@@ -98093,7 +97836,7 @@ entities:
pos: -42.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9651
components:
- type: Transform
@@ -98104,7 +97847,7 @@ entities:
deviceLists:
- 11464
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9678
components:
- type: Transform
@@ -98112,18 +97855,22 @@ entities:
pos: -37.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 11978
+ color: '#0335FCFF'
+ - uid: 10586
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-3.5
+ pos: -27.5,-0.5
parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8714
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 10678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-9.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 12589
components:
- type: Transform
@@ -98131,7 +97878,7 @@ entities:
pos: 16.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12592
components:
- type: Transform
@@ -98139,7 +97886,7 @@ entities:
pos: 16.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12623
components:
- type: Transform
@@ -98147,7 +97894,7 @@ entities:
pos: 43.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12624
components:
- type: Transform
@@ -98155,7 +97902,7 @@ entities:
pos: 41.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12839
components:
- type: Transform
@@ -98163,21 +97910,21 @@ entities:
pos: -48.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12868
components:
- type: Transform
pos: 40.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13074
components:
- type: Transform
pos: 38.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13241
components:
- type: Transform
@@ -98185,7 +97932,7 @@ entities:
pos: 19.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13242
components:
- type: Transform
@@ -98193,14 +97940,24 @@ entities:
pos: 16.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ 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
pos: 16.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13548
components:
- type: Transform
@@ -98208,7 +97965,7 @@ entities:
pos: 21.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13589
components:
- type: Transform
@@ -98216,21 +97973,21 @@ entities:
pos: 4.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 13800
+ components:
+ - type: Transform
+ pos: -30.5,-1.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 14302
components:
- type: Transform
pos: -7.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14303
- components:
- - type: Transform
- pos: -11.5,18.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14325
components:
- type: Transform
@@ -98238,7 +97995,7 @@ entities:
pos: -8.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14501
components:
- type: Transform
@@ -98246,14 +98003,14 @@ entities:
pos: -23.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14502
components:
- type: Transform
pos: -23.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14642
components:
- type: Transform
@@ -98261,7 +98018,7 @@ entities:
pos: -19.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14752
components:
- type: Transform
@@ -98269,7 +98026,7 @@ entities:
pos: -21.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14770
components:
- type: Transform
@@ -98279,21 +98036,21 @@ entities:
deviceLists:
- 23956
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15651
components:
- type: Transform
pos: -18.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15652
components:
- type: Transform
pos: -14.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16559
components:
- type: Transform
@@ -98301,7 +98058,7 @@ entities:
pos: -29.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16604
components:
- type: Transform
@@ -98309,14 +98066,14 @@ entities:
pos: -11.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16619
components:
- type: Transform
pos: -0.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16620
components:
- type: Transform
@@ -98324,7 +98081,7 @@ entities:
pos: 0.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16635
components:
- type: Transform
@@ -98335,7 +98092,7 @@ entities:
deviceLists:
- 15745
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16643
components:
- type: Transform
@@ -98343,7 +98100,7 @@ entities:
pos: -2.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16666
components:
- type: Transform
@@ -98351,14 +98108,14 @@ entities:
pos: 12.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16669
components:
- type: Transform
pos: 10.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16670
components:
- type: Transform
@@ -98366,7 +98123,7 @@ entities:
pos: -2.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16682
components:
- type: Transform
@@ -98374,7 +98131,7 @@ entities:
pos: 5.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16683
components:
- type: Transform
@@ -98382,14 +98139,14 @@ entities:
pos: 2.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16684
components:
- type: Transform
pos: -32.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16718
components:
- type: Transform
@@ -98399,7 +98156,7 @@ entities:
deviceLists:
- 21710
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17601
components:
- type: Transform
@@ -98407,7 +98164,7 @@ entities:
pos: -46.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17602
components:
- type: Transform
@@ -98415,7 +98172,7 @@ entities:
pos: -46.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17624
components:
- type: Transform
@@ -98423,7 +98180,7 @@ entities:
pos: -36.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17625
components:
- type: Transform
@@ -98431,7 +98188,7 @@ entities:
pos: -38.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17627
components:
- type: Transform
@@ -98439,7 +98196,7 @@ entities:
pos: -15.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17628
components:
- type: Transform
@@ -98447,7 +98204,7 @@ entities:
pos: -30.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18139
components:
- type: Transform
@@ -98455,7 +98212,7 @@ entities:
pos: -2.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18270
components:
- type: Transform
@@ -98463,7 +98220,7 @@ entities:
pos: -7.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18426
components:
- type: Transform
@@ -98471,7 +98228,7 @@ entities:
pos: 0.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18427
components:
- type: Transform
@@ -98479,7 +98236,7 @@ entities:
pos: 5.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18429
components:
- type: Transform
@@ -98487,7 +98244,7 @@ entities:
pos: 0.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18539
components:
- type: Transform
@@ -98495,7 +98252,7 @@ entities:
pos: 0.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18540
components:
- type: Transform
@@ -98503,7 +98260,7 @@ entities:
pos: 4.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18560
components:
- type: Transform
@@ -98516,7 +98273,7 @@ entities:
pos: 45.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18653
components:
- type: Transform
@@ -98524,7 +98281,7 @@ entities:
pos: 45.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18663
components:
- type: Transform
@@ -98532,7 +98289,7 @@ entities:
pos: 53.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18664
components:
- type: Transform
@@ -98540,7 +98297,7 @@ entities:
pos: 53.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18668
components:
- type: Transform
@@ -98548,7 +98305,7 @@ entities:
pos: 48.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18906
components:
- type: Transform
@@ -98559,7 +98316,7 @@ entities:
deviceLists:
- 24792
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18937
components:
- type: Transform
@@ -98575,7 +98332,7 @@ entities:
pos: 36.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19054
components:
- type: Transform
@@ -98583,7 +98340,7 @@ entities:
pos: 32.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19056
components:
- type: Transform
@@ -98594,7 +98351,7 @@ entities:
deviceLists:
- 25155
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19057
components:
- type: Transform
@@ -98605,7 +98362,7 @@ entities:
deviceLists:
- 25155
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19179
components:
- type: Transform
@@ -98613,7 +98370,7 @@ entities:
pos: 21.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19403
components:
- type: Transform
@@ -98621,21 +98378,32 @@ entities:
pos: 40.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21327
components:
- type: Transform
pos: -72.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 21407
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,0.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1960
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 22876
components:
- type: Transform
pos: -110.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22878
components:
- type: Transform
@@ -98643,7 +98411,7 @@ entities:
pos: -110.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22879
components:
- type: Transform
@@ -98651,7 +98419,7 @@ entities:
pos: -103.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22881
components:
- type: Transform
@@ -98659,7 +98427,7 @@ entities:
pos: -98.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22882
components:
- type: Transform
@@ -98667,7 +98435,7 @@ entities:
pos: -112.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22886
components:
- type: Transform
@@ -98675,7 +98443,7 @@ entities:
pos: -117.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22891
components:
- type: Transform
@@ -98683,7 +98451,7 @@ entities:
pos: -112.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22893
components:
- type: Transform
@@ -98691,7 +98459,7 @@ entities:
pos: -112.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22894
components:
- type: Transform
@@ -98699,7 +98467,7 @@ entities:
pos: -110.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 23505
components:
- type: Transform
@@ -98715,7 +98483,7 @@ entities:
pos: -5.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24136
components:
- type: Transform
@@ -98723,7 +98491,7 @@ entities:
pos: -9.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24834
components:
- type: Transform
@@ -98734,7 +98502,7 @@ entities:
deviceLists:
- 25157
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25173
components:
- type: Transform
@@ -98745,7 +98513,7 @@ entities:
deviceLists:
- 25162
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25174
components:
- type: Transform
@@ -98756,7 +98524,7 @@ entities:
deviceLists:
- 25162
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25179
components:
- type: Transform
@@ -98767,7 +98535,7 @@ entities:
deviceLists:
- 25163
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25180
components:
- type: Transform
@@ -98778,7 +98546,7 @@ entities:
deviceLists:
- 25163
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25185
components:
- type: Transform
@@ -98789,7 +98557,7 @@ entities:
deviceLists:
- 25157
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- proto: GasVentScrubber
entities:
- uid: 61
@@ -98799,7 +98567,17 @@ entities:
pos: 35.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 157
+ components:
+ - type: Transform
+ pos: -33.5,-14.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 231
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 223
components:
- type: Transform
@@ -98807,7 +98585,7 @@ entities:
pos: 26.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 263
components:
- type: Transform
@@ -98815,7 +98593,7 @@ entities:
pos: 22.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 337
components:
- type: Transform
@@ -98823,7 +98601,7 @@ entities:
pos: 47.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 428
components:
- type: Transform
@@ -98831,7 +98609,7 @@ entities:
pos: 0.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 473
components:
- type: Transform
@@ -98839,14 +98617,17 @@ entities:
pos: 0.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 516
components:
- type: Transform
pos: -19.5,-23.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 57
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 629
components:
- type: Transform
@@ -98854,7 +98635,7 @@ entities:
pos: 19.5,-35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 719
components:
- type: Transform
@@ -98862,15 +98643,41 @@ entities:
pos: -22.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-19.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 231
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 788
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -15.5,-6.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1960
+ - 4709
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 841
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-10.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 5933
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 871
components:
- type: Transform
@@ -98878,14 +98685,17 @@ entities:
pos: 41.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 904
components:
- type: Transform
pos: -10.5,-23.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 57
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 912
components:
- type: Transform
@@ -98893,7 +98703,7 @@ entities:
pos: -8.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 913
components:
- type: Transform
@@ -98901,15 +98711,18 @@ entities:
pos: -4.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1136
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -15.5,-14.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 4709
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1246
components:
- type: Transform
@@ -98917,7 +98730,7 @@ entities:
pos: 37.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1397
components:
- type: Transform
@@ -98925,7 +98738,7 @@ entities:
pos: 4.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1398
components:
- type: Transform
@@ -98933,7 +98746,7 @@ entities:
pos: 3.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1430
components:
- type: Transform
@@ -98941,77 +98754,93 @@ entities:
pos: 0.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1456
components:
- type: Transform
pos: 12.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1564
+ color: '#FF1212FF'
+ - uid: 1581
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,-12.5
+ pos: -37.5,-19.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 21507
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 1659
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-18.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 148
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1739
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-11.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-11.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 1771
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -37.5,-14.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21612
+ - 12
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1846
+ color: '#FF1212FF'
+ - uid: 1974
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-9.5
+ pos: -19.5,-14.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 148
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1850
+ color: '#FF1212FF'
+ - uid: 2009
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,-4.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 178
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1893
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-9.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1902
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-6.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2026
components:
- type: Transform
@@ -99019,7 +98848,7 @@ entities:
pos: -22.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2205
components:
- type: Transform
@@ -99027,7 +98856,7 @@ entities:
pos: 29.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2360
components:
- type: Transform
@@ -99035,36 +98864,40 @@ entities:
pos: 23.5,-34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2374
components:
- type: Transform
pos: 23.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2563
components:
- type: Transform
pos: 29.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2704
components:
- type: Transform
pos: 39.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2772
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -37.5,-4.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21612
+ - 12
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2821
components:
- type: Transform
@@ -99072,7 +98905,7 @@ entities:
pos: 44.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2983
components:
- type: Transform
@@ -99104,7 +98937,7 @@ entities:
pos: 44.5,-39.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3693
components:
- type: Transform
@@ -99112,7 +98945,7 @@ entities:
pos: 16.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3962
components:
- type: Transform
@@ -99120,14 +98953,14 @@ entities:
pos: -7.5,-41.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3963
components:
- type: Transform
pos: -13.5,-39.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3985
components:
- type: Transform
@@ -99135,14 +98968,22 @@ entities:
pos: 0.5,-39.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 4218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 4502
components:
- type: Transform
pos: 39.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4944
components:
- type: Transform
@@ -99150,7 +98991,7 @@ entities:
pos: 0.5,-47.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4971
components:
- type: Transform
@@ -99158,7 +98999,7 @@ entities:
pos: 0.5,-54.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5404
components:
- type: Transform
@@ -99166,7 +99007,7 @@ entities:
pos: 43.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5411
components:
- type: Transform
@@ -99174,32 +99015,32 @@ entities:
pos: 10.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5440
components:
- type: Transform
pos: 34.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5454
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-12.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5581
components:
- type: Transform
pos: -42.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 5688
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-18.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 3204
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 5738
components:
- type: Transform
@@ -99207,7 +99048,7 @@ entities:
pos: -1.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5745
components:
- type: Transform
@@ -99215,7 +99056,7 @@ entities:
pos: -10.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5766
components:
- type: Transform
@@ -99223,7 +99064,7 @@ entities:
pos: 16.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5820
components:
- type: Transform
@@ -99231,7 +99072,7 @@ entities:
pos: 18.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5823
components:
- type: Transform
@@ -99239,7 +99080,7 @@ entities:
pos: 29.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5831
components:
- type: Transform
@@ -99247,7 +99088,7 @@ entities:
pos: 43.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5930
components:
- type: Transform
@@ -99255,22 +99096,14 @@ entities:
pos: -29.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5961
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,-20.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5962
components:
- type: Transform
pos: -30.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6015
components:
- type: Transform
@@ -99278,15 +99111,19 @@ entities:
pos: -34.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6018
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -37.5,6.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21612
+ - 12
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6028
components:
- type: Transform
@@ -99294,7 +99131,7 @@ entities:
pos: -41.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6058
components:
- type: Transform
@@ -99302,15 +99139,7 @@ entities:
pos: -43.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6065
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-20.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6290
components:
- type: Transform
@@ -99318,7 +99147,7 @@ entities:
pos: 16.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6299
components:
- type: Transform
@@ -99326,18 +99155,7 @@ entities:
pos: 11.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6308
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-9.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6474
components:
- type: Transform
@@ -99345,7 +99163,7 @@ entities:
pos: -1.5,-72.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6475
components:
- type: Transform
@@ -99353,18 +99171,18 @@ entities:
pos: -1.5,-61.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6762
+ color: '#FF1212FF'
+ - uid: 7099
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -49.5,-16.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 8260
+ - 8483
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7177
components:
- type: Transform
@@ -99372,7 +99190,7 @@ entities:
pos: -27.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7343
components:
- type: Transform
@@ -99380,7 +99198,7 @@ entities:
pos: -42.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7368
components:
- type: Transform
@@ -99388,7 +99206,7 @@ entities:
pos: -0.5,-76.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7463
components:
- type: Transform
@@ -99396,7 +99214,7 @@ entities:
pos: -10.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7488
components:
- type: Transform
@@ -99407,7 +99225,7 @@ entities:
deviceLists:
- 24769
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7686
components:
- type: Transform
@@ -99415,18 +99233,22 @@ entities:
pos: -31.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 7790
+ color: '#FF1212FF'
+ - uid: 7811
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-1.5
parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 7901
+ components:
+ - type: Transform
+ pos: -25.5,-0.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 8137
components:
- type: Transform
@@ -99434,36 +99256,29 @@ entities:
pos: -3.5,-45.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8230
+ color: '#FF1212FF'
+ - uid: 8416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,2.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 105
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8439
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -24.5,-19.5
+ pos: -42.5,-20.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 2103
+ - 8516
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8269
- components:
- - type: Transform
- pos: -18.5,-15.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8265
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8578
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8620
components:
- type: Transform
@@ -99471,28 +99286,18 @@ entities:
pos: 16.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8718
+ color: '#FF1212FF'
+ - uid: 8942
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-18.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 8669
+ - 8516
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8898
- components:
- - type: Transform
- pos: -25.5,0.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8271
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8960
components:
- type: Transform
@@ -99500,25 +99305,14 @@ entities:
pos: -48.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9017
components:
- type: Transform
pos: -47.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9034
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-4.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8791
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9061
components:
- type: Transform
@@ -99526,7 +99320,7 @@ entities:
pos: 29.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9062
components:
- type: Transform
@@ -99534,25 +99328,18 @@ entities:
pos: 29.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9154
+ color: '#FF1212FF'
+ - uid: 9155
components:
- type: Transform
- pos: -26.5,-4.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9156
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,2.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 8714
+ - 1960
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9160
components:
- type: Transform
@@ -99560,7 +99347,7 @@ entities:
pos: 22.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9428
components:
- type: Transform
@@ -99570,14 +99357,14 @@ entities:
deviceLists:
- 11464
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9608
components:
- type: Transform
pos: -41.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9631
components:
- type: Transform
@@ -99588,7 +99375,7 @@ entities:
deviceLists:
- 11464
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9641
components:
- type: Transform
@@ -99596,7 +99383,7 @@ entities:
pos: -41.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9674
components:
- type: Transform
@@ -99607,14 +99394,24 @@ entities:
deviceLists:
- 7065
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9677
components:
- type: Transform
pos: -38.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ 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
@@ -99622,7 +99419,7 @@ entities:
pos: 16.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12591
components:
- type: Transform
@@ -99630,7 +99427,7 @@ entities:
pos: 16.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12594
components:
- type: Transform
@@ -99645,7 +99442,7 @@ entities:
pos: 38.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12632
components:
- type: Transform
@@ -99653,14 +99450,14 @@ entities:
pos: 41.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12633
components:
- type: Transform
pos: 38.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12897
components:
- type: Transform
@@ -99668,7 +99465,7 @@ entities:
pos: 13.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13073
components:
- type: Transform
@@ -99676,7 +99473,7 @@ entities:
pos: 40.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13075
components:
- type: Transform
@@ -99684,7 +99481,7 @@ entities:
pos: 38.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13238
components:
- type: Transform
@@ -99692,7 +99489,7 @@ entities:
pos: 19.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13444
components:
- type: Transform
@@ -99705,50 +99502,27 @@ entities:
pos: 36.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13563
components:
- type: Transform
pos: 22.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13754
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -9.5,-13.5
parent: 60
- - uid: 13971
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14312
- components:
- - type: Transform
- pos: -11.5,16.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14318
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 14503
components:
- type: Transform
pos: -27.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15648
components:
- type: Transform
@@ -99756,7 +99530,7 @@ entities:
pos: -21.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15649
components:
- type: Transform
@@ -99764,7 +99538,7 @@ entities:
pos: -16.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15650
components:
- type: Transform
@@ -99772,14 +99546,14 @@ entities:
pos: -11.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16560
components:
- type: Transform
pos: -25.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16605
components:
- type: Transform
@@ -99787,21 +99561,21 @@ entities:
pos: -11.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16615
components:
- type: Transform
pos: 1.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16621
components:
- type: Transform
pos: -1.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16633
components:
- type: Transform
@@ -99812,7 +99586,7 @@ entities:
deviceLists:
- 21710
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16634
components:
- type: Transform
@@ -99823,7 +99597,7 @@ entities:
deviceLists:
- 15745
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16642
components:
- type: Transform
@@ -99831,7 +99605,7 @@ entities:
pos: -2.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16667
components:
- type: Transform
@@ -99839,21 +99613,21 @@ entities:
pos: 12.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16668
components:
- type: Transform
pos: 10.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16672
components:
- type: Transform
pos: 3.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16673
components:
- type: Transform
@@ -99861,7 +99635,7 @@ entities:
pos: -3.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16675
components:
- type: Transform
@@ -99869,7 +99643,7 @@ entities:
pos: 0.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16681
components:
- type: Transform
@@ -99877,7 +99651,7 @@ entities:
pos: 4.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17603
components:
- type: Transform
@@ -99885,7 +99659,7 @@ entities:
pos: -46.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17604
components:
- type: Transform
@@ -99893,7 +99667,7 @@ entities:
pos: -46.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17621
components:
- type: Transform
@@ -99901,7 +99675,7 @@ entities:
pos: -34.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17626
components:
- type: Transform
@@ -99913,7 +99687,7 @@ entities:
pos: -31.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17632
components:
- type: Transform
@@ -99921,7 +99695,7 @@ entities:
pos: -15.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18257
components:
- type: Transform
@@ -99929,7 +99703,7 @@ entities:
pos: -4.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18258
components:
- type: Transform
@@ -99937,7 +99711,7 @@ entities:
pos: -7.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18260
components:
- type: Transform
@@ -99945,7 +99719,7 @@ entities:
pos: 0.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18425
components:
- type: Transform
@@ -99953,7 +99727,7 @@ entities:
pos: 0.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18428
components:
- type: Transform
@@ -99961,7 +99735,7 @@ entities:
pos: 4.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18430
components:
- type: Transform
@@ -99969,7 +99743,7 @@ entities:
pos: 0.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18434
components:
- type: Transform
@@ -99977,21 +99751,21 @@ entities:
pos: -2.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18657
components:
- type: Transform
pos: 43.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18658
components:
- type: Transform
pos: 44.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18685
components:
- type: Transform
@@ -99999,7 +99773,7 @@ entities:
pos: 48.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18686
components:
- type: Transform
@@ -100007,7 +99781,7 @@ entities:
pos: 53.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18687
components:
- type: Transform
@@ -100015,7 +99789,7 @@ entities:
pos: 53.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18884
components:
- type: Transform
@@ -100026,7 +99800,7 @@ entities:
deviceLists:
- 24792
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18915
components:
- type: Transform
@@ -100034,7 +99808,7 @@ entities:
pos: 48.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18938
components:
- type: Transform
@@ -100049,7 +99823,7 @@ entities:
pos: 31.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 19058
components:
- type: Transform
@@ -100059,7 +99833,7 @@ entities:
deviceLists:
- 25155
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 19059
components:
- type: Transform
@@ -100069,7 +99843,7 @@ entities:
deviceLists:
- 25155
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 19180
components:
- type: Transform
@@ -100077,13 +99851,21 @@ entities:
pos: 21.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21328
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -73.5,18.5
parent: 60
+ - uid: 21411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-1.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 22906
components:
- type: Transform
@@ -100171,7 +99953,7 @@ entities:
deviceLists:
- 23956
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24358
components:
- type: Transform
@@ -100179,7 +99961,7 @@ entities:
pos: 47.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25175
components:
- type: Transform
@@ -100190,7 +99972,7 @@ entities:
deviceLists:
- 25162
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25176
components:
- type: Transform
@@ -100201,7 +99983,7 @@ entities:
deviceLists:
- 25162
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25177
components:
- type: Transform
@@ -100212,7 +99994,7 @@ entities:
deviceLists:
- 25163
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25178
components:
- type: Transform
@@ -100223,7 +100005,7 @@ entities:
deviceLists:
- 25163
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25183
components:
- type: Transform
@@ -100233,7 +100015,7 @@ entities:
deviceLists:
- 25157
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25186
components:
- type: Transform
@@ -100244,7 +100026,7 @@ entities:
deviceLists:
- 25157
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- proto: GasVolumePump
entities:
- uid: 14850
@@ -100307,6 +100089,12 @@ entities:
- type: Transform
pos: -60.5,-9.5
parent: 60
+ - uid: 11368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,2.5
+ parent: 60
- uid: 19105
components:
- type: Transform
@@ -100371,18 +100159,17 @@ entities:
radius: 175.75
- proto: Grille
entities:
+ - uid: 8
+ components:
+ - type: Transform
+ pos: -24.5,-7.5
+ parent: 60
- uid: 17
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 54.5,-6.5
parent: 60
- - uid: 24
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-12.5
- parent: 60
- uid: 34
components:
- type: Transform
@@ -100393,41 +100180,20 @@ entities:
- type: Transform
pos: -55.5,-24.5
parent: 60
- - uid: 67
- components:
- - type: Transform
- pos: -21.5,-16.5
- parent: 60
- uid: 71
components:
- type: Transform
pos: 50.5,55.5
parent: 60
- - uid: 79
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-15.5
- parent: 60
- uid: 103
components:
- type: Transform
pos: 50.5,19.5
parent: 60
- - uid: 113
+ - uid: 137
components:
- type: Transform
- pos: -18.5,-17.5
- parent: 60
- - uid: 132
- components:
- - type: Transform
- pos: -28.5,-7.5
- parent: 60
- - uid: 155
- components:
- - type: Transform
- pos: -20.5,-17.5
+ pos: -24.5,-8.5
parent: 60
- uid: 200
components:
@@ -100446,31 +100212,30 @@ entities:
rot: -1.5707963267948966 rad
pos: 46.5,-8.5
parent: 60
- - uid: 232
+ - uid: 235
components:
- type: Transform
- pos: -23.5,-17.5
+ pos: -23.5,-12.5
parent: 60
- - uid: 233
+ - uid: 244
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-10.5
+ pos: -32.5,-17.5
parent: 60
- - uid: 238
+ - uid: 258
components:
- type: Transform
- pos: -20.5,-13.5
+ pos: -25.5,-7.5
parent: 60
- - uid: 245
+ - uid: 270
components:
- type: Transform
- pos: -20.5,-10.5
+ pos: -29.5,-16.5
parent: 60
- uid: 284
components:
- type: Transform
- pos: -28.5,-8.5
+ pos: -17.5,-9.5
parent: 60
- uid: 369
components:
@@ -100610,16 +100375,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,-18.5
parent: 60
- - uid: 667
- components:
- - type: Transform
- pos: -33.5,-21.5
- parent: 60
- - uid: 721
- components:
- - type: Transform
- pos: -35.5,-10.5
- parent: 60
- uid: 808
components:
- type: Transform
@@ -100630,16 +100385,25 @@ entities:
- type: Transform
pos: -2.5,8.5
parent: 60
+ - uid: 836
+ components:
+ - type: Transform
+ pos: -17.5,-7.5
+ parent: 60
- uid: 837
components:
- type: Transform
- pos: -26.5,-17.5
+ pos: -17.5,-16.5
parent: 60
- - uid: 844
+ - uid: 842
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-12.5
+ pos: -20.5,-10.5
+ parent: 60
+ - uid: 843
+ components:
+ - type: Transform
+ pos: -20.5,-6.5
parent: 60
- uid: 895
components:
@@ -100659,7 +100423,12 @@ entities:
- uid: 963
components:
- type: Transform
- pos: -20.5,-7.5
+ pos: -35.5,-10.5
+ parent: 60
+ - uid: 979
+ components:
+ - type: Transform
+ pos: -32.5,-10.5
parent: 60
- uid: 1072
components:
@@ -100676,6 +100445,21 @@ entities:
- type: Transform
pos: -67.5,0.5
parent: 60
+ - uid: 1122
+ components:
+ - type: Transform
+ pos: -28.5,-7.5
+ parent: 60
+ - uid: 1162
+ components:
+ - type: Transform
+ pos: -35.5,-11.5
+ parent: 60
+ - uid: 1174
+ components:
+ - type: Transform
+ pos: -28.5,-8.5
+ parent: 60
- uid: 1184
components:
- type: Transform
@@ -100686,6 +100470,16 @@ entities:
- type: Transform
pos: 38.5,57.5
parent: 60
+ - uid: 1201
+ components:
+ - type: Transform
+ pos: -26.5,-7.5
+ parent: 60
+ - uid: 1209
+ components:
+ - type: Transform
+ pos: -27.5,-7.5
+ parent: 60
- uid: 1233
components:
- type: Transform
@@ -100756,16 +100550,6 @@ entities:
- type: Transform
pos: 6.5,-26.5
parent: 60
- - uid: 1384
- components:
- - type: Transform
- pos: -17.5,-13.5
- parent: 60
- - uid: 1386
- components:
- - type: Transform
- pos: -17.5,-12.5
- parent: 60
- uid: 1431
components:
- type: Transform
@@ -100776,56 +100560,70 @@ entities:
- type: Transform
pos: 9.5,-15.5
parent: 60
- - uid: 1459
- components:
- - type: Transform
- pos: -29.5,-8.5
- parent: 60
- - uid: 1464
- components:
- - type: Transform
- pos: -29.5,-10.5
- parent: 60
- - uid: 1465
- components:
- - type: Transform
- pos: -24.5,-11.5
- parent: 60
- - uid: 1473
- components:
- - type: Transform
- pos: -28.5,-11.5
- parent: 60
- - uid: 1474
- components:
- - type: Transform
- pos: -24.5,-7.5
- parent: 60
- uid: 1477
components:
- type: Transform
- pos: -23.5,-10.5
+ pos: -23.5,-16.5
parent: 60
- - uid: 1483
+ - uid: 1480
components:
- type: Transform
- pos: -23.5,-8.5
+ pos: -23.5,-14.5
parent: 60
- - uid: 1484
+ - uid: 1528
components:
- type: Transform
- pos: -24.5,-8.5
+ pos: -32.5,-6.5
parent: 60
- - uid: 1491
+ - uid: 1529
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-12.5
+ pos: -35.5,-9.5
parent: 60
- - uid: 1650
+ - uid: 1532
components:
- type: Transform
- pos: -31.5,-2.5
+ pos: -35.5,-5.5
+ parent: 60
+ - uid: 1536
+ components:
+ - type: Transform
+ pos: -29.5,-11.5
+ parent: 60
+ - uid: 1537
+ components:
+ - type: Transform
+ pos: -35.5,-6.5
+ parent: 60
+ - uid: 1540
+ components:
+ - type: Transform
+ pos: -29.5,-9.5
+ parent: 60
+ - uid: 1541
+ components:
+ - type: Transform
+ pos: -17.5,-11.5
+ parent: 60
+ - uid: 1542
+ components:
+ - type: Transform
+ pos: -35.5,-7.5
+ parent: 60
+ - uid: 1545
+ components:
+ - type: Transform
+ pos: -17.5,-10.5
+ parent: 60
+ - uid: 1562
+ components:
+ - type: Transform
+ pos: -24.5,-9.5
+ parent: 60
+ - uid: 1571
+ components:
+ - type: Transform
+ pos: -29.5,-14.5
parent: 60
- uid: 1683
components:
@@ -100872,56 +100670,51 @@ entities:
- type: Transform
pos: 73.5,-32.5
parent: 60
- - uid: 1790
- components:
- - type: Transform
- pos: -27.5,-1.5
- parent: 60
- - uid: 1804
- components:
- - type: Transform
- pos: -17.5,-9.5
- parent: 60
- - uid: 1811
- components:
- - type: Transform
- pos: -25.5,-1.5
- parent: 60
- - uid: 1812
- components:
- - type: Transform
- pos: -20.5,-2.5
- parent: 60
- uid: 1911
components:
- type: Transform
pos: 30.5,31.5
parent: 60
+ - uid: 1927
+ components:
+ - type: Transform
+ pos: -17.5,-19.5
+ parent: 60
+ - uid: 1928
+ components:
+ - type: Transform
+ pos: -33.5,-21.5
+ parent: 60
+ - uid: 1929
+ components:
+ - type: Transform
+ pos: -34.5,-21.5
+ parent: 60
+ - uid: 1930
+ components:
+ - type: Transform
+ pos: -35.5,-20.5
+ parent: 60
+ - uid: 1931
+ components:
+ - type: Transform
+ pos: -17.5,-18.5
+ parent: 60
+ - uid: 1932
+ components:
+ - type: Transform
+ pos: -19.5,-21.5
+ parent: 60
+ - uid: 1933
+ components:
+ - type: Transform
+ pos: -32.5,-21.5
+ parent: 60
- uid: 1984
components:
- type: Transform
pos: 68.5,-32.5
parent: 60
- - uid: 1987
- components:
- - type: Transform
- pos: -31.5,-4.5
- parent: 60
- - uid: 1989
- components:
- - type: Transform
- pos: -32.5,-7.5
- parent: 60
- - uid: 2012
- components:
- - type: Transform
- pos: -32.5,-10.5
- parent: 60
- - uid: 2015
- components:
- - type: Transform
- pos: -22.5,-1.5
- parent: 60
- uid: 2030
components:
- type: Transform
@@ -100932,21 +100725,6 @@ entities:
- type: Transform
pos: -56.5,17.5
parent: 60
- - uid: 2099
- components:
- - type: Transform
- pos: -18.5,0.5
- parent: 60
- - uid: 2100
- components:
- - type: Transform
- pos: -25.5,-21.5
- parent: 60
- - uid: 2113
- components:
- - type: Transform
- pos: -27.5,-21.5
- parent: 60
- uid: 2135
components:
- type: Transform
@@ -101015,11 +100793,6 @@ entities:
- type: Transform
pos: 21.5,-25.5
parent: 60
- - uid: 2579
- components:
- - type: Transform
- pos: -32.5,-13.5
- parent: 60
- uid: 2588
components:
- type: Transform
@@ -101110,6 +100883,11 @@ entities:
- type: Transform
pos: 60.5,-35.5
parent: 60
+ - uid: 2861
+ components:
+ - type: Transform
+ pos: -22.5,-2.5
+ parent: 60
- uid: 2877
components:
- type: Transform
@@ -101372,11 +101150,6 @@ entities:
- type: Transform
pos: 57.5,-12.5
parent: 60
- - uid: 3742
- components:
- - type: Transform
- pos: -18.5,1.5
- parent: 60
- uid: 3770
components:
- type: Transform
@@ -101554,6 +101327,11 @@ entities:
- type: Transform
pos: -36.5,-25.5
parent: 60
+ - uid: 4078
+ components:
+ - type: Transform
+ pos: -34.5,-17.5
+ parent: 60
- uid: 4089
components:
- type: Transform
@@ -101757,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
@@ -101923,6 +101696,11 @@ entities:
- type: Transform
pos: -3.5,-73.5
parent: 60
+ - uid: 5235
+ components:
+ - type: Transform
+ pos: -27.5,-2.5
+ parent: 60
- uid: 5245
components:
- type: Transform
@@ -101938,11 +101716,6 @@ entities:
- type: Transform
pos: 25.5,-78.5
parent: 60
- - uid: 5432
- components:
- - type: Transform
- pos: -17.5,-10.5
- parent: 60
- uid: 5484
components:
- type: Transform
@@ -102046,6 +101819,11 @@ entities:
- type: Transform
pos: -66.5,4.5
parent: 60
+ - uid: 5799
+ components:
+ - type: Transform
+ pos: -18.5,-1.5
+ parent: 60
- uid: 5816
components:
- type: Transform
@@ -102076,16 +101854,10 @@ entities:
- type: Transform
pos: 54.5,-33.5
parent: 60
- - uid: 6043
+ - uid: 6147
components:
- type: Transform
- pos: -35.5,-13.5
- parent: 60
- - uid: 6149
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-12.5
+ pos: -18.5,-0.5
parent: 60
- uid: 6151
components:
@@ -102287,16 +102059,6 @@ entities:
- type: Transform
pos: 30.5,-59.5
parent: 60
- - uid: 6651
- components:
- - type: Transform
- pos: -20.5,-4.5
- parent: 60
- - uid: 6683
- components:
- - type: Transform
- pos: -35.5,-6.5
- parent: 60
- uid: 6688
components:
- type: Transform
@@ -102323,15 +102085,20 @@ entities:
rot: 3.141592653589793 rad
pos: 46.5,-43.5
parent: 60
+ - uid: 6803
+ components:
+ - type: Transform
+ pos: -23.5,-9.5
+ parent: 60
- uid: 6812
components:
- type: Transform
pos: 17.5,29.5
parent: 60
- - uid: 6820
+ - uid: 6824
components:
- type: Transform
- pos: -17.5,-7.5
+ pos: -23.5,-11.5
parent: 60
- uid: 6831
components:
@@ -102353,11 +102120,6 @@ entities:
- type: Transform
pos: 3.5,-74.5
parent: 60
- - uid: 6983
- components:
- - type: Transform
- pos: -35.5,-12.5
- parent: 60
- uid: 7067
components:
- type: Transform
@@ -102393,12 +102155,6 @@ entities:
- type: Transform
pos: 30.5,52.5
parent: 60
- - uid: 7231
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-10.5
- parent: 60
- uid: 7256
components:
- type: Transform
@@ -102645,17 +102401,6 @@ entities:
- type: Transform
pos: -66.5,-19.5
parent: 60
- - uid: 7650
- components:
- - type: Transform
- pos: -21.5,-19.5
- parent: 60
- - uid: 7657
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-12.5
- parent: 60
- uid: 7669
components:
- type: Transform
@@ -102886,6 +102631,21 @@ entities:
- type: Transform
pos: -46.5,-4.5
parent: 60
+ - uid: 8251
+ components:
+ - type: Transform
+ pos: -25.5,-2.5
+ parent: 60
+ - uid: 8337
+ components:
+ - type: Transform
+ pos: -29.5,-12.5
+ parent: 60
+ - uid: 8339
+ components:
+ - type: Transform
+ pos: -30.5,-2.5
+ parent: 60
- uid: 8367
components:
- type: Transform
@@ -102911,10 +102671,15 @@ entities:
- type: Transform
pos: -81.5,-26.5
parent: 60
- - uid: 8528
+ - uid: 8437
components:
- type: Transform
- pos: -17.5,-6.5
+ pos: -17.5,-20.5
+ parent: 60
+ - uid: 8442
+ components:
+ - type: Transform
+ pos: -35.5,-18.5
parent: 60
- uid: 8561
components:
@@ -102961,11 +102726,6 @@ entities:
- type: Transform
pos: -87.5,-26.5
parent: 60
- - uid: 8602
- components:
- - type: Transform
- pos: -35.5,-9.5
- parent: 60
- uid: 8663
components:
- type: Transform
@@ -103001,11 +102761,6 @@ entities:
- type: Transform
pos: -88.5,-26.5
parent: 60
- - uid: 8694
- components:
- - type: Transform
- pos: -35.5,-7.5
- parent: 60
- uid: 8740
components:
- type: Transform
@@ -103061,11 +102816,6 @@ entities:
- type: Transform
pos: 50.5,-18.5
parent: 60
- - uid: 9052
- components:
- - type: Transform
- pos: -29.5,-17.5
- parent: 60
- uid: 9281
components:
- type: Transform
@@ -103261,6 +103011,11 @@ entities:
- type: Transform
pos: 24.5,3.5
parent: 60
+ - uid: 10621
+ components:
+ - type: Transform
+ pos: -18.5,0.5
+ parent: 60
- uid: 10702
components:
- type: Transform
@@ -103271,11 +103026,26 @@ entities:
- type: Transform
pos: 42.5,-20.5
parent: 60
+ - uid: 11127
+ components:
+ - type: Transform
+ pos: -19.5,-17.5
+ parent: 60
- uid: 11150
components:
- type: Transform
pos: -25.5,27.5
parent: 60
+ - uid: 11282
+ components:
+ - type: Transform
+ pos: -17.5,-5.5
+ parent: 60
+ - uid: 11336
+ components:
+ - type: Transform
+ pos: -17.5,-6.5
+ parent: 60
- uid: 11341
components:
- type: Transform
@@ -103296,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
@@ -103991,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
@@ -104474,6 +104254,11 @@ entities:
- type: Transform
pos: -51.5,15.5
parent: 60
+ - uid: 15900
+ components:
+ - type: Transform
+ pos: -28.5,-9.5
+ parent: 60
- uid: 15993
components:
- type: Transform
@@ -104551,31 +104336,36 @@ 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: 16362
+ components:
+ - type: Transform
+ pos: 1.5,38.5
+ parent: 60
+ - uid: 16370
+ components:
+ - type: Transform
+ pos: -0.5,38.5
parent: 60
- uid: 16378
components:
- type: Transform
pos: 38.5,17.5
parent: 60
+ - uid: 16392
+ components:
+ - type: Transform
+ pos: -1.5,38.5
+ parent: 60
- uid: 16397
components:
- type: Transform
pos: -19.5,35.5
parent: 60
- - uid: 16433
- components:
- - type: Transform
- pos: 0.5,37.5
- parent: 60
- - uid: 16434
- components:
- - type: Transform
- pos: 1.5,37.5
- parent: 60
- uid: 16623
components:
- type: Transform
@@ -105142,6 +104932,11 @@ entities:
- type: Transform
pos: 28.5,1.5
parent: 60
+ - uid: 17961
+ components:
+ - type: Transform
+ pos: -25.5,-25.5
+ parent: 60
- uid: 17991
components:
- type: Transform
@@ -105252,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
@@ -106687,6 +106487,11 @@ entities:
- type: Transform
pos: 37.5,51.5
parent: 60
+ - uid: 21200
+ components:
+ - type: Transform
+ pos: -17.5,-14.5
+ parent: 60
- uid: 21218
components:
- type: Transform
@@ -107034,6 +106839,11 @@ entities:
- type: Transform
pos: -15.5,-80.5
parent: 60
+ - uid: 21736
+ components:
+ - type: Transform
+ pos: -39.5,-19.5
+ parent: 60
- uid: 21761
components:
- type: Transform
@@ -108087,6 +107897,11 @@ entities:
- type: Transform
pos: 57.5,49.5
parent: 60
+ - uid: 23825
+ components:
+ - type: Transform
+ pos: -39.5,-21.5
+ parent: 60
- uid: 23856
components:
- type: Transform
@@ -108107,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
@@ -109415,32 +109235,39 @@ entities:
parent: 60
- proto: GunSafeDisabler
entities:
- - uid: 1732
+ - uid: 1558
components:
- type: Transform
- pos: -25.5,-8.5
+ pos: -28.5,-12.5
+ parent: 60
+- proto: GunSafeLaserCarbine
+ entities:
+ - uid: 1861
+ components:
+ - type: Transform
+ pos: -24.5,-0.5
parent: 60
- proto: GunSafeRifleLecter
entities:
- - uid: 2183
- components:
- - type: Transform
- pos: -28.5,1.5
- parent: 60
-- proto: GunSafeShotgunKammerer
- entities:
- - uid: 1821
+ - uid: 10682
components:
- type: Transform
pos: -28.5,0.5
parent: 60
-- proto: GunSafeSubMachineGunDrozd
+- proto: GunSafeShotgunKammerer
entities:
- - uid: 14212
+ - uid: 1749
components:
- type: Transform
pos: -28.5,-0.5
parent: 60
+- proto: GunSafeSubMachineGunDrozd
+ entities:
+ - uid: 7649
+ components:
+ - type: Transform
+ pos: -28.5,-1.5
+ parent: 60
- proto: HandheldGPSBasic
entities:
- uid: 3712
@@ -109679,13 +109506,6 @@ entities:
- type: Transform
pos: 5.5,-29.5
parent: 60
-- proto: HolopadCommandHos
- entities:
- - uid: 24033
- components:
- - type: Transform
- pos: -20.5,1.5
- parent: 60
- proto: HolopadCommandQm
entities:
- uid: 24063
@@ -109882,12 +109702,19 @@ entities:
- type: Transform
pos: -32.5,13.5
parent: 60
-- proto: HolopadSecurityBrig
+- proto: HolopadSecurityArmory
entities:
- - uid: 24037
+ - uid: 23653
components:
- type: Transform
- pos: -26.5,-14.5
+ pos: -26.5,0.5
+ parent: 60
+- proto: HolopadSecurityBrig
+ entities:
+ - uid: 13584
+ components:
+ - type: Transform
+ pos: -26.5,-5.5
parent: 60
- proto: HolopadSecurityCourtroom
entities:
@@ -109905,17 +109732,17 @@ entities:
parent: 60
- proto: HolopadSecurityFront
entities:
- - uid: 24036
+ - uid: 17958
components:
- type: Transform
- pos: -19.5,-15.5
+ pos: -25.5,-19.5
parent: 60
- proto: HolopadSecurityInterrogation
entities:
- - uid: 24038
+ - uid: 13966
components:
- type: Transform
- pos: -32.5,-3.5
+ pos: -32.5,-1.5
parent: 60
- proto: HolopadSecurityLawyer
entities:
@@ -109933,10 +109760,10 @@ entities:
parent: 60
- proto: HolopadSecurityWarden
entities:
- - uid: 24034
+ - uid: 13971
components:
- type: Transform
- pos: -26.5,-9.5
+ pos: -26.5,-10.5
parent: 60
- proto: HolopadServiceBar
entities:
@@ -109982,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:
@@ -110217,6 +110044,13 @@ entities:
- type: Transform
pos: -63.49233,41.553234
parent: 60
+- proto: InflatableWallStack5
+ entities:
+ - uid: 8575
+ components:
+ - type: Transform
+ pos: -48.473454,11.5625925
+ parent: 60
- proto: IngotGold
entities:
- uid: 18455
@@ -110258,11 +110092,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -110.5,25.5
parent: 60
- - uid: 5313
+ - uid: 8431
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -1.5,-7.5
+ pos: -3.5,-6.5
parent: 60
- uid: 13568
components:
@@ -110270,12 +110104,6 @@ entities:
rot: 3.141592653589793 rad
pos: -111.5,24.5
parent: 60
- - uid: 14055
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-0.5
- parent: 60
- uid: 24324
components:
- type: Transform
@@ -110295,12 +110123,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 11.5,18.5
parent: 60
- - uid: 23836
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-0.5
- parent: 60
- uid: 23837
components:
- type: Transform
@@ -110321,11 +110143,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -29.5,16.5
parent: 60
- - uid: 15845
- components:
- - type: Transform
- pos: -34.5,-21.5
- parent: 60
- uid: 23831
components:
- type: Transform
@@ -110356,17 +110173,17 @@ entities:
parent: 60
- proto: IntercomEngineering
entities:
- - uid: 6286
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,18.5
- parent: 60
- uid: 9473
components:
- type: Transform
pos: 2.5,12.5
parent: 60
+ - uid: 14440
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,16.5
+ parent: 60
- uid: 23847
components:
- type: Transform
@@ -110435,29 +110252,12 @@ entities:
parent: 60
- proto: IntercomSecurity
entities:
- - uid: 11129
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,3.5
- parent: 60
- uid: 13118
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -27.5,-27.5
parent: 60
- - uid: 13296
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-6.5
- parent: 60
- - uid: 23830
- components:
- - type: Transform
- pos: -17.5,-17.5
- parent: 60
- proto: IntercomService
entities:
- uid: 2754
@@ -110525,11 +110325,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -38.5,-2.5
parent: 60
- - uid: 24335
- components:
- - type: Transform
- pos: -17.5,-18.5
- parent: 60
- uid: 24337
components:
- type: Transform
@@ -110579,16 +110374,16 @@ entities:
parent: 60
- proto: KitchenMicrowave
entities:
+ - uid: 356
+ components:
+ - type: Transform
+ pos: -25.5,-14.5
+ parent: 60
- uid: 367
components:
- type: Transform
pos: -12.5,-13.5
parent: 60
- - uid: 1530
- components:
- - type: Transform
- pos: -34.5,2.5
- parent: 60
- uid: 2048
components:
- type: Transform
@@ -110646,6 +110441,11 @@ entities:
- type: Transform
pos: 37.5,-31.5
parent: 60
+ - uid: 23861
+ components:
+ - type: Transform
+ pos: 25.5,-34.5
+ parent: 60
- uid: 24085
components:
- type: Transform
@@ -110665,11 +110465,6 @@ entities:
- type: Transform
pos: -11.4531975,-27.495203
parent: 60
- - uid: 2042
- components:
- - type: Transform
- pos: -22.39201,0.9298079
- parent: 60
- uid: 2145
components:
- type: Transform
@@ -110692,6 +110487,11 @@ entities:
parent: 60
- type: Physics
canCollide: True
+ - uid: 7033
+ components:
+ - type: Transform
+ pos: -22.385181,-0.05140546
+ parent: 60
- uid: 7638
components:
- type: Transform
@@ -110752,16 +110552,6 @@ entities:
- type: Transform
pos: 25.565468,-15.324441
parent: 60
- - uid: 4234
- components:
- - type: Transform
- pos: -46.455166,-17.122845
- parent: 60
- - uid: 4235
- components:
- - type: Transform
- pos: -41.508133,-17.091595
- parent: 60
- uid: 4717
components:
- type: Transform
@@ -110787,10 +110577,15 @@ entities:
- type: Transform
pos: -8.397732,20.931147
parent: 60
- - uid: 14437
+ - uid: 14163
components:
- type: Transform
- pos: -10.617271,13.996219
+ pos: -8.599271,11.8332615
+ parent: 60
+ - uid: 14215
+ components:
+ - type: Transform
+ pos: -12.5790205,21.938902
parent: 60
- uid: 17683
components:
@@ -110819,10 +110614,10 @@ entities:
parent: 60
- proto: LampInterrogator
entities:
- - uid: 1700
+ - uid: 9051
components:
- type: Transform
- pos: -34.433372,-3.1512034
+ pos: -32.48209,0.70187116
parent: 60
- proto: Lantern
entities:
@@ -110946,6 +110741,8 @@ entities:
linkedPorts:
25409:
- Pressed: Toggle
+ 6207:
+ - Pressed: Toggle
- proto: LockerAtmosphericsFilledHardsuit
entities:
- uid: 15401
@@ -111198,75 +110995,26 @@ entities:
parent: 60
- proto: LockerEvidence
entities:
- - uid: 1725
+ - uid: 1534
components:
- type: Transform
- pos: -29.5,-12.5
+ pos: -23.5,-8.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 5936
+ - uid: 1564
components:
- type: Transform
- pos: -23.5,-11.5
+ pos: -23.5,-7.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 6136
+ - uid: 1568
components:
- type: Transform
- pos: -29.5,-11.5
+ pos: -29.5,-8.5
+ parent: 60
+ - uid: 1569
+ components:
+ - type: Transform
+ pos: -29.5,-7.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 13610
components:
- type: Transform
@@ -111313,29 +111061,6 @@ entities:
- 0
- 0
- 0
- - uid: 24157
- components:
- - type: Transform
- pos: -23.5,-12.5
- parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: LockerFreezer
entities:
- uid: 2623
@@ -111418,42 +111143,13 @@ entities:
showEnts: False
occludes: True
ent: null
-- proto: LockerHeadOfSecurityFilledHardsuit
+- proto: LockerHeadOfSecurityFilled
entities:
- - uid: 5933
+ - uid: 5456
components:
- type: Transform
- pos: -19.5,2.5
+ pos: -20.5,1.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 17672
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: LockerMedicalFilled
entities:
- uid: 2900
@@ -111581,94 +111277,35 @@ entities:
parent: 60
- proto: LockerSecurityFilled
entities:
- - uid: 191
+ - uid: 357
components:
- type: Transform
- pos: -34.5,-17.5
+ pos: -24.5,-17.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 1640
+ - uid: 364
components:
- type: Transform
- pos: -34.5,-16.5
+ pos: -24.5,-18.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 1870
+ - uid: 491
components:
- type: Transform
- pos: -30.5,2.5
+ pos: -24.5,-16.5
parent: 60
- - uid: 3072
+ - uid: 541
components:
- type: Transform
- pos: -18.5,-15.5
+ pos: -28.5,-16.5
parent: 60
- - uid: 5661
+ - uid: 552
components:
- type: Transform
- pos: -31.5,2.5
+ pos: -28.5,-17.5
parent: 60
- - uid: 7041
+ - uid: 562
components:
- type: Transform
- pos: -34.5,-18.5
- parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 10368
- components:
- - type: Transform
- pos: -34.5,-19.5
+ pos: -28.5,-18.5
parent: 60
- proto: LockerSyndicatePersonal
entities:
@@ -111719,10 +111356,10 @@ entities:
parent: 60
- proto: LockerWardenFilledHardsuit
entities:
- - uid: 6546
+ - uid: 1560
components:
- type: Transform
- pos: -25.5,-7.5
+ pos: -28.5,-11.5
parent: 60
- proto: LockerWeldingSuppliesFilled
entities:
@@ -111906,27 +111543,32 @@ entities:
parent: 60
- proto: MagazineLightRifle
entities:
- - uid: 11282
+ - uid: 1863
components:
- type: Transform
- pos: -24.328882,2.6569912
+ pos: -24.619633,1.6028056
parent: 60
- - uid: 13667
+ - uid: 5840
components:
- type: Transform
- pos: -24.563257,2.6569912
+ pos: -24.260258,1.5715555
+ parent: 60
+ - uid: 6972
+ components:
+ - type: Transform
+ pos: -24.416508,1.5715555
parent: 60
- proto: MagazinePistolSubMachineGunTopMounted
entities:
- - uid: 13800
+ - uid: 1902
components:
- type: Transform
- pos: -21.437603,0.8355694
+ pos: -21.416431,-0.15709138
parent: 60
- - uid: 16678
+ - uid: 8002
components:
- type: Transform
- pos: -21.437603,0.8355694
+ pos: -21.416431,-0.15709138
parent: 60
- proto: MaintenanceFluffSpawner
entities:
@@ -111960,6 +111602,11 @@ entities:
- type: Transform
pos: -64.5,2.5
parent: 60
+ - uid: 8448
+ components:
+ - type: Transform
+ pos: -20.5,5.5
+ parent: 60
- uid: 8999
components:
- type: Transform
@@ -111985,11 +111632,6 @@ entities:
- type: Transform
pos: -36.5,20.5
parent: 60
- - uid: 18605
- components:
- - type: Transform
- pos: -20.5,5.5
- parent: 60
- uid: 20076
components:
- type: Transform
@@ -112167,16 +111809,6 @@ entities:
- type: Transform
pos: 30.5,-16.5
parent: 60
- - uid: 796
- components:
- - type: Transform
- pos: -18.5,-7.5
- parent: 60
- - uid: 4746
- components:
- - type: Transform
- pos: -18.5,-2.5
- parent: 60
- uid: 8750
components:
- type: Transform
@@ -112249,11 +111881,6 @@ entities:
parent: 60
- proto: MedkitFilled
entities:
- - uid: 3493
- components:
- - type: Transform
- pos: -19.525343,-2.3159127
- parent: 60
- uid: 5914
components:
- type: Transform
@@ -112264,6 +111891,11 @@ entities:
- type: Transform
pos: 29.57766,-48.642044
parent: 60
+ - uid: 8710
+ components:
+ - type: Transform
+ pos: -20.43703,-13.469859
+ parent: 60
- uid: 12332
components:
- type: Transform
@@ -112291,10 +111923,10 @@ entities:
- type: Transform
pos: 24.473473,-44.545494
parent: 60
- - uid: 9681
+ - uid: 11551
components:
- type: Transform
- pos: -19.322544,-2.322325
+ pos: -20.327656,-13.344859
parent: 60
- uid: 21361
components:
@@ -112452,12 +112084,6 @@ entities:
- 0
- 0
- 0
- - uid: 315
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-5.5
- parent: 60
- uid: 319
components:
- type: Transform
@@ -113138,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:
@@ -113201,15 +112827,70 @@ entities:
parent: 60
- proto: Paper
entities:
+ - uid: 307
+ components:
+ - type: Transform
+ pos: -34.514378,-11.291034
+ parent: 60
- uid: 934
components:
- type: Transform
pos: -10.55104,-28.480585
parent: 60
- - uid: 4516
+ - uid: 1908
components:
- type: Transform
- pos: -33.489323,-3.402731
+ pos: -34.514378,-11.291034
+ parent: 60
+ - uid: 1913
+ components:
+ - type: Transform
+ pos: -34.514378,-11.291034
+ parent: 60
+ - uid: 2098
+ components:
+ - type: Transform
+ pos: -34.514378,-7.2774615
+ parent: 60
+ - uid: 5368
+ components:
+ - type: Transform
+ pos: -18.493418,-11.280288
+ parent: 60
+ - uid: 5424
+ components:
+ - type: Transform
+ pos: -18.493418,-11.280288
+ parent: 60
+ - uid: 6648
+ components:
+ - type: Transform
+ pos: -18.483002,-7.265358
+ parent: 60
+ - uid: 6683
+ components:
+ - type: Transform
+ pos: -34.514378,-7.2774615
+ parent: 60
+ - uid: 6819
+ components:
+ - type: Transform
+ pos: -18.493418,-11.280288
+ parent: 60
+ - uid: 7166
+ components:
+ - type: Transform
+ pos: -18.483002,-7.265358
+ parent: 60
+ - uid: 8264
+ components:
+ - type: Transform
+ pos: -34.514378,-7.2774615
+ parent: 60
+ - uid: 8278
+ components:
+ - type: Transform
+ pos: -18.483002,-7.265358
parent: 60
- uid: 8760
components:
@@ -113356,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
@@ -113493,13 +113164,6 @@ entities:
- type: Transform
pos: 4.5,-31.5
parent: 60
-- proto: PaperBin20
- entities:
- - uid: 23942
- components:
- - type: Transform
- pos: -33.5,-3.5
- parent: 60
- proto: PaperBin5
entities:
- uid: 4255
@@ -113507,11 +113171,26 @@ entities:
- type: Transform
pos: -48.5,-19.5
parent: 60
+ - uid: 8443
+ components:
+ - type: Transform
+ pos: -40.5,-17.5
+ parent: 60
+ - uid: 8444
+ components:
+ - type: Transform
+ pos: -46.5,-17.5
+ parent: 60
- uid: 9478
components:
- type: Transform
pos: -44.5,-7.5
parent: 60
+ - uid: 11372
+ components:
+ - type: Transform
+ pos: -32.5,-0.5
+ parent: 60
- uid: 16451
components:
- type: Transform
@@ -113543,45 +113222,37 @@ 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
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,32.5
- parent: 60
-- proto: ParticleAcceleratorFuelChamberUnfinished
entities:
- uid: 15520
components:
@@ -113589,14 +113260,22 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,33.5
parent: 60
-- proto: ParticleAcceleratorPowerBoxUnfinished
+- proto: ParticleAcceleratorFuelChamberUnfinished
entities:
- - uid: 16404
+ - uid: 16420
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 0.5,34.5
parent: 60
+- proto: ParticleAcceleratorPowerBoxUnfinished
+ entities:
+ - uid: 15523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,35.5
+ parent: 60
- proto: PartRodMetal
entities:
- uid: 7209
@@ -113654,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
@@ -113673,21 +113357,36 @@ entities:
parent: 60
- proto: Pen
entities:
- - uid: 307
- components:
- - type: Transform
- pos: -33.739323,-3.465231
- parent: 60
- uid: 935
components:
- type: Transform
pos: -10.316665,-28.324335
parent: 60
+ - uid: 1856
+ components:
+ - type: Transform
+ pos: -34.5,-7.5
+ parent: 60
+ - uid: 1903
+ components:
+ - type: Transform
+ pos: -34.5,-11.5
+ parent: 60
- uid: 4668
components:
- type: Transform
pos: 6.7427726,-42.739647
parent: 60
+ - uid: 5428
+ components:
+ - type: Transform
+ pos: -18.5,-11.5
+ parent: 60
+ - uid: 6041
+ components:
+ - type: Transform
+ pos: -18.5,-7.5
+ parent: 60
- uid: 9088
components:
- type: Transform
@@ -113718,6 +113417,16 @@ entities:
- type: Transform
pos: -35.320312,19.746838
parent: 60
+ - uid: 18215
+ components:
+ - type: Transform
+ pos: -32.5,-0.5
+ parent: 60
+ - uid: 18462
+ components:
+ - type: Transform
+ pos: -31.435102,-20.467825
+ parent: 60
- uid: 23152
components:
- type: Transform
@@ -113745,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:
@@ -113772,7 +113481,7 @@ entities:
- uid: 21040
components:
- type: Transform
- pos: -3.519828,-6.376233
+ pos: -3.2859347,-6.2203565
parent: 60
- proto: PianoInstrument
entities:
@@ -113840,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:
@@ -113954,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
@@ -114069,10 +113798,10 @@ entities:
parent: 60
- proto: PortableFlasher
entities:
- - uid: 5842
+ - uid: 10680
components:
- type: Transform
- pos: -26.5,0.5
+ pos: -26.5,-0.5
parent: 60
- proto: PortableGeneratorJrPacman
entities:
@@ -114081,11 +113810,6 @@ entities:
- type: Transform
pos: 40.5,-48.5
parent: 60
- - uid: 4004
- components:
- - type: Transform
- pos: -31.5,4.50001
- parent: 60
- uid: 5402
components:
- type: Transform
@@ -114116,6 +113840,11 @@ entities:
- type: Transform
pos: 24.5,19.5
parent: 60
+ - uid: 21392
+ components:
+ - type: Transform
+ pos: -32.5,3.5
+ parent: 60
- uid: 21677
components:
- type: Transform
@@ -114252,13 +113981,6 @@ entities:
- type: Transform
pos: -107.5,12.5
parent: 60
-- proto: PosterContrabandBountyHunters
- entities:
- - uid: 13582
- components:
- - type: Transform
- pos: -29.5,1.5
- parent: 60
- proto: PosterContrabandC20r
entities:
- uid: 9128
@@ -114443,10 +114165,10 @@ entities:
parent: 60
- proto: PosterContrabandRevolver
entities:
- - uid: 13585
+ - uid: 4754
components:
- type: Transform
- pos: -24.5,3.5
+ pos: -24.5,2.5
parent: 60
- proto: PosterContrabandRIPBadger
entities:
@@ -114521,16 +114243,16 @@ entities:
parent: 60
- proto: PosterContrabandUnreadableAnnouncement
entities:
- - uid: 1548
- components:
- - type: Transform
- pos: -33.512638,-14.264637
- parent: 60
- uid: 5663
components:
- type: Transform
pos: 35.5,-9.5
parent: 60
+ - uid: 8419
+ components:
+ - type: Transform
+ pos: -33.49567,-12.27123
+ parent: 60
- proto: PosterContrabandVoteWeh
entities:
- uid: 9082
@@ -114538,13 +114260,6 @@ entities:
- type: Transform
pos: 56.5,-9.5
parent: 60
-- proto: PosterContrabandWaffleCorp
- entities:
- - uid: 17467
- components:
- - type: Transform
- pos: -23.5,2.5
- parent: 60
- proto: PosterContrabandWehWatches
entities:
- uid: 154
@@ -114559,11 +114274,6 @@ entities:
- type: Transform
pos: 8.5,-35.5
parent: 60
- - uid: 9111
- components:
- - type: Transform
- pos: -23.5,1.5
- parent: 60
- proto: PosterLegit50thAnniversaryVintageReprint
entities:
- uid: 9565
@@ -114652,10 +114362,10 @@ entities:
parent: 60
- proto: PosterLegitEnlist
entities:
- - uid: 1697
+ - uid: 8452
components:
- type: Transform
- pos: -29.5,-0.5
+ pos: -23.5,-17.5
parent: 60
- proto: PosterLegitFoamForceAd
entities:
@@ -114726,10 +114436,10 @@ entities:
parent: 60
- proto: PosterLegitIonRifle
entities:
- - uid: 13583
+ - uid: 8453
components:
- type: Transform
- pos: -28.5,3.5
+ pos: -28.5,2.5
parent: 60
- proto: PosterLegitJustAWeekAway
entities:
@@ -114853,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:
@@ -114886,16 +114596,16 @@ entities:
parent: 60
- proto: PosterLegitReportCrimes
entities:
- - uid: 1635
- components:
- - type: Transform
- pos: -29.5,-21.5
- parent: 60
- uid: 4697
components:
- type: Transform
pos: -2.5,-43.5
parent: 60
+ - uid: 8420
+ components:
+ - type: Transform
+ pos: -22.5,-21.5
+ parent: 60
- uid: 16151
components:
- type: Transform
@@ -115015,15 +114725,10 @@ entities:
- type: Transform
pos: 14.5,-18.5
parent: 60
- - uid: 13584
+ - uid: 8506
components:
- type: Transform
- pos: -21.5,3.5
- parent: 60
- - uid: 24184
- components:
- - type: Transform
- pos: -33.5,-1.5
+ pos: -33.5,1.5
parent: 60
- proto: PosterLegitTheOwl
entities:
@@ -115095,6 +114800,11 @@ entities:
- type: Transform
pos: -1.5,-2.5
parent: 60
+ - uid: 8434
+ components:
+ - type: Transform
+ pos: -23.5,-21.5
+ parent: 60
- uid: 9006
components:
- type: Transform
@@ -115105,11 +114815,6 @@ entities:
- type: Transform
pos: 10.5,16.5
parent: 60
- - uid: 11336
- components:
- - type: Transform
- pos: -23.5,-21.5
- parent: 60
- uid: 11337
components:
- type: Transform
@@ -115211,33 +114916,33 @@ entities:
parent: 60
- proto: PottedPlant22
entities:
- - uid: 3843
+ - uid: 8476
components:
- type: Transform
- pos: -6.5,-44.5
+ pos: -6.5129194,-44.833622
parent: 60
- - uid: 17295
+ - uid: 18487
components:
- type: Transform
- pos: -0.5,-2.5
+ pos: 1.5,-7.5
parent: 60
- - uid: 17330
+ - uid: 23896
components:
- type: Transform
- pos: -0.5,-7.5
+ pos: 1.5,-2.5
parent: 60
- proto: PottedPlant24
entities:
+ - uid: 14156
+ components:
+ - type: Transform
+ pos: -6.5,15.5
+ parent: 60
- uid: 19961
components:
- type: Transform
pos: -20.580471,15.2164345
parent: 60
- - uid: 21362
- components:
- - type: Transform
- pos: -11.5,15.5
- parent: 60
- proto: PottedPlant26
entities:
- uid: 13798
@@ -115263,11 +114968,6 @@ entities:
- type: Transform
pos: -1.5,21.5
parent: 60
- - uid: 24102
- components:
- - type: Transform
- pos: -30.486118,-20.71535
- parent: 60
- proto: PottedPlant4
entities:
- uid: 15519
@@ -115345,24 +115045,6 @@ entities:
parent: 60
- proto: PottedPlantRandom
entities:
- - uid: 1238
- components:
- - type: Transform
- pos: -17.5,2.5
- parent: 60
- - uid: 1638
- components:
- - type: Transform
- pos: -26.5,-18.5
- parent: 60
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 1938
- components:
- - type: Transform
- pos: -28.5,-5.5
- parent: 60
- uid: 2774
components:
- type: Transform
@@ -115448,11 +115130,6 @@ entities:
- type: ContainerContainer
containers:
stash: !type:ContainerSlot {}
- - uid: 9549
- components:
- - type: Transform
- pos: -36.5,-4.5
- parent: 60
- uid: 11530
components:
- type: Transform
@@ -115565,6 +115242,11 @@ entities:
- type: Transform
pos: -109.5,2.5
parent: 60
+ - uid: 23892
+ components:
+ - type: Transform
+ pos: -17.5,0.5
+ parent: 60
- uid: 24018
components:
- type: Transform
@@ -115606,11 +115288,10 @@ entities:
- type: Transform
pos: 36.5,-13.5
parent: 60
- - uid: 1620
+ - uid: 1650
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,3.5
+ pos: -28.5,-20.5
parent: 60
- uid: 4698
components:
@@ -115713,6 +115394,11 @@ entities:
parent: 60
- type: Physics
canCollide: False
+ - uid: 21154
+ components:
+ - type: Transform
+ pos: -18.5,-13.5
+ parent: 60
- uid: 23114
components:
- type: Transform
@@ -115732,6 +115418,29 @@ entities:
parent: 60
- proto: PoweredDimSmallLight
entities:
+ - uid: 8504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-16.5
+ parent: 60
+ - uid: 8601
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-10.5
+ parent: 60
+ - uid: 11366
+ components:
+ - type: Transform
+ pos: -21.5,5.5
+ parent: 60
+ - uid: 11945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,2.5
+ parent: 60
- uid: 18490
components:
- type: Transform
@@ -115830,11 +115539,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -61.5,29.5
parent: 60
- - uid: 19620
- components:
- - type: Transform
- pos: -22.5,5.5
- parent: 60
- uid: 19621
components:
- type: Transform
@@ -115989,14 +115693,12 @@ entities:
parent: 60
- proto: Poweredlight
entities:
- - uid: 96
+ - uid: 6
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 41.5,-7.5
+ pos: -14.5,-17.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 126
components:
- type: Transform
@@ -116047,22 +115749,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 1209
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-15.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1210
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-20.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 1295
components:
- type: Transform
@@ -116078,52 +115764,11 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 1536
+ - uid: 1584
components:
- type: Transform
- pos: -25.5,-7.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1537
- components:
- - type: Transform
- pos: -27.5,-7.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1663
- components:
- - type: Transform
- pos: -24.5,2.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1831
- components:
- - type: Transform
- pos: -28.5,2.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1881
- components:
- - type: Transform
- pos: -19.5,-15.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1939
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,0.5
- parent: 60
- - uid: 1978
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-15.5
parent: 60
- uid: 2106
components:
@@ -116131,14 +115776,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -6.5,15.5
parent: 60
- - uid: 2115
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-5.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 2117
components:
- type: Transform
@@ -116147,30 +115784,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 2118
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-5.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 2120
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-14.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 2121
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-14.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 2141
components:
- type: Transform
@@ -116307,6 +115920,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -2.5,-4.5
parent: 60
+ - uid: 3224
+ components:
+ - type: Transform
+ pos: -28.5,1.5
+ parent: 60
- uid: 3691
components:
- type: Transform
@@ -116322,6 +115940,17 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 4234
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-17.5
+ parent: 60
+ - uid: 4281
+ components:
+ - type: Transform
+ pos: -23.5,-3.5
+ parent: 60
- uid: 4358
components:
- type: Transform
@@ -116431,12 +116060,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 5799
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,1.5
- parent: 60
- uid: 5826
components:
- type: Transform
@@ -116490,13 +116113,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 5925
- components:
- - type: Transform
- pos: -7.5,-26.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 5928
components:
- type: Transform
@@ -116555,14 +116171,17 @@ entities:
- type: Transform
pos: 9.5,-19.5
parent: 60
- - uid: 6714
+ - uid: 6708
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,-20.5
+ parent: 60
+ - uid: 6797
+ components:
+ - type: Transform
+ pos: -29.5,-3.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 6915
components:
- type: Transform
@@ -116588,6 +116207,12 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 7232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-12.5
+ parent: 60
- uid: 7632
components:
- type: Transform
@@ -116608,6 +116233,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 47.5,-13.5
parent: 60
+ - uid: 7906
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-19.5
+ parent: 60
- uid: 8041
components:
- type: Transform
@@ -116629,6 +116260,11 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 8352
+ components:
+ - type: Transform
+ pos: -24.5,1.5
+ parent: 60
- uid: 8390
components:
- type: Transform
@@ -116640,14 +116276,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -28.5,14.5
parent: 60
- - uid: 8401
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-10.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 8404
components:
- type: Transform
@@ -116660,6 +116288,36 @@ entities:
rot: -1.5707963267948966 rad
pos: -22.5,19.5
parent: 60
+ - uid: 8525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-16.5
+ parent: 60
+ - uid: 8526
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.5,-8.5
+ parent: 60
+ - uid: 8571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-2.5
+ parent: 60
+ - uid: 8572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-17.5
+ parent: 60
+ - uid: 8576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,4.5
+ parent: 60
- uid: 9163
components:
- type: Transform
@@ -116672,20 +116330,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 23.5,-38.5
parent: 60
- - uid: 9176
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-19.5
- parent: 60
- - uid: 9223
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-7.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 9427
components:
- type: Transform
@@ -116714,12 +116358,6 @@ entities:
rot: 3.141592653589793 rad
pos: -56.5,11.5
parent: 60
- - uid: 9679
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,1.5
- parent: 60
- uid: 10202
components:
- type: Transform
@@ -116756,14 +116394,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 10671
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-15.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 10672
components:
- type: Transform
@@ -116771,14 +116401,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 10673
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-21.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 10674
components:
- type: Transform
@@ -116786,61 +116408,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 10676
- components:
- - type: Transform
- pos: -17.5,-22.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 10677
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-21.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 10678
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-8.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 10680
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-8.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 10682
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-3.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 10684
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,2.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 10685
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,6.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 10687
components:
- type: Transform
@@ -116999,12 +116566,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 11128
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-16.5
- parent: 60
- uid: 11726
components:
- type: Transform
@@ -117060,12 +116621,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 13478
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-16.5
- parent: 60
- uid: 13480
components:
- type: Transform
@@ -117104,22 +116659,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 13972
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,5.5
- 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
@@ -117363,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
@@ -117503,14 +117026,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 17987
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-1.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 18095
components:
- type: Transform
@@ -117682,13 +117197,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 45.5,5.5
parent: 60
- - uid: 19879
- components:
- - type: Transform
- pos: -28.5,-2.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 20985
components:
- type: Transform
@@ -117721,11 +117229,22 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 21504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-2.5
+ parent: 60
- uid: 21703
components:
- type: Transform
pos: -46.5,-15.5
parent: 60
+ - uid: 21764
+ components:
+ - type: Transform
+ pos: -33.5,-13.5
+ parent: 60
- uid: 23116
components:
- type: Transform
@@ -117935,16 +117454,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 55.5,46.5
parent: 60
- - uid: 23923
+ - uid: 23836
components:
- type: Transform
- pos: -24.5,-2.5
- parent: 60
- - uid: 23941
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-8.5
parent: 60
- uid: 24109
components:
@@ -117991,6 +117505,18 @@ entities:
- type: Transform
pos: 34.5,51.5
parent: 60
+- proto: PoweredlightExterior
+ entities:
+ - uid: 8581
+ components:
+ - type: Transform
+ pos: -31.5,-26.5
+ parent: 60
+ - uid: 8582
+ components:
+ - type: Transform
+ pos: -39.5,-26.5
+ parent: 60
- proto: PoweredlightLED
entities:
- uid: 3166
@@ -118029,20 +117555,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 5294
- components:
- - type: Transform
- pos: -31.5,-26.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 5810
- components:
- - type: Transform
- pos: -39.5,-26.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 23131
components:
- type: Transform
@@ -118155,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
@@ -118171,52 +117689,22 @@ entities:
parent: 60
- proto: PoweredSmallLight
entities:
- - uid: 109
+ - uid: 313
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-17.5
+ pos: -20.5,-9.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 176
+ - uid: 314
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-19.5
+ pos: -20.5,-5.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 180
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-16.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 234
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-18.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 769
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -12.5,-20.5
parent: 60
- - uid: 937
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-27.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 1211
components:
- type: Transform
@@ -118232,56 +117720,11 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 1534
+ - uid: 1657
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-10.5
+ pos: -32.5,-5.5
parent: 60
- - uid: 2091
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-3.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 2094
- components:
- - type: Transform
- pos: -19.5,-12.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 2095
- components:
- - type: Transform
- pos: -19.5,-9.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 2096
- components:
- - type: Transform
- pos: -33.5,-6.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 2097
- components:
- - type: Transform
- pos: -33.5,-9.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 2182
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-35.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 2819
components:
- type: Transform
@@ -118310,13 +117753,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 4014
- components:
- - type: Transform
- pos: -16.5,-28.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 4293
components:
- type: Transform
@@ -118352,13 +117788,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 4554
- components:
- - type: Transform
- pos: -33.5,-12.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 4572
components:
- type: Transform
@@ -118389,14 +117818,11 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 7014
+ - uid: 7139
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-28.5
+ pos: -32.5,-9.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 7186
components:
- type: Transform
@@ -118435,13 +117861,36 @@ entities:
- type: Transform
pos: -46.5,21.5
parent: 60
- - uid: 8403
+ - uid: 8484
components:
- type: Transform
- pos: -13.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-10.5
+ parent: 60
+ - uid: 8503
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-5.5
+ parent: 60
+ - uid: 8518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-28.5
+ parent: 60
+ - uid: 8519
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-10.5
+ parent: 60
+ - uid: 8598
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-26.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 8765
components:
- type: Transform
@@ -118603,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:
@@ -118623,20 +118090,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 17466
- components:
- - type: Transform
- pos: -34.5,21.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 17469
- components:
- - type: Transform
- pos: -46.5,25.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 17470
components:
- type: Transform
@@ -118644,13 +118097,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 17471
- components:
- - type: Transform
- pos: -54.5,21.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 17734
components:
- type: Transform
@@ -118674,6 +118120,11 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 17960
+ components:
+ - type: Transform
+ pos: -32.5,0.5
+ parent: 60
- uid: 18629
components:
- type: Transform
@@ -118688,14 +118139,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 18822
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-28.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 18853
components:
- type: Transform
@@ -118711,17 +118154,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 18997
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-3.5
- parent: 60
- - uid: 19130
- components:
- - type: Transform
- pos: -6.5,-44.5
- parent: 60
- uid: 19194
components:
- type: Transform
@@ -118809,11 +118241,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 21067
- components:
- - type: Transform
- pos: -19.5,-6.5
- parent: 60
- uid: 21246
components:
- type: Transform
@@ -118833,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
@@ -118913,10 +118328,11 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 23943
+ - uid: 23901
components:
- type: Transform
- pos: -31.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,36.5
parent: 60
- uid: 24138
components:
@@ -118969,6 +118385,97 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
+- proto: PoweredWarmSmallLight
+ entities:
+ - uid: 1728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-3.5
+ parent: 60
+ - uid: 7031
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-0.5
+ parent: 60
+ - uid: 8523
+ components:
+ - type: Transform
+ pos: -46.5,25.5
+ parent: 60
+ - uid: 8590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-17.5
+ parent: 60
+ - uid: 8595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-19.5
+ parent: 60
+ - uid: 8596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-18.5
+ parent: 60
+ - uid: 8597
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-16.5
+ parent: 60
+ - uid: 8654
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-35.5
+ parent: 60
+ - uid: 8655
+ components:
+ - type: Transform
+ pos: -16.5,-28.5
+ parent: 60
+ - uid: 8662
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-29.5
+ parent: 60
+ - uid: 8664
+ components:
+ - type: Transform
+ pos: -13.5,-50.5
+ parent: 60
+ - uid: 8665
+ components:
+ - type: Transform
+ pos: -34.5,21.5
+ parent: 60
+ - uid: 8667
+ components:
+ - type: Transform
+ pos: -54.5,21.5
+ parent: 60
+ - uid: 8668
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-27.5
+ parent: 60
+ - uid: 8671
+ components:
+ - type: Transform
+ pos: -6.5,-44.5
+ parent: 60
+ - uid: 8946
+ components:
+ - type: Transform
+ pos: -12.5,-50.5
+ parent: 60
- proto: Protolathe
entities:
- uid: 7081
@@ -118990,11 +118497,6 @@ entities:
- type: Transform
pos: 29.5,-10.5
parent: 60
- - uid: 1293
- components:
- - type: Transform
- pos: -28.5,2.5
- parent: 60
- uid: 1372
components:
- type: Transform
@@ -119010,10 +118512,10 @@ entities:
- type: Transform
pos: -31.5,-30.5
parent: 60
- - uid: 1819
+ - uid: 1907
components:
- type: Transform
- pos: -24.5,1.5
+ pos: -22.5,-20.5
parent: 60
- uid: 2174
components:
@@ -119050,6 +118552,11 @@ entities:
- type: Transform
pos: 44.5,-42.5
parent: 60
+ - uid: 3843
+ components:
+ - type: Transform
+ pos: -20.5,5.5
+ parent: 60
- uid: 3970
components:
- type: Transform
@@ -119115,6 +118622,11 @@ entities:
- type: Transform
pos: -55.5,-16.5
parent: 60
+ - uid: 5430
+ components:
+ - type: Transform
+ pos: -24.5,-20.5
+ parent: 60
- uid: 5777
components:
- type: Transform
@@ -119125,6 +118637,11 @@ entities:
- type: Transform
pos: -67.5,11.5
parent: 60
+ - uid: 6206
+ components:
+ - type: Transform
+ pos: -24.5,0.5
+ parent: 60
- uid: 6240
components:
- type: Transform
@@ -119155,6 +118672,11 @@ entities:
- type: Transform
pos: -0.5,15.5
parent: 60
+ - uid: 6734
+ components:
+ - type: Transform
+ pos: -28.5,1.5
+ parent: 60
- uid: 7035
components:
- type: Transform
@@ -119165,6 +118687,11 @@ entities:
- type: Transform
pos: 13.5,-15.5
parent: 60
+ - uid: 7650
+ components:
+ - type: Transform
+ pos: -24.5,-12.5
+ parent: 60
- uid: 7703
components:
- type: Transform
@@ -119250,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
@@ -119265,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
@@ -119275,11 +118817,6 @@ entities:
- type: Transform
pos: 6.5,-48.5
parent: 60
- - uid: 18604
- components:
- - type: Transform
- pos: -20.5,5.5
- parent: 60
- uid: 19043
components:
- type: Transform
@@ -119340,6 +118877,11 @@ entities:
- type: Transform
pos: 28.5,-7.5
parent: 60
+ - uid: 21162
+ components:
+ - type: Transform
+ pos: -27.5,-12.5
+ parent: 60
- uid: 21610
components:
- type: Transform
@@ -119350,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
@@ -119510,12 +119057,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 12.5,35.5
parent: 60
- - uid: 10585
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-6.5
- parent: 60
- uid: 16130
components:
- type: Transform
@@ -119666,18 +119207,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -11.5,57.5
parent: 60
- - uid: 24374
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-5.5
- parent: 60
- - uid: 24375
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-4.5
- parent: 60
- proto: RailingCorner
entities:
- uid: 24199
@@ -120058,11 +119587,6 @@ entities:
- type: Transform
pos: -60.5,14.5
parent: 60
- - uid: 18092
- components:
- - type: Transform
- pos: -35.5,0.5
- parent: 60
- uid: 18093
components:
- type: Transform
@@ -120131,47 +119655,11 @@ entities:
parent: 60
- proto: RandomSpawner
entities:
- - uid: 258
- components:
- - type: Transform
- pos: -16.5,21.5
- parent: 60
- - uid: 295
- components:
- - type: Transform
- pos: -35.5,25.5
- parent: 60
- - uid: 323
- components:
- - type: Transform
- pos: -16.5,-3.5
- parent: 60
- - uid: 352
- components:
- - type: Transform
- pos: -22.5,9.5
- parent: 60
- - uid: 584
- components:
- - type: Transform
- pos: -2.5,-24.5
- parent: 60
- - uid: 707
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-20.5
- parent: 60
- uid: 817
components:
- type: Transform
pos: 47.5,0.5
parent: 60
- - uid: 2162
- components:
- - type: Transform
- pos: -27.5,-22.5
- parent: 60
- uid: 2163
components:
- type: Transform
@@ -120207,11 +119695,6 @@ entities:
- type: Transform
pos: 8.5,-41.5
parent: 60
- - uid: 3590
- components:
- - type: Transform
- pos: 23.5,-24.5
- parent: 60
- uid: 3621
components:
- type: Transform
@@ -120282,16 +119765,6 @@ entities:
- type: Transform
pos: -7.5,-54.5
parent: 60
- - uid: 5246
- components:
- - type: Transform
- pos: 34.5,-22.5
- parent: 60
- - uid: 5247
- components:
- - type: Transform
- pos: 15.5,-16.5
- parent: 60
- uid: 5329
components:
- type: Transform
@@ -120307,11 +119780,6 @@ entities:
- type: Transform
pos: -41.5,-28.5
parent: 60
- - uid: 5688
- components:
- - type: Transform
- pos: -35.5,-24.5
- parent: 60
- uid: 6237
components:
- type: Transform
@@ -120322,11 +119790,6 @@ entities:
- type: Transform
pos: 9.5,12.5
parent: 60
- - uid: 6333
- components:
- - type: Transform
- pos: 13.5,14.5
- parent: 60
- uid: 6443
components:
- type: Transform
@@ -120363,11 +119826,6 @@ entities:
- type: Transform
pos: -58.5,-13.5
parent: 60
- - uid: 8744
- components:
- - type: Transform
- pos: 15.5,20.5
- parent: 60
- uid: 10809
components:
- type: Transform
@@ -120378,11 +119836,6 @@ entities:
- type: Transform
pos: -4.5,-30.5
parent: 60
- - uid: 13139
- components:
- - type: Transform
- pos: 29.5,8.5
- parent: 60
- uid: 18720
components:
- type: Transform
@@ -120408,11 +119861,6 @@ entities:
- type: Transform
pos: -43.5,-13.5
parent: 60
- - uid: 19514
- components:
- - type: Transform
- pos: 24.5,23.5
- parent: 60
- uid: 19722
components:
- type: Transform
@@ -120428,11 +119876,6 @@ entities:
- type: Transform
pos: 37.5,20.5
parent: 60
- - uid: 19887
- components:
- - type: Transform
- pos: 15.5,-24.5
- parent: 60
- uid: 19922
components:
- type: Transform
@@ -120443,56 +119886,6 @@ entities:
- type: Transform
pos: 31.5,0.5
parent: 60
- - uid: 21407
- components:
- - type: Transform
- pos: 15.5,-9.5
- parent: 60
- - uid: 21408
- components:
- - type: Transform
- pos: -6.5,10.5
- parent: 60
- - uid: 21409
- components:
- - type: Transform
- pos: -43.5,19.5
- parent: 60
- - uid: 21410
- components:
- - type: Transform
- pos: -36.5,0.5
- parent: 60
- - uid: 21411
- components:
- - type: Transform
- pos: -38.5,-21.5
- parent: 60
- - uid: 23644
- components:
- - type: Transform
- pos: -28.5,23.5
- parent: 60
- - uid: 23645
- components:
- - type: Transform
- pos: -20.5,25.5
- parent: 60
- - uid: 23646
- components:
- - type: Transform
- pos: -14.5,12.5
- parent: 60
- - uid: 23647
- components:
- - type: Transform
- pos: -14.5,1.5
- parent: 60
- - uid: 23648
- components:
- - type: Transform
- pos: -14.5,-18.5
- parent: 60
- uid: 23651
components:
- type: Transform
@@ -120503,11 +119896,6 @@ entities:
- type: Transform
pos: -0.5,-36.5
parent: 60
- - uid: 23656
- components:
- - type: Transform
- pos: 17.5,0.5
- parent: 60
- proto: RandomVending
entities:
- uid: 10380
@@ -120515,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:
@@ -120547,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
@@ -120663,15 +120058,15 @@ entities:
parent: 60
- proto: ReinforcedPlasmaWindow
entities:
- - uid: 2004
+ - uid: 1574
components:
- type: Transform
- pos: -27.5,-1.5
+ pos: -27.5,-2.5
parent: 60
- - uid: 2009
+ - uid: 1575
components:
- type: Transform
- pos: -25.5,-1.5
+ pos: -25.5,-2.5
parent: 60
- uid: 6985
components:
@@ -120917,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
@@ -120924,83 +120329,25 @@ entities:
parent: 60
- proto: ReinforcedWindow
entities:
- - uid: 8
+ - uid: 13
components:
- type: Transform
- pos: -26.5,-17.5
- parent: 60
- - uid: 10
- components:
- - type: Transform
- pos: -28.5,-8.5
- parent: 60
- - uid: 22
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-10.5
+ pos: -23.5,-12.5
parent: 60
- uid: 25
components:
- type: Transform
- pos: -32.5,-7.5
- parent: 60
- - uid: 57
- components:
- - type: Transform
- pos: -21.5,-16.5
- parent: 60
- - uid: 76
- components:
- - type: Transform
- pos: -23.5,-8.5
- parent: 60
- - uid: 97
- components:
- - type: Transform
- pos: -28.5,-7.5
- parent: 60
- - uid: 105
- components:
- - type: Transform
- pos: -17.5,-12.5
- parent: 60
- - uid: 115
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-12.5
- parent: 60
- - uid: 124
- components:
- - type: Transform
- pos: -23.5,-10.5
+ pos: -32.5,-21.5
parent: 60
- uid: 130
components:
- type: Transform
- pos: -32.5,-10.5
+ pos: -34.5,-17.5
parent: 60
- - uid: 149
+ - uid: 143
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-12.5
- parent: 60
- - uid: 156
- components:
- - type: Transform
- pos: -28.5,-11.5
- parent: 60
- - uid: 157
- components:
- - type: Transform
- pos: -29.5,-17.5
- parent: 60
- - uid: 182
- components:
- - type: Transform
- pos: -17.5,-13.5
+ pos: -33.5,-21.5
parent: 60
- uid: 209
components:
@@ -121008,15 +120355,25 @@ entities:
rot: 1.5707963267948966 rad
pos: 7.5,-18.5
parent: 60
- - uid: 210
+ - uid: 236
components:
- type: Transform
- pos: -24.5,-11.5
+ pos: -29.5,-12.5
parent: 60
- - uid: 231
+ - uid: 239
components:
- type: Transform
- pos: -20.5,-10.5
+ pos: -35.5,-18.5
+ parent: 60
+ - uid: 240
+ components:
+ - type: Transform
+ pos: -19.5,-21.5
+ parent: 60
+ - uid: 249
+ components:
+ - type: Transform
+ pos: -29.5,-11.5
parent: 60
- uid: 256
components:
@@ -121028,32 +120385,21 @@ entities:
- type: Transform
pos: 57.5,-6.5
parent: 60
- - uid: 269
+ - uid: 267
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-12.5
+ pos: -17.5,-20.5
parent: 60
- - uid: 313
+ - uid: 295
components:
- type: Transform
- pos: -29.5,-10.5
+ pos: -17.5,-7.5
parent: 60
- uid: 320
components:
- type: Transform
pos: 57.5,-7.5
parent: 60
- - uid: 356
- components:
- - type: Transform
- pos: -20.5,-13.5
- parent: 60
- - uid: 357
- components:
- - type: Transform
- pos: -32.5,-13.5
- parent: 60
- uid: 385
components:
- type: Transform
@@ -121124,11 +120470,6 @@ entities:
- type: Transform
pos: 20.5,1.5
parent: 60
- - uid: 493
- components:
- - type: Transform
- pos: -24.5,-8.5
- parent: 60
- uid: 501
components:
- type: Transform
@@ -121164,11 +120505,6 @@ entities:
- type: Transform
pos: -13.5,-5.5
parent: 60
- - uid: 562
- components:
- - type: Transform
- pos: -17.5,-10.5
- parent: 60
- uid: 563
components:
- type: Transform
@@ -121245,6 +120581,11 @@ entities:
- type: Transform
pos: -12.5,-0.5
parent: 60
+ - uid: 796
+ components:
+ - type: Transform
+ pos: -17.5,-5.5
+ parent: 60
- uid: 797
components:
- type: Transform
@@ -121255,15 +120596,25 @@ entities:
- type: Transform
pos: -17.5,11.5
parent: 60
- - uid: 840
+ - uid: 844
components:
- type: Transform
- pos: -20.5,-7.5
+ pos: -17.5,-6.5
parent: 60
- - uid: 845
+ - uid: 986
components:
- type: Transform
- pos: -29.5,-8.5
+ pos: -28.5,-7.5
+ parent: 60
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: -27.5,-7.5
+ parent: 60
+ - uid: 1168
+ components:
+ - type: Transform
+ pos: -26.5,-7.5
parent: 60
- uid: 1192
components:
@@ -121280,6 +120631,11 @@ entities:
- type: Transform
pos: -8.5,-32.5
parent: 60
+ - uid: 1217
+ components:
+ - type: Transform
+ pos: -17.5,-11.5
+ parent: 60
- uid: 1337
components:
- type: Transform
@@ -121305,82 +120661,90 @@ entities:
- type: Transform
pos: 2.5,-36.5
parent: 60
+ - uid: 1462
+ components:
+ - type: Transform
+ pos: -23.5,-14.5
+ parent: 60
+ - uid: 1464
+ components:
+ - type: Transform
+ pos: -29.5,-16.5
+ parent: 60
- uid: 1469
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-12.5
+ pos: -29.5,-14.5
parent: 60
- - uid: 1476
+ - uid: 1478
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-10.5
+ pos: -23.5,-16.5
parent: 60
- - uid: 1587
+ - uid: 1488
components:
- type: Transform
- pos: -35.5,-13.5
+ pos: -24.5,-7.5
+ parent: 60
+ - uid: 1527
+ components:
+ - type: Transform
+ pos: -17.5,-10.5
+ parent: 60
+ - uid: 1547
+ components:
+ - type: Transform
+ pos: -28.5,-8.5
+ parent: 60
+ - uid: 1553
+ components:
+ - type: Transform
+ pos: -25.5,-7.5
parent: 60
- uid: 1676
components:
- type: Transform
pos: -23.5,-25.5
parent: 60
- - uid: 1684
+ - uid: 1723
components:
- type: Transform
- pos: -27.5,-21.5
+ pos: -25.5,-25.5
parent: 60
- - uid: 1706
+ - uid: 1846
components:
- type: Transform
- pos: -33.5,-21.5
+ pos: -22.5,-2.5
parent: 60
- - uid: 1744
+ - uid: 1857
components:
- type: Transform
- pos: -17.5,-6.5
+ pos: -24.5,-8.5
parent: 60
- - uid: 1745
+ - uid: 1918
components:
- type: Transform
- pos: -17.5,-7.5
+ pos: -23.5,-11.5
parent: 60
- - uid: 1765
+ - uid: 1925
components:
- type: Transform
- pos: -35.5,-9.5
+ pos: -35.5,-5.5
parent: 60
- - uid: 1805
+ - uid: 1926
components:
- type: Transform
- pos: -17.5,-9.5
+ pos: -35.5,-11.5
parent: 60
- - uid: 1830
+ - uid: 1934
components:
- type: Transform
- pos: -22.5,-1.5
+ pos: -17.5,-19.5
parent: 60
- - uid: 1853
+ - uid: 2004
components:
- type: Transform
- pos: -35.5,-7.5
- parent: 60
- - uid: 1854
- components:
- - type: Transform
- pos: -35.5,-6.5
- parent: 60
- - uid: 1856
- components:
- - type: Transform
- pos: -35.5,-10.5
- parent: 60
- - uid: 1859
- components:
- - type: Transform
- pos: -35.5,-12.5
+ pos: -17.5,-14.5
parent: 60
- uid: 2057
components:
@@ -121654,21 +121018,11 @@ entities:
- type: Transform
pos: 57.5,-11.5
parent: 60
- - uid: 3722
- components:
- - type: Transform
- pos: -18.5,0.5
- parent: 60
- uid: 3739
components:
- type: Transform
pos: 54.5,19.5
parent: 60
- - uid: 3773
- components:
- - type: Transform
- pos: -25.5,-21.5
- parent: 60
- uid: 3796
components:
- type: Transform
@@ -121793,11 +121147,6 @@ entities:
- type: Transform
pos: 29.5,-56.5
parent: 60
- - uid: 4080
- components:
- - type: Transform
- pos: -21.5,-19.5
- parent: 60
- uid: 4084
components:
- type: Transform
@@ -121814,6 +121163,11 @@ entities:
- type: Transform
pos: 39.5,-21.5
parent: 60
+ - uid: 4200
+ components:
+ - type: Transform
+ pos: -32.5,-17.5
+ parent: 60
- uid: 4301
components:
- type: Transform
@@ -121976,6 +121330,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -21.5,-53.5
parent: 60
+ - uid: 5020
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-9.5
+ parent: 60
- uid: 5035
components:
- type: Transform
@@ -122168,11 +121528,6 @@ entities:
- type: Transform
pos: 13.5,6.5
parent: 60
- - uid: 5368
- components:
- - type: Transform
- pos: 14.5,4.5
- parent: 60
- uid: 5371
components:
- type: Transform
@@ -122288,11 +121643,6 @@ entities:
rot: 3.141592653589793 rad
pos: -19.5,14.5
parent: 60
- - uid: 5754
- components:
- - type: Transform
- pos: -23.5,-17.5
- parent: 60
- uid: 5793
components:
- type: Transform
@@ -122496,11 +121846,10 @@ entities:
- type: Transform
pos: 45.5,-25.5
parent: 60
- - uid: 7048
+ - uid: 7043
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-15.5
+ pos: -18.5,-0.5
parent: 60
- uid: 7068
components:
@@ -122881,11 +122230,6 @@ entities:
- type: Transform
pos: 48.5,-48.5
parent: 60
- - uid: 7812
- components:
- - type: Transform
- pos: -18.5,1.5
- parent: 60
- uid: 7816
components:
- type: Transform
@@ -122899,18 +122243,12 @@ entities:
- uid: 7900
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-12.5
+ pos: -18.5,-1.5
parent: 60
- - uid: 7902
+ - uid: 7909
components:
- type: Transform
- pos: -20.5,-17.5
- parent: 60
- - uid: 7903
- components:
- - type: Transform
- pos: -18.5,-17.5
+ pos: -20.5,-6.5
parent: 60
- uid: 8039
components:
@@ -122922,6 +122260,11 @@ entities:
- type: Transform
pos: 30.5,-25.5
parent: 60
+ - uid: 8261
+ components:
+ - type: Transform
+ pos: -20.5,-10.5
+ parent: 60
- uid: 8268
components:
- type: Transform
@@ -122942,6 +122285,27 @@ entities:
- type: Transform
pos: 52.5,18.5
parent: 60
+ - uid: 8445
+ components:
+ - type: Transform
+ pos: -35.5,-7.5
+ parent: 60
+ - uid: 8479
+ components:
+ - type: Transform
+ pos: -35.5,-10.5
+ parent: 60
+ - uid: 8520
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-9.5
+ parent: 60
+ - uid: 8577
+ components:
+ - type: Transform
+ pos: -18.5,0.5
+ parent: 60
- uid: 8780
components:
- type: Transform
@@ -122987,6 +122351,11 @@ entities:
- type: Transform
pos: 23.5,-3.5
parent: 60
+ - uid: 8947
+ components:
+ - type: Transform
+ pos: -23.5,-9.5
+ parent: 60
- uid: 8953
components:
- type: Transform
@@ -122997,10 +122366,10 @@ entities:
- type: Transform
pos: -66.5,-19.5
parent: 60
- - uid: 9011
+ - uid: 9034
components:
- type: Transform
- pos: -24.5,-7.5
+ pos: -32.5,-10.5
parent: 60
- uid: 9041
components:
@@ -123136,6 +122505,46 @@ entities:
- type: Transform
pos: 22.5,3.5
parent: 60
+ - uid: 10685
+ components:
+ - type: Transform
+ pos: -17.5,-9.5
+ parent: 60
+ - uid: 10686
+ components:
+ - type: Transform
+ pos: -19.5,-17.5
+ parent: 60
+ - uid: 10828
+ components:
+ - type: Transform
+ pos: -17.5,-18.5
+ parent: 60
+ - uid: 11097
+ components:
+ - type: Transform
+ pos: -34.5,-21.5
+ parent: 60
+ - uid: 11098
+ components:
+ - type: Transform
+ pos: -35.5,-20.5
+ parent: 60
+ - uid: 11128
+ components:
+ - type: Transform
+ pos: -35.5,-6.5
+ parent: 60
+ - uid: 11129
+ components:
+ - type: Transform
+ pos: -32.5,-6.5
+ parent: 60
+ - uid: 11338
+ components:
+ - type: Transform
+ pos: -35.5,-9.5
+ parent: 60
- uid: 11438
components:
- type: Transform
@@ -123151,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
@@ -123927,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
@@ -124348,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:
@@ -124373,6 +123787,16 @@ entities:
- type: Transform
pos: -2.5,39.5
parent: 60
+ - uid: 16394
+ components:
+ - type: Transform
+ pos: -0.5,38.5
+ parent: 60
+ - uid: 16395
+ components:
+ - type: Transform
+ pos: -1.5,38.5
+ parent: 60
- uid: 16426
components:
- type: Transform
@@ -124388,21 +123812,6 @@ entities:
- type: Transform
pos: -5.5,39.5
parent: 60
- - uid: 16437
- components:
- - type: Transform
- pos: -0.5,37.5
- parent: 60
- - uid: 16438
- components:
- - type: Transform
- pos: 0.5,37.5
- parent: 60
- - uid: 16439
- components:
- - type: Transform
- pos: 1.5,37.5
- parent: 60
- uid: 16509
components:
- type: Transform
@@ -124423,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
@@ -124694,11 +124108,6 @@ entities:
- type: Transform
pos: -9.5,-4.5
parent: 60
- - uid: 18215
- components:
- - type: Transform
- pos: -20.5,-2.5
- parent: 60
- uid: 18413
components:
- type: Transform
@@ -124729,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
@@ -124739,6 +124153,17 @@ entities:
- type: Transform
pos: 39.5,-15.5
parent: 60
+ - uid: 18822
+ components:
+ - type: Transform
+ pos: -17.5,-16.5
+ parent: 60
+ - uid: 18857
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-9.5
+ parent: 60
- uid: 18901
components:
- type: Transform
@@ -125300,11 +124725,6 @@ entities:
- type: Transform
pos: 57.5,32.5
parent: 60
- - uid: 24084
- components:
- - type: Transform
- pos: -20.5,-4.5
- parent: 60
- uid: 24087
components:
- type: Transform
@@ -125367,84 +124787,6 @@ entities:
- Pressed: Toggle
920:
- Pressed: Toggle
- - uid: 4898
- components:
- - type: MetaData
- name: Cell 5 Shutters
- - type: Transform
- pos: -27.257097,-7.6439037
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 6733:
- - Pressed: Toggle
- 6206:
- - Pressed: Toggle
- - uid: 10621
- components:
- - type: MetaData
- name: Cell 4 Shutters
- - type: Transform
- pos: -27.504074,-7.661018
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 7045:
- - Pressed: Toggle
- 6796:
- - Pressed: Toggle
- - uid: 10622
- components:
- - type: MetaData
- name: Medical Cell Shutters
- - type: Transform
- pos: -27.778229,-7.254768
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 188:
- - Pressed: Toggle
- 148:
- - Pressed: Toggle
- - uid: 11098
- components:
- - type: MetaData
- name: Cell 1 Shutters
- - type: Transform
- pos: -27.516373,-7.2643003
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 6467:
- - Pressed: Toggle
- 7032:
- - Pressed: Toggle
- - uid: 11555
- components:
- - type: MetaData
- name: Cell 2 Shutters
- - type: Transform
- pos: -27.266254,-7.242599
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 552:
- - Pressed: Toggle
- 8002:
- - Pressed: Toggle
- - uid: 19870
- components:
- - type: MetaData
- name: Cell 3 Shutters
- - type: Transform
- pos: -27.761703,-7.6384225
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 6746:
- - Pressed: Toggle
- 6203:
- - Pressed: Toggle
- uid: 23871
components:
- type: MetaData
@@ -125474,18 +124816,6 @@ entities:
- type: Transform
pos: -40.494568,11.691846
parent: 60
-- proto: RiotShield
- entities:
- - uid: 1883
- components:
- - type: Transform
- pos: -24.660069,1.386905
- parent: 60
- - uid: 1887
- components:
- - type: Transform
- pos: -24.660069,1.386905
- parent: 60
- proto: RobocopCircuitBoard
entities:
- uid: 24823
@@ -125507,11 +124837,6 @@ entities:
- type: Transform
pos: 41.440662,-10.344523
parent: 60
- - uid: 2017
- components:
- - type: Transform
- pos: -19.510386,-4.290659
- parent: 60
- proto: RubberStampMime
entities:
- uid: 7243
@@ -125570,6 +124895,21 @@ entities:
rot: 3.141592653589793 rad
pos: 13.5,-14.5
parent: 60
+ - uid: 8291
+ components:
+ - type: Transform
+ pos: -35.5,-8.5
+ parent: 60
+ - uid: 9043
+ components:
+ - type: Transform
+ pos: -17.5,-8.5
+ parent: 60
+ - uid: 9048
+ components:
+ - type: Transform
+ pos: -27.5,-21.5
+ parent: 60
- uid: 15599
components:
- type: Transform
@@ -125605,16 +124945,6 @@ entities:
- type: Transform
pos: 56.5,28.5
parent: 60
- - uid: 23851
- components:
- - type: Transform
- pos: -30.5,-17.5
- parent: 60
- - uid: 23852
- components:
- - type: Transform
- pos: -17.5,-14.5
- parent: 60
- uid: 23853
components:
- type: Transform
@@ -125650,11 +124980,6 @@ entities:
- type: Transform
pos: -32.5,6.5
parent: 60
- - uid: 23861
- components:
- - type: Transform
- pos: -35.5,-3.5
- parent: 60
- uid: 23862
components:
- type: Transform
@@ -125675,11 +125000,6 @@ entities:
- type: Transform
pos: -11.5,-21.5
parent: 60
- - uid: 24434
- components:
- - type: Transform
- pos: -26.5,-21.5
- parent: 60
- uid: 24436
components:
- type: Transform
@@ -125768,18 +125088,18 @@ entities:
- type: Transform
pos: 20.606422,21.831692
parent: 60
-- proto: SecurityTechFab
- entities:
- - uid: 1907
+ - uid: 23904
components:
- type: Transform
- pos: -26.5,2.5
+ pos: 2.4679193,31.291115
+ parent: 60
+- proto: SecurityTechFab
+ entities:
+ - uid: 5836
+ components:
+ - type: Transform
+ pos: -26.5,1.5
parent: 60
- - type: MaterialStorage
- materialWhiteList:
- - Glass
- - Plastic
- - Steel
- proto: SeedExtractor
entities:
- uid: 5380
@@ -125991,11 +125311,6 @@ entities:
- type: Transform
pos: -53.48943,7.209055
parent: 60
- - uid: 16456
- components:
- - type: Transform
- pos: -24.476772,1.5819757
- parent: 60
- proto: SheetSteel
entities:
- uid: 2314
@@ -126009,6 +125324,11 @@ entities:
- type: Transform
pos: 50.57873,-36.45204
parent: 60
+ - uid: 6149
+ components:
+ - type: Transform
+ pos: -24.474873,0.5569985
+ parent: 60
- uid: 6590
components:
- type: Transform
@@ -126029,12 +125349,6 @@ entities:
- type: Transform
pos: -53.494404,7.5158625
parent: 60
- - uid: 10586
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.486025,1.614541
- parent: 60
- uid: 11799
components:
- type: Transform
@@ -126111,6 +125425,13 @@ entities:
parent: 60
- proto: ShuttersNormal
entities:
+ - uid: 186
+ components:
+ - type: Transform
+ pos: -55.5,0.5
+ parent: 60
+ - type: DeviceLinkSink
+ invokeCounter: 2
- uid: 914
components:
- type: Transform
@@ -126149,30 +125470,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 42.5,-32.5
parent: 60
- - uid: 148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-6.5
- parent: 60
- - uid: 188
- components:
- - type: Transform
- pos: -17.5,-7.5
- parent: 60
- - uid: 552
- components:
- - type: Transform
- pos: -17.5,-13.5
- parent: 60
- - uid: 1022
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,1.5
- parent: 60
- - type: DeviceLinkSink
- invokeCounter: 2
- uid: 1454
components:
- type: Transform
@@ -126184,16 +125481,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 7.5,-26.5
parent: 60
- - uid: 1932
- components:
- - type: Transform
- pos: -27.5,-21.5
- parent: 60
- - uid: 1942
- components:
- - type: Transform
- pos: -21.5,-19.5
- parent: 60
- uid: 2250
components:
- type: Transform
@@ -126221,13 +125508,6 @@ entities:
- type: Transform
pos: 38.5,-15.5
parent: 60
- - uid: 3737
- components:
- - type: Transform
- pos: -18.5,0.5
- parent: 60
- - type: DeviceLinkSink
- invokeCounter: 2
- uid: 3844
components:
- type: Transform
@@ -126296,21 +125576,10 @@ entities:
rot: 1.5707963267948966 rad
pos: -40.5,-6.5
parent: 60
- - uid: 6203
+ - uid: 6207
components:
- type: Transform
- pos: -35.5,-7.5
- parent: 60
- - uid: 6206
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-12.5
- parent: 60
- - uid: 6467
- components:
- - type: Transform
- pos: -17.5,-10.5
+ pos: -25.5,-25.5
parent: 60
- uid: 6522
components:
@@ -126330,17 +125599,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 7.5,18.5
parent: 60
- - uid: 6733
- components:
- - type: Transform
- pos: -35.5,-13.5
- parent: 60
- - uid: 6746
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-6.5
- parent: 60
- uid: 6772
components:
- type: Transform
@@ -126365,23 +125623,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 22.5,-34.5
parent: 60
- - uid: 6796
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-9.5
- parent: 60
- - uid: 7032
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-9.5
- parent: 60
- - uid: 7045
- components:
- - type: Transform
- pos: -35.5,-10.5
- parent: 60
- uid: 7131
components:
- type: Transform
@@ -126399,17 +125640,6 @@ entities:
- type: Transform
pos: 39.5,-15.5
parent: 60
- - uid: 7685
- components:
- - type: Transform
- pos: -25.5,-21.5
- parent: 60
- - uid: 8002
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-12.5
- parent: 60
- uid: 8381
components:
- type: Transform
@@ -126420,15 +125650,10 @@ entities:
- type: Transform
pos: -12.5,-52.5
parent: 60
- - uid: 8716
+ - uid: 8678
components:
- type: Transform
- pos: -21.5,-20.5
- parent: 60
- - uid: 8892
- components:
- - type: Transform
- pos: -21.5,-18.5
+ pos: -13.5,-19.5
parent: 60
- uid: 9167
components:
@@ -126509,11 +125734,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -9.5,-3.5
parent: 60
- - uid: 19155
- components:
- - type: Transform
- pos: -33.5,-21.5
- parent: 60
- uid: 21085
components:
- type: Transform
@@ -126603,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
+ - uid: 16389
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
- components:
- - type: Transform
- pos: -1.5,37.5
+ pos: -0.5,30.5
parent: 60
- proto: ShuttersWindow
entities:
@@ -126854,15 +126049,6 @@ entities:
linkedPorts:
7728:
- Pressed: Toggle
- - uid: 12596
- components:
- - type: Transform
- pos: -54.5,0.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 12598:
- - Pressed: Toggle
- uid: 14913
components:
- type: Transform
@@ -126911,19 +126097,6 @@ entities:
- Pressed: Toggle
16973:
- Pressed: Toggle
- - uid: 18438
- components:
- - type: Transform
- pos: -8.5,-2.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 18519:
- - Pressed: Toggle
- 18518:
- - Pressed: Toggle
- 18517:
- - Pressed: Toggle
- proto: SignalButtonDirectional
entities:
- uid: 1240
@@ -126955,37 +126128,6 @@ entities:
- Pressed: Toggle
4355:
- Pressed: Toggle
- - uid: 1931
- components:
- - type: MetaData
- name: Lobby Shutdown
- - type: Transform
- pos: -20.5,-14.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 8892:
- - Pressed: Toggle
- 1942:
- - Pressed: Toggle
- 8716:
- - Pressed: Toggle
- 7685:
- - Pressed: Toggle
- 1932:
- - Pressed: Toggle
- - uid: 1941
- components:
- - type: MetaData
- name: Privacy Shutter Button
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-18.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 19155:
- - Pressed: Toggle
- uid: 2287
components:
- type: Transform
@@ -127065,32 +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: 4522
- components:
- - type: MetaData
- name: Privacy Shutter Button
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-1.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 3737:
- - Pressed: Toggle
- 1022:
- - Pressed: Toggle
- uid: 9571
components:
- type: Transform
@@ -127128,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
@@ -127153,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
@@ -127189,44 +126280,6 @@ entities:
- Pressed: Toggle
17379:
- Pressed: Toggle
- - uid: 13624
- components:
- - type: Transform
- pos: -52.5,28.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 11628:
- - Pressed: Toggle
- 13618:
- - Pressed: Toggle
- 11629:
- - Pressed: Toggle
- 11583:
- - Pressed: Toggle
- 13616:
- - Pressed: Toggle
- 12021:
- - Pressed: Toggle
- - uid: 13662
- components:
- - type: Transform
- pos: -48.5,28.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 11629:
- - Pressed: Toggle
- 13618:
- - Pressed: Toggle
- 11628:
- - Pressed: Toggle
- 11583:
- - Pressed: Toggle
- 13616:
- - Pressed: Toggle
- 12021:
- - Pressed: Toggle
- uid: 13899
components:
- type: MetaData
@@ -127238,7 +126291,7 @@ entities:
- type: DeviceLinkSource
linkedPorts:
14444:
- - Pressed: Toggle
+ - Pressed: DoorBolt
- uid: 14549
components:
- type: Transform
@@ -127292,22 +126345,6 @@ entities:
linkedPorts:
13901:
- Pressed: Toggle
- - uid: 14726
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-1.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 21763:
- - Pressed: Toggle
- 21764:
- - Pressed: Toggle
- 21765:
- - Pressed: Toggle
- 21766:
- - Pressed: Toggle
- uid: 14910
components:
- type: Transform
@@ -127322,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
@@ -127348,32 +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: 19170
- components:
- - type: Transform
- pos: -3.5,2.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 21770:
- - Pressed: Toggle
- 21769:
- - Pressed: Toggle
- 21768:
- - Pressed: Toggle
- 21767:
- - Pressed: Toggle
- uid: 20425
components:
- type: MetaData
@@ -127397,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
@@ -127450,18 +126432,6 @@ entities:
linkedPorts:
24333:
- Pressed: Toggle
- - uid: 24336
- components:
- - type: MetaData
- name: Janitorial Service Button
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-14.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 24335:
- - Pressed: Toggle
- uid: 24347
components:
- type: MetaData
@@ -127474,18 +126444,6 @@ entities:
linkedPorts:
11167:
- Pressed: Toggle
- - uid: 24351
- components:
- - type: MetaData
- name: Janitorial Service Light
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-0.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 24350:
- - Pressed: Toggle
- uid: 24365
components:
- type: MetaData
@@ -127540,6 +126498,157 @@ entities:
- Pressed: Toggle
- proto: SignalSwitchDirectional
entities:
+ - uid: 1580
+ components:
+ - type: MetaData
+ name: Cell 2 Blast Door Switch
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.502918,-9.625589
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1638:
+ - On: Open
+ - Off: Close
+ 1639:
+ - Off: Close
+ - On: Open
+ 1640:
+ - On: Open
+ - Off: Close
+ - uid: 1583
+ components:
+ - type: MetaData
+ name: Cell 4 Blast Door Switch
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.502918,-9.625589
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1293:
+ - On: Open
+ - Off: Close
+ 1238:
+ - Off: Close
+ - On: Open
+ 1257:
+ - On: Open
+ - Off: Close
+ - uid: 1624
+ components:
+ - type: MetaData
+ name: Cell 3 Blast Door Switch
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.502918,-9.222812
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1354:
+ - On: Open
+ - Off: Close
+ 1384:
+ - On: Open
+ - Off: Close
+ 1652:
+ - On: Open
+ - Off: Close
+ - uid: 1699
+ components:
+ - type: MetaData
+ name: Cell 1 Blast Door Switch
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.502918,-9.222812
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1653:
+ - On: Open
+ - Off: Close
+ 1655:
+ - On: Open
+ - Off: Close
+ 1656:
+ - On: Open
+ - Off: Close
+ - uid: 2103
+ components:
+ - type: MetaData
+ name: Interior Door Open/Close
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.496037,-18.715696
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1919:
+ - On: Open
+ - Off: Close
+ - uid: 4506
+ components:
+ - type: MetaData
+ name: Inner Windoor Switch
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-6.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 5825:
+ - On: Open
+ - Off: Close
+ - uid: 5758
+ components:
+ - type: MetaData
+ name: Inner Windoor Switch
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-10.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1530:
+ - On: Open
+ - Off: Close
+ - uid: 5835
+ components:
+ - type: MetaData
+ name: Inner Windoor Switch
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-6.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4201:
+ - On: Open
+ - Off: Close
+ - uid: 6307
+ components:
+ - type: MetaData
+ name: Inner Windoor Switch
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-10.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1485:
+ - On: Open
+ - Off: Close
+ - uid: 7563
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,1.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 186:
+ - Status: Toggle
- uid: 8127
components:
- type: MetaData
@@ -127553,6 +126662,339 @@ entities:
24352:
- On: On
- Off: Off
+ - uid: 8221
+ components:
+ - type: MetaData
+ name: Window Blast Doors
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-2.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1681:
+ - On: Open
+ - Off: Close
+ 10622:
+ - On: Open
+ - Off: Close
+ 5432:
+ - On: Open
+ - Off: Close
+ - uid: 8349
+ components:
+ - type: MetaData
+ name: Exterior Door Open/Close
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.502981,-20.229586
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8297:
+ - On: Open
+ - Off: Close
+ - uid: 8433
+ components:
+ - type: MetaData
+ name: Exterior Window Blast Doors Open/Close
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-0.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 188:
+ - On: Open
+ - Off: Close
+ 187:
+ - On: Open
+ - Off: Close
+ 9680:
+ - On: Open
+ - Off: Close
+ 4564:
+ - On: Open
+ - Off: Close
+ 4563:
+ - On: Open
+ - Off: Close
+ 4552:
+ - On: Open
+ - Off: Close
+ 4542:
+ - On: Open
+ - Off: Close
+ 4505:
+ - On: Open
+ - Off: Close
+ 4457:
+ - On: Open
+ - Off: Close
+ 13978:
+ - On: Open
+ - Off: Close
+ 8721:
+ - On: Open
+ - Off: Close
+ 4565:
+ - On: Open
+ - Off: Close
+ 207:
+ - On: Open
+ - Off: Close
+ 208:
+ - On: Open
+ - Off: Close
+ 9679:
+ - On: Open
+ - Off: Close
+ - uid: 8670
+ components:
+ - type: MetaData
+ name: Exterior Door Open/Close
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.498095,-20.215696
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 242:
+ - On: Open
+ - Off: Close
+ 8454:
+ - On: Open
+ - Off: Close
+ - uid: 8677
+ components:
+ - type: MetaData
+ name: Bathroom Privacy Shutter
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-18.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8678:
+ - On: Open
+ - Off: Close
+ - uid: 8908
+ components:
+ - type: MetaData
+ name: Interior Door Open/Close
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.498095,-18.722641
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 243:
+ - On: Open
+ - Off: Close
+ 245:
+ - On: Open
+ - Off: Close
+ - uid: 9309
+ components:
+ - type: Transform
+ pos: -54.5,0.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 186:
+ - Status: Toggle
+ - uid: 9397
+ components:
+ - type: MetaData
+ name: Window Switch
+ - type: Transform
+ pos: -8.5,-2.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 18519:
+ - On: Open
+ - Off: Close
+ 18518:
+ - On: Open
+ - Off: Close
+ 18517:
+ - On: Open
+ - Off: Close
+ - uid: 9549
+ components:
+ - type: MetaData
+ name: Shutter Switch
+ - type: Transform
+ pos: -48.5,28.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 11628:
+ - On: Open
+ - Off: Close
+ 11629:
+ - On: Open
+ - Off: Close
+ 13618:
+ - On: Open
+ - Off: Close
+ 11583:
+ - On: Open
+ - Off: Close
+ 13616:
+ - On: Open
+ - Off: Close
+ 12021:
+ - On: Open
+ - Off: Close
+ - uid: 9550
+ components:
+ - type: MetaData
+ name: Shutter Switch
+ - type: Transform
+ pos: -52.5,28.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 11628:
+ - On: Open
+ - Off: Close
+ 13618:
+ - On: Open
+ - Off: Close
+ 11629:
+ - On: Open
+ - Off: Close
+ 11583:
+ - On: Open
+ - Off: Close
+ 13616:
+ - On: Open
+ - Off: Close
+ 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
+ name: Bridge Entrance Blast Doors Open/Close
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-1.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 190:
+ - On: Open
+ - Off: Close
+ 189:
+ - On: Open
+ - Off: Close
+ 191:
+ - On: Open
+ - Off: Close
+ 206:
+ - On: Open
+ - Off: Close
- uid: 18802
components:
- type: MetaData
@@ -127606,6 +127048,14 @@ entities:
397:
- On: Reverse
- Off: Forward
+ - uid: 18859
+ components:
+ - type: MetaData
+ name: Janitor Light Switch
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 60
- uid: 19837
components:
- type: MetaData
@@ -127649,21 +127099,6 @@ entities:
21755:
- On: Open
- Off: Close
- - uid: 24818
- components:
- - type: MetaData
- name: light switch
- - type: Transform
- pos: 21.5,-14.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 1209:
- - On: On
- - Off: Off
- 1210:
- - On: On
- - Off: Off
- proto: SignAnomaly
entities:
- uid: 9496
@@ -127685,10 +127120,10 @@ entities:
parent: 60
- proto: SignArmory
entities:
- - uid: 1814
+ - uid: 7684
components:
- type: Transform
- pos: -28.5,-1.5
+ pos: -28.5,-2.5
parent: 60
- proto: SignAtmos
entities:
@@ -128529,6 +127964,11 @@ entities:
- type: Transform
pos: -58.5,10.5
parent: 60
+ - uid: 13975
+ components:
+ - type: Transform
+ pos: -31.5,1.5
+ parent: 60
- uid: 16067
components:
- type: Transform
@@ -128726,11 +128166,6 @@ entities:
- type: Transform
pos: 2.5,-25.5
parent: 60
- - uid: 4299
- components:
- - type: Transform
- pos: -39.5,-17.5
- parent: 60
- proto: SignHydro1
entities:
- uid: 3840
@@ -128740,10 +128175,10 @@ entities:
parent: 60
- proto: SignInterrogation
entities:
- - uid: 1639
+ - uid: 8957
components:
- type: Transform
- pos: -31.5,-5.5
+ pos: -32.5,-2.5
parent: 60
- proto: SignJanitor
entities:
@@ -128767,13 +128202,6 @@ entities:
rot: 3.141592653589793 rad
pos: 24.5,-25.5
parent: 60
-- proto: SignLaserMed
- entities:
- - uid: 14624
- components:
- - type: Transform
- pos: -29.5,2.5
- parent: 60
- proto: SignLawyer
entities:
- uid: 18024
@@ -128859,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
@@ -128873,11 +128306,6 @@ entities:
parent: 60
- proto: SignPrison
entities:
- - uid: 1699
- components:
- - type: Transform
- pos: -27.5,-6.5
- parent: 60
- uid: 13670
components:
- type: Transform
@@ -128942,30 +128370,25 @@ entities:
- type: Transform
pos: -56.5,25.5
parent: 60
- - uid: 24156
- components:
- - type: Transform
- pos: -33.5,-11.5
- parent: 60
- proto: SignRedFour
entities:
+ - uid: 1642
+ components:
+ - type: Transform
+ pos: -20.5,-10.5
+ parent: 60
- uid: 13856
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -44.5,21.5
parent: 60
- - uid: 24155
- components:
- - type: Transform
- pos: -33.5,-8.5
- parent: 60
- proto: SignRedOne
entities:
- - uid: 24152
+ - uid: 1817
components:
- type: Transform
- pos: -19.5,-8.5
+ pos: -32.5,-6.5
parent: 60
- proto: SignRedSix
entities:
@@ -128976,28 +128399,28 @@ entities:
parent: 60
- proto: SignRedThree
entities:
+ - uid: 1773
+ components:
+ - type: Transform
+ pos: -20.5,-6.5
+ parent: 60
- uid: 7514
components:
- type: Transform
pos: -44.5,25.5
parent: 60
- - uid: 24154
- components:
- - type: Transform
- pos: -33.5,-5.5
- parent: 60
- proto: SignRedTwo
entities:
+ - uid: 1634
+ components:
+ - type: Transform
+ pos: -32.5,-10.5
+ parent: 60
- uid: 8156
components:
- type: Transform
pos: -34.5,22.5
parent: 60
- - uid: 24153
- components:
- - type: Transform
- pos: -19.5,-11.5
- parent: 60
- proto: SignRestroom
entities:
- uid: 23970
@@ -129047,11 +128470,6 @@ entities:
- type: Transform
pos: -40.5,-1.5
parent: 60
- - uid: 11945
- components:
- - type: Transform
- pos: -22.5,-17.5
- parent: 60
- uid: 14664
components:
- type: Transform
@@ -129109,10 +128527,10 @@ entities:
parent: 60
- proto: SignSecureMedRed
entities:
- - uid: 6117
+ - uid: 3505
components:
- type: Transform
- pos: -26.5,3.5
+ pos: -26.5,2.5
parent: 60
- uid: 8174
components:
@@ -129143,19 +128561,14 @@ entities:
- type: Transform
pos: -2.5,-2.5
parent: 7536
- - uid: 9149
- components:
- - type: Transform
- pos: -21.5,-14.5
- parent: 60
- - uid: 9150
- components:
- - type: Transform
- pos: -31.5,-14.5
- parent: 60
- proto: SignSecurity
entities:
- - uid: 16164
+ - uid: 835
+ components:
+ - type: Transform
+ pos: -35.5,-17.5
+ parent: 60
+ - uid: 8527
components:
- type: Transform
pos: -17.5,-21.5
@@ -129350,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:
@@ -129514,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
@@ -129547,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
@@ -131756,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
@@ -131848,10 +131246,10 @@ entities:
parent: 60
- proto: SpawnMobMcGriff
entities:
- - uid: 4710
+ - uid: 2806
components:
- type: Transform
- pos: -27.5,-9.5
+ pos: -25.5,-11.5
parent: 60
- proto: SpawnMobMonkeyPunpun
entities:
@@ -131882,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:
@@ -131908,17 +131306,17 @@ entities:
parent: 60
- proto: SpawnMobShiva
entities:
- - uid: 19794
+ - uid: 1989
components:
- type: Transform
pos: -20.5,0.5
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:
@@ -132079,10 +131477,10 @@ entities:
parent: 60
- proto: SpawnPointHeadOfSecurity
entities:
- - uid: 1731
+ - uid: 2095
components:
- type: Transform
- pos: -20.5,1.5
+ pos: -21.5,0.5
parent: 60
- proto: SpawnPointJanitor
entities:
@@ -132340,47 +131738,57 @@ entities:
parent: 60
- proto: SpawnPointSecurityCadet
entities:
- - uid: 21069
+ - uid: 1981
components:
- type: Transform
- pos: -31.5,1.5
+ pos: -30.5,-19.5
parent: 60
- - uid: 21162
+ - uid: 1990
components:
- type: Transform
- pos: -32.5,2.5
+ pos: -25.5,-20.5
parent: 60
- - uid: 21200
+ - uid: 2007
components:
- type: Transform
- pos: -32.5,4.5
+ pos: -27.5,-20.5
parent: 60
- - uid: 21217
+ - uid: 2008
components:
- type: Transform
- pos: -30.5,1.5
+ pos: -22.5,-19.5
parent: 60
- proto: SpawnPointSecurityOfficer
entities:
- - uid: 137
+ - uid: 1987
components:
- type: Transform
- pos: -33.5,-17.5
+ pos: -27.5,-18.5
parent: 60
- - uid: 270
+ - uid: 2011
components:
- type: Transform
- pos: -33.5,-18.5
+ pos: -27.5,-17.5
parent: 60
- - uid: 7904
+ - uid: 2012
components:
- type: Transform
- pos: -33.5,-19.5
+ pos: -25.5,-18.5
parent: 60
- - uid: 7905
+ - uid: 2015
components:
- type: Transform
- pos: -33.5,-16.5
+ pos: -27.5,-16.5
+ parent: 60
+ - uid: 3773
+ components:
+ - type: Transform
+ pos: -25.5,-16.5
+ parent: 60
+ - uid: 8449
+ components:
+ - type: Transform
+ pos: -25.5,-17.5
parent: 60
- proto: SpawnPointServiceWorker
entities:
@@ -132440,10 +131848,10 @@ entities:
parent: 60
- proto: SpawnPointWarden
entities:
- - uid: 1461
+ - uid: 1980
components:
- type: Transform
- pos: -26.5,-9.5
+ pos: -26.5,-11.5
parent: 60
- proto: SpawnVendingMachineRestockFoodDrink
entities:
@@ -132498,11 +131906,6 @@ entities:
- type: Transform
pos: -6.7018414,-28.567108
parent: 60
- - uid: 6034
- components:
- - type: Transform
- pos: -33.1201,-0.48510244
- parent: 60
- proto: StairDark
entities:
- uid: 2908
@@ -132519,6 +131922,11 @@ entities:
parent: 60
- proto: Stairs
entities:
+ - uid: 11340
+ components:
+ - type: Transform
+ pos: 15.5,5.5
+ parent: 60
- uid: 23769
components:
- type: Transform
@@ -132529,11 +131937,6 @@ entities:
- type: Transform
pos: 16.5,5.5
parent: 60
- - uid: 23839
- components:
- - type: Transform
- pos: 15.5,5.5
- parent: 60
- uid: 24057
components:
- type: Transform
@@ -132552,6 +131955,14 @@ entities:
rot: 3.141592653589793 rad
pos: 17.5,-7.5
parent: 60
+- proto: StairStageDark
+ entities:
+ - uid: 8949
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,4.5
+ parent: 60
- proto: StairStageWood
entities:
- uid: 5021
@@ -132609,10 +132020,10 @@ entities:
- type: Transform
pos: 12.5,-21.5
parent: 60
- - uid: 18695
+ - uid: 10829
components:
- type: Transform
- pos: -32.5,-21.5
+ pos: -29.5,-21.5
parent: 60
- uid: 18699
components:
@@ -132634,11 +132045,6 @@ entities:
- type: Transform
pos: -39.5,26.5
parent: 60
- - uid: 23717
- components:
- - type: Transform
- pos: -35.5,-14.5
- parent: 60
- uid: 23729
components:
- type: Transform
@@ -132671,18 +132077,6 @@ entities:
- type: Transform
pos: 10.5,5.5
parent: 60
- - uid: 2714
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-8.5
- parent: 60
- - uid: 3168
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-7.5
- parent: 60
- uid: 24012
components:
- type: Transform
@@ -132726,23 +132120,51 @@ entities:
rot: 3.141592653589793 rad
pos: 26.5,-16.5
parent: 60
- - uid: 1696
+ - uid: 341
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,1.5
+ pos: -27.5,-5.5
parent: 60
- - uid: 1823
+ - uid: 352
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -25.531624,-14.186428
+ pos: -25.5,-5.5
parent: 60
- - uid: 1852
+ - uid: 363
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.484749,-14.202053
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-18.5
+ parent: 60
+ - uid: 492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-16.5
+ parent: 60
+ - uid: 707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-18.5
+ parent: 60
+ - uid: 1633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-16.5
+ parent: 60
+ - uid: 1868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-17.5
+ parent: 60
+ - uid: 1869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-17.5
parent: 60
- uid: 3165
components:
@@ -132761,12 +132183,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 20.5,-35.5
parent: 60
- - uid: 4542
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,1.5
- parent: 60
- uid: 4803
components:
- type: Transform
@@ -132778,10 +132194,21 @@ entities:
- type: Transform
pos: -44.5,-6.5
parent: 60
- - uid: 9682
+ - uid: 9015
components:
- type: Transform
- pos: -29.51366,-6.3277454
+ pos: -34.5,-14.5
+ parent: 60
+ - uid: 11384
+ components:
+ - type: Transform
+ 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:
@@ -132823,23 +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: 24150
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-20.5
- parent: 60
- - uid: 24151
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-20.5
- parent: 60
- uid: 25283
components:
- type: Transform
@@ -132848,6 +132258,24 @@ entities:
parent: 60
- proto: StoolBar
entities:
+ - uid: 1921
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-27.5
+ parent: 60
+ - uid: 1922
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,-27.5
+ parent: 60
+ - uid: 1923
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-27.5
+ parent: 60
- uid: 2224
components:
- type: Transform
@@ -133032,10 +132460,10 @@ entities:
parent: 60
- proto: Stunbaton
entities:
- - uid: 1653
+ - uid: 5429
components:
- type: Transform
- pos: -34.412434,3.3669972
+ pos: -28.512793,-20.483536
parent: 60
- proto: SubstationBasic
entities:
@@ -133107,12 +132535,12 @@ entities:
- type: Transform
pos: -5.5,-1.5
parent: 7536
- - uid: 8696
+ - uid: 8342
components:
- type: MetaData
- name: Security Sub North
+ name: Security Substation
- type: Transform
- pos: -30.5,4.5
+ pos: -34.5,2.5
parent: 60
- uid: 8940
components:
@@ -133172,6 +132600,8 @@ entities:
parent: 60
- uid: 16374
components:
+ - type: MetaData
+ name: Particle Accelerator Substation
- type: Transform
pos: 5.5,34.5
parent: 60
@@ -133240,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:
@@ -133300,10 +132730,20 @@ entities:
parent: 7536
- proto: SuitStorageSec
entities:
- - uid: 21214
+ - uid: 1740
components:
- type: Transform
- pos: -27.5,2.5
+ pos: -27.5,1.5
+ parent: 60
+ - uid: 1904
+ components:
+ - type: Transform
+ pos: -25.5,1.5
+ parent: 60
+ - uid: 1906
+ components:
+ - type: Transform
+ pos: -24.5,-1.5
parent: 60
- proto: SurveillanceCameraCommand
entities:
@@ -133718,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
@@ -133783,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:
@@ -133924,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
@@ -134148,6 +133610,38 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Smoking Area
+ - uid: 8424
+ components:
+ - type: Transform
+ pos: -27.5,7.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: North Security Hall
+ - uid: 8676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,-22.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: South Security Hall
+ - uid: 13967
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,4.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Ext Grav Gen
- uid: 17468
components:
- type: Transform
@@ -134312,17 +133806,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Theatre Backroom
- - uid: 24290
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-20.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Court Main Hall
- uid: 24293
components:
- type: Transform
@@ -134464,28 +133947,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Main Hall Toolroom
- - uid: 24321
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,4.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Main Hall Grav Gen
- - uid: 24322
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-22.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Main Hall Detective Office
- uid: 24711
components:
- type: Transform
@@ -134606,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
@@ -134782,17 +134232,6 @@ entities:
- SurveillanceCameraMedical
nameSet: True
id: Morgue
- - uid: 23825
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-4.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: BrigMed
- uid: 24280
components:
- type: Transform
@@ -134934,10 +134373,10 @@ entities:
parent: 60
- proto: SurveillanceCameraRouterSecurity
entities:
- - uid: 18781
+ - uid: 5848
components:
- type: Transform
- pos: -22.5,2.5
+ pos: -22.5,1.5
parent: 60
- proto: SurveillanceCameraRouterService
entities:
@@ -135062,28 +134501,6 @@ entities:
- SurveillanceCameraScience
nameSet: True
id: Sci RND Hall
- - uid: 24265
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,1.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Sci Hall
- - uid: 24266
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,9.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Robotics Hall
- uid: 24267
components:
- type: Transform
@@ -135130,17 +134547,6 @@ entities:
id: RD Room
- proto: SurveillanceCameraSecurity
entities:
- - uid: 1904
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-18.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Security Entrance
- uid: 4274
components:
- type: Transform
@@ -135152,28 +134558,70 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Lawyer Office
- - uid: 7811
+ - uid: 6705
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-0.5
+ pos: -21.5,-20.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Security East Entrance
+ - uid: 6779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-18.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Security West Entrance
+ - uid: 8428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-5.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Cell 1
+ - uid: 8717
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,-9.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Cell 4
+ - uid: 8956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-9.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Cell 2
+ - uid: 9011
+ components:
+ - type: Transform
+ pos: -20.5,-1.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
id: HoS Office
- - uid: 8380
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,2.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Security Break Room
- uid: 9507
components:
- type: Transform
@@ -135185,6 +134633,38 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Courthouse
+ - uid: 11339
+ components:
+ - type: Transform
+ pos: -25.5,-12.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Warden's Office
+ - uid: 11663
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,-5.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Cell 3
+ - uid: 13098
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,1.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Armory
- uid: 13658
components:
- type: Transform
@@ -135196,6 +134676,17 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Perma Brig
+ - uid: 14229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,0.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Interrogation
- uid: 21042
components:
- type: Transform
@@ -135207,92 +134698,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Perma Entrance
- - uid: 21043
- components:
- - type: Transform
- pos: -25.5,-5.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Sec North
- - uid: 21044
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,2.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Armory
- - uid: 21046
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-11.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Sec Exterior West
- - uid: 21047
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-11.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Sec Exterior East
- - uid: 21048
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-10.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Sec East
- - uid: 21049
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-10.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Sec West
- - uid: 21050
- components:
- - type: Transform
- pos: -25.5,-20.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Sec Entrance
- - uid: 21154
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-2.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Interrogation
- uid: 21180
components:
- type: Transform
@@ -135304,27 +134709,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Detective Office
- - uid: 24287
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-18.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Security Locker Room
- - uid: 24288
- components:
- - type: Transform
- pos: -24.5,-16.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Security South
- uid: 24294
components:
- type: Transform
@@ -135335,72 +134719,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Perma Brig Locker Room
- - uid: 24314
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-7.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Warden's Office
- - uid: 24315
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-9.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Cell 1
- - uid: 24316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-12.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Cell 2
- - uid: 24317
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-6.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Cell 3
- - uid: 24318
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-9.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Cell 4
- - uid: 24319
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-12.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Cell 5
- proto: SurveillanceCameraService
entities:
- uid: 21079
@@ -135675,8 +134993,25 @@ entities:
parent: 60
- type: Tag
tags: []
+- proto: SyringeInaprovaline
+ entities:
+ - uid: 14618
+ components:
+ - type: Transform
+ pos: -19.265156,-13.438609
+ parent: 60
- proto: Table
entities:
+ - uid: 10
+ components:
+ - type: Transform
+ pos: -32.5,-7.5
+ parent: 60
+ - uid: 20
+ components:
+ - type: Transform
+ pos: -31.5,-20.5
+ parent: 60
- uid: 78
components:
- type: Transform
@@ -135692,6 +135027,16 @@ entities:
- type: Transform
pos: -12.5,-14.5
parent: 60
+ - uid: 233
+ components:
+ - type: Transform
+ pos: -21.5,-18.5
+ parent: 60
+ - uid: 246
+ components:
+ - type: Transform
+ pos: -20.5,-7.5
+ parent: 60
- uid: 328
components:
- type: Transform
@@ -135707,6 +135052,11 @@ entities:
- type: Transform
pos: 0.5,17.5
parent: 60
+ - uid: 721
+ components:
+ - type: Transform
+ pos: -27.5,-9.5
+ parent: 60
- uid: 730
components:
- type: Transform
@@ -135717,6 +135067,11 @@ entities:
- type: Transform
pos: -5.5,-28.5
parent: 60
+ - uid: 764
+ components:
+ - type: Transform
+ pos: -25.5,-9.5
+ parent: 60
- uid: 825
components:
- type: Transform
@@ -135732,30 +135087,60 @@ entities:
- type: Transform
pos: -66.5,6.5
parent: 60
- - uid: 1478
+ - uid: 1549
components:
- type: Transform
- pos: -32.5,-15.5
+ pos: -26.5,-6.5
parent: 60
- - uid: 1644
+ - uid: 1550
components:
- type: Transform
- pos: -34.5,-3.5
+ pos: -27.5,-6.5
parent: 60
- - uid: 1646
+ - uid: 1572
components:
- type: Transform
- pos: -33.5,-3.5
+ pos: -25.5,-6.5
+ parent: 60
+ - uid: 1635
+ components:
+ - type: Transform
+ pos: -26.5,-20.5
parent: 60
- uid: 1678
components:
- type: Transform
pos: 9.5,-51.5
parent: 60
- - uid: 1908
+ - uid: 1822
components:
- type: Transform
- pos: -25.5,-13.5
+ pos: -32.5,-11.5
+ parent: 60
+ - uid: 1833
+ components:
+ - type: Transform
+ pos: -23.5,-10.5
+ parent: 60
+ - uid: 1914
+ components:
+ - type: Transform
+ pos: -28.5,-20.5
+ parent: 60
+ - uid: 1917
+ components:
+ - type: Transform
+ pos: -21.5,-20.5
+ parent: 60
+ - uid: 1920
+ components:
+ - type: Transform
+ pos: 19.5,-26.5
+ parent: 60
+ - uid: 1924
+ components:
+ - type: Transform
+ pos: 20.5,-26.5
parent: 60
- uid: 2076
components:
@@ -135889,12 +135274,6 @@ entities:
- type: Transform
pos: 3.5,-38.5
parent: 60
- - uid: 4754
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-2.5
- parent: 60
- uid: 4818
components:
- type: Transform
@@ -135930,11 +135309,6 @@ entities:
- type: Transform
pos: 0.5,15.5
parent: 60
- - uid: 5756
- components:
- - type: Transform
- pos: -19.5,-17.5
- parent: 60
- uid: 5771
components:
- type: Transform
@@ -135955,16 +135329,6 @@ entities:
- type: Transform
pos: 17.5,-45.5
parent: 60
- - uid: 5935
- components:
- - type: Transform
- pos: -27.5,-13.5
- parent: 60
- - uid: 5983
- components:
- - type: Transform
- pos: -26.5,-13.5
- parent: 60
- uid: 6313
components:
- type: Transform
@@ -136068,11 +135432,6 @@ entities:
- type: Transform
pos: 43.5,0.5
parent: 60
- - uid: 7787
- components:
- - type: Transform
- pos: -32.5,3.5
- parent: 60
- uid: 7788
components:
- type: Transform
@@ -136093,11 +135452,47 @@ entities:
- type: Transform
pos: -58.5,-17.5
parent: 60
+ - uid: 8438
+ components:
+ - type: Transform
+ pos: -20.5,-11.5
+ parent: 60
+ - uid: 8466
+ components:
+ - type: Transform
+ pos: -30.5,-20.5
+ parent: 60
+ - uid: 8607
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-2.5
+ parent: 60
+ - uid: 8712
+ components:
+ - type: Transform
+ pos: -32.5,-0.5
+ parent: 60
+ - uid: 8713
+ components:
+ - type: Transform
+ pos: -31.5,-19.5
+ parent: 60
+ - uid: 8720
+ components:
+ - type: Transform
+ pos: -21.5,-19.5
+ parent: 60
- uid: 8756
components:
- type: Transform
pos: -64.5,0.5
parent: 60
+ - uid: 8898
+ components:
+ - type: Transform
+ pos: -29.5,-10.5
+ parent: 60
- uid: 8909
components:
- type: Transform
@@ -136123,6 +135518,11 @@ entities:
- type: Transform
pos: -44.5,-10.5
parent: 60
+ - uid: 9159
+ components:
+ - type: Transform
+ pos: -31.5,-18.5
+ parent: 60
- uid: 9171
components:
- type: Transform
@@ -136200,6 +135600,11 @@ entities:
rot: 3.141592653589793 rad
pos: -18.5,32.5
parent: 60
+ - uid: 10369
+ components:
+ - type: Transform
+ pos: 21.5,-26.5
+ parent: 60
- uid: 10620
components:
- type: Transform
@@ -136305,6 +135710,11 @@ entities:
- type: Transform
pos: 24.5,-0.5
parent: 60
+ - uid: 13296
+ components:
+ - type: Transform
+ pos: -18.5,-13.5
+ parent: 60
- uid: 13498
components:
- type: Transform
@@ -136315,12 +135725,6 @@ entities:
- type: Transform
pos: -12.5,-13.5
parent: 60
- - uid: 13623
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-16.5
- parent: 60
- uid: 13649
components:
- type: Transform
@@ -136343,6 +135747,11 @@ entities:
- type: Transform
pos: -7.5,-11.5
parent: 60
+ - uid: 13767
+ components:
+ - type: Transform
+ pos: -32.5,0.5
+ parent: 60
- uid: 13874
components:
- type: Transform
@@ -136448,6 +135857,11 @@ entities:
- type: Transform
pos: -38.5,19.5
parent: 60
+ - uid: 17474
+ components:
+ - type: Transform
+ pos: -34.5,-15.5
+ parent: 60
- uid: 17656
components:
- type: Transform
@@ -136691,6 +136105,22 @@ entities:
- type: Transform
pos: 47.5,12.5
parent: 60
+ - uid: 23645
+ components:
+ - type: Transform
+ pos: -19.5,-13.5
+ parent: 60
+ - uid: 23648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-2.5
+ parent: 60
+ - uid: 23656
+ components:
+ - type: Transform
+ pos: -20.5,-13.5
+ parent: 60
- uid: 23665
components:
- type: Transform
@@ -136706,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
@@ -136716,11 +136152,6 @@ entities:
- type: Transform
pos: -41.5,-6.5
parent: 60
- - uid: 24101
- components:
- - type: Transform
- pos: -28.5,-20.5
- parent: 60
- uid: 24231
components:
- type: Transform
@@ -136783,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
+ rot: -1.5707963267948966 rad
+ pos: -9.5,17.5
+ parent: 60
+ - uid: 14146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -9.5,16.5
parent: 60
- - uid: 14133
+ - uid: 14148
components:
- type: Transform
- pos: -8.5,16.5
- parent: 60
- - uid: 14327
- 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
@@ -136841,6 +136300,39 @@ entities:
rot: -1.5707963267948966 rad
pos: -19.5,21.5
parent: 60
+- proto: TableFancyBlue
+ entities:
+ - uid: 5757
+ components:
+ - type: Transform
+ pos: -34.5,-11.5
+ parent: 60
+- proto: TableFancyGreen
+ entities:
+ - uid: 1840
+ components:
+ - 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
+ components:
+ - type: Transform
+ pos: -18.5,-7.5
+ parent: 60
+- proto: TableFancyPurple
+ entities:
+ - uid: 2579
+ components:
+ - type: Transform
+ pos: -18.5,-11.5
+ parent: 60
- proto: TableGlass
entities:
- uid: 123
@@ -137019,30 +136511,20 @@ entities:
- type: Transform
pos: -65.5,9.5
parent: 60
- - uid: 1175
- components:
- - type: Transform
- pos: -33.5,-0.5
- parent: 60
- uid: 1339
components:
- type: Transform
pos: 7.5,-26.5
parent: 60
- - uid: 1472
+ - uid: 1647
components:
- type: Transform
- pos: -23.5,-9.5
+ pos: -24.5,-14.5
parent: 60
- - uid: 1666
+ - uid: 1870
components:
- type: Transform
- pos: -34.5,2.5
- parent: 60
- - uid: 1793
- components:
- - type: Transform
- pos: -24.5,2.5
+ pos: -25.5,-14.5
parent: 60
- uid: 2212
components:
@@ -137154,21 +136636,16 @@ entities:
- type: Transform
pos: 15.5,-33.5
parent: 60
- - uid: 5972
+ - uid: 5983
components:
- type: Transform
- pos: -34.5,3.5
+ pos: -24.5,1.5
parent: 60
- uid: 6158
components:
- type: Transform
pos: -113.5,8.5
parent: 60
- - uid: 6541
- components:
- - type: Transform
- pos: -29.5,-9.5
- parent: 60
- uid: 6544
components:
- type: Transform
@@ -137252,21 +136729,6 @@ entities:
- type: Transform
pos: -67.5,9.5
parent: 60
- - uid: 8667
- components:
- - type: Transform
- pos: -34.5,-0.5
- parent: 60
- - uid: 9015
- components:
- - type: Transform
- pos: -25.5,-11.5
- parent: 60
- - uid: 9089
- components:
- - type: Transform
- pos: -27.5,-11.5
- parent: 60
- uid: 9132
components:
- type: Transform
@@ -137292,11 +136754,6 @@ entities:
- type: Transform
pos: 13.5,-3.5
parent: 7536
- - uid: 9152
- components:
- - type: Transform
- pos: -34.5,1.5
- parent: 60
- uid: 9164
components:
- type: Transform
@@ -137317,16 +136774,6 @@ entities:
- type: Transform
pos: -40.5,5.5
parent: 60
- - uid: 10369
- components:
- - type: Transform
- pos: -32.5,-0.5
- parent: 60
- - uid: 11127
- components:
- - type: Transform
- pos: -27.5,-7.5
- parent: 60
- uid: 12349
components:
- type: Transform
@@ -137413,16 +136860,6 @@ entities:
- type: Transform
pos: 36.5,17.5
parent: 60
- - uid: 18767
- components:
- - type: Transform
- pos: -24.5,-0.5
- parent: 60
- - uid: 18771
- components:
- - type: Transform
- pos: -24.5,0.5
- parent: 60
- uid: 18824
components:
- type: Transform
@@ -137567,15 +137004,20 @@ entities:
- type: Transform
pos: 25.5,-15.5
parent: 60
- - uid: 1871
+ - uid: 1733
components:
- type: Transform
- pos: -21.5,0.5
+ pos: -20.5,-0.5
parent: 60
- - uid: 1956
+ - uid: 1745
components:
- type: Transform
- pos: -22.5,0.5
+ pos: -21.5,-0.5
+ parent: 60
+ - uid: 1847
+ components:
+ - type: Transform
+ pos: -22.5,-0.5
parent: 60
- uid: 2022
components:
@@ -137797,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
@@ -137842,15 +137279,10 @@ entities:
- type: Transform
pos: -8.5,20.5
parent: 60
- - uid: 14125
+ - uid: 14164
components:
- type: Transform
- pos: -6.5,15.5
- parent: 60
- - uid: 14142
- components:
- - type: Transform
- pos: -11.5,22.5
+ pos: -8.5,11.5
parent: 60
- uid: 14177
components:
@@ -137867,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
@@ -138188,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
+ - uid: 16529
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,36.5
+ pos: 10.346966,35.715775
parent: 60
- - uid: 21021
+ - uid: 16536
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,35.5
+ pos: 10.721966,35.340775
parent: 60
- - uid: 21026
+ - uid: 16537
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,34.5
+ pos: 10.362591,35.340775
parent: 60
- - uid: 21066
+ - uid: 17109
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,34.5
- parent: 60
- - uid: 21339
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,35.5
- parent: 60
- - uid: 21343
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,36.5
+ pos: 10.714586,35.715775
parent: 60
- proto: Thruster
entities:
@@ -138280,11 +137691,6 @@ entities:
- type: Transform
pos: 31.5,-16.5
parent: 60
- - uid: 1503
- components:
- - type: Transform
- pos: -31.5,-2.5
- parent: 60
- uid: 3223
components:
- type: Transform
@@ -138325,6 +137731,11 @@ entities:
- type: Transform
pos: -55.5,-12.5
parent: 60
+ - uid: 8749
+ components:
+ - type: Transform
+ pos: -30.5,-2.5
+ parent: 60
- uid: 9492
components:
- type: Transform
@@ -138365,11 +137776,6 @@ entities:
- type: Transform
pos: -19.5,20.5
parent: 60
- - uid: 14631
- components:
- - type: Transform
- pos: -31.5,-4.5
- parent: 60
- uid: 16411
components:
- type: Transform
@@ -139059,6 +138465,11 @@ entities:
- type: Transform
pos: -4.5,-44.5
parent: 60
+ - uid: 1552
+ components:
+ - type: Transform
+ pos: -24.5,-6.5
+ parent: 60
- uid: 3408
components:
- type: Transform
@@ -139074,11 +138485,6 @@ entities:
- type: Transform
pos: 29.5,-22.5
parent: 60
- - uid: 6039
- components:
- - type: Transform
- pos: -24.5,-13.5
- parent: 60
- uid: 6321
components:
- type: Transform
@@ -139128,11 +138534,6 @@ entities:
parent: 60
- proto: VendingMachineCoffee
entities:
- - uid: 1549
- components:
- - type: Transform
- pos: -28.5,-18.5
- parent: 60
- uid: 6139
components:
- type: Transform
@@ -139163,6 +138564,11 @@ entities:
- type: Transform
pos: 3.5,21.5
parent: 60
+ - uid: 17295
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 60
- uid: 24356
components:
- type: Transform
@@ -139203,13 +138609,6 @@ entities:
- type: Transform
pos: 21.5,-40.5
parent: 60
-- proto: VendingMachineDonut
- entities:
- - uid: 1766
- components:
- - type: Transform
- pos: -29.5,-18.5
- parent: 60
- proto: VendingMachineEngiDrobe
entities:
- uid: 7637
@@ -139226,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:
@@ -139294,10 +138693,10 @@ entities:
parent: 60
- proto: VendingMachineRestockDonut
entities:
- - uid: 5660
+ - uid: 11369
components:
- type: Transform
- pos: -21.517738,5.3513722
+ pos: -22.478699,3.461222
parent: 60
- proto: VendingMachineRoboDrobe
entities:
@@ -139329,22 +138728,17 @@ entities:
parent: 60
- proto: VendingMachineSec
entities:
- - uid: 1634
+ - uid: 634
components:
- type: Transform
- pos: -34.5,-15.5
- parent: 60
- - uid: 9683
- components:
- - type: Transform
- pos: -31.5,-0.5
+ pos: -28.5,-14.5
parent: 60
- proto: VendingMachineSecDrobe
entities:
- - uid: 1482
+ - uid: 635
components:
- type: Transform
- pos: -34.5,-20.5
+ pos: -27.5,-14.5
parent: 60
- proto: VendingMachineSeeds
entities:
@@ -139432,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
@@ -139460,6 +138847,12 @@ entities:
parent: 60
- proto: WallmountTelescreen
entities:
+ - uid: 1910
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-19.5
+ parent: 60
- uid: 2611
components:
- type: Transform
@@ -139475,29 +138868,12 @@ entities:
- type: Transform
pos: -25.5,-28.5
parent: 60
- - uid: 5743
- components:
- - type: Transform
- pos: -18.5,-14.5
- parent: 60
- uid: 7582
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 14.5,19.5
parent: 60
- - uid: 13158
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-11.5
- parent: 60
- - uid: 13718
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-11.5
- parent: 60
- proto: WallmountTelevision
entities:
- uid: 8148
@@ -139926,32 +139302,11 @@ entities:
parent: 7536
- proto: WallReinforced
entities:
- - uid: 6
- components:
- - type: Transform
- pos: -32.5,-5.5
- parent: 60
- uid: 11
components:
- type: Transform
pos: 56.5,-4.5
parent: 60
- - uid: 12
- components:
- - type: Transform
- pos: -24.5,-6.5
- parent: 60
- - uid: 13
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-5.5
- parent: 60
- - uid: 20
- components:
- - type: Transform
- pos: -20.5,-8.5
- parent: 60
- uid: 38
components:
- type: Transform
@@ -139967,11 +139322,26 @@ entities:
- type: Transform
pos: -62.5,-17.5
parent: 60
+ - uid: 51
+ components:
+ - type: Transform
+ pos: -29.5,-17.5
+ parent: 60
- uid: 62
components:
- type: Transform
pos: 46.5,19.5
parent: 60
+ - uid: 67
+ components:
+ - type: Transform
+ pos: -35.5,-15.5
+ parent: 60
+ - uid: 77
+ components:
+ - type: Transform
+ pos: -35.5,2.5
+ parent: 60
- uid: 90
components:
- type: Transform
@@ -139982,123 +139352,15 @@ entities:
- type: Transform
pos: -29.5,15.5
parent: 60
- - uid: 116
- components:
- - type: Transform
- pos: -32.5,-11.5
- parent: 60
- - uid: 119
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-4.5
- parent: 60
- - uid: 122
- components:
- - type: Transform
- pos: -32.5,-8.5
- parent: 60
- - uid: 143
- components:
- - type: Transform
- pos: -27.5,-6.5
- parent: 60
- - uid: 150
- components:
- - type: Transform
- pos: -33.5,-5.5
- parent: 60
- - uid: 152
- components:
- - type: Transform
- pos: -31.5,-18.5
- parent: 60
- uid: 165
components:
- type: Transform
pos: 57.5,-8.5
parent: 60
- - uid: 184
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-16.5
- parent: 60
- - uid: 186
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-14.5
- parent: 60
- - uid: 187
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-15.5
- parent: 60
- - uid: 189
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-17.5
- parent: 60
- - uid: 190
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-11.5
- parent: 60
- - uid: 206
- components:
- - type: Transform
- pos: -35.5,-21.5
- parent: 60
- - uid: 207
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,2.5
- parent: 60
- - uid: 208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,3.5
- parent: 60
- - uid: 213
- components:
- - type: Transform
- pos: -20.5,-14.5
- parent: 60
- uid: 237
components:
- type: Transform
- pos: -28.5,-6.5
- parent: 60
- - uid: 239
- components:
- - type: Transform
- pos: -34.5,-5.5
- parent: 60
- - uid: 242
- components:
- - type: Transform
- pos: -18.5,-14.5
- parent: 60
- - uid: 246
- components:
- - type: Transform
- pos: -33.5,-14.5
- parent: 60
- - uid: 267
- components:
- - type: Transform
- pos: -34.5,-14.5
- parent: 60
- - uid: 278
- components:
- - type: Transform
- pos: -21.5,-14.5
+ pos: -34.5,-4.5
parent: 60
- uid: 290
components:
@@ -140110,38 +139372,11 @@ entities:
- type: Transform
pos: 57.5,-4.5
parent: 60
- - uid: 309
- components:
- - type: Transform
- pos: -32.5,-14.5
- parent: 60
- - uid: 314
- components:
- - type: Transform
- pos: -17.5,-3.5
- parent: 60
- uid: 324
components:
- type: Transform
pos: 51.5,-7.5
parent: 60
- - uid: 336
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-1.5
- parent: 60
- - uid: 341
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-0.5
- parent: 60
- - uid: 342
- components:
- - type: Transform
- pos: -19.5,-14.5
- parent: 60
- uid: 343
components:
- type: Transform
@@ -140152,12 +139387,6 @@ entities:
- type: Transform
pos: 35.5,-4.5
parent: 60
- - uid: 364
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-2.5
- parent: 60
- uid: 366
components:
- type: Transform
@@ -140243,11 +139472,6 @@ entities:
- type: Transform
pos: 3.5,-4.5
parent: 60
- - uid: 492
- components:
- - type: Transform
- pos: -24.5,-21.5
- parent: 60
- uid: 498
components:
- type: Transform
@@ -140627,10 +139851,15 @@ entities:
- type: Transform
pos: -21.5,-27.5
parent: 60
- - uid: 784
+ - uid: 774
components:
- type: Transform
- pos: -20.5,-5.5
+ pos: -23.5,1.5
+ parent: 60
+ - uid: 776
+ components:
+ - type: Transform
+ pos: -23.5,2.5
parent: 60
- uid: 809
components:
@@ -140643,26 +139872,41 @@ entities:
- type: Transform
pos: -67.5,-2.5
parent: 60
- - uid: 838
+ - uid: 845
components:
- type: Transform
- pos: -22.5,-21.5
+ pos: -29.5,-2.5
parent: 60
- - uid: 839
+ - uid: 856
components:
- type: Transform
- pos: -20.5,-11.5
+ pos: -29.5,-1.5
parent: 60
- uid: 866
components:
- type: Transform
pos: 8.5,-26.5
parent: 60
+ - uid: 937
+ components:
+ - type: Transform
+ pos: -17.5,-13.5
+ parent: 60
+ - uid: 1175
+ components:
+ - type: Transform
+ pos: -20.5,-8.5
+ parent: 60
- uid: 1207
components:
- type: Transform
pos: 2.5,-26.5
parent: 60
+ - uid: 1210
+ components:
+ - type: Transform
+ pos: -19.5,-8.5
+ parent: 60
- uid: 1232
components:
- type: Transform
@@ -140802,6 +140046,11 @@ entities:
- type: Transform
pos: 3.5,-26.5
parent: 60
+ - uid: 1386
+ components:
+ - type: Transform
+ pos: -26.5,2.5
+ parent: 60
- uid: 1387
components:
- type: Transform
@@ -140837,16 +140086,95 @@ entities:
- type: Transform
pos: 11.5,-15.5
parent: 60
+ - uid: 1448
+ components:
+ - type: Transform
+ pos: -27.5,2.5
+ parent: 60
+ - uid: 1459
+ components:
+ - type: Transform
+ pos: -28.5,2.5
+ parent: 60
+ - uid: 1461
+ components:
+ - type: Transform
+ pos: -29.5,2.5
+ parent: 60
+ - uid: 1465
+ components:
+ - type: Transform
+ pos: -24.5,2.5
+ parent: 60
+ - uid: 1466
+ components:
+ - type: Transform
+ pos: -25.5,2.5
+ parent: 60
+ - uid: 1467
+ components:
+ - type: Transform
+ pos: -26.5,3.5
+ parent: 60
+ - uid: 1468
+ components:
+ - type: Transform
+ pos: -27.5,3.5
+ parent: 60
- uid: 1470
components:
- type: Transform
pos: 7.5,-43.5
parent: 60
+ - uid: 1472
+ components:
+ - type: Transform
+ pos: -23.5,3.5
+ parent: 60
+ - uid: 1473
+ components:
+ - type: Transform
+ pos: -29.5,0.5
+ parent: 60
+ - uid: 1474
+ components:
+ - type: Transform
+ pos: -29.5,1.5
+ parent: 60
- uid: 1475
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-14.5
+ pos: -29.5,-0.5
+ parent: 60
+ - uid: 1476
+ components:
+ - type: Transform
+ pos: -29.5,3.5
+ parent: 60
+ - uid: 1481
+ components:
+ - type: Transform
+ pos: -24.5,3.5
+ parent: 60
+ - uid: 1482
+ components:
+ - type: Transform
+ pos: -28.5,3.5
+ parent: 60
+ - uid: 1484
+ components:
+ - type: Transform
+ pos: -27.5,-13.5
+ parent: 60
+ - uid: 1486
+ components:
+ - type: Transform
+ pos: -18.5,-8.5
+ parent: 60
+ - uid: 1492
+ components:
+ - type: Transform
+ pos: -25.5,-13.5
parent: 60
- uid: 1495
components:
@@ -140858,6 +140186,26 @@ entities:
- type: Transform
pos: -22.5,-25.5
parent: 60
+ - uid: 1502
+ components:
+ - type: Transform
+ pos: -23.5,-0.5
+ parent: 60
+ - uid: 1503
+ components:
+ - type: Transform
+ pos: -23.5,-2.5
+ parent: 60
+ - uid: 1504
+ components:
+ - type: Transform
+ pos: -23.5,-1.5
+ parent: 60
+ - uid: 1510
+ components:
+ - type: Transform
+ pos: -23.5,0.5
+ parent: 60
- uid: 1512
components:
- type: Transform
@@ -140883,81 +140231,46 @@ entities:
- type: Transform
pos: 8.5,11.5
parent: 60
- - uid: 1528
- components:
- - type: Transform
- pos: -22.5,-17.5
- parent: 60
- uid: 1535
components:
- type: Transform
- pos: -29.5,-0.5
+ pos: -24.5,-13.5
parent: 60
- - uid: 1547
+ - uid: 1551
components:
- type: Transform
- pos: -27.5,3.5
+ pos: -25.5,3.5
parent: 60
- - uid: 1550
+ - uid: 1556
components:
- type: Transform
- pos: -24.5,-1.5
+ pos: -23.5,-13.5
parent: 60
- - uid: 1562
+ - uid: 1557
components:
- type: Transform
- pos: -25.5,-25.5
+ pos: -23.5,-17.5
parent: 60
- uid: 1563
components:
- type: Transform
pos: -26.5,-25.5
parent: 60
- - uid: 1594
+ - uid: 1576
components:
- type: Transform
- pos: -29.5,1.5
+ pos: -24.5,-2.5
parent: 60
- - uid: 1596
+ - uid: 1577
components:
- type: Transform
- pos: -29.5,0.5
+ pos: -28.5,-2.5
parent: 60
- uid: 1604
components:
- type: Transform
pos: -30.5,-25.5
parent: 60
- - uid: 1625
- components:
- - type: Transform
- pos: -30.5,3.5
- parent: 60
- - uid: 1645
- components:
- - type: Transform
- pos: -26.5,3.5
- parent: 60
- - uid: 1648
- components:
- - type: Transform
- pos: -29.5,3.5
- parent: 60
- - uid: 1655
- components:
- - type: Transform
- pos: -18.5,-0.5
- parent: 60
- - uid: 1660
- components:
- - type: Transform
- pos: -24.5,3.5
- parent: 60
- - uid: 1664
- components:
- - type: Transform
- pos: -31.5,3.5
- parent: 60
- uid: 1667
components:
- type: Transform
@@ -140968,104 +140281,15 @@ entities:
- type: Transform
pos: -21.5,-28.5
parent: 60
- - uid: 1681
+ - uid: 1809
components:
- type: Transform
- pos: -21.5,3.5
+ pos: -20.5,-2.5
parent: 60
- - uid: 1724
+ - uid: 1866
components:
- type: Transform
- pos: -23.5,-0.5
- parent: 60
- - uid: 1727
- components:
- - type: Transform
- pos: -20.5,3.5
- parent: 60
- - uid: 1735
- components:
- - type: Transform
- pos: -19.5,3.5
- parent: 60
- - uid: 1737
- components:
- - type: Transform
- pos: -23.5,3.5
- parent: 60
- - uid: 1748
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-21.5
- parent: 60
- - uid: 1758
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-21.5
- parent: 60
- - uid: 1794
- components:
- - type: Transform
- pos: -28.5,4.5
- parent: 60
- - uid: 1798
- components:
- - type: Transform
- pos: -23.5,4.5
- parent: 60
- - uid: 1799
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,1.5
- parent: 60
- - uid: 1800
- components:
- - type: Transform
- pos: -18.5,3.5
- parent: 60
- - uid: 1824
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-5.5
- parent: 60
- - uid: 1833
- components:
- - type: Transform
- pos: -20.5,-1.5
- parent: 60
- - uid: 1863
- components:
- - type: Transform
- pos: -23.5,2.5
- parent: 60
- - uid: 1864
- components:
- - type: Transform
- pos: -28.5,3.5
- parent: 60
- - uid: 1869
- components:
- - type: Transform
- pos: -22.5,3.5
- parent: 60
- - uid: 1951
- components:
- - type: Transform
- pos: -27.5,4.5
- parent: 60
- - uid: 1953
- components:
- - type: Transform
- pos: -23.5,0.5
- parent: 60
- - uid: 1955
- components:
- - type: Transform
- pos: -25.5,4.5
+ pos: -19.5,2.5
parent: 60
- uid: 2014
components:
@@ -141092,20 +140316,10 @@ entities:
- type: Transform
pos: -30.5,-26.5
parent: 60
- - uid: 2087
- components:
- - type: Transform
- pos: -23.5,-1.5
- parent: 60
- - uid: 2088
- components:
- - type: Transform
- pos: -29.5,-1.5
- parent: 60
- uid: 2104
components:
- type: Transform
- pos: -19.5,-1.5
+ pos: -33.5,-12.5
parent: 60
- uid: 2134
components:
@@ -142453,6 +141667,11 @@ entities:
- type: Transform
pos: -33.5,-25.5
parent: 60
+ - uid: 4043
+ components:
+ - type: Transform
+ pos: -33.5,1.5
+ parent: 60
- uid: 4050
components:
- type: Transform
@@ -142508,6 +141727,11 @@ entities:
- type: Transform
pos: 37.5,-13.5
parent: 60
+ - uid: 4147
+ components:
+ - type: Transform
+ pos: -35.5,-12.5
+ parent: 60
- uid: 4153
components:
- type: Transform
@@ -142528,6 +141752,26 @@ entities:
- type: Transform
pos: -9.5,-21.5
parent: 60
+ - uid: 4202
+ components:
+ - type: Transform
+ pos: -35.5,-13.5
+ parent: 60
+ - uid: 4203
+ components:
+ - type: Transform
+ pos: -22.5,-17.5
+ parent: 60
+ - uid: 4209
+ components:
+ - type: Transform
+ pos: -17.5,-21.5
+ parent: 60
+ - uid: 4216
+ components:
+ - type: Transform
+ pos: -30.5,-17.5
+ parent: 60
- uid: 4238
components:
- type: Transform
@@ -142699,6 +141943,16 @@ entities:
- type: Transform
pos: 31.5,-14.5
parent: 60
+ - uid: 4519
+ components:
+ - type: Transform
+ pos: -29.5,-13.5
+ parent: 60
+ - uid: 4522
+ components:
+ - type: Transform
+ pos: -28.5,-13.5
+ parent: 60
- uid: 4523
components:
- type: Transform
@@ -142714,21 +141968,6 @@ entities:
- type: Transform
pos: -29.5,16.5
parent: 60
- - uid: 4552
- components:
- - type: Transform
- pos: -29.5,2.5
- parent: 60
- - uid: 4553
- components:
- - type: Transform
- pos: -25.5,3.5
- parent: 60
- - uid: 4555
- components:
- - type: Transform
- pos: -28.5,-1.5
- parent: 60
- uid: 4558
components:
- type: Transform
@@ -142744,16 +141983,6 @@ entities:
- type: Transform
pos: -32.5,16.5
parent: 60
- - uid: 4568
- components:
- - type: Transform
- pos: -24.5,4.5
- parent: 60
- - uid: 4580
- components:
- - type: Transform
- pos: -25.5,-6.5
- parent: 60
- uid: 4584
components:
- type: Transform
@@ -142805,11 +142034,6 @@ entities:
- type: Transform
pos: -60.5,-25.5
parent: 60
- - uid: 4709
- components:
- - type: Transform
- pos: -17.5,-4.5
- parent: 60
- uid: 4712
components:
- type: Transform
@@ -143033,16 +142257,16 @@ entities:
rot: 3.141592653589793 rad
pos: 6.5,-62.5
parent: 60
- - uid: 5201
- components:
- - type: Transform
- pos: -26.5,-21.5
- parent: 60
- uid: 5213
components:
- type: Transform
pos: 3.5,-78.5
parent: 60
+ - uid: 5219
+ components:
+ - type: Transform
+ pos: -22.5,2.5
+ parent: 60
- uid: 5222
components:
- type: Transform
@@ -143053,6 +142277,11 @@ entities:
- type: Transform
pos: 56.5,3.5
parent: 60
+ - uid: 5234
+ components:
+ - type: Transform
+ pos: -17.5,1.5
+ parent: 60
- uid: 5248
components:
- type: Transform
@@ -143250,6 +142479,11 @@ entities:
- type: Transform
pos: -12.5,-1.5
parent: 60
+ - uid: 5454
+ components:
+ - type: Transform
+ pos: -19.5,1.5
+ parent: 60
- uid: 5483
components:
- type: Transform
@@ -143468,11 +142702,6 @@ entities:
- type: Transform
pos: -44.5,28.5
parent: 60
- - uid: 5753
- components:
- - type: Transform
- pos: -29.5,-21.5
- parent: 60
- uid: 5767
components:
- type: Transform
@@ -143505,28 +142734,10 @@ entities:
rot: 1.5707963267948966 rad
pos: 42.5,16.5
parent: 60
- - uid: 5836
+ - uid: 5800
components:
- type: Transform
- pos: -26.5,4.5
- parent: 60
- - uid: 5840
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-21.5
- parent: 60
- - uid: 5848
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-8.5
- parent: 60
- - uid: 5849
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-3.5
+ pos: -34.5,-8.5
parent: 60
- uid: 5864
components:
@@ -143581,6 +142792,11 @@ entities:
- type: Transform
pos: 14.5,27.5
parent: 60
+ - uid: 6094
+ components:
+ - type: Transform
+ pos: -20.5,-3.5
+ parent: 60
- uid: 6160
components:
- type: Transform
@@ -143620,18 +142836,6 @@ entities:
- type: Transform
pos: -49.5,51.5
parent: 60
- - uid: 6207
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-14.5
- parent: 60
- - uid: 6208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-15.5
- parent: 60
- uid: 6209
components:
- type: Transform
@@ -143905,6 +143109,12 @@ entities:
- type: Transform
pos: 9.5,31.5
parent: 60
+ - uid: 6582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-2.5
+ parent: 60
- uid: 6608
components:
- type: Transform
@@ -143941,23 +143151,26 @@ entities:
- type: Transform
pos: -40.5,-29.5
parent: 60
- - uid: 6797
+ - uid: 6762
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-16.5
+ pos: -18.5,1.5
parent: 60
- - uid: 6798
+ - uid: 6804
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-17.5
+ pos: -35.5,-8.5
parent: 60
- uid: 6806
components:
- type: Transform
pos: 26.5,3.5
parent: 60
+ - uid: 6820
+ components:
+ - type: Transform
+ pos: -32.5,-4.5
+ parent: 60
- uid: 6826
components:
- type: Transform
@@ -144018,17 +143231,6 @@ entities:
- type: Transform
pos: -1.5,-74.5
parent: 60
- - uid: 6993
- components:
- - type: Transform
- pos: -18.5,2.5
- parent: 60
- - uid: 7006
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-11.5
- parent: 60
- uid: 7021
components:
- type: Transform
@@ -144064,12 +143266,6 @@ entities:
- type: Transform
pos: -40.5,15.5
parent: 60
- - uid: 7043
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-8.5
- parent: 60
- uid: 7046
components:
- type: Transform
@@ -144233,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
@@ -144314,32 +143505,11 @@ entities:
- type: Transform
pos: 47.5,26.5
parent: 60
- - uid: 7603
- components:
- - type: Transform
- pos: -24.5,-17.5
- parent: 60
- - uid: 7604
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,0.5
- parent: 60
- uid: 7642
components:
- type: Transform
pos: -62.5,-16.5
parent: 60
- - uid: 7656
- components:
- - type: Transform
- pos: -30.5,-21.5
- parent: 60
- - uid: 7684
- components:
- - type: Transform
- pos: -23.5,1.5
- parent: 60
- uid: 7722
components:
- type: Transform
@@ -144376,11 +143546,6 @@ entities:
- type: Transform
pos: -17.5,-38.5
parent: 60
- - uid: 7747
- components:
- - type: Transform
- pos: -18.5,-1.5
- parent: 60
- uid: 7757
components:
- type: Transform
@@ -144535,23 +143700,10 @@ entities:
- type: Transform
pos: 49.5,-48.5
parent: 60
- - uid: 7916
+ - uid: 7813
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-1.5
- parent: 60
- - uid: 7917
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-2.5
- parent: 60
- - uid: 7920
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-5.5
+ pos: -20.5,2.5
parent: 60
- uid: 7989
components:
@@ -144658,11 +143810,6 @@ entities:
- type: Transform
pos: -9.5,-78.5
parent: 60
- - uid: 8213
- components:
- - type: Transform
- pos: -21.5,-17.5
- parent: 60
- uid: 8216
components:
- type: Transform
@@ -144673,16 +143820,16 @@ entities:
- type: Transform
pos: -56.5,-4.5
parent: 60
+ - uid: 8231
+ components:
+ - type: Transform
+ pos: -18.5,-2.5
+ parent: 60
- uid: 8235
components:
- type: Transform
pos: 9.5,30.5
parent: 60
- - uid: 8243
- components:
- - type: Transform
- pos: -31.5,-20.5
- parent: 60
- uid: 8254
components:
- type: Transform
@@ -144693,17 +143840,33 @@ entities:
- type: Transform
pos: -7.5,-21.5
parent: 60
+ - uid: 8346
+ components:
+ - type: Transform
+ pos: -34.5,1.5
+ parent: 60
- uid: 8359
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 52.5,-2.5
parent: 60
+ - uid: 8380
+ components:
+ - type: Transform
+ pos: -34.5,-12.5
+ parent: 60
- uid: 8432
components:
- type: Transform
pos: -58.5,-1.5
parent: 60
+ - uid: 8440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-17.5
+ parent: 60
- uid: 8459
components:
- type: Transform
@@ -144714,6 +143877,23 @@ entities:
- type: Transform
pos: -51.5,10.5
parent: 60
+ - uid: 8477
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-21.5
+ parent: 60
+ - uid: 8480
+ components:
+ - type: Transform
+ pos: -35.5,-4.5
+ parent: 60
+ - uid: 8481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-3.5
+ parent: 60
- uid: 8490
components:
- type: Transform
@@ -144735,41 +143915,37 @@ entities:
- type: Transform
pos: -58.5,-3.5
parent: 60
- - uid: 8524
+ - uid: 8528
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-19.5
+ pos: -17.5,-8.5
parent: 60
- - uid: 8525
+ - uid: 8573
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-20.5
+ pos: -34.5,4.5
parent: 60
- - uid: 8526
+ - uid: 8602
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -30.5,-17.5
+ pos: -25.5,-21.5
parent: 60
- - uid: 8527
+ - uid: 8656
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-17.5
- parent: 60
- - uid: 8607
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-18.5
+ pos: -31.5,4.5
parent: 60
- uid: 8661
components:
- type: Transform
pos: 20.5,4.5
parent: 60
+ - uid: 8716
+ components:
+ - type: Transform
+ pos: -35.5,3.5
+ parent: 60
- uid: 8751
components:
- type: Transform
@@ -144780,26 +143956,20 @@ entities:
- type: Transform
pos: 28.5,-13.5
parent: 60
+ - uid: 8771
+ components:
+ - type: Transform
+ pos: -32.5,-8.5
+ parent: 60
- uid: 8777
components:
- type: Transform
pos: 62.5,-25.5
parent: 60
- - uid: 8883
+ - uid: 8892
components:
- type: Transform
- pos: -28.5,-17.5
- parent: 60
- - uid: 8920
- components:
- - type: Transform
- pos: -23.5,-21.5
- parent: 60
- - uid: 8922
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-21.5
+ pos: -19.5,-12.5
parent: 60
- uid: 8936
components:
@@ -144817,11 +143987,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 42.5,13.5
parent: 60
- - uid: 8956
- components:
- - type: Transform
- pos: -28.5,-21.5
- parent: 60
- uid: 8977
components:
- type: Transform
@@ -144850,11 +144015,6 @@ entities:
- type: Transform
pos: -43.5,15.5
parent: 60
- - uid: 9051
- components:
- - type: Transform
- pos: -29.5,4.5
- parent: 60
- uid: 9057
components:
- type: Transform
@@ -144870,16 +144030,26 @@ 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
pos: -39.5,-8.5
parent: 60
+ - uid: 9147
+ components:
+ - type: Transform
+ pos: -20.5,-12.5
+ parent: 60
+ - uid: 9152
+ components:
+ - type: Transform
+ pos: -33.5,-8.5
+ parent: 60
+ - uid: 9156
+ components:
+ - type: Transform
+ pos: -33.5,-4.5
+ parent: 60
- uid: 9183
components:
- type: Transform
@@ -145167,6 +144337,11 @@ entities:
- type: Transform
pos: -60.5,5.5
parent: 60
+ - uid: 10681
+ components:
+ - type: Transform
+ pos: -21.5,2.5
+ parent: 60
- uid: 10849
components:
- type: Transform
@@ -145194,21 +144369,22 @@ entities:
- type: Transform
pos: 52.5,19.5
parent: 60
+ - uid: 11362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-17.5
+ parent: 60
+ - uid: 11382
+ components:
+ - type: Transform
+ pos: -32.5,1.5
+ parent: 60
- uid: 11471
components:
- 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
@@ -146063,26 +145239,6 @@ entities:
- type: Transform
pos: -11.5,23.5
parent: 60
- - uid: 14224
- components:
- - type: Transform
- pos: -33.5,6.5
- parent: 60
- - uid: 14225
- components:
- - type: Transform
- pos: -29.5,6.5
- parent: 60
- - uid: 14226
- components:
- - type: Transform
- pos: -32.5,6.5
- parent: 60
- - uid: 14227
- components:
- - type: Transform
- pos: -35.5,6.5
- parent: 60
- uid: 14285
components:
- type: Transform
@@ -146123,11 +145279,21 @@ entities:
- type: Transform
pos: -17.5,15.5
parent: 60
+ - uid: 14454
+ components:
+ - type: Transform
+ pos: -18.5,-12.5
+ parent: 60
- uid: 14477
components:
- type: Transform
pos: -28.5,27.5
parent: 60
+ - uid: 14625
+ components:
+ - type: Transform
+ pos: -17.5,-12.5
+ parent: 60
- uid: 14627
components:
- type: Transform
@@ -146815,6 +145981,11 @@ entities:
- type: Transform
pos: -16.5,50.5
parent: 60
+ - uid: 15403
+ components:
+ - type: Transform
+ pos: -31.5,1.5
+ parent: 60
- uid: 15417
components:
- type: Transform
@@ -146847,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
@@ -146917,6 +146078,21 @@ entities:
- type: Transform
pos: 3.5,22.5
parent: 60
+ - uid: 15845
+ components:
+ - type: Transform
+ pos: -35.5,-16.5
+ parent: 60
+ - uid: 15899
+ components:
+ - type: Transform
+ pos: -35.5,-17.5
+ parent: 60
+ - uid: 15901
+ components:
+ - type: Transform
+ pos: -35.5,-21.5
+ parent: 60
- uid: 16010
components:
- type: Transform
@@ -146987,15 +146163,11 @@ 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
- pos: -30.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,3.5
parent: 60
- uid: 16115
components:
@@ -147037,6 +146209,11 @@ entities:
- type: Transform
pos: -8.5,30.5
parent: 60
+ - uid: 16145
+ components:
+ - type: Transform
+ pos: -35.5,-3.5
+ parent: 60
- uid: 16155
components:
- type: Transform
@@ -147047,20 +146224,21 @@ entities:
- type: Transform
pos: -40.5,22.5
parent: 60
- - uid: 16307
- components:
- - type: Transform
- pos: -5.5,35.5
- parent: 60
- uid: 16368
components:
- type: Transform
pos: -8.5,39.5
parent: 60
- - uid: 16392
+ - uid: 16405
components:
- type: Transform
- pos: -5.5,36.5
+ pos: 7.5,38.5
+ parent: 60
+ - uid: 16406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,35.5
parent: 60
- uid: 16413
components:
@@ -147080,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
@@ -147322,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
@@ -147417,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
@@ -147452,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
@@ -147467,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
@@ -147583,6 +146740,16 @@ entities:
- type: Transform
pos: -54.5,18.5
parent: 60
+ - uid: 17471
+ components:
+ - type: Transform
+ pos: -35.5,-1.5
+ parent: 60
+ - uid: 17473
+ components:
+ - type: Transform
+ pos: -35.5,-0.5
+ parent: 60
- uid: 17475
components:
- type: Transform
@@ -147633,6 +146800,11 @@ entities:
- type: Transform
pos: 31.5,33.5
parent: 60
+ - uid: 17672
+ components:
+ - type: Transform
+ pos: -35.5,-2.5
+ parent: 60
- uid: 17676
components:
- type: Transform
@@ -147792,6 +146964,18 @@ entities:
- type: Transform
pos: 10.5,-4.5
parent: 60
+ - uid: 17952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-21.5
+ parent: 60
+ - uid: 17954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-21.5
+ parent: 60
- uid: 17977
components:
- type: Transform
@@ -148168,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
@@ -148203,20 +147393,15 @@ entities:
- type: Transform
pos: 5.5,-10.5
parent: 60
- - uid: 18504
+ - uid: 18521
components:
- type: Transform
- pos: -31.5,6.5
+ pos: -35.5,1.5
parent: 60
- - uid: 18509
+ - uid: 18549
components:
- type: Transform
- pos: -35.5,5.5
- parent: 60
- - uid: 18510
- components:
- - type: Transform
- pos: -34.5,6.5
+ pos: -4.5,35.5
parent: 60
- uid: 18552
components:
@@ -148228,26 +147413,90 @@ 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
+ pos: -20.5,-4.5
+ parent: 60
- uid: 18677
components:
- type: Transform
pos: 18.5,-2.5
parent: 60
+ - uid: 18693
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-21.5
+ parent: 60
+ - uid: 18695
+ components:
+ - type: Transform
+ 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
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-21.5
+ parent: 60
+ - uid: 18771
+ components:
+ - type: Transform
+ pos: -32.5,-12.5
+ parent: 60
+ - uid: 18790
+ components:
+ - type: Transform
+ pos: -35.5,-14.5
+ parent: 60
+ - uid: 18791
+ components:
+ - type: Transform
+ pos: -17.5,-15.5
+ parent: 60
- uid: 18804
components:
- type: Transform
pos: -24.5,58.5
parent: 60
+ - uid: 18826
+ components:
+ - type: Transform
+ pos: -17.5,-17.5
+ parent: 60
- uid: 18829
components:
- 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
pos: -12.5,0.5
parent: 60
+ - uid: 18858
+ components:
+ - type: Transform
+ pos: -17.5,-4.5
+ parent: 60
- uid: 18862
components:
- type: Transform
@@ -148289,6 +147538,17 @@ entities:
- type: Transform
pos: 22.5,26.5
parent: 60
+ - uid: 18968
+ components:
+ - type: Transform
+ pos: -35.5,0.5
+ parent: 60
+ - uid: 18997
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-21.5
+ parent: 60
- uid: 19003
components:
- type: Transform
@@ -148334,6 +147594,11 @@ entities:
- type: Transform
pos: 52.5,16.5
parent: 60
+ - uid: 19450
+ components:
+ - type: Transform
+ pos: -19.5,-4.5
+ parent: 60
- uid: 19740
components:
- type: Transform
@@ -148448,6 +147713,11 @@ entities:
rot: 3.141592653589793 rad
pos: 25.5,6.5
parent: 60
+ - uid: 19870
+ components:
+ - type: Transform
+ pos: -32.5,4.5
+ parent: 60
- uid: 19881
components:
- type: Transform
@@ -148458,6 +147728,18 @@ entities:
- type: Transform
pos: 12.5,-78.5
parent: 60
+ - uid: 19887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-21.5
+ parent: 60
+ - uid: 20003
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-21.5
+ parent: 60
- uid: 20078
components:
- type: Transform
@@ -148503,11 +147785,39 @@ 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
pos: -6.5,-78.5
parent: 60
+ - uid: 21048
+ components:
+ - type: Transform
+ pos: -35.5,4.5
+ parent: 60
- uid: 21077
components:
- type: Transform
@@ -148653,6 +147963,11 @@ entities:
- type: Transform
pos: -13.5,-78.5
parent: 60
+ - uid: 21381
+ components:
+ - type: Transform
+ pos: -18.5,-4.5
+ parent: 60
- uid: 21425
components:
- type: Transform
@@ -148664,6 +147979,11 @@ entities:
- type: Transform
pos: -69.5,15.5
parent: 60
+ - uid: 21722
+ components:
+ - type: Transform
+ pos: -32.5,-2.5
+ parent: 60
- uid: 21797
components:
- type: Transform
@@ -149778,21 +149098,6 @@ entities:
- type: Transform
pos: 32.5,21.5
parent: 60
- - uid: 235
- components:
- - type: Transform
- pos: -33.5,-11.5
- parent: 60
- - uid: 236
- components:
- - type: Transform
- pos: -18.5,-8.5
- parent: 60
- - uid: 240
- components:
- - type: Transform
- pos: -34.5,-11.5
- parent: 60
- uid: 247
components:
- type: Transform
@@ -149808,11 +149113,6 @@ entities:
- type: Transform
pos: 56.5,-9.5
parent: 60
- - uid: 255
- components:
- - type: Transform
- pos: -33.5,-8.5
- parent: 60
- uid: 259
components:
- type: Transform
@@ -149828,16 +149128,16 @@ entities:
- type: Transform
pos: -22.5,6.5
parent: 60
+ - uid: 268
+ components:
+ - type: Transform
+ pos: -17.5,4.5
+ parent: 60
- uid: 282
components:
- type: Transform
pos: 38.5,-37.5
parent: 60
- - uid: 291
- components:
- - type: Transform
- pos: -19.5,-8.5
- parent: 60
- uid: 317
components:
- type: Transform
@@ -150129,16 +149429,6 @@ entities:
- type: Transform
pos: 31.5,-10.5
parent: 60
- - uid: 841
- components:
- - type: Transform
- pos: -34.5,-8.5
- parent: 60
- - uid: 842
- components:
- - type: Transform
- pos: -18.5,-11.5
- parent: 60
- uid: 847
components:
- type: Transform
@@ -150302,16 +149592,6 @@ entities:
- type: Transform
pos: -16.5,-27.5
parent: 60
- - uid: 1492
- components:
- - type: Transform
- pos: -19.5,-11.5
- parent: 60
- - uid: 1545
- components:
- - type: Transform
- pos: -32.5,-1.5
- parent: 60
- uid: 1593
components:
- type: Transform
@@ -150327,11 +149607,6 @@ entities:
- type: Transform
pos: 7.5,-33.5
parent: 60
- - uid: 1740
- components:
- - type: Transform
- pos: -33.5,-1.5
- parent: 60
- uid: 1795
components:
- type: Transform
@@ -150342,11 +149617,6 @@ entities:
- type: Transform
pos: 3.5,-33.5
parent: 60
- - uid: 2005
- components:
- - type: Transform
- pos: -31.5,-1.5
- parent: 60
- uid: 2037
components:
- type: Transform
@@ -151898,11 +151168,6 @@ entities:
- type: Transform
pos: -61.5,-7.5
parent: 60
- - uid: 5757
- components:
- - type: Transform
- pos: -17.5,-21.5
- parent: 60
- uid: 5783
components:
- type: Transform
@@ -151918,11 +151183,6 @@ entities:
- type: Transform
pos: 42.5,-19.5
parent: 60
- - uid: 5837
- components:
- - type: Transform
- pos: -34.5,-1.5
- parent: 60
- uid: 5874
components:
- type: Transform
@@ -152168,11 +151428,6 @@ entities:
- type: Transform
pos: 31.5,-36.5
parent: 60
- - uid: 7220
- components:
- - type: Transform
- pos: -17.5,3.5
- parent: 60
- uid: 7274
components:
- type: Transform
@@ -152487,6 +151742,16 @@ entities:
- type: Transform
pos: 29.5,-18.5
parent: 60
+ - uid: 8774
+ components:
+ - type: Transform
+ pos: -25.5,5.5
+ parent: 60
+ - uid: 8896
+ components:
+ - type: Transform
+ pos: -17.5,2.5
+ parent: 60
- uid: 8965
components:
- type: Transform
@@ -153211,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
@@ -153371,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
@@ -153411,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
@@ -153520,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
@@ -153950,11 +153205,51 @@ entities:
- type: Transform
pos: 33.5,1.5
parent: 60
+ - uid: 21016
+ components:
+ - type: Transform
+ pos: -33.5,6.5
+ parent: 60
+ - uid: 21030
+ components:
+ - type: Transform
+ pos: -29.5,6.5
+ parent: 60
+ - uid: 21043
+ components:
+ - type: Transform
+ pos: -32.5,6.5
+ parent: 60
+ - uid: 21044
+ components:
+ - type: Transform
+ pos: -35.5,6.5
+ parent: 60
+ - uid: 21046
+ components:
+ - type: Transform
+ pos: -30.5,6.5
+ parent: 60
+ - uid: 21047
+ components:
+ - type: Transform
+ pos: -31.5,6.5
+ parent: 60
+ - uid: 21049
+ components:
+ - type: Transform
+ pos: -34.5,6.5
+ parent: 60
- uid: 21060
components:
- 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
@@ -154554,34 +153849,6 @@ entities:
- type: Transform
pos: 32.5,-3.5
parent: 60
-- proto: WallWeaponCapacitorRecharger
- entities:
- - uid: 1481
- components:
- - type: Transform
- pos: -25.5,-6.5
- parent: 60
- - type: Physics
- canCollide: False
- - uid: 7225
- components:
- - type: Transform
- pos: -23.5,-1.5
- parent: 60
- - type: Physics
- canCollide: False
- - uid: 12685
- components:
- - type: Transform
- pos: -28.5,-17.5
- parent: 60
- - type: Physics
- canCollide: False
- - uid: 18642
- components:
- - type: Transform
- pos: -31.5,-1.5
- parent: 60
- proto: WardrobeBlackFilled
entities:
- uid: 3368
@@ -154659,144 +153926,26 @@ entities:
- 0
- proto: WardrobePrisonFilled
entities:
- - uid: 1643
+ - uid: 291
components:
- type: Transform
- pos: -19.5,-13.5
+ pos: -34.5,-5.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 1647
+ - uid: 8240
components:
- type: Transform
- pos: -34.5,-7.5
+ pos: -18.5,-9.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 1702
+ - uid: 8473
components:
- type: Transform
- pos: -19.5,-10.5
+ pos: -34.5,-9.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 2008
+ - uid: 8681
components:
- type: Transform
- pos: -34.5,-10.5
+ pos: -18.5,-5.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 2092
- components:
- - type: Transform
- pos: -19.5,-7.5
- parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 8896
- components:
- - type: Transform
- pos: -34.5,-13.5
- parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: WardrobeSalvageFilled
entities:
- uid: 13247
@@ -154915,6 +154064,11 @@ entities:
parent: 60
- proto: WaterCooler
entities:
+ - uid: 278
+ components:
+ - type: Transform
+ pos: -28.5,-6.5
+ parent: 60
- uid: 1382
components:
- type: Transform
@@ -154945,11 +154099,6 @@ entities:
- type: Transform
pos: 55.5,-10.5
parent: 60
- - uid: 11536
- components:
- - type: Transform
- pos: -28.5,-13.5
- parent: 60
- uid: 12272
components:
- type: Transform
@@ -154965,11 +154114,6 @@ entities:
- type: Transform
pos: -36.5,21.5
parent: 60
- - uid: 18827
- components:
- - type: Transform
- pos: -34.5,0.5
- parent: 60
- proto: WaterTankFull
entities:
- uid: 2329
@@ -154997,11 +154141,6 @@ entities:
- type: Transform
pos: -42.5,-26.5
parent: 60
- - uid: 5364
- components:
- - type: Transform
- pos: 13.5,4.5
- parent: 60
- uid: 6452
components:
- type: Transform
@@ -155017,6 +154156,11 @@ entities:
- type: Transform
pos: 41.5,-37.5
parent: 60
+ - uid: 21511
+ components:
+ - type: Transform
+ pos: 12.5,5.5
+ parent: 60
- proto: WaterTankHighCapacity
entities:
- uid: 1195
@@ -155043,22 +154187,20 @@ entities:
parent: 60
- proto: WeaponCapacitorRecharger
entities:
- - uid: 1734
+ - uid: 720
components:
- type: Transform
- pos: -34.5,3.5
+ pos: -25.5,-9.5
parent: 60
- - uid: 1944
+ - uid: 1570
components:
- type: Transform
- pos: -27.5,-13.5
+ pos: -27.5,-6.5
parent: 60
- - type: Physics
- canCollide: False
- - uid: 2132
+ - uid: 8468
components:
- type: Transform
- pos: -32.5,-15.5
+ pos: -31.5,-18.5
parent: 60
- uid: 9536
components:
@@ -155077,58 +154219,41 @@ entities:
parent: 60
- type: Physics
canCollide: False
- - uid: 18998
+ - uid: 19155
components:
- type: Transform
- pos: -18.5,-16.5
+ pos: -21.5,-18.5
parent: 60
-- proto: WeaponLaserCarbine
+- proto: WeaponDisabler
entities:
- - uid: 16447
+ - uid: 7014
components:
- type: Transform
- pos: -24.492538,-0.024230868
+ pos: -24.520348,-20.458258
parent: 60
- - uid: 17473
+ - uid: 7045
components:
- type: Transform
- pos: -24.492538,-0.21173087
+ pos: -24.442223,-20.567633
parent: 60
- - uid: 17474
+ - uid: 7048
components:
- type: Transform
- pos: -24.492538,0.21014413
- parent: 60
- - uid: 18008
- components:
- - type: Transform
- pos: -24.508163,0.66326916
- parent: 60
- - uid: 18693
- components:
- - type: Transform
- pos: -24.508163,0.41326913
- parent: 60
- - uid: 18766
- components:
- - type: Transform
- pos: -24.492538,-0.47735587
+ pos: -24.614098,-20.348883
parent: 60
- proto: WeaponRifleAk
entities:
- - uid: 24110
+ - uid: 6136
components:
- - type: MetaData
- name: Old War AKMS
- type: Transform
- pos: -24.45179,2.5628066
+ pos: -24.5,1.5
parent: 60
- proto: WeaponSubMachineGunWt550
entities:
- - uid: 21074
+ - uid: 8243
components:
- type: Transform
- pos: -21.459091,0.5840763
+ pos: -21.478931,-0.37953046
parent: 60
- proto: WeaponTurretSyndicateBroken
entities:
@@ -155224,6 +154349,11 @@ entities:
- type: Transform
pos: 56.5,-40.5
parent: 60
+ - uid: 4004
+ components:
+ - type: Transform
+ pos: -34.5,3.5
+ parent: 60
- uid: 6242
components:
- type: Transform
@@ -155249,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:
@@ -155294,13 +154424,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 42.5,-27.5
parent: 60
- - uid: 4077
- components:
- - type: MetaData
- name: Security Desk
- - type: Transform
- pos: -19.5,-17.5
- parent: 60
- uid: 6821
components:
- type: Transform
@@ -155335,6 +154458,12 @@ entities:
rot: 3.141592653589793 rad
pos: 34.5,15.5
parent: 60
+ - uid: 19886
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,4.5
+ parent: 60
- uid: 19910
components:
- type: Transform
@@ -155433,12 +154562,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -9.5,-41.5
parent: 60
- - uid: 4191
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-20.5
- parent: 60
- uid: 6181
components:
- type: Transform
@@ -155476,26 +154599,30 @@ entities:
parent: 60
- proto: WindoorSecureArmoryLocked
entities:
- - uid: 1466
+ - uid: 1625
components:
- type: MetaData
- name: Warden Desk
+ name: Riot Gear
- type: Transform
rot: -1.5707963267948966 rad
- pos: -23.5,-9.5
+ pos: -24.5,-12.5
parent: 60
- - uid: 12188
+ - uid: 4898
+ components:
+ - type: Transform
+ pos: -24.5,1.5
+ parent: 60
+ - uid: 8413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-10.5
+ parent: 60
+ - uid: 15897
components:
- - type: MetaData
- name: Warden Desk
- type: Transform
rot: 1.5707963267948966 rad
- pos: -29.5,-9.5
- parent: 60
- - uid: 24115
- components:
- - type: Transform
- pos: -24.5,2.5
+ pos: -29.5,-10.5
parent: 60
- proto: WindoorSecureAtmosphericsLocked
entities:
@@ -155512,11 +154639,62 @@ entities:
parent: 60
- proto: WindoorSecureBrigLocked
entities:
+ - uid: 234
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-10.5
+ parent: 60
+ - uid: 2584
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-7.5
+ parent: 60
+ - uid: 2602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-7.5
+ parent: 60
- uid: 4198
components:
- type: Transform
pos: -43.5,-18.5
parent: 60
+ - uid: 6709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-11.5
+ parent: 60
+ - uid: 8514
+ components:
+ - type: Transform
+ pos: -18.5,-13.5
+ parent: 60
+ - uid: 8748
+ components:
+ - type: Transform
+ pos: -19.5,-13.5
+ parent: 60
+ - uid: 8920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-10.5
+ parent: 60
+ - uid: 9176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-11.5
+ parent: 60
+ - uid: 17466
+ components:
+ - type: Transform
+ pos: -20.5,-13.5
+ parent: 60
- proto: WindoorSecureCargoLocked
entities:
- uid: 13104
@@ -155669,21 +154847,23 @@ entities:
parent: 60
- proto: WindoorSecureEngineeringLocked
entities:
- - uid: 541
- components:
- - type: Transform
- pos: 4.5,12.5
- parent: 60
- - uid: 13660
- components:
- - type: Transform
- pos: 3.5,12.5
- parent: 60
- uid: 13804
components:
- type: Transform
pos: -3.5,17.5
parent: 60
+ - uid: 21766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,12.5
+ parent: 60
+ - uid: 21767
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,12.5
+ parent: 60
- proto: WindoorSecureHeadOfPersonnelLocked
entities:
- uid: 1340
@@ -155775,61 +154955,67 @@ entities:
parent: 60
- proto: WindoorSecureSecurityLocked
entities:
- - uid: 72
- components:
- - type: MetaData
- name: Cell 2
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-12.5
- parent: 60
- - uid: 151
+ - uid: 1483
components:
- type: MetaData
name: Cell 1
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-5.5
parent: 60
- - uid: 230
+ - uid: 1485
components:
- - type: MetaData
- name: Cell 3
- type: Transform
rot: -1.5707963267948966 rad
- pos: -32.5,-6.5
+ pos: -32.5,-11.5
parent: 60
- - uid: 243
- components:
- - type: MetaData
- name: Cell 5
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-12.5
- parent: 60
- - uid: 268
+ - uid: 1487
components:
- type: MetaData
name: Cell 4
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-9.5
+ parent: 60
+ - uid: 1530
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-11.5
+ parent: 60
+ - uid: 1548
+ components:
+ - type: MetaData
+ name: Cell 3
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-5.5
+ parent: 60
+ - uid: 1555
+ components:
+ - type: MetaData
+ name: Cell 2
- type: Transform
rot: -1.5707963267948966 rad
pos: -32.5,-9.5
parent: 60
- - uid: 843
+ - uid: 1821
components:
- - type: MetaData
- name: Medical Cell
- type: Transform
rot: 1.5707963267948966 rad
- pos: -20.5,-6.5
+ pos: -21.5,-19.5
parent: 60
- - uid: 4078
+ - uid: 2100
components:
- - type: MetaData
- name: Security Desk
- type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-19.5
+ parent: 60
+ - uid: 4201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-7.5
parent: 60
- uid: 4298
components:
@@ -155837,20 +155023,17 @@ entities:
rot: 1.5707963267948966 rad
pos: -42.5,-15.5
parent: 60
- - uid: 12684
+ - uid: 5825
components:
- - type: MetaData
- name: Security Substation
- type: Transform
rot: -1.5707963267948966 rad
- pos: -31.5,5.5
+ pos: -32.5,-7.5
parent: 60
- - uid: 24149
+ - uid: 12596
components:
- - type: MetaData
- name: Brig Medbay
- type: Transform
- pos: -18.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,2.5
parent: 60
- proto: Window
entities:
@@ -155864,6 +155047,11 @@ entities:
- type: Transform
pos: -60.5,-8.5
parent: 60
+ - uid: 2132
+ components:
+ - type: Transform
+ pos: -39.5,-19.5
+ parent: 60
- uid: 2386
components:
- type: Transform
@@ -156104,6 +155292,11 @@ entities:
- type: Transform
pos: -56.5,37.5
parent: 60
+ - uid: 23717
+ components:
+ - type: Transform
+ pos: -39.5,-21.5
+ parent: 60
- proto: WindowDirectional
entities:
- uid: 3146
@@ -156164,12 +155357,6 @@ entities:
parent: 60
- proto: WindowFrostedDirectional
entities:
- - uid: 1986
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,4.5
- parent: 60
- uid: 2394
components:
- type: Transform
@@ -156355,11 +155542,29 @@ entities:
parent: 60
- proto: WindowReinforcedDirectional
entities:
+ - uid: 132
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-18.5
+ parent: 60
+ - uid: 493
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-18.5
+ parent: 60
- uid: 521
components:
- type: Transform
pos: 10.5,-9.5
parent: 60
+ - uid: 630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-18.5
+ parent: 60
- uid: 1345
components:
- type: Transform
@@ -156380,16 +155585,35 @@ entities:
- type: Transform
pos: 7.5,-24.5
parent: 60
- - uid: 1615
+ - uid: 1561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,-12.5
+ parent: 60
+ - uid: 1646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-20.5
+ parent: 60
+ - uid: 1651
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -31.5,2.5
+ pos: -23.5,-20.5
parent: 60
- - uid: 2093
+ - uid: 1864
components:
- type: Transform
- pos: -19.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,1.5
+ parent: 60
+ - uid: 1916
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-20.5
parent: 60
- uid: 2417
components:
@@ -156454,18 +155678,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -9.5,-42.5
parent: 60
- - uid: 4043
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-21.5
- parent: 60
- - uid: 4190
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-19.5
- parent: 60
- uid: 4192
components:
- type: Transform
@@ -156831,6 +156043,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -10.5,-10.5
parent: 60
+ - uid: 8296
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-18.5
+ parent: 60
- uid: 8385
components:
- type: Transform
@@ -156843,6 +156061,12 @@ entities:
rot: 3.141592653589793 rad
pos: -9.5,-10.5
parent: 60
+ - uid: 8457
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-13.5
+ parent: 60
- uid: 8493
components:
- type: Transform
@@ -156854,6 +156078,12 @@ entities:
- type: Transform
pos: -9.5,-10.5
parent: 60
+ - uid: 8509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-2.5
+ parent: 60
- uid: 8565
components:
- type: Transform
@@ -156866,6 +156096,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 46.5,-16.5
parent: 60
+ - uid: 9089
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-20.5
+ parent: 60
- uid: 10850
components:
- type: Transform
@@ -157077,6 +156313,12 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,22.5
parent: 60
+ - uid: 16450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-2.5
+ parent: 60
- uid: 16616
components:
- type: Transform
@@ -159915,12 +159157,6 @@ entities:
rot: 3.141592653589793 rad
pos: -8.5,-16.5
parent: 60
- - uid: 24112
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,2.5
- parent: 60
- uid: 24512
components:
- type: Transform
@@ -160134,6 +159370,11 @@ entities:
- type: Transform
pos: 48.5,-39.5
parent: 60
+ - uid: 6746
+ components:
+ - type: Transform
+ pos: -19.5,-2.5
+ parent: 60
- uid: 13851
components:
- type: MetaData
@@ -160153,12 +159394,74 @@ entities:
- type: Transform
pos: 18.5,-17.5
parent: 60
-- proto: Wrench
+- proto: WoodenBench
entities:
- - uid: 1556
+ - uid: 1936
components:
- type: Transform
- pos: -27.517454,-11.308732
+ rot: 3.141592653589793 rad
+ pos: -46.5,-19.5
+ parent: 60
+ - uid: 1937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -44.5,-21.5
+ parent: 60
+ - uid: 1939
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-19.5
+ parent: 60
+ - uid: 1940
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -44.5,-19.5
+ parent: 60
+ - uid: 1941
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -42.5,-21.5
+ parent: 60
+ - uid: 1943
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -41.5,-21.5
+ parent: 60
+ - uid: 1944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,-19.5
+ parent: 60
+ - uid: 1945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -41.5,-19.5
+ parent: 60
+ - uid: 1946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -42.5,-19.5
+ parent: 60
+ - uid: 8680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-21.5
+ parent: 60
+- proto: Wrench
+ entities:
+ - uid: 1968
+ components:
+ - type: Transform
+ pos: -27.476547,-12.50911
parent: 60
- uid: 9120
components:
diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml
index 1694915115..ecb16acba7 100644
--- a/Resources/Maps/box.yml
+++ b/Resources/Maps/box.yml
@@ -84,119 +84,119 @@ entities:
chunks:
-1,-1:
ind: -1,-1
- tiles: WQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAADIQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAEQAAAAAAWQAAAAABEQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAACeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAABHQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAD
+ tiles: WQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAIQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAABeQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAA
version: 6
0,0:
ind: 0,0
- tiles: WQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAADWQAAAAADWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAFAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAFAAAAAAA
+ tiles: WQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAABWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAWQAAAAACWQAAAAABeQAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAAFAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAFAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACEQAAAAAAEQAAAAAAHQAAAAACHQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADEQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAABEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAACEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAD
+ tiles: eQAAAAAAHQAAAAABEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAD
version: 6
-1,0:
ind: -1,0
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADWQAAAAADWQAAAAADWQAAAAABHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAABWQAAAAACWQAAAAAAWQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAdgAAAAADdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAAD
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAADWQAAAAABWQAAAAACWQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAdgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADWQAAAAAD
version: 6
1,-1:
ind: 1,-1
- tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAWQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAWQAAAAABeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAACdgAAAAACBQAAAAACBQAAAAABdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACBQAAAAACBQAAAAABdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAABWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAADdgAAAAACdgAAAAADdgAAAAADdgAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAABWQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAWQAAAAACeQAAAAAAdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAdgAAAAAAdgAAAAABdgAAAAADWQAAAAAAeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAB
+ tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAAAWQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAACWQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAACdgAAAAADBQAAAAADBQAAAAACdgAAAAACdgAAAAABdgAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAWQAAAAADeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAAABQAAAAACBQAAAAACdgAAAAACdgAAAAABdgAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAABWQAAAAADeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADWQAAAAADeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAWQAAAAABeQAAAAAAdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAWQAAAAADeQAAAAAAdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: WQAAAAABWQAAAAACWQAAAAABeQAAAAAAaQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAB
+ tiles: WQAAAAACWQAAAAADWQAAAAABeQAAAAAAaQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAB
version: 6
-2,-2:
ind: -2,-2
- tiles: WQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAABdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAABdgAAAAABdgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAaQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAAB
+ tiles: WQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADdgAAAAAAdgAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAABdgAAAAADdgAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADdgAAAAADdgAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAaQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAAD
version: 6
1,-2:
ind: 1,-2
- tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAADWQAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAADeQAAAAAAbAAAAAABbAAAAAADbAAAAAABWQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAABWQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABbAAAAAABHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAADWQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAHQAAAAADHQAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAABbAAAAAABHQAAAAACHQAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABbAAAAAADHQAAAAADHQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAbAAAAAABHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAAB
+ tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAABbAAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAABWQAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAADWQAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAACWQAAAAACeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAABWQAAAAABeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACbAAAAAACHQAAAAABHQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAABWQAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABHQAAAAABHQAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAbAAAAAADHQAAAAACHQAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAABbAAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAAAbAAAAAACHQAAAAAAHQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADbAAAAAADHQAAAAABHQAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAB
version: 6
0,-2:
ind: 0,-2
- tiles: WQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAABHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABHQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACdgAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAABHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAALAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACLAAAAAAALAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABHQAAAAABHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAADHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAACHQAAAAADLQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAD
+ tiles: WQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACdgAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAWQAAAAACWQAAAAABHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACHQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAdgAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAACEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAACHQAAAAABEQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAACHQAAAAACEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAALAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAACHQAAAAADEQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADLAAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADEQAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADHQAAAAACHQAAAAADEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAWQAAAAADWQAAAAAC
version: 6
-1,-2:
ind: -1,-2
- tiles: WQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAACdgAAAAACdgAAAAABdgAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADBgAAAAAAWQAAAAADeQAAAAAAHQAAAAAAdgAAAAACdgAAAAADdgAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABBgAAAAAAWQAAAAAAeQAAAAAAHQAAAAADdgAAAAABdgAAAAABdgAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAABgAAAAAAWQAAAAADeQAAAAAAHQAAAAAAdgAAAAADdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACBgAAAAAAWQAAAAADeQAAAAAAHQAAAAACdgAAAAADdgAAAAADdgAAAAABHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADHQAAAAABdgAAAAADdgAAAAADdgAAAAADHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAHQAAAAABdgAAAAADdgAAAAABdgAAAAACHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAABLQAAAAABHQAAAAAALQAAAAAC
+ tiles: WQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAACWQAAAAABeQAAAAAAHQAAAAADdgAAAAACdgAAAAADdgAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADWQAAAAABBgAAAAAAWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADdgAAAAACHQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAWQAAAAACBgAAAAAAWQAAAAADeQAAAAAAHQAAAAADdgAAAAACdgAAAAADdgAAAAADHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACBgAAAAAAWQAAAAABeQAAAAAAHQAAAAADdgAAAAADdgAAAAABdgAAAAABHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADWQAAAAADBgAAAAAAWQAAAAACeQAAAAAAHQAAAAADdgAAAAACdgAAAAACdgAAAAADHQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABHQAAAAACdgAAAAABdgAAAAAAdgAAAAABHQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAABdgAAAAABHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAHQAAAAADHQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAHQAAAAADEQAAAAAA
version: 6
-2,0:
ind: -2,0
- tiles: HQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAACeQAAAAAAaAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: HQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABeQAAAAAAaAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-2,-3:
ind: -2,-3
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABWQAAAAACWQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAC
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAADAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAABWQAAAAABAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAB
version: 6
0,-3:
ind: 0,-3
- tiles: WQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAdwAAAAADdgAAAAADdgAAAAACdgAAAAACdwAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAdwAAAAAAdgAAAAABdgAAAAAAdgAAAAACdwAAAAABaQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAAA
+ tiles: WQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADeQAAAAAAdwAAAAACdgAAAAACdgAAAAABdgAAAAADdwAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAdwAAAAACdgAAAAACdgAAAAACdgAAAAACdwAAAAAAaQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAAB
version: 6
1,-3:
ind: 1,-3
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAACbAAAAAACWQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAaQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAWQAAAAADWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAHQAAAAADHQAAAAABbAAAAAAAHQAAAAACHQAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAAAbAAAAAACWQAAAAACWQAAAAAAWQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABbAAAAAADHQAAAAABHQAAAAACeQAAAAAAUgAAAAADLAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAWQAAAAAAWQAAAAACWQAAAAAB
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAABWQAAAAACLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAADeQAAAAAAaQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACWQAAAAAAWQAAAAACWQAAAAACaQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAbAAAAAACHQAAAAACHQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAADbAAAAAABWQAAAAADWQAAAAADWQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAACbAAAAAADHQAAAAAAHQAAAAACeQAAAAAAUgAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACWQAAAAABWQAAAAAAWQAAAAAB
version: 6
1,0:
ind: 1,0
- tiles: eQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAACDgAAAAABDgAAAAADDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAADgAAAAABDgAAAAADDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWQAAAAABDgAAAAABDgAAAAABDgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAADgAAAAACDgAAAAABDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAAQAAAAACAQAAAAAAAQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAQAAAAAAAQAAAAACAQAAAAAEWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAAQAAAAAEAQAAAAABAQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABAQAAAAAAAQAAAAADAQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAQAAAAABAQAAAAADAQAAAAAFWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAAQAAAAACAQAAAAAAAQAAAAABFAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABAQAAAAADAQAAAAAFAQAAAAADFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAQAAAAADAQAAAAABAQAAAAAFFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAAQAAAAABAQAAAAAEAQAAAAAE
+ tiles: eQAAAAAAeQAAAAAADgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAACDgAAAAADDgAAAAADDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAADgAAAAABDgAAAAABDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWQAAAAAADgAAAAABDgAAAAAADgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAADgAAAAADDgAAAAACDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAABAQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAQAAAAAFAQAAAAAEAQAAAAAFWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAQAAAAADAQAAAAAAAQAAAAAFWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADAQAAAAADAQAAAAAEAQAAAAAFWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEFAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABAQAAAAAAAQAAAAADAQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAAQAAAAACAQAAAAAEAQAAAAAFFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADdgAAAAADdgAAAAADdgAAAAADdgAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAC
+ tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: eQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA
+ tiles: eQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADUAAAAAAAUAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAACUAAAAAAAUAAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAEAQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAACdgAAAAADHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAADdgAAAAABHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAABAQAAAAAAAQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAACdgAAAAADHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,2:
ind: -1,2
- tiles: HQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACeQAAAAAAWQAAAAABLAAAAAAALAAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAHQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADWQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAABdgAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAACQAAAAABHQAAAAABCQAAAAAB
+ tiles: HQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAACLAAAAAAALAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAACQAAAAAAHQAAAAADCQAAAAAB
version: 6
0,2:
ind: 0,2
- tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABHQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAADWQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAABeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADCQAAAAACHQAAAAAACQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAAACQAAAAADHQAAAAABCQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,2:
ind: 1,2
- tiles: WQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: AQAAAAABAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA
+ tiles: AQAAAAAAAQAAAAAFAQAAAAAFAQAAAAAFAQAAAAABAQAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: PgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAACQAAAAADCQAAAAADCQAAAAABOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAFAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAACAQAAAAADAQAAAAAFAQAAAAAFAQAAAAADAQAAAAAFeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAEAQAAAAADAQAAAAACAQAAAAADAQAAAAAAAQAAAAAFWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAABAQAAAAAFAQAAAAAEAQAAAAAAAQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAQAAAAAFAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAACAQAAAAAFAQAAAAACAQAAAAAEAQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAABAQAAAAACAQAAAAAFAQAAAAACAQAAAAAFAQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA
+ tiles: PgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAACQAAAAAACQAAAAABCQAAAAADOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAACAQAAAAAAAQAAAAAFAQAAAAAFAQAAAAAAAQAAAAAFeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAADAQAAAAACAQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAFAQAAAAAEAQAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAQAAAAAEWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAADAQAAAAAEAQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAADAQAAAAACAQAAAAADAQAAAAAFAQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAAAQAAAAACAQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAAFAQAAAAABAQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACdgAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACdgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAABdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA
version: 6
-2,2:
ind: -2,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAA
version: 6
0,3:
ind: 0,3
- tiles: HQAAAAADHQAAAAACCQAAAAACHQAAAAAACQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HQAAAAACHQAAAAADCQAAAAADHQAAAAADCQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: eQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACEQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABEQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAEQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABEQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACEQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAADEQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAdgAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAADeQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAAdgAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,1:
ind: -4,1
@@ -204,15 +204,15 @@ entities:
version: 6
-4,0:
ind: -4,0
- tiles: WQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA
+ tiles: WQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA
version: 6
-5,0:
ind: -5,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAA
version: 6
-5,1:
ind: -5,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,0:
ind: -6,0
@@ -220,23 +220,23 @@ entities:
version: 6
-5,-1:
ind: -5,-1
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAB
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAB
version: 6
-4,-1:
ind: -4,-1
- tiles: WQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAD
+ tiles: WQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAB
version: 6
-3,-1:
ind: -3,-1
- tiles: eQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAHQAAAAADeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAD
+ tiles: eQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABHQAAAAABeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADHQAAAAACeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAD
version: 6
3,0:
ind: 3,0
- tiles: OgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAADPgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAABdgAAAAADeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUgAAAAACUgAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: OgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADPgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAUgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: eQAAAAAAbAAAAAABbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADHQAAAAAAHQAAAAACWQAAAAADeQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAACeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAdgAAAAADXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAACWQAAAAACHQAAAAACWQAAAAADWQAAAAACHQAAAAABHQAAAAACWQAAAAACHQAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACWQAAAAACHQAAAAACWQAAAAAAWQAAAAACHQAAAAAAHQAAAAAAWQAAAAADeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADWQAAAAADHQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACCQAAAAAACQAAAAACCQAAAAADOgAAAAAAOgAAAAAAOgAAAAAA
+ tiles: eQAAAAAAbAAAAAABbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAACXAAAAAABXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAACHQAAAAADHQAAAAACWQAAAAAAeQAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACdgAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACWQAAAAAAHQAAAAACWQAAAAADWQAAAAADHQAAAAABHQAAAAAAWQAAAAADHQAAAAABXAAAAAABXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAADWQAAAAABHQAAAAADWQAAAAAAWQAAAAACHQAAAAACHQAAAAACWQAAAAADeQAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAAAWQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACCQAAAAADCQAAAAAACQAAAAABOgAAAAAAOgAAAAAAOgAAAAAA
version: 6
3,1:
ind: 3,1
@@ -244,11 +244,11 @@ entities:
version: 6
4,1:
ind: 4,1
- tiles: HQAAAAADeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HQAAAAADeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,0:
ind: 4,0
- tiles: PgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAADCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: PgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
5,0:
ind: 5,0
@@ -256,11 +256,11 @@ entities:
version: 6
3,-1:
ind: 3,-1
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACWQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACWQAAAAABHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAACWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAACWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAdgAAAAADdgAAAAADdgAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAABdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAADeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAADWQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAABWQAAAAACHQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAACdgAAAAADWQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAACeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAPgAAAAAA
version: 6
-5,-2:
ind: -5,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-4,-2:
ind: -4,-2
@@ -268,7 +268,7 @@ entities:
version: 6
-3,-2:
ind: -3,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAdgAAAAABdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAB
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAdgAAAAADdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAA
version: 6
-3,-3:
ind: -3,-3
@@ -276,75 +276,75 @@ entities:
version: 6
-2,-4:
ind: -2,-4
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADQAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAQAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAagAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACHQAAAAAAEQAAAAAAHQAAAAADHQAAAAACEQAAAAAAeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACHQAAAAABHQAAAAABEQAAAAAAHQAAAAACHQAAAAABEQAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABHQAAAAABHQAAAAACEQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACHQAAAAACHQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABHQAAAAAAHQAAAAACEQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADHQAAAAABHQAAAAADEQAAAAAAHQAAAAABHQAAAAABEQAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAADHQAAAAACEQAAAAAAHQAAAAADHQAAAAACEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAC
+ tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAagAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAABHQAAAAABEQAAAAAAHQAAAAACHQAAAAACEQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACHQAAAAADHQAAAAADEQAAAAAAHQAAAAADHQAAAAADEQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAHQAAAAACEQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABHQAAAAACHQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAABEQAAAAAAHQAAAAAAHQAAAAABEQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADHQAAAAADHQAAAAAAEQAAAAAAHQAAAAADHQAAAAACEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAB
version: 6
0,-4:
ind: 0,-4
- tiles: eQAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAABYgAAAAADYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAACYgAAAAACYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACYgAAAAABYgAAAAADYgAAAAADYgAAAAACYgAAAAAAYgAAAAABYgAAAAADYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAADYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAACeQAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAACYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADYgAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAACeQAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
2,-3:
ind: 2,-3
- tiles: eQAAAAAAaQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADbAAAAAABbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAADeQAAAAAAXAAAAAADXAAAAAACXAAAAAADXAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAABXAAAAAADXAAAAAADXAAAAAACXAAAAAABWQAAAAADWQAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAACWQAAAAAAWQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAAD
+ tiles: eQAAAAAAaQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAACbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAABbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAADbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAABeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAABWQAAAAABWQAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAABeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAACeQAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAACWQAAAAABWQAAAAABeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAADWQAAAAAAWQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACeQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAADbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAACaQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABaQAAAAAAaQAAAAAAHQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAACbAAAAAABbAAAAAACbAAAAAACbAAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAHQAAAAADaQAAAAAAHQAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAaQAAAAAAHQAAAAADaQAAAAAAHQAAAAAC
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAACbAAAAAACbAAAAAADeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAABbAAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABaQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAADaQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABaQAAAAAAaQAAAAAAHQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAADbAAAAAACbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAHQAAAAABaQAAAAAAHQAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABaQAAAAAAHQAAAAADaQAAAAAAHQAAAAAA
version: 6
2,-4:
ind: 2,-4
- tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAADbAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAADeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAABeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAbAAAAAABbAAAAAADbAAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABCQAAAAAACQAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAACeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAbAAAAAACbAAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABCQAAAAACCQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAHQAAAAABHQAAAAABHQAAAAABaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAADHQAAAAABHQAAAAADbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAWQAAAAAAWQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABeQAAAAAAWQAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAHQAAAAABHQAAAAADaQAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAHQAAAAACHQAAAAACaQAAAAAAbAAAAAACbAAAAAABbAAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAbAAAAAACbAAAAAABbAAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAbAAAAAADbAAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAWQAAAAADEQAAAAAAHQAAAAAAWQAAAAAAbAAAAAACbAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACWQAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAWQAAAAABEQAAAAAAHQAAAAADWQAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAADHQAAAAACaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAACHQAAAAACbAAAAAACbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAWQAAAAAAWQAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACeQAAAAAAWQAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADHQAAAAABHQAAAAABaQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADHQAAAAACHQAAAAAAaQAAAAAAbAAAAAADbAAAAAABbAAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAbAAAAAAAbAAAAAACbAAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABeQAAAAAAbAAAAAABbAAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAWQAAAAADEQAAAAAAHQAAAAAAWQAAAAADbAAAAAACbAAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADWQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAWQAAAAACEQAAAAAAHQAAAAACWQAAAAADbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAA
version: 6
4,-2:
ind: 4,-2
- tiles: eQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACWQAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABbAAAAAACbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAABeQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADWQAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACbAAAAAABbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
5,-2:
ind: 5,-2
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAACbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-3:
ind: 4,-3
- tiles: eQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABaAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAaAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAaAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAbAAAAAAAbAAAAAACbAAAAAACaAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAADWQAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAABbAAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADaAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACaAAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAACaAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADbAAAAAAAbAAAAAACbAAAAAADaAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAWQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAABbAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAACWQAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAA
version: 6
3,-3:
ind: 3,-3
- tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAEeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABEwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAABWQAAAAAAbAAAAAACWQAAAAABbAAAAAACWQAAAAADbAAAAAAAWQAAAAACbAAAAAABWQAAAAACbAAAAAAAWQAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABHQAAAAAAWQAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAADbAAAAAABeQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAEeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADEwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAAAWQAAAAABbAAAAAAAWQAAAAABbAAAAAABWQAAAAAAbAAAAAADWQAAAAADbAAAAAAAWQAAAAACbAAAAAACWQAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAABWQAAAAAAHQAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
4,-4:
ind: 4,-4
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAPAAAAAAAYAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAPAAAAAAAYAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
5,-3:
ind: 5,-3
- tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,-4:
ind: 5,-4
- tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,-4:
ind: 3,-4
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAC
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAG
version: 6
4,-1:
ind: 4,-1
- tiles: WQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAAAHQAAAAABHQAAAAABHQAAAAAAWQAAAAABWQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAACWQAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAABHQAAAAADWQAAAAABWQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADHQAAAAABHQAAAAADHQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABHQAAAAAAHQAAAAADHQAAAAABWQAAAAABWQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABHQAAAAABHQAAAAACHQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: WQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAABWQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAACHQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADWQAAAAACWQAAAAACHQAAAAAAHQAAAAABHQAAAAAAWQAAAAACWQAAAAABHQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABHQAAAAABHQAAAAADHQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADHQAAAAADHQAAAAACHQAAAAACWQAAAAABWQAAAAADHQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAHQAAAAACHQAAAAADHQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
5,-1:
ind: 5,-1
- tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-5:
ind: 4,-5
- tiles: AAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA
+ tiles: AAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA
version: 6
5,-5:
ind: 5,-5
@@ -352,15 +352,15 @@ entities:
version: 6
3,-5:
ind: 3,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
+ tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
version: 6
2,-5:
ind: 2,-5
- tiles: eQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
1,-5:
ind: 1,-5
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA
version: 6
1,-4:
ind: 1,-4
@@ -368,11 +368,11 @@ entities:
version: 6
-1,-5:
ind: -1,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAagAAAAACagAAAAADagAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAADagAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAD
version: 6
-2,-5:
ind: -2,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAAwAAAAACAwAAAAABeQAAAAAAWQAAAAAAWQAAAAAADgAAAAAADgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAAwAAAAADAwAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAADAwAAAAADAwAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAADgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADHQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABDgAAAAABDgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABHQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-3,-4:
ind: -3,-4
@@ -380,47 +380,31 @@ entities:
version: 6
-3,-5:
ind: -3,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA
version: 6
0,-5:
ind: 0,-5
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAA
version: 6
0,-6:
ind: 0,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-1,-6:
ind: -1,-6
- tiles: AAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
1,-6:
ind: 1,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAACAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA
version: 6
2,-6:
ind: 2,-6
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 2,-7:
- ind: 2,-7
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 2,-8:
- ind: 2,-8
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 1,-7:
- ind: 1,-7
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABHQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAA
- version: 6
- 1,-8:
- ind: 1,-8
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,-6:
ind: -2,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAA
version: 6
-4,-4:
ind: -4,-4
@@ -444,7 +428,7 @@ entities:
version: 6
-1,3:
ind: -1,3
- tiles: dgAAAAABdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAACQAAAAABHQAAAAABCQAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAACQAAAAABHQAAAAACCQAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,3:
ind: 1,3
@@ -480,7 +464,7 @@ entities:
version: 6
3,-6:
ind: 3,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAA
version: 6
-6,-1:
ind: -6,-1
@@ -529,6 +513,7 @@ entities:
3453: 2,-62
3454: 2,-61
3455: 2,-60
+ 6265: 74,-42
- node:
color: '#FFFFFFFF'
id: Arrows
@@ -538,7 +523,6 @@ entities:
2556: 6,-49
2557: 7,-49
2595: 3,-45
- 2625: -6,-76
2690: 4,-76
3014: 80,-54
3015: 79,-54
@@ -554,6 +538,7 @@ entities:
3249: -23,-27
3456: 8,-64
3457: 8,-63
+ 6264: 74,-40
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -664,7 +649,6 @@ entities:
3079: 34,-49
3080: 37,-50
3081: 37,-49
- 3082: 18,-84
3129: 34,-44
3130: 35,-44
3131: 34,-39
@@ -714,17 +698,27 @@ entities:
color: '#FFFFFFFF'
id: BotGreyscale
decals:
- 1060: -1,-22
- 1061: -2,-21
- 1062: -1,-20
- 1063: 0,-21
- 1079: -2,-14
- 1080: 0,-14
3570: -16,36
3571: -15,36
3572: -14,36
3573: -13,36
3574: -12,36
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: BotGreyscale
+ decals:
+ 6021: 0,-12
+ 6022: -2,-12
+ 6072: 15,-77
+ 6073: 21,-77
+ 6074: 20,-79
+ 6075: 16,-79
+ 6219: -25,-76
+ 6230: -26,-76
+ 6231: -25,-75
+ 6232: -24,-76
+ 6233: -25,-77
- node:
color: '#FFFFFFFF'
id: BotLeft
@@ -742,11 +736,13 @@ entities:
3591: 1,37
3592: 2,37
- node:
+ zIndex: 1
color: '#FFFFFFFF'
id: BotLeftGreyscale
decals:
- 1058: 0,-20
- 1059: -2,-22
+ 6020: 0,-22
+ 6228: -24,-75
+ 6229: -26,-77
- node:
color: '#DE3A3A96'
id: BotRight
@@ -761,11 +757,13 @@ entities:
2455: 10,-42
2456: 10,-41
- node:
+ zIndex: 1
color: '#FFFFFFFF'
id: BotRightGreyscale
decals:
- 1056: 0,-22
- 1057: -2,-20
+ 6019: -2,-22
+ 6226: -26,-75
+ 6227: -24,-77
- node:
color: '#FFFFFFFF'
id: Box
@@ -777,23 +775,12 @@ entities:
decals:
2460: 14,-42
2461: 14,-41
- - node:
- color: '#334E6DC8'
- id: BrickBoxOverlay
- decals:
- 3685: 11,-69
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkBox
- decals:
- 2062: -3,-17
- 2063: -1,-17
- 2064: 1,-17
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSe
decals:
2963: 11,-35
+ 5987: -24,-12
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerNe
@@ -820,6 +807,8 @@ entities:
decals:
2964: 11,-34
3576: -2,37
+ 5988: -24,-11
+ 5989: -24,-10
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineN
@@ -858,6 +847,7 @@ entities:
3578: 0,38
3579: 1,38
3580: 2,38
+ 5990: -25,-12
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineW
@@ -1132,6 +1122,12 @@ entities:
2573: 7,-41
2635: -10,-73
2853: 9,-66
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 6238: -20,-73
- node:
color: '#FFEBAE96'
id: BrickTileWhiteCornerNe
@@ -1215,8 +1211,13 @@ entities:
decals:
2267: -6,-58
2580: 7,-45
- 2617: -5,-76
2650: -10,-77
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 6239: -20,-78
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerSw
@@ -1305,6 +1306,12 @@ entities:
1529: -11,3
2122: -10,-15
2274: -6,-52
+ - node:
+ zIndex: 1
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineE
+ decals:
+ 6018: -7,-17
- node:
color: '#5299B43A'
id: BrickTileWhiteLineE
@@ -1369,6 +1376,15 @@ entities:
2877: 9,-69
2878: 9,-68
2879: 9,-67
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: BrickTileWhiteLineE
+ decals:
+ 6234: -20,-74
+ 6235: -20,-75
+ 6236: -20,-76
+ 6237: -20,-77
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineN
@@ -1574,8 +1590,6 @@ entities:
2608: 8,-76
2609: 6,-76
2610: 7,-76
- 2623: -6,-76
- 2624: -7,-76
2633: -20,-71
2634: -21,-71
2651: -11,-77
@@ -1595,6 +1609,12 @@ entities:
2873: 5,-71
2874: 6,-71
2875: 7,-71
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: BrickTileWhiteLineS
+ decals:
+ 6240: -21,-78
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineW
@@ -1610,12 +1630,7 @@ entities:
1525: -14,7
1526: -13,2
1527: -13,3
- 1826: -19,-13
- 1827: -19,-12
- 1828: -19,-11
- 1829: -19,-10
2275: -8,-52
- 2327: -19,-14
- node:
color: '#5299B43A'
id: BrickTileWhiteLineW
@@ -1898,34 +1913,21 @@ entities:
3362: 49,1
3363: 48,1
- node:
+ zIndex: 1
color: '#334E6DC8'
id: CheckerNWSE
decals:
- 505: -25,-14
- 506: -25,-13
- 507: -25,-12
- 508: -25,-11
- 509: -25,-10
- 510: -24,-10
- 511: -23,-10
- 512: -22,-10
- 513: -21,-10
- 514: -21,-11
- 515: -21,-12
- 516: -21,-13
- 517: -21,-14
- 518: -22,-14
- 519: -23,-14
- 520: -24,-14
- 521: -24,-13
- 522: -24,-12
- 523: -24,-11
- 524: -23,-11
- 525: -22,-11
- 526: -22,-12
- 527: -22,-13
- 528: -23,-13
- 529: -23,-12
+ 6049: -2,-27
+ 6050: -2,-28
+ 6051: 0,-28
+ 6052: 0,-27
+ 6053: -1,-27
+ 6054: -1,-28
+ 6055: -3,-25
+ 6056: -2,-25
+ 6057: -1,-25
+ 6058: 0,-25
+ 6059: 1,-25
- node:
color: '#474F52FF'
id: CheckerNWSE
@@ -2258,9 +2260,6 @@ entities:
226: -31,-16
227: -32,-16
228: -33,-16
- 229: -33,-17
- 230: -32,-17
- 231: -31,-17
232: -30,-17
242: -32,-18
258: -6,-46
@@ -2344,6 +2343,8 @@ entities:
5755: -59,-18
5756: -60,-18
5757: -60,-19
+ 6252: -33,-17
+ 6253: -31,-18
- node:
cleanable: True
zIndex: 5
@@ -2828,6 +2829,19 @@ entities:
5948: -27,-69
5949: -25,-66
5950: -23,-67
+ 5991: -22,-11
+ 6076: 21,-76
+ 6077: 18,-74
+ 6078: 14,-76
+ 6079: 15,-80
+ 6080: 22,-80
+ 6136: 13,-57
+ 6137: 14,-57
+ 6138: 12,-54
+ 6254: -32,-16
+ 6255: -32,-17
+ 6256: -33,-14
+ 6257: -36,-19
- node:
cleanable: True
zIndex: 5
@@ -2844,6 +2858,10 @@ entities:
4905: 68,-16
5235: 18,-34
5820: -2,-36
+ 6258: -34,-22
+ 6259: -25,-26
+ 6260: -27,-26
+ 6261: -28,-24
- node:
cleanable: True
zIndex: 5
@@ -2854,7 +2872,6 @@ entities:
244: -32,-15
245: -33,-15
246: -33,-16
- 247: -33,-17
248: -33,-14
249: -33,-13
250: -32,-13
@@ -3220,10 +3237,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
@@ -3601,17 +3616,9 @@ entities:
5790: -21,-7
5791: -18,-11
5792: -18,-12
- 5793: -19,-14
5794: -21,-17
5795: -23,-17
5796: -22,-19
- 5797: -22,-14
- 5798: -25,-13
- 5799: -25,-12
- 5800: -24,-10
- 5801: -21,-11
- 5802: -22,-11
- 5803: -24,-13
5804: -24,-19
5805: -26,-20
5806: -21,-26
@@ -3641,6 +3648,51 @@ entities:
5954: -25,-71
5955: -27,-67
5956: -33,-66
+ 5992: -23,-11
+ 5993: -21,-11
+ 5994: -21,-12
+ 5995: -22,-12
+ 5996: -24,-12
+ 5997: -24,-13
+ 5998: -18,-13
+ 5999: -19,-13
+ 6000: -19,-12
+ 6001: -17,-11
+ 6002: -18,-10
+ 6081: 20,-77
+ 6082: 20,-79
+ 6083: 15,-79
+ 6084: 13,-76
+ 6085: 13,-75
+ 6086: 13,-74
+ 6087: 14,-74
+ 6088: 15,-74
+ 6089: 15,-75
+ 6090: 21,-75
+ 6091: 21,-74
+ 6092: 20,-74
+ 6093: 19,-74
+ 6094: 19,-75
+ 6095: 24,-75
+ 6096: 25,-77
+ 6097: 25,-78
+ 6098: 25,-79
+ 6120: 16,-84
+ 6121: 16,-86
+ 6122: 20,-86
+ 6123: 20,-85
+ 6124: 25,-84
+ 6125: 26,-85
+ 6126: 26,-81
+ 6127: 26,-80
+ 6128: 25,-79
+ 6129: 26,-73
+ 6130: 26,-68
+ 6131: 26,-65
+ 6132: 21,-61
+ 6133: 15,-58
+ 6134: 17,-57
+ 6135: 19,-57
- node:
cleanable: True
zIndex: 5
@@ -3654,7 +3706,6 @@ entities:
237: -31,-14
238: -30,-15
239: -31,-16
- 240: -32,-17
241: -32,-18
453: -22,-25
454: -26,-31
@@ -4127,9 +4178,7 @@ entities:
5909: 19,-79
5910: 19,-75
5911: 16,-73
- 5912: 14,-75
5913: 15,-79
- 5914: 17,-75
5915: 16,-74
5916: 20,-75
5917: 25,-75
@@ -4162,6 +4211,53 @@ entities:
5944: 40,-60
5945: 35,-67
5946: 5,-67
+ 6003: -23,-12
+ 6004: -28,-12
+ 6005: -28,-11
+ 6006: -24,-20
+ 6007: -22,-17
+ 6008: -22,-26
+ 6009: -22,-25
+ 6010: -20,-25
+ 6011: -16,-27
+ 6012: -16,-25
+ 6099: 8,-76
+ 6100: 4,-74
+ 6101: -3,-71
+ 6102: -2,-71
+ 6103: 16,-78
+ 6104: 12,-79
+ 6105: 12,-80
+ 6106: 22,-79
+ 6107: 23,-79
+ 6108: 23,-78
+ 6109: 22,-78
+ 6110: 22,-77
+ 6111: 23,-77
+ 6112: 22,-76
+ 6113: 20,-80
+ 6114: 19,-81
+ 6115: 20,-82
+ 6116: 20,-84
+ 6117: 18,-84
+ 6118: 18,-85
+ 6119: 18,-86
+ 6139: 17,-47
+ 6140: 18,-45
+ 6141: 19,-45
+ 6142: 19,-46
+ 6143: 18,-47
+ 6144: 13,-44
+ 6145: 12,-43
+ 6146: 12,-44
+ 6147: 0,-44
+ 6148: -3,-55
+ 6149: -5,-76
+ 6150: -6,-76
+ 6151: -7,-76
+ 6152: -2,-69
+ 6153: -3,-70
+ 6154: -14,-77
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -4275,6 +4371,13 @@ entities:
433: -30,-31
1147: -21,-31
1148: -22,-31
+ - node:
+ zIndex: 1
+ color: '#A4610696'
+ id: FullTileOverlayGreyscale
+ decals:
+ 6248: -32,-18
+ 6249: -31,-18
- node:
color: '#D381C934'
id: FullTileOverlayGreyscale
@@ -4322,6 +4425,14 @@ entities:
2882: -1,-72
2883: -2,-72
2884: -3,-72
+ - node:
+ zIndex: 2
+ color: '#EFB34196'
+ id: FullTileOverlayGreyscale
+ decals:
+ 6242: -20,-79
+ 6243: -20,-80
+ 6244: -20,-72
- node:
color: '#EFCF412B'
id: FullTileOverlayGreyscale
@@ -4639,6 +4750,13 @@ entities:
decals:
3171: -33,-32
3172: -32,-32
+ - node:
+ zIndex: 1
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 6250: -32,-17
+ 6251: -31,-17
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale180
@@ -4768,11 +4886,16 @@ entities:
980: 34,-55
981: 34,-54
982: 34,-53
+ - node:
+ zIndex: 1
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 6017: -19,-12
- node:
color: '#A4610696'
id: HalfTileOverlayGreyscale270
decals:
- 190: -33,-17
191: -33,-16
192: -33,-15
193: -33,-14
@@ -4828,12 +4951,6 @@ entities:
id: HalfTileOverlayGreyscale270
decals:
2223: -5,-6
- - node:
- color: '#EFB34196'
- id: HalfTileOverlayGreyscale270
- decals:
- 1064: -3,-25
- 1067: -2,-27
- node:
color: '#334E6D5A'
id: HalfTileOverlayGreyscale90
@@ -4963,7 +5080,6 @@ entities:
color: '#EFB34196'
id: HalfTileOverlayGreyscale90
decals:
- 1068: 0,-27
2584: 4,-43
2585: 4,-42
2691: -3,-70
@@ -5015,9 +5131,6 @@ entities:
536: 11,-8
537: 12,-8
538: 13,-8
- 2017: 27,-90
- 2018: 27,-91
- 2023: 31,-91
- node:
zIndex: 1
color: '#334E6DC8'
@@ -5083,6 +5196,13 @@ entities:
id: QuarterTileOverlayGreyscale
decals:
818: 63,-27
+ - node:
+ zIndex: 1
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 6015: -19,-11
+ 6016: -19,-10
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale
@@ -5354,10 +5474,6 @@ entities:
553: -16,-14
554: -16,-13
555: -16,-12
- 2021: 29,-94
- 2022: 29,-93
- 2026: 25,-94
- 2027: 25,-93
2052: -9,-10
2053: -8,-10
2054: -7,-10
@@ -5462,7 +5578,6 @@ entities:
color: '#A4610696'
id: QuarterTileOverlayGreyscale180
decals:
- 188: -31,-17
428: -27,-28
3199: -36,-23
3200: -35,-23
@@ -5615,10 +5730,6 @@ entities:
561: 14,-18
562: 14,-17
563: 14,-16
- 2019: 27,-94
- 2020: 27,-93
- 2024: 31,-94
- 2025: 31,-93
2043: 7,-10
2044: 6,-10
2045: 5,-10
@@ -5726,6 +5837,13 @@ entities:
734: 38,-57
3135: 7,-32
3393: 8,-32
+ - node:
+ zIndex: 1
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 6013: -19,-14
+ 6014: -19,-13
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale270
@@ -5940,9 +6058,6 @@ entities:
814: -9,-30
815: -8,-30
816: -7,-30
- 2015: 29,-90
- 2016: 29,-91
- 2028: 25,-91
- node:
zIndex: 1
color: '#334E6DC8'
@@ -6448,8 +6563,6 @@ entities:
id: ThreeQuarterTileOverlayGreyscale180
decals:
343: -1,23
- 1065: 0,-28
- 3412: 1,-26
- node:
color: '#5299B43A'
id: ThreeQuarterTileOverlayGreyscale270
@@ -6475,6 +6588,12 @@ entities:
decals:
429: -30,-39
3167: -34,-32
+ - node:
+ zIndex: 1
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 6245: -33,-17
- node:
color: '#D381C934'
id: ThreeQuarterTileOverlayGreyscale270
@@ -6503,8 +6622,6 @@ entities:
id: ThreeQuarterTileOverlayGreyscale270
decals:
344: -3,23
- 1066: -2,-28
- 3413: -3,-26
- node:
color: '#334E6D5A'
id: ThreeQuarterTileOverlayGreyscale90
@@ -6594,7 +6711,6 @@ entities:
68: 87,-39
69: 87,-58
70: 81,-67
- 71: 62,-72
72: 49,-67
73: -43,-49
74: -43,-50
@@ -6615,6 +6731,18 @@ entities:
1014: -69,-17
1015: -76,-17
1016: -67,-10
+ 5980: 62,-71
+ 5981: 61,-73
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnBox
+ decals:
+ 6045: -2,-21
+ 6046: 0,-21
+ 6047: -1,-29
+ 6048: -1,-26
+ 6217: -21,-73
- node:
color: '#FFFFFFFF'
id: WarnCornerGreyscaleNE
@@ -6635,11 +6763,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
@@ -6652,6 +6782,7 @@ entities:
decals:
1615: 21,-21
3517: 25,17
+ 6268: 68,-47
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallGreyscaleNE
@@ -6659,12 +6790,36 @@ entities:
1282: 44,-21
1283: 46,-21
2953: 42,-21
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallGreyscaleNE
+ decals:
+ 6024: -3,-17
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallGreyscaleNW
decals:
1280: 46,-21
1281: 44,-21
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallGreyscaleNW
+ decals:
+ 6023: 1,-17
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallGreyscaleSE
+ decals:
+ 6033: -3,-13
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallGreyscaleSW
+ decals:
+ 6034: 1,-13
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNE
@@ -6672,7 +6827,6 @@ entities:
1073: -3,-30
1665: 51,-21
2314: -73,-4
- 3093: 13,-77
3512: -13,-63
- node:
zIndex: 1
@@ -6680,6 +6834,8 @@ entities:
id: WarnCornerSmallNE
decals:
5975: -27,-70
+ 6071: 16,-78
+ 6177: -21,-84
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNW
@@ -6692,7 +6848,6 @@ entities:
2291: -79,-6
2312: -69,-4
2313: -76,-4
- 3092: 17,-77
3511: -11,-63
- node:
zIndex: 1
@@ -6700,6 +6855,8 @@ entities:
id: WarnCornerSmallNW
decals:
5974: -23,-70
+ 6068: 20,-78
+ 6174: -19,-84
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSE
@@ -6707,15 +6864,15 @@ entities:
422: -41,-10
1536: -13,6
1663: 51,-17
- 2041: 22,-90
2317: -73,8
- 3091: 13,-75
- node:
zIndex: 1
color: '#FFFFFFFF'
id: WarnCornerSmallSE
decals:
5977: -27,-66
+ 6070: 16,-76
+ 6176: -21,-82
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSW
@@ -6725,12 +6882,10 @@ entities:
710: 72,-19
1535: -11,6
1662: 55,-17
- 2042: 34,-90
2287: -79,10
2290: -79,-4
2315: -69,8
2316: -76,8
- 3094: 17,-75
3699: -38,-10
- node:
zIndex: 1
@@ -6738,6 +6893,8 @@ entities:
id: WarnCornerSmallSW
decals:
5976: -23,-66
+ 6069: 20,-76
+ 6175: -19,-82
- node:
color: '#FFFFFFFF'
id: WarnEndGreyscaleN
@@ -6766,7 +6923,6 @@ entities:
661: 74,-36
662: 74,-35
663: 74,-34
- 725: 78,-47
726: 78,-48
762: 41,-54
763: 41,-53
@@ -6782,12 +6938,8 @@ entities:
1689: 60,-32
1690: 60,-31
1691: 60,-30
- 2038: 22,-93
- 2039: 22,-92
- 2040: 22,-91
2476: 8,-49
2477: 8,-48
- 3089: 13,-76
3510: -13,-62
3514: 23,18
- node:
@@ -6798,11 +6950,12 @@ entities:
5962: -27,-69
5963: -27,-68
5964: -27,-67
+ 6066: 16,-77
+ 6170: -21,-83
- node:
color: '#334E6DC8'
id: WarnLineGreyscaleE
decals:
- 1332: -7,-17
1510: -9,8
- node:
color: '#52B4E996'
@@ -6823,6 +6976,16 @@ entities:
2659: -10,-75
2949: 42,-20
2950: 42,-19
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineGreyscaleE
+ decals:
+ 6030: -3,-16
+ 6031: -3,-15
+ 6032: -3,-14
+ 6043: -4,-25
+ 6044: -4,-24
- node:
color: '#334E6DC8'
id: WarnLineGreyscaleN
@@ -6890,6 +7053,15 @@ entities:
2889: 3,-66
2890: 8,-66
2952: 41,-18
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineGreyscaleN
+ decals:
+ 6025: -2,-17
+ 6026: 0,-17
+ 6262: 8,1
+ 6263: 9,1
- node:
color: '#334E6DC8'
id: WarnLineGreyscaleS
@@ -6964,6 +7136,14 @@ entities:
3349: 44,-21
3350: 43,-21
3351: 42,-21
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineGreyscaleS
+ decals:
+ 6155: -7,-76
+ 6156: -6,-76
+ 6157: -5,-76
- node:
color: '#EFB34196'
id: WarnLineGreyscaleW
@@ -6986,6 +7166,16 @@ entities:
2658: -8,-75
2896: -8,-69
2897: -8,-70
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineGreyscaleW
+ decals:
+ 6027: 1,-16
+ 6028: 1,-15
+ 6029: 1,-14
+ 6040: 2,-25
+ 6041: 2,-24
- node:
color: '#FFFFFFFF'
id: WarnLineN
@@ -7016,7 +7206,6 @@ entities:
694: 59,-24
705: 70,-19
706: 71,-19
- 715: 68,-47
755: 39,-54
756: 41,-54
881: 69,-19
@@ -7035,12 +7224,6 @@ entities:
1659: 52,-17
1660: 53,-17
1661: 54,-17
- 2032: 33,-90
- 2033: 32,-90
- 2034: 31,-90
- 2035: 25,-90
- 2036: 24,-90
- 2037: 23,-90
2298: -70,8
2299: -71,8
2300: -72,8
@@ -7058,9 +7241,6 @@ entities:
2602: -1,-79
2603: -2,-79
2604: -3,-79
- 3086: 14,-75
- 3087: 15,-75
- 3088: 16,-75
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -7069,6 +7249,10 @@ entities:
5968: -26,-66
5969: -25,-66
5970: -24,-66
+ 6063: 17,-76
+ 6064: 18,-76
+ 6065: 19,-76
+ 6173: -20,-82
- node:
color: '#FFFFFFFF'
id: WarnLineS
@@ -7099,8 +7283,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
@@ -7116,9 +7298,6 @@ entities:
1651: 55,-19
1652: 55,-18
1682: 53,-27
- 2029: 34,-93
- 2030: 34,-92
- 2031: 34,-91
2261: -8,-54
2286: -79,9
2289: -79,-5
@@ -7128,7 +7307,6 @@ entities:
2393: -30,-39
2474: 8,-49
2475: 8,-48
- 3090: 17,-76
3509: -11,-62
3518: 25,18
3567: -11,34
@@ -7143,6 +7321,18 @@ entities:
5965: -23,-69
5966: -23,-68
5967: -23,-67
+ 6067: 20,-77
+ 6172: -19,-83
+ 6213: -21,-77
+ 6214: -21,-76
+ 6215: -21,-75
+ 6216: -21,-74
+ - node:
+ zIndex: 2
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 6241: -21,-78
- node:
color: '#FFFFFFFF'
id: WarnLineW
@@ -7166,7 +7356,6 @@ entities:
703: 62,-20
704: 63,-20
709: 70,-22
- 714: 68,-45
716: 70,-47
717: 71,-47
718: 72,-47
@@ -7175,7 +7364,6 @@ entities:
721: 75,-47
722: 76,-47
723: 77,-47
- 724: 78,-47
757: 41,-52
758: 39,-52
880: 69,-22
@@ -7185,11 +7373,6 @@ entities:
1069: -1,-30
1070: 0,-30
1071: -2,-30
- 1074: 0,-25
- 1075: -1,-25
- 1076: -2,-25
- 1077: -3,-25
- 1078: 1,-25
1152: 76,-26
1153: 77,-26
1154: 78,-26
@@ -7213,15 +7396,6 @@ entities:
2471: 11,-46
2472: 10,-46
2473: 9,-46
- 2819: 13,-84
- 2820: 14,-84
- 2821: 15,-84
- 2822: 16,-84
- 2823: 17,-84
- 2824: 18,-84
- 3083: 14,-77
- 3084: 15,-77
- 3085: 16,-77
3508: -12,-63
- node:
zIndex: 1
@@ -7231,6 +7405,10 @@ entities:
5971: -26,-70
5972: -25,-70
5973: -24,-70
+ 6060: 17,-78
+ 6061: 18,-78
+ 6062: 19,-78
+ 6171: -20,-84
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNe
@@ -7423,32 +7601,32 @@ entities:
-3,0:
0: 48113
-2,-4:
- 0: 48051
+ 0: 13235
-2,-3:
- 0: 63259
+ 0: 63251
-2,-2:
0: 52479
-2,-1:
0: 65520
-2,-5:
- 0: 62259
- 1: 128
+ 0: 13107
+ 1: 8
-1,-4:
- 0: 65520
+ 0: 62395
-1,-3:
- 0: 61695
+ 0: 61455
-1,-2:
0: 65535
-1,-1:
0: 65520
-1,-5:
- 0: 61678
+ 0: 65294
-1,0:
0: 56831
0,-4:
- 0: 65520
+ 0: 30438
0,-3:
- 0: 61567
+ 0: 61447
0,-2:
0: 65535
0,-1:
@@ -7510,16 +7688,16 @@ entities:
4,3:
0: 48027
0,-5:
- 0: 61491
- 1: 136
+ 0: 30467
+ 1: 8
1,-3:
0: 65358
1,-2:
0: 4607
- 1,-5:
- 0: 65256
1,-4:
0: 61166
+ 1,-5:
+ 0: 61160
2,-4:
0: 65535
2,-3:
@@ -7772,22 +7950,23 @@ entities:
-1,-8:
0: 36863
0,-7:
- 0: 13073
- 1: 12
+ 0: 28689
+ 1: 128
-1,-7:
- 0: 61132
+ 0: 63692
+ 1: 16
0,-6:
- 0: 13104
- 1: 34816
+ 0: 13111
+ 1: 32768
-1,-6:
- 0: 61152
+ 0: 61167
1,-8:
0: 4095
1,-7:
- 1: 4369
+ 1: 4368
0: 52428
1,-6:
- 1: 1
+ 1: 17
0: 52416
1,-9:
0: 12287
@@ -7809,10 +7988,10 @@ entities:
0: 8191
-2,-7:
0: 4369
- 1: 17472
+ 1: 17536
-2,-6:
0: 4369
- 1: 1092
+ 1: 35840
-1,-9:
0: 52701
-8,1:
@@ -7833,8 +8012,9 @@ entities:
0: 4369
1: 4
-9,3:
- 0: 4623
+ 0: 15
1: 9472
+ 3: 4608
-8,4:
0: 13073
-7,1:
@@ -8191,7 +8371,7 @@ entities:
0: 61166
-1,10:
1: 60928
- 0: 192
+ 3: 192
-1,11:
1: 14
0: 57344
@@ -8200,7 +8380,7 @@ entities:
0,9:
0: 65535
0,10:
- 0: 240
+ 3: 240
1: 65280
0,11:
1: 15
@@ -8211,10 +8391,12 @@ entities:
0: 56829
1,10:
1: 53504
- 0: 8396
+ 3: 8192
+ 0: 204
1,11:
1: 19549
- 0: 4130
+ 0: 4096
+ 3: 34
1,12:
0: 4369
1: 17476
@@ -8282,7 +8464,7 @@ entities:
1: 34952
10,7:
1: 33249
- 0: 3598
+ 3: 3598
9,8:
1: 34952
10,3:
@@ -8294,10 +8476,10 @@ entities:
11,6:
1: 40844
11,7:
- 0: 771
+ 3: 771
1: 35064
10,8:
- 0: 3598
+ 3: 3598
1: 33249
11,5:
0: 34956
@@ -8313,10 +8495,10 @@ entities:
1: 20293
12,7:
1: 33008
- 0: 3598
+ 3: 3598
11,8:
1: 35064
- 0: 771
+ 3: 771
9,0:
2: 15
0: 65296
@@ -8461,7 +8643,8 @@ entities:
0: 65520
-10,4:
1: 3
- 0: 60936
+ 3: 8
+ 0: 60928
-13,4:
0: 61432
-12,5:
@@ -8471,24 +8654,24 @@ entities:
-12,6:
1: 44868
-12,7:
- 0: 3855
+ 3: 3855
1: 16624
-13,7:
1: 17652
- 0: 257
+ 3: 257
-12,8:
- 0: 3855
+ 3: 3855
1: 16624
-11,5:
0: 4095
-11,6:
1: 18210
-11,7:
- 0: 257
+ 3: 257
1: 18006
-11,8:
1: 18006
- 0: 257
+ 3: 257
-10,5:
0: 61182
-10,6:
@@ -8519,19 +8702,19 @@ entities:
-14,6:
1: 44953
-14,7:
- 0: 3855
+ 3: 3855
1: 16624
-14,3:
0: 65535
-14,8:
- 0: 3855
+ 3: 3855
1: 16624
-13,6:
1: 57600
0: 1092
-13,8:
1: 17652
- 0: 257
+ 3: 257
-16,0:
0: 55807
-16,-1:
@@ -8767,10 +8950,10 @@ entities:
13,6:
1: 40866
13,7:
- 0: 771
+ 3: 771
1: 36024
12,8:
- 0: 3598
+ 3: 3598
1: 33008
14,5:
0: 3
@@ -8779,7 +8962,7 @@ entities:
1: 310
13,8:
1: 36028
- 0: 771
+ 3: 771
15,5:
1: 304
16,4:
@@ -8816,18 +8999,19 @@ entities:
18,2:
0: 65327
18,3:
- 0: 4111
+ 0: 15
1: 3840
+ 3: 4096
19,0:
1: 61455
19,1:
1: 36608
19,2:
1: 742
- 0: 8192
+ 3: 8192
19,3:
1: 226
- 0: 32768
+ 3: 32768
20,0:
1: 61715
20,1:
@@ -9360,7 +9544,7 @@ entities:
20,-15:
0: 24020
20,-14:
- 0: 54612
+ 0: 56660
20,-13:
0: 17885
21,-12:
@@ -9371,7 +9555,7 @@ entities:
21,-10:
0: 29040
21,-13:
- 0: 28791
+ 0: 28774
22,-12:
1: 4096
22,-11:
@@ -9385,7 +9569,7 @@ entities:
21,-15:
0: 32631
21,-14:
- 0: 30471
+ 0: 30215
21,-16:
1: 236
22,-16:
@@ -9461,7 +9645,7 @@ entities:
0: 15
16,-20:
1: 16
- 0: 52454
+ 3: 52454
15,-20:
1: 44719
16,-19:
@@ -9473,63 +9657,63 @@ entities:
0: 40960
1: 954
15,-18:
- 0: 142
- 1: 21248
+ 0: 234
+ 1: 20480
16,-21:
- 0: 16384
+ 3: 16384
1: 15
17,-20:
1: 144
- 0: 14178
+ 3: 14178
17,-19:
- 0: 1
+ 3: 1
1: 63744
17,-18:
1: 153
0: 61440
17,-21:
1: 8207
- 0: 16384
+ 3: 16384
18,-20:
1: 9910
- 0: 2056
+ 3: 2056
18,-19:
1: 13990
- 0: 2056
+ 3: 2056
18,-18:
0: 4096
1: 17486
18,-21:
1: 9895
- 0: 2056
+ 3: 2056
19,-20:
- 0: 3855
+ 3: 3855
1: 8432
19,-19:
- 0: 3855
+ 3: 3855
1: 20720
19,-18:
1: 17487
19,-21:
1: 8432
- 0: 3855
+ 3: 3855
20,-20:
1: 8946
- 0: 2056
+ 3: 2056
20,-19:
1: 8946
- 0: 2056
+ 3: 2056
20,-18:
1: 1839
0: 8192
20,-21:
1: 8946
- 0: 2056
+ 3: 2056
21,-20:
- 0: 3855
+ 3: 3855
1: 8432
21,-19:
- 0: 3855
+ 3: 3855
1: 20720
21,-18:
1: 21855
@@ -9537,7 +9721,7 @@ entities:
1: 5621
21,-21:
1: 8432
- 0: 3855
+ 3: 3855
22,-20:
1: 8995
22,-19:
@@ -9547,9 +9731,9 @@ entities:
22,-21:
1: 8995
12,-20:
- 1: 12288
+ 1: 12847
11,-20:
- 1: 61440
+ 1: 61455
12,-19:
1: 12002
11,-19:
@@ -9559,56 +9743,51 @@ entities:
0: 8192
11,-18:
0: 61695
- 13,-19:
- 1: 18417
13,-20:
1: 4401
- 13,-21:
- 1: 4369
+ 13,-19:
+ 1: 18417
13,-18:
1: 17476
14,-20:
- 0: 16
+ 3: 16
14,-19:
1: 241
15,-21:
1: 43694
8,-20:
- 0: 3
- 1: 68
+ 1: 13119
+ 8,-21:
+ 1: 12561
7,-20:
- 0: 63
- 1: 28672
- 8,-19:
1: 65535
+ 8,-19:
+ 1: 16179
7,-19:
1: 65535
8,-18:
- 1: 15
0: 35840
- 7,-18:
- 1: 8751
- 8,-21:
- 1: 16632
+ 9,-20:
+ 1: 4383
9,-19:
1: 6033
9,-18:
- 1: 1
0: 62912
- 9,-20:
- 1: 34944
+ 1: 1
+ 9,-21:
+ 1: 4371
10,-20:
- 1: 45056
- 0: 16384
+ 1: 58447
10,-19:
0: 65024
- 1: 5
+ 1: 7
10,-18:
0: 63743
4,-20:
0: 65535
4,-21:
- 0: 65287
+ 0: 65348
+ 3: 1
3,-20:
0: 65535
4,-19:
@@ -9616,41 +9795,44 @@ entities:
3,-19:
0: 65535
4,-18:
- 0: 61695
+ 0: 255
+ 1: 53248
3,-18:
- 0: 57599
+ 0: 255
+ 1: 49152
4,-17:
6: 30576
+ 5,-20:
+ 0: 65535
5,-19:
- 0: 65520
+ 0: 65535
5,-18:
- 0: 61455
+ 0: 15
+ 1: 57344
5,-17:
0: 30576
- 5,-20:
- 1: 58444
5,-21:
- 3: 57344
- 1: 3780
+ 0: 65280
+ 3: 15
6,-20:
- 1: 28675
- 0: 32904
+ 0: 30583
6,-19:
- 0: 30576
+ 0: 30583
6,-18:
- 0: 21575
+ 0: 17479
+ 1: 4096
6,-21:
- 3: 12288
- 0: 34824
- 1: 768
+ 0: 30502
6,-17:
0: 17476
6,-16:
0: 62532
+ 7,-18:
+ 1: 12834
7,-17:
1: 29766
7,-21:
- 0: 13203
+ 1: 61440
7,-16:
1: 1
0: 4096
@@ -9678,8 +9860,7 @@ entities:
-4,-19:
0: 65535
-5,-20:
- 0: 49152
- 1: 273
+ 0: 53521
-5,-19:
0: 56797
-4,-18:
@@ -9687,40 +9868,44 @@ entities:
-5,-18:
0: 57297
-3,-20:
- 0: 28748
+ 0: 28672
+ 3: 76
-3,-19:
0: 30711
-3,-18:
0: 65520
-3,-21:
- 0: 52430
+ 3: 52428
+ 1: 4353
-2,-20:
- 0: 3855
+ 3: 15
+ 0: 3840
-2,-19:
0: 65535
-2,-18:
0: 65535
-2,-21:
- 0: 61696
+ 3: 61696
1: 248
-1,-18:
0: 65534
-1,-21:
- 0: 61440
+ 3: 61440
1: 2296
-1,-20:
0: 61152
-1,-19:
0: 36590
0,-20:
- 0: 15160
+ 0: 15152
+ 3: 8
0,-19:
0: 35771
0,-18:
0: 65531
-8,-19:
0: 13104
- 1: 34824
+ 1: 34952
-9,-19:
0: 34944
1: 8192
@@ -9729,42 +9914,47 @@ entities:
1: 3072
-9,-17:
0: 36608
+ -7,-20:
+ 1: 15
+ 0: 60928
+ -7,-21:
+ 1: 13107
+ -7,-19:
+ 0: 3822
-7,-18:
0: 61166
- -7,-19:
- 1: 1024
+ -6,-20:
+ 1: 7
+ 0: 47872
+ -6,-19:
+ 0: 35771
-6,-18:
0: 49075
- -6,-19:
- 0: 36044
- -6,-20:
- 1: 1092
- -6,-21:
- 1: 17476
-5,-21:
- 1: 4369
+ 0: 4915
+ 1: 34824
-12,-16:
1: 20292
- 0: 10
+ 3: 10
-13,-16:
1: 20292
- 0: 10
+ 3: 10
-12,-15:
1: 17732
- 0: 43690
+ 3: 43690
-13,-15:
- 0: 43690
+ 3: 43690
1: 17732
-12,-14:
1: 49060
- 0: 10
+ 3: 10
-13,-14:
1: 65444
- 0: 10
+ 3: 10
-12,-13:
1: 62
-12,-17:
- 0: 43690
+ 3: 43690
1: 17732
-11,-16:
1: 8994
@@ -9789,7 +9979,7 @@ entities:
-13,-18:
1: 44800
-13,-17:
- 0: 43690
+ 3: 43690
1: 17732
-11,-18:
1: 8960
@@ -9798,10 +9988,11 @@ entities:
-9,-18:
1: 1811
0,-21:
- 0: 61440
+ 3: 61440
1: 248
1,-20:
- 0: 1799
+ 3: 7
+ 0: 1792
1,-19:
0: 65535
1,-18:
@@ -9809,25 +10000,26 @@ entities:
1,-17:
0: 4095
1,-21:
- 0: 64648
+ 3: 64648
1: 112
2,-20:
0: 43962
2,-19:
0: 49147
2,-18:
- 0: 62395
+ 0: 46011
2,-21:
- 0: 48059
+ 3: 13107
+ 0: 34816
+ 1: 8
3,-21:
- 0: 65295
+ 0: 65280
+ 3: 14
0,-24:
- 3: 61440
- 0: 3072
+ 3: 64512
1: 136
-1,-24:
- 3: 61440
- 0: 256
+ 3: 61696
1: 136
0,-23:
1: 35064
@@ -9836,32 +10028,32 @@ entities:
0,-22:
1: 35064
-1,-22:
- 0: 128
+ 3: 128
1: 34936
0,-25:
1: 36744
1,-24:
- 0: 768
- 3: 61440
+ 3: 62208
1: 136
1,-23:
1: 112
- 0: 34956
+ 3: 34956
1,-22:
1: 112
- 0: 34952
+ 3: 34952
1,-25:
1: 36736
2,-23:
- 0: 13073
+ 3: 13073
1: 52224
2,-22:
- 0: 4369
- 1: 1092
+ 3: 4369
+ 1: 36044
3,-23:
1: 61440
3,-22:
- 0: 61424
+ 1: 15
+ 3: 60928
3,-24:
1: 35939
3,-25:
@@ -9869,9 +10061,11 @@ entities:
4,-24:
1: 4096
4,-23:
- 1: 62563
+ 1: 64739
4,-22:
- 0: 30576
+ 1: 15
+ 3: 4352
+ 0: 58368
-4,-24:
1: 310
-5,-24:
@@ -9881,29 +10075,31 @@ entities:
-5,-23:
1: 53558
-4,-22:
- 1: 240
+ 1: 61680
-5,-22:
- 1: 4593
+ 1: 33777
0: 4
+ -4,-21:
+ 1: 65295
+ 3: 112
-4,-25:
1: 51200
-3,-23:
1: 4352
- 0: 52462
+ 3: 52462
-3,-22:
- 1: 16
- 0: 61132
+ 1: 4112
+ 3: 61132
-3,-24:
3: 32768
1: 136
-3,-25:
1: 36342
-2,-24:
- 0: 1792
- 3: 61440
+ 3: 63232
1: 136
-2,-23:
- 0: 1
+ 3: 1
1: 35064
-2,-22:
1: 35064
@@ -9912,123 +10108,64 @@ entities:
-1,-25:
1: 36744
5,-23:
- 1: 4096
- 0: 36044
+ 1: 61459
5,-22:
- 3: 3
- 1: 17632
+ 1: 15
+ 3: 65280
5,-24:
- 1: 32
- 0: 51208
- 5,-25:
- 0: 32768
- 1: 8804
+ 1: 62432
6,-24:
- 0: 47893
+ 1: 61680
6,-23:
- 0: 7099
+ 1: 61986
6,-22:
- 1: 16
- 0: 52428
- 6,-25:
- 0: 21847
+ 1: 231
+ 0: 57344
7,-24:
- 0: 47893
+ 1: 61680
7,-23:
- 0: 7099
+ 1: 61440
7,-22:
- 0: 32631
- 7,-25:
- 0: 21853
+ 1: 61712
8,-24:
- 0: 29459
- 1: 128
+ 1: 61680
8,-23:
- 0: 14199
+ 1: 4369
8,-22:
- 0: 13104
- 1: 34952
- 8,-25:
- 0: 12561
- 1: 35012
- 9,-21:
- 1: 15
- 10,-21:
- 1: 15
- 11,-21:
- 1: 15
- 12,-21:
- 1: 15
- 8,-29:
- 0: 4096
- 1: 34816
- 7,-28:
- 0: 65533
- 8,-28:
- 0: 8192
- 1: 8
- 8,-27:
- 0: 8738
- 8,-26:
- 0: 4371
- 1: 19592
- 8,-30:
- 1: 33
- 7,-30:
- 1: 8
- 7,-29:
- 0: 52735
- 5,-28:
- 1: 2
- 0: 32768
- 5,-29:
- 1: 8704
- 5,-27:
- 1: 8192
- 0: 34952
- 5,-26:
- 1: 17954
- 0: 8
- 6,-26:
- 0: 21845
- 6,-29:
- 0: 30446
- 6,-28:
- 0: 61158
- 6,-27:
- 0: 3264
- 7,-27:
- 0: 1905
- 7,-26:
- 0: 21845
- 5,-30:
- 1: 128
- 6,-30:
- 1: 3
- -6,-23:
+ 1: 63761
+ 9,-24:
+ 1: 4368
+ 9,-22:
+ 1: 31190
+ -7,-22:
1: 27776
-6,-22:
- 1: 49346
+ 1: 2547
+ -6,-23:
+ 1: 27776
+ -6,-21:
+ 1: 546
+ 0: 2184
-15,-16:
1: 23391
- 0: 1024
+ 3: 1024
-15,-15:
1: 34959
-15,-17:
1: 34952
-14,-16:
1: 20292
- 0: 10
+ 3: 10
-14,-15:
1: 21588
- 0: 43690
+ 3: 43690
-15,-14:
1: 2184
-14,-14:
1: 36772
- 0: 10
+ 3: 10
-14,-17:
- 0: 43690
+ 3: 43690
1: 21588
-15,-18:
1: 34816
@@ -10039,23 +10176,23 @@ entities:
-15,10:
1: 12
-14,9:
- 0: 3855
+ 3: 3855
1: 41200
-14,10:
1: 15
-13,9:
- 0: 257
+ 3: 257
1: 17652
-13,10:
1: 62901
- 0: 64
+ 3: 64
-12,9:
1: 41200
- 0: 3855
+ 3: 3855
-12,10:
1: 4383
-11,9:
- 0: 257
+ 3: 257
1: 18006
-11,10:
1: 7
@@ -10081,24 +10218,24 @@ entities:
1: 34952
10,9:
1: 16865
- 0: 3598
+ 3: 3598
9,10:
1: 8
10,10:
1: 15
11,9:
- 0: 771
+ 3: 771
1: 39160
11,10:
1: 60011
- 0: 128
+ 3: 128
12,9:
1: 16624
- 0: 3598
+ 3: 3598
12,10:
1: 12862
13,9:
- 0: 771
+ 3: 771
1: 40124
13,10:
1: 15
@@ -10116,7 +10253,7 @@ entities:
1: 32768
20,-22:
1: 10970
- 0: 32
+ 3: 32
19,-22:
1: 24456
21,-22:
@@ -10255,8 +10392,8 @@ entities:
id: docking46345
localAnchorB: -0.5,-1
localAnchorA: -66.5,22
- damping: 42.400932
- stiffness: 380.5899
+ damping: 42.40074
+ stiffness: 380.58823
- type: OccluderTree
- type: Shuttle
- type: RadiationGridResistance
@@ -10334,6 +10471,31 @@ entities:
- type: Transform
pos: -1.4590547,-61.356407
parent: 8364
+- proto: ActionToggleInternals
+ entities:
+ - uid: 25167
+ components:
+ - type: Transform
+ parent: 21419
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 21419
+ - uid: 25181
+ components:
+ - type: Transform
+ parent: 20121
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 20121
+- proto: ActionToggleLight
+ entities:
+ - uid: 16587
+ components:
+ - type: Transform
+ parent: 11756
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 11756
- proto: AirAlarm
entities:
- uid: 256
@@ -10348,8 +10510,72 @@ entities:
- 22993
- 22800
- 23146
+ - uid: 291
+ components:
+ - type: MetaData
+ name: Triage Air Alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-27.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 27961
+ - 24712
+ - 24787
+ - 6211
+ - 5879
+ - 9811
+ - 5548
+ - uid: 835
+ components:
+ - type: MetaData
+ name: Artifact Lab South Air Alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,-40.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 25054
+ - 25859
+ - 6529
+ - 23316
+ - 24092
+ - 226
+ - 6468
+ - 6473
+ - 6474
+ - 19883
+ - 6489
+ - 6488
+ - uid: 1860
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-82.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 23910
+ - uid: 3087
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,-21.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 24524
+ - 24893
+ - 24892
+ - 24572
+ - 24785
+ - 27963
- uid: 3263
components:
+ - type: MetaData
+ name: Cryopods Air Alarm
- type: Transform
rot: 1.5707963267948966 rad
pos: 27.5,-35.5
@@ -10357,8 +10583,82 @@ entities:
- type: DeviceList
devices:
- 19113
- - 19123
- 19114
+ - 24815
+ - uid: 3656
+ components:
+ - type: MetaData
+ name: AI Core Air Alarm
+ - type: Transform
+ pos: 0.5,-15.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 26959
+ - 26674
+ - 26999
+ - uid: 4328
+ components:
+ - type: MetaData
+ name: Sci - North Hall Air Alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,-26.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 13368
+ - 13367
+ - 13365
+ - 13369
+ - 13370
+ - 13371
+ - 21762
+ - 22713
+ - 25170
+ - 21228
+ - 23256
+ - 25168
+ - 6459
+ - 5519
+ - 5518
+ - uid: 4329
+ components:
+ - type: MetaData
+ name: Sci - South Hall Air Alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,-44.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 5518
+ - 5519
+ - 6459
+ - 15346
+ - 23255
+ - 11761
+ - 6467
+ - 6464
+ - 6463
+ - 26974
+ - 22728
+ - 26987
+ - 5513
+ - 5512
+ - 5511
+ - uid: 5769
+ components:
+ - type: MetaData
+ name: Newsroom Air Alarm
+ - type: Transform
+ pos: -20.5,-8.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 27019
+ - 5768
+ - 4565
- uid: 6646
components:
- type: Transform
@@ -10369,6 +10669,54 @@ entities:
- 22640
- 24368
- 24373
+ - 24369
+ - 24371
+ - 1411
+ - 28236
+ - 24370
+ - 24372
+ - 24293
+ - 15127
+ - 15450
+ - 24296
+ - 24295
+ - 24294
+ - 24297
+ - 24292
+ - 15126
+ - 25318
+ - 24291
+ - 24298
+ - 11963
+ - 13469
+ - 22631
+ - 22632
+ - uid: 8150
+ components:
+ - type: MetaData
+ name: Boxing Ring Air Alarm
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,7.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 8149
+ - 24401
+ - 20066
+ - 20068
+ - 24376
+ - 24377
+ - 26685
+ - uid: 8249
+ components:
+ - type: Transform
+ pos: 24.5,20.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 22748
+ - 22747
- uid: 10705
components:
- type: Transform
@@ -10434,6 +10782,29 @@ entities:
- 25307
- 25304
- 25305
+ - uid: 17159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-68.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 23151
+ - 16977
+ - 5278
+ - 16627
+ - 5264
+ - 27403
+ - 27404
+ - 27405
+ - 10877
+ - 14117
+ - 17048
+ - 14124
+ - 17043
+ - 17156
+ - 16626
- uid: 17778
components:
- type: Transform
@@ -10446,10 +10817,12 @@ entities:
- 16975
- 16976
- 23000
- - 23010
- - 23011
+ - 16880
+ - 16882
- uid: 18773
components:
+ - type: MetaData
+ name: Engineering Outside Comms Air Alarm
- type: Transform
pos: -3.5,-50.5
parent: 8364
@@ -10461,9 +10834,34 @@ entities:
- 17087
- 26635
- 16853
- - 14486
- - 23068
- - 23067
+ - 23774
+ - 781
+ - 14501
+ - uid: 19344
+ components:
+ - type: Transform
+ pos: -43.5,-3.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 25364
+ - 25367
+ - 25366
+ - 25365
+ - 1311
+ - 14226
+ - 16155
+ - 15139
+ - uid: 19773
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -55.5,4.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 25325
+ - 25324
- uid: 20630
components:
- type: Transform
@@ -10478,28 +10876,6 @@ entities:
- type: Transform
pos: 63.5,-11.5
parent: 8364
- - type: DeviceList
- devices:
- - 19992
- - 19991
- - 19993
- - 26804
- - 26805
- - 26806
- - 24919
- - 24921
- - 13380
- - 13379
- - 13378
- - 13362
- - 13363
- - 22690
- - 13391
- - 13390
- - 13389
- - 10521
- - 10523
- - 22691
- uid: 22563
components:
- type: Transform
@@ -10563,9 +10939,9 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 23261
- - 22587
- - 16789
+ - 17208
+ - 25092
+ - 747
- uid: 22589
components:
- type: Transform
@@ -10573,12 +10949,21 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 22591
- 6917
- 9826
- 9825
- - 23948
- - 23947
+ - 23071
+ - 783
+ - 23218
+ - 17571
+ - 28206
+ - 28205
+ - 7277
+ - 8080
+ - 8110
+ - 1652
+ - 16943
+ - 1672
- uid: 22594
components:
- type: Transform
@@ -10625,19 +11010,10 @@ entities:
- 22598
- 24240
- 24239
- - uid: 22600
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-13.5
- parent: 8364
- - type: DeviceList
- devices:
- - 22601
- - 24187
- - 24188
- uid: 22603
components:
+ - type: MetaData
+ name: Bridge Air Alarm
- type: Transform
rot: 3.141592653589793 rad
pos: -2.5,-9.5
@@ -10663,9 +11039,9 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 24217
- - 24224
- 22613
+ - 23856
+ - 20029
- uid: 22614
components:
- type: Transform
@@ -10762,6 +11138,8 @@ entities:
- 24110
- uid: 22641
components:
+ - type: MetaData
+ name: Bar Air Alarm
- type: Transform
pos: 25.5,1.5
parent: 8364
@@ -10769,21 +11147,21 @@ entities:
devices:
- 22645
- 22646
- - 22647
- - 24436
- - uid: 22642
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-11.5
- parent: 8364
- - type: DeviceList
- devices:
- - 22645
- - 22646
- - 22647
- - 24436
- - 27233
+ - 25964
+ - 279
+ - 24444
+ - 24459
+ - 25959
+ - 25963
+ - 25958
+ - 25960
+ - 25961
+ - 25962
+ - 24441
+ - 27966
+ - 24435
+ - 24462
+ - 24471
- uid: 22649
components:
- type: Transform
@@ -10792,9 +11170,9 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 24494
- 24493
- 22648
+ - 24898
- uid: 22650
components:
- type: Transform
@@ -10825,8 +11203,10 @@ entities:
- 22657
- 10452
- 24916
- - 24914
- - 24917
+ - 27939
+ - 24638
+ - 27936
+ - 27941
- uid: 22659
components:
- type: Transform
@@ -10839,14 +11219,14 @@ entities:
- 13385
- 22645
- 22646
- - 2940
- - 14093
- - 14208
- 14220
- - 14094
- - 11725
- 11719
- - 22658
+ - 11725
+ - 14094
+ - 23086
+ - 22749
+ - 824
+ - 27992
- 13391
- 13390
- 13389
@@ -10854,8 +11234,13 @@ entities:
- 13381
- 13383
- 13384
- - 24586
- - 24585
+ - 27991
+ - 22758
+ - 23876
+ - 23251
+ - 23087
+ - 14208
+ - 14093
- uid: 22661
components:
- type: Transform
@@ -10869,8 +11254,8 @@ entities:
- 14149
- 22663
- 19972
- - 24599
- 24610
+ - 24644
- uid: 22665
components:
- type: Transform
@@ -10884,45 +11269,31 @@ entities:
- 14093
- 14208
- 14220
- - 22666
- 14094
- 11725
- 11719
- - 24584
- 24581
- 24583
- 24582
- - uid: 22667
- components:
- - type: Transform
- pos: 40.5,-21.5
- parent: 8364
- - type: DeviceList
- devices:
- - 21773
- - 21774
- - 5548
- - 9811
- - 18680
- - 18682
- - 22668
- - 24587
- - 24588
+ - 27962
+ - 24783
- uid: 22670
components:
+ - type: MetaData
+ name: Emergency Room Air Alarm
- type: Transform
rot: 3.141592653589793 rad
pos: 33.5,-31.5
parent: 8364
- type: DeviceList
devices:
- - 8002
- - 5547
+ - 22672
+ - 27959
+ - 27960
- 6211
- 5879
- - 22672
- - 24712
- - 24705
+ - 5547
+ - 8002
- uid: 22673
components:
- type: Transform
@@ -10935,6 +11306,8 @@ entities:
- 24746
- uid: 22676
components:
+ - type: MetaData
+ name: Medical Staff Hallway Air Alarm
- type: Transform
pos: 37.5,-30.5
parent: 8364
@@ -10962,14 +11335,8 @@ entities:
- 5546
- 7993
- 22681
- - 24813
- - 24814
- - 24812
- - 24815
- 24811
- 24816
- - 24775
- - 24778
- 24776
- 24777
- uid: 22684
@@ -10997,12 +11364,9 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 13380
- - 13379
- - 13378
- - 13362
- - 13363
- - 22690
+ - 26804
+ - 26805
+ - 26806
- 13391
- 13390
- 13389
@@ -11011,8 +11375,8 @@ entities:
- 22691
- 24920
- 24918
- - 24921
- - 24919
+ - 26039
+ - 26038
- uid: 22694
components:
- type: Transform
@@ -11024,23 +11388,25 @@ entities:
- 13380
- 13379
- 13378
- - 22697
- - 22696
- - 22695
- - 24246
- - 24245
+ - 5927
+ - 827
+ - 5928
- 19992
- 19991
- 19993
+ - 23122
+ - 26036
+ - 26037
- uid: 22699
components:
+ - type: MetaData
+ name: Chapel Air Alarm
- type: Transform
rot: 1.5707963267948966 rad
pos: 64.5,-6.5
parent: 8364
- type: DeviceList
devices:
- - 22700
- 24930
- 24931
- 20899
@@ -11051,6 +11417,9 @@ entities:
- 21540
- 21542
- 21541
+ - 5730
+ - 5463
+ - 7176
- uid: 22701
components:
- type: Transform
@@ -11061,6 +11430,9 @@ entities:
- 24967
- 24968
- 22702
+ - 5748
+ - 5735
+ - 5740
- uid: 22703
components:
- type: Transform
@@ -11069,8 +11441,8 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 5382
- - 5383
+ - 7098
+ - 7133
- 22704
- 21543
- 21544
@@ -11080,8 +11452,15 @@ entities:
- 21542
- 21539
- 21540
+ - 4537
+ - 25986
+ - 26691
+ - 22731
+ - 8142
- uid: 22706
components:
+ - type: MetaData
+ name: Robotics Air Alarm
- type: Transform
pos: 56.5,-21.5
parent: 8364
@@ -11092,31 +11471,13 @@ entities:
- 13364
- 25116
- 25115
- - uid: 22714
- components:
- - type: Transform
- pos: 60.5,-25.5
- parent: 8364
- - type: DeviceList
- devices:
- - 13365
- - 13367
- - 13368
- - 13369
- - 13370
- - 13371
- - 22713
- - 5519
- - 5518
- - 6459
- - 25170
- - 25171
- - 25168
- - 25169
- - 25136
- - 25131
+ - 27880
+ - 27703
+ - 26973
- uid: 22715
components:
+ - type: MetaData
+ name: R&D Air Alarm
- type: Transform
rot: -1.5707963267948966 rad
pos: 75.5,-19.5
@@ -11126,12 +11487,17 @@ entities:
- 13371
- 13370
- 13369
- - 22717
+ - 27425
- 13362
- 25069
- - 25072
+ - 27204
+ - 20289
+ - 23885
+ - 27202
- uid: 22718
components:
+ - type: MetaData
+ name: Artifact Lab North Air Alarm
- type: Transform
pos: 79.5,-22.5
parent: 8364
@@ -11148,11 +11514,13 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 25167
- - 25165
- 22720
+ - 27311
+ - 25506
- uid: 22723
components:
+ - type: MetaData
+ name: Artifact Chamber Air Alarm
- type: Transform
rot: 1.5707963267948966 rad
pos: 75.5,-39.5
@@ -11160,35 +11528,6 @@ entities:
- type: DeviceList
devices:
- 22722
- - uid: 22726
- components:
- - type: Transform
- pos: 73.5,-42.5
- parent: 8364
- - type: DeviceList
- devices:
- - 6468
- - 6473
- - 6474
- - 6488
- - 6489
- - 19883
- - 22725
- - 25261
- - 25260
- - uid: 22732
- components:
- - type: Transform
- pos: 62.5,-38.5
- parent: 8364
- - type: DeviceList
- devices:
- - 25223
- - 25224
- - 25241
- - 25242
- - 22733
- - 22731
- uid: 22734
components:
- type: Transform
@@ -11227,9 +11566,12 @@ entities:
- 5511
- 5512
- 5513
- - 1479
- - 25206
- - 25207
+ - 4406
+ - 4461
+ - 746
+ - 4403
+ - 4404
+ - 4460
- uid: 22956
components:
- type: Transform
@@ -11263,21 +11605,23 @@ entities:
- 24010
- 24011
- 24012
- - uid: 22970
+ - uid: 23133
components:
+ - type: MetaData
+ name: PA West Air Alarm
- type: Transform
- pos: -37.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-75.5
parent: 8364
- type: DeviceList
devices:
- - 25364
- - 25367
- - 25366
- - 25365
- - 1311
- - 14226
- - 16155
- - 15139
+ - 23131
+ - 23259
+ - 22003
+ - 10877
+ - 27405
+ - 27404
+ - 27403
- uid: 23262
components:
- type: Transform
@@ -11368,6 +11712,18 @@ entities:
- 25420
- 25422
- 25421
+ - uid: 23899
+ components:
+ - type: MetaData
+ name: Toxins Room Air Alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,-37.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 25164
+ - 25166
- uid: 23938
components:
- type: Transform
@@ -11380,12 +11736,15 @@ entities:
- 11600
- 11377
- 11603
- - 23939
- 23940
- 25488
- 25487
- 25518
- 25519
+ - 26931
+ - 591
+ - 23258
+ - 21999
- uid: 23943
components:
- type: Transform
@@ -11422,6 +11781,15 @@ entities:
- 7357
- 25557
- 25560
+ - uid: 24632
+ components:
+ - type: Transform
+ pos: 35.5,-44.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 24634
+ - 24635
- uid: 24766
components:
- type: Transform
@@ -11432,6 +11800,17 @@ entities:
- 25800
- 24915
- 25804
+ - 27933
+ - uid: 24812
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,-39.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 24896
+ - 24790
- uid: 24987
components:
- type: Transform
@@ -11446,6 +11825,20 @@ entities:
- 8934
- 25762
- 25759
+ - uid: 25225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-75.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 27274
+ - 26051
+ - 738
+ - 27210
+ - 26034
+ - 27167
- uid: 25234
components:
- type: Transform
@@ -11513,8 +11906,8 @@ entities:
- type: DeviceList
devices:
- 25375
- - 25479
- - 25486
+ - 23905
+ - 21996
- uid: 25825
components:
- type: Transform
@@ -11522,20 +11915,19 @@ entities:
parent: 8364
- type: DeviceList
devices:
+ - 11722
+ - 22237
+ - 7043
+ - 7180
+ - 7078
- 14167
- 14343
- - 2944
- 14342
- - 7078
- - 7180
- - 7043
- - 25827
- - 25826
- - 25316
- - 25317
- - 25318
- - 25315
- - 11722
+ - 2944
+ - 1416
+ - 16625
+ - 19169
+ - 22690
- uid: 25833
components:
- type: Transform
@@ -11573,6 +11965,8 @@ entities:
- 25337
- uid: 25915
components:
+ - type: MetaData
+ name: Surgery Air Alarm
- type: Transform
rot: 3.141592653589793 rad
pos: 20.5,-37.5
@@ -11580,10 +11974,12 @@ entities:
- type: DeviceList
devices:
- 25914
- - 24707
- - 24711
+ - 24599
+ - 24603
- uid: 26703
components:
+ - type: MetaData
+ name: PA Air Alarm
- type: Transform
rot: 1.5707963267948966 rad
pos: -3.5,-76.5
@@ -11591,10 +11987,12 @@ entities:
- type: DeviceList
devices:
- 26694
- - 26695
- 26702
+ - 23906
- uid: 26704
components:
+ - type: MetaData
+ name: AME Air Alarm
- type: Transform
pos: -17.5,-71.5
parent: 8364
@@ -11602,7 +12000,7 @@ entities:
devices:
- 26698
- 26693
- - 26697
+ - 662
- uid: 26707
components:
- type: Transform
@@ -11610,11 +12008,17 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 5463
- - 5462
- - 1860
+ - 23556
+ - 27531
+ - 26032
+ - 5264
+ - 16627
+ - 5278
+ - 5277
- uid: 26908
components:
+ - type: MetaData
+ name: PA East Air Alarm
- type: Transform
rot: 3.141592653589793 rad
pos: 7.5,-76.5
@@ -11622,8 +12026,111 @@ entities:
- type: DeviceList
devices:
- 26701
- - 23177
- - 23179
+ - 25231
+ - 14502
+ - uid: 26989
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-82.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 23147
+ - uid: 27150
+ components:
+ - type: MetaData
+ name: Breakroom Air Alarm
+ - type: Transform
+ pos: 55.5,-38.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 27198
+ - 847
+ - 27197
+ - 27879
+ - 27878
+ - 27875
+ - uid: 27881
+ components:
+ - type: Transform
+ pos: 57.5,-25.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 25136
+ - 25131
+ - 5235
+ - 5236
+ - 151
+ - uid: 27964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-26.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 2782
+ - 19972
+ - 21773
+ - 21774
+ - 27944
+ - 27947
+ - 27945
+ - uid: 27965
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-25.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 18680
+ - 18682
+ - 27948
+ - 27949
+ - 24729
+ - 24587
+ - 22668
+ - 24588
+ - 9811
+ - 5548
+ - 21773
+ - 21774
+ - uid: 28154
+ components:
+ - type: MetaData
+ name: AI Upload Air Alarm
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 3860
+ - 4557
+ - 28193
+ - 28194
+ - uid: 28227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-54.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 28234
+ - 28222
+ - 16918
+ - 23088
+ - 28235
+ - 23090
+ - 28224
+ - 28230
+ - 28231
+ - 28223
+ - 28233
- proto: AirCanister
entities:
- uid: 444
@@ -11731,16 +12238,6 @@ entities:
- type: Transform
pos: -21.5,51.5
parent: 8364
- - uid: 27150
- components:
- - type: Transform
- pos: 22.5,-89.5
- parent: 8364
- - uid: 27151
- components:
- - type: Transform
- pos: 24.5,-88.5
- parent: 8364
- uid: 27213
components:
- type: Transform
@@ -12031,11 +12528,6 @@ entities:
parent: 8364
- proto: AirlockCaptainLocked
entities:
- - uid: 1152
- components:
- - type: Transform
- pos: -50.5,-3.5
- parent: 8364
- uid: 5692
components:
- type: MetaData
@@ -12057,20 +12549,6 @@ entities:
- type: Transform
pos: 9.5,-20.5
parent: 8364
- - uid: 8143
- components:
- - type: MetaData
- name: Captain Chunnel
- - type: Transform
- pos: -5.5,-16.5
- parent: 8364
- - uid: 8144
- components:
- - type: MetaData
- name: Captain Chunnel
- - type: Transform
- pos: 4.5,-16.5
- parent: 8364
- uid: 10734
components:
- type: MetaData
@@ -12171,6 +12649,8 @@ entities:
entities:
- uid: 2216
components:
+ - type: MetaData
+ name: CE's Office
- type: Transform
pos: -6.5,-66.5
parent: 8364
@@ -12193,11 +12673,6 @@ entities:
parent: 8364
- proto: AirlockCommandGlassLocked
entities:
- - uid: 854
- components:
- - type: Transform
- pos: 28.5,-107.5
- parent: 8364
- uid: 5514
components:
- type: MetaData
@@ -12228,6 +12703,8 @@ entities:
parent: 8364
- uid: 5651
components:
+ - type: MetaData
+ name: EVA Entrance
- type: Transform
pos: -11.5,0.5
parent: 8364
@@ -12238,6 +12715,14 @@ entities:
parent: 8364
- proto: AirlockCommandLocked
entities:
+ - uid: 647
+ components:
+ - type: MetaData
+ name: AI Upload
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-25.5
+ parent: 8364
- uid: 5619
components:
- type: MetaData
@@ -12245,31 +12730,13 @@ entities:
- type: Transform
pos: -7.5,-10.5
parent: 8364
- - uid: 6597
- components:
- - type: Transform
- pos: 28.5,-88.5
- parent: 8364
- - uid: 6598
- components:
- - type: Transform
- pos: 28.5,-94.5
- parent: 8364
- - uid: 6599
- components:
- - type: Transform
- pos: 28.5,-82.5
- parent: 8364
- - uid: 16621
- components:
- - type: Transform
- pos: 10.5,-68.5
- parent: 8364
- - uid: 16631
+ - uid: 27816
components:
+ - type: MetaData
+ name: AI Entrance
- type: Transform
rot: -1.5707963267948966 rad
- pos: 31.5,-85.5
+ pos: -0.5,-28.5
parent: 8364
- proto: AirlockDetectiveGlassLocked
entities:
@@ -12378,13 +12845,6 @@ entities:
parent: 8364
- proto: AirlockEngineeringLocked
entities:
- - uid: 576
- components:
- - type: MetaData
- name: Shuttle Construction
- - type: Transform
- pos: -66.5,11.5
- parent: 8364
- uid: 799
components:
- type: MetaData
@@ -12392,6 +12852,11 @@ entities:
- type: Transform
pos: 42.5,4.5
parent: 8364
+ - uid: 1409
+ components:
+ - type: Transform
+ pos: -50.5,-3.5
+ parent: 8364
- uid: 1673
components:
- type: Transform
@@ -12411,6 +12876,8 @@ entities:
parent: 8364
- uid: 4683
components:
+ - type: MetaData
+ name: PA
- type: Transform
pos: -0.5,-72.5
parent: 8364
@@ -12459,11 +12926,6 @@ entities:
- type: Transform
pos: -30.5,-65.5
parent: 8364
- - uid: 15875
- components:
- - type: Transform
- pos: 12.5,-83.5
- parent: 8364
- uid: 16101
components:
- type: MetaData
@@ -12480,6 +12942,8 @@ entities:
parent: 8364
- uid: 16146
components:
+ - type: MetaData
+ name: Gravity & Anchor
- type: Transform
pos: -19.5,-71.5
parent: 8364
@@ -12514,11 +12978,6 @@ entities:
- type: Transform
pos: 10.5,-73.5
parent: 8364
- - uid: 17671
- components:
- - type: Transform
- pos: 11.5,-82.5
- parent: 8364
- uid: 18303
components:
- type: MetaData
@@ -12526,13 +12985,6 @@ entities:
- type: Transform
pos: 47.5,-40.5
parent: 8364
- - uid: 18681
- components:
- - type: MetaData
- name: Gravity Gen
- - type: Transform
- pos: -0.5,-28.5
- parent: 8364
- uid: 19984
components:
- type: MetaData
@@ -12545,6 +12997,13 @@ entities:
- type: Transform
pos: -20.5,-67.5
parent: 8364
+ - uid: 27794
+ components:
+ - type: MetaData
+ name: Station Anchor
+ - type: Transform
+ pos: -19.5,-79.5
+ parent: 8364
- proto: AirlockExternal
entities:
- uid: 431
@@ -12604,8 +13063,6 @@ entities:
- type: Transform
pos: 91.5,-29.5
parent: 8364
- - type: DeviceLinkSink
- invokeCounter: 1
- type: DeviceLinkSource
linkedPorts:
5209:
@@ -12658,10 +13115,14 @@ entities:
- type: Transform
pos: 23.5,-60.5
parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 1
- type: DeviceLinkSource
linkedPorts:
3852:
- DoorStatus: DoorBolt
+ 3707:
+ - DoorStatus: Close
- proto: AirlockExternalGlassCargoLocked
entities:
- uid: 7010
@@ -12694,16 +13155,86 @@ entities:
parent: 8364
- proto: AirlockExternalGlassEngineeringLocked
entities:
+ - uid: 2905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-82.5
+ parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3601:
+ - DoorStatus: DoorBolt
+ 4365:
+ - DoorStatus: DoorBolt
+ - uid: 3601
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-84.5
+ parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4365:
+ - DoorStatus: DoorBolt
+ 2905:
+ - DoorStatus: DoorBolt
- uid: 3707
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 26.5,-61.5
parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
3852:
- DoorStatus: DoorBolt
+ 3858:
+ - DoorStatus: Close
+ - uid: 4365
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-84.5
+ parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3601:
+ - DoorStatus: DoorBolt
+ 2905:
+ - DoorStatus: DoorBolt
+ - uid: 11754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-82.5
+ parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14105:
+ - DoorStatus: DoorBolt
+ - uid: 14105
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-84.5
+ parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 11754:
+ - DoorStatus: DoorBolt
- uid: 14448
components:
- type: Transform
@@ -12748,8 +13279,17 @@ entities:
linkedPorts:
508:
- DoorStatus: DoorBolt
+ - uid: 594
+ components:
+ - type: MetaData
+ name: Shuttle Building Supplies
+ - type: Transform
+ pos: -66.5,11.5
+ parent: 8364
- uid: 1495
components:
+ - type: MetaData
+ name: Shuttle Airlock
- type: Transform
pos: -66.5,19.5
parent: 8364
@@ -12775,6 +13315,17 @@ entities:
linkedPorts:
9810:
- DoorStatus: DoorBolt
+ - uid: 11795
+ components:
+ - type: Transform
+ pos: 62.5,-70.5
+ parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19987:
+ - DoorStatus: DoorBolt
- uid: 12466
components:
- type: Transform
@@ -12829,15 +13380,6 @@ entities:
linkedPorts:
19366:
- DoorStatus: DoorBolt
- - uid: 19857
- components:
- - type: Transform
- pos: 62.5,-71.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 19987:
- - DoorStatus: DoorBolt
- uid: 19988
components:
- type: Transform
@@ -12956,11 +13498,6 @@ entities:
linkedPorts:
22633:
- DoorStatus: DoorBolt
- - uid: 6600
- components:
- - type: Transform
- pos: 30.5,-79.5
- parent: 8364
- uid: 9810
components:
- type: Transform
@@ -13029,9 +13566,11 @@ entities:
- type: Transform
pos: 61.5,-72.5
parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 1
- type: DeviceLinkSource
linkedPorts:
- 19857:
+ 11795:
- DoorStatus: DoorBolt
- uid: 19989
components:
@@ -13051,11 +13590,6 @@ entities:
linkedPorts:
5626:
- DoorStatus: DoorBolt
- - uid: 27848
- components:
- - type: Transform
- pos: 33.5,-79.5
- parent: 8364
- proto: AirlockExternalShuttleLocked
entities:
- uid: 593
@@ -13169,7 +13703,7 @@ entities:
pos: 24.5,16.5
parent: 8364
- type: Door
- secondsUntilStateChange: -37852.17
+ secondsUntilStateChange: -78641.14
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -13342,11 +13876,6 @@ entities:
- type: Transform
pos: -31.5,13.5
parent: 8364
- - uid: 13474
- components:
- - type: Transform
- pos: -19.5,-11.5
- parent: 8364
- uid: 14311
components:
- type: MetaData
@@ -13568,6 +14097,8 @@ entities:
entities:
- uid: 12024
components:
+ - type: MetaData
+ name: EVA Gear
- type: Transform
pos: -11.5,5.5
parent: 8364
@@ -13698,11 +14229,6 @@ entities:
parent: 8364
- proto: AirlockMaintCaptainLocked
entities:
- - uid: 1154
- components:
- - type: Transform
- pos: -50.5,-9.5
- parent: 8364
- uid: 2380
components:
- type: Transform
@@ -13784,6 +14310,11 @@ entities:
parent: 8364
- proto: AirlockMaintEngiLocked
entities:
+ - uid: 1154
+ components:
+ - type: Transform
+ pos: -50.5,-9.5
+ parent: 8364
- uid: 6310
components:
- type: Transform
@@ -13879,16 +14410,6 @@ entities:
- type: Transform
pos: 41.5,11.5
parent: 8364
- - uid: 783
- components:
- - type: Transform
- pos: 25.5,-99.5
- parent: 8364
- - uid: 784
- components:
- - type: Transform
- pos: 31.5,-99.5
- parent: 8364
- uid: 1518
components:
- type: Transform
@@ -13933,16 +14454,6 @@ entities:
- type: Transform
pos: -33.5,-52.5
parent: 8364
- - uid: 4966
- components:
- - type: Transform
- pos: 24.5,-94.5
- parent: 8364
- - uid: 4967
- components:
- - type: Transform
- pos: 32.5,-94.5
- parent: 8364
- uid: 6407
components:
- type: Transform
@@ -14059,13 +14570,6 @@ entities:
- type: Transform
pos: -30.5,-3.5
parent: 8364
- - uid: 14421
- components:
- - type: MetaData
- name: Vacant Office B Maintenance
- - type: Transform
- pos: -25.5,-12.5
- parent: 8364
- uid: 15303
components:
- type: Transform
@@ -14264,6 +14768,16 @@ entities:
- type: Transform
pos: 18.5,30.5
parent: 8364
+- proto: AirlockMaintServiceLocked
+ entities:
+ - uid: 688
+ components:
+ - type: MetaData
+ name: Newsroom Maintenance
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-12.5
+ parent: 8364
- proto: AirlockMedicalGlassLocked
entities:
- uid: 1791
@@ -14772,6 +15286,14 @@ entities:
parent: 8364
- proto: AirlockServiceGlassLocked
entities:
+ - uid: 742
+ components:
+ - type: MetaData
+ name: Newsroom Entrance
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-11.5
+ parent: 8364
- uid: 9841
components:
- type: Transform
@@ -14851,6 +15373,70 @@ entities:
parent: 8364
- proto: AirSensor
entities:
+ - uid: 151
+ components:
+ - type: Transform
+ pos: 61.5,-27.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27881
+ - uid: 226
+ components:
+ - type: Transform
+ pos: 77.5,-37.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23938
+ - uid: 738
+ components:
+ - type: Transform
+ pos: -24.5,-77.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25225
+ - uid: 781
+ components:
+ - type: Transform
+ pos: -1.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 18773
+ - uid: 782
+ components:
+ - type: Transform
+ pos: 70.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
+ - uid: 783
+ components:
+ - type: Transform
+ pos: -6.5,-30.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 57.5,-40.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27150
- uid: 1311
components:
- type: Transform
@@ -14858,25 +15444,92 @@ entities:
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 22970
- - uid: 1479
+ - 19344
+ - uid: 1411
components:
- type: Transform
- pos: 69.5,-52.5
- parent: 8364
- - uid: 1860
- components:
- - type: Transform
- pos: -11.5,-68.5
+ pos: 12.5,15.5
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 26707
- - uid: 14486
+ - 6646
+ - uid: 4406
components:
- type: Transform
- pos: -0.5,-55.5
+ pos: 68.5,-51.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22954
+ - uid: 4460
+ components:
+ - type: Transform
+ pos: 76.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22954
+ - uid: 4537
+ components:
+ - type: Transform
+ pos: 63.5,-6.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22703
+ - uid: 5450
+ components:
+ - type: Transform
+ pos: -61.5,-2.5
+ parent: 8364
+ - uid: 5740
+ components:
+ - type: Transform
+ pos: 69.5,4.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22701
+ - uid: 6529
+ components:
+ - type: Transform
+ pos: 79.5,-45.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
+ - uid: 7176
+ components:
+ - type: Transform
+ pos: 69.5,-2.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22699
+ - uid: 9450
+ components:
+ - type: Transform
+ pos: 58.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
+ - uid: 15126
+ components:
+ - type: Transform
+ pos: 5.5,9.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
+ - uid: 15127
+ components:
+ - type: Transform
+ pos: 5.5,12.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- uid: 15139
components:
- type: Transform
@@ -14884,7 +15537,31 @@ entities:
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 22970
+ - 19344
+ - uid: 15450
+ components:
+ - type: Transform
+ pos: 5.5,15.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
+ - uid: 17048
+ components:
+ - type: Transform
+ pos: -5.5,-69.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 17159
+ - uid: 17156
+ components:
+ - type: Transform
+ pos: 6.5,-68.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 17159
- uid: 17593
components:
- type: Transform
@@ -14910,11 +15587,22 @@ entities:
- type: Transform
pos: 15.5,-51.5
parent: 8364
- - uid: 20898
+ - uid: 21999
components:
- type: Transform
- pos: 63.5,-13.5
+ pos: 10.5,20.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23938
+ - uid: 22237
+ components:
+ - type: Transform
+ pos: -54.5,-1.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 22561
components:
- type: Transform
@@ -14923,7 +15611,6 @@ entities:
- uid: 22571
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 13.5,-47.5
parent: 8364
- uid: 22572
@@ -14936,14 +15623,6 @@ entities:
- type: Transform
pos: -23.5,-67.5
parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 22588
- - uid: 22591
- components:
- - type: Transform
- pos: -3.5,-30.5
- parent: 8364
- uid: 22593
components:
- type: Transform
@@ -14959,11 +15638,6 @@ entities:
- type: Transform
pos: -7.5,-17.5
parent: 8364
- - uid: 22601
- components:
- - type: Transform
- pos: -0.5,-12.5
- parent: 8364
- uid: 22602
components:
- type: Transform
@@ -15024,11 +15698,6 @@ entities:
- type: Transform
pos: 10.5,10.5
parent: 8364
- - uid: 22647
- components:
- - type: Transform
- pos: 26.5,-9.5
- parent: 8364
- uid: 22648
components:
- type: Transform
@@ -15044,31 +15713,27 @@ entities:
- type: Transform
pos: 45.5,-7.5
parent: 8364
- - uid: 22658
- components:
- - type: Transform
- pos: 30.5,-13.5
- parent: 8364
- uid: 22663
components:
- type: Transform
pos: 20.5,-21.5
parent: 8364
- - uid: 22666
- components:
- - type: Transform
- pos: 28.5,-17.5
- parent: 8364
- uid: 22668
components:
- type: Transform
pos: 30.5,-24.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
- uid: 22672
components:
- type: Transform
pos: 31.5,-29.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22670
- uid: 22674
components:
- type: Transform
@@ -15099,26 +15764,11 @@ entities:
- type: Transform
pos: 40.5,-57.5
parent: 8364
- - uid: 22690
- components:
- - type: Transform
- pos: 66.5,-13.5
- parent: 8364
- uid: 22691
components:
- type: Transform
pos: 48.5,-13.5
parent: 8364
- - uid: 22697
- components:
- - type: Transform
- pos: 78.5,-12.5
- parent: 8364
- - uid: 22700
- components:
- - type: Transform
- pos: 72.5,-10.5
- parent: 8364
- uid: 22702
components:
- type: Transform
@@ -15139,11 +15789,10 @@ entities:
- type: Transform
pos: 66.5,-24.5
parent: 8364
- - uid: 22717
- components:
- - type: Transform
- pos: 73.5,-23.5
- parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 22719
components:
- type: Transform
@@ -15159,31 +15808,35 @@ entities:
- type: Transform
pos: 72.5,-40.5
parent: 8364
- - uid: 22725
- components:
- - type: Transform
- pos: 77.5,-45.5
- parent: 8364
- uid: 22728
components:
- type: Transform
pos: 66.5,-45.5
parent: 8364
- - uid: 22731
- components:
- - type: Transform
- pos: 67.5,-39.5
- parent: 8364
- - uid: 22733
- components:
- - type: Transform
- pos: 54.5,-39.5
- parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- uid: 22742
components:
- type: Transform
pos: 55.5,-30.5
parent: 8364
+ - uid: 22749
+ components:
+ - type: Transform
+ pos: 30.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
+ - uid: 22758
+ components:
+ - type: Transform
+ pos: 22.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- uid: 22957
components:
- type: Transform
@@ -15204,6 +15857,47 @@ entities:
- type: Transform
pos: -27.5,-1.5
parent: 8364
+ - uid: 23131
+ components:
+ - type: Transform
+ pos: -6.5,-75.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23133
+ - uid: 23147
+ components:
+ - type: Transform
+ pos: 22.5,-84.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26989
+ - uid: 23251
+ components:
+ - type: Transform
+ pos: 37.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
+ - uid: 23255
+ components:
+ - type: Transform
+ pos: 66.5,-39.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
+ - uid: 23256
+ components:
+ - type: Transform
+ pos: 66.5,-32.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 23264
components:
- type: Transform
@@ -15224,26 +15918,45 @@ entities:
- type: Transform
pos: -11.5,8.5
parent: 8364
+ - uid: 23556
+ components:
+ - type: Transform
+ pos: -13.5,-69.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26707
- uid: 23696
components:
- type: Transform
pos: -4.5,6.5
parent: 8364
+ - uid: 23885
+ components:
+ - type: Transform
+ pos: 71.5,-23.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22715
- uid: 23903
components:
- type: Transform
pos: -0.5,6.5
parent: 8364
+ - uid: 23910
+ components:
+ - type: Transform
+ pos: 14.5,-84.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1860
- uid: 23935
components:
- type: Transform
pos: -0.5,15.5
parent: 8364
- - uid: 23939
- components:
- - type: Transform
- pos: 7.5,20.5
- parent: 8364
- uid: 23940
components:
- type: Transform
@@ -15259,6 +15972,30 @@ entities:
- type: Transform
pos: -3.5,27.5
parent: 8364
+ - uid: 24435
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
+ - uid: 24459
+ components:
+ - type: Transform
+ pos: 23.5,-10.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
+ - uid: 24892
+ components:
+ - type: Transform
+ pos: 38.5,-18.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3087
- uid: 24915
components:
- type: Transform
@@ -15269,6 +16006,14 @@ entities:
- type: Transform
pos: 0.5,32.5
parent: 8364
+ - uid: 25092
+ components:
+ - type: Transform
+ pos: -24.5,-70.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22588
- uid: 25236
components:
- type: Transform
@@ -15294,21 +16039,19 @@ entities:
- type: Transform
pos: -12.5,14.5
parent: 8364
+ - uid: 25318
+ components:
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- uid: 25375
components:
- type: Transform
pos: -6.5,15.5
parent: 8364
- - uid: 25826
- components:
- - type: Transform
- pos: -57.5,1.5
- parent: 8364
- - uid: 25827
- components:
- - type: Transform
- pos: -57.5,-5.5
- parent: 8364
- uid: 25830
components:
- type: Transform
@@ -15344,6 +16087,14 @@ entities:
- type: Transform
pos: 0.5,50.5
parent: 8364
+ - uid: 26685
+ components:
+ - type: Transform
+ pos: 33.5,7.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8150
- uid: 26698
components:
- type: Transform
@@ -15364,11 +16115,155 @@ entities:
- type: Transform
pos: -0.5,-73.5
parent: 8364
- - uid: 27489
+ - uid: 26999
components:
- type: Transform
- pos: 3.5,-66.5
+ pos: -0.5,-12.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3656
+ - uid: 27019
+ components:
+ - type: Transform
+ pos: -23.5,-12.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 5769
+ - uid: 27167
+ components:
+ - type: Transform
+ pos: -20.5,-74.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25225
+ - uid: 27204
+ components:
+ - type: Transform
+ pos: 71.5,-30.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22715
+ - uid: 27703
+ components:
+ - type: Transform
+ pos: 53.5,-18.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22706
+ - uid: 27878
+ components:
+ - type: Transform
+ pos: 54.5,-35.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27150
+ - uid: 27947
+ components:
+ - type: Transform
+ pos: 20.5,-25.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27964
+ - uid: 27949
+ components:
+ - type: Transform
+ pos: 40.5,-23.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
+ - uid: 27961
+ components:
+ - type: Transform
+ pos: 25.5,-28.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 291
+ - uid: 27962
+ components:
+ - type: Transform
+ pos: 30.5,-18.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22665
+ - uid: 27963
+ components:
+ - type: Transform
+ pos: 46.5,-18.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3087
+ - uid: 27973
+ components:
+ - type: Transform
+ pos: 30.5,-4.5
+ parent: 8364
+ - uid: 28193
+ components:
+ - type: Transform
+ pos: -0.5,-26.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28154
+ - uid: 28194
+ components:
+ - type: Transform
+ pos: -0.5,-21.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28154
+ - uid: 28206
+ components:
+ - type: Transform
+ pos: 6.5,-30.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - uid: 28233
+ components:
+ - type: Transform
+ pos: -15.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
+ - uid: 28234
+ components:
+ - type: Transform
+ pos: -6.5,-54.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
+ - uid: 28235
+ components:
+ - type: Transform
+ pos: -6.5,-51.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
+ - uid: 28236
+ components:
+ - type: Transform
+ pos: 16.5,15.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- proto: AltarConvertMaint
entities:
- uid: 20907
@@ -15434,30 +16329,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 47.5,-22.5
parent: 8364
- - uid: 563
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-111.5
- parent: 8364
- - uid: 566
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-100.5
- parent: 8364
- - uid: 567
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-92.5
- parent: 8364
- - uid: 568
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-92.5
- parent: 8364
- uid: 1260
components:
- type: MetaData
@@ -15491,6 +16362,13 @@ entities:
- type: Transform
pos: 46.5,-64.5
parent: 8364
+ - uid: 3604
+ components:
+ - type: MetaData
+ name: Gravity APC
+ - type: Transform
+ pos: -22.5,-72.5
+ parent: 8364
- uid: 3714
components:
- type: MetaData
@@ -15520,12 +16398,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 0.5,-60.5
parent: 8364
- - uid: 4938
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-86.5
- parent: 8364
- uid: 5759
components:
- type: MetaData
@@ -15659,22 +16531,6 @@ entities:
currentReceiving: 15.000059
currentSupply: 15
supplyRampPosition: -5.9127808E-05
- - uid: 8150
- components:
- - type: MetaData
- name: AI Upload APC
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-15.5
- parent: 8364
- - uid: 8157
- components:
- - type: MetaData
- name: Grav Gen APC
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-24.5
- parent: 8364
- uid: 8265
components:
- type: Transform
@@ -15913,13 +16769,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -53.5,-9.5
parent: 8364
- - uid: 14075
- components:
- - type: MetaData
- name: Vacant Office B APC
- - type: Transform
- pos: -19.5,-10.5
- parent: 8364
- uid: 14145
components:
- type: MetaData
@@ -16159,12 +17008,27 @@ entities:
- type: Transform
pos: 8.5,-50.5
parent: 8364
+ - uid: 25196
+ components:
+ - type: MetaData
+ name: Newsroom APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-9.5
+ parent: 8364
- uid: 26717
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 10.5,-69.5
parent: 8364
+ - uid: 27052
+ components:
+ - type: MetaData
+ name: Station Anchor APC
+ - type: Transform
+ pos: -18.5,-80.5
+ parent: 8364
- uid: 27503
components:
- type: MetaData
@@ -16173,6 +17037,22 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,-76.5
parent: 8364
+ - uid: 27830
+ components:
+ - type: MetaData
+ name: AI Core APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-15.5
+ parent: 8364
+ - uid: 28155
+ components:
+ - type: MetaData
+ name: AI Upload APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-22.5
+ parent: 8364
- proto: APCElectronics
entities:
- uid: 14440
@@ -16308,7 +17188,7 @@ entities:
- uid: 27915
components:
- type: Transform
- pos: -4.5121183,-14.413322
+ pos: 2.5261002,-23.281736
parent: 8364
- proto: Ash
entities:
@@ -16322,7 +17202,7 @@ entities:
- uid: 27912
components:
- type: Transform
- pos: 3.2198467,-12.066172
+ pos: -3.6,-23.45
parent: 8364
- proto: AsteroidRock
entities:
@@ -16570,6 +17450,911 @@ entities:
- type: Transform
pos: 15.5,-50.5
parent: 8364
+ - uid: 298
+ components:
+ - type: Transform
+ pos: 53.5,32.5
+ parent: 8364
+ - uid: 537
+ components:
+ - type: Transform
+ pos: -44.5,32.5
+ parent: 8364
+ - uid: 568
+ components:
+ - type: Transform
+ pos: -53.5,32.5
+ parent: 8364
+ - uid: 570
+ components:
+ - type: Transform
+ pos: -13.5,-82.5
+ parent: 8364
+ - uid: 576
+ components:
+ - type: Transform
+ pos: -48.5,-64.5
+ parent: 8364
+ - uid: 592
+ components:
+ - type: Transform
+ pos: -52.5,34.5
+ parent: 8364
+ - uid: 661
+ components:
+ - type: Transform
+ pos: -46.5,-67.5
+ parent: 8364
+ - uid: 739
+ components:
+ - type: Transform
+ pos: -9.5,-85.5
+ parent: 8364
+ - uid: 741
+ components:
+ - type: Transform
+ pos: -10.5,-90.5
+ parent: 8364
+ - uid: 862
+ components:
+ - type: Transform
+ pos: 9.5,-88.5
+ parent: 8364
+ - uid: 865
+ components:
+ - type: Transform
+ pos: 9.5,-89.5
+ parent: 8364
+ - uid: 876
+ components:
+ - type: Transform
+ pos: 52.5,34.5
+ parent: 8364
+ - uid: 2004
+ components:
+ - type: Transform
+ pos: 78.5,-79.5
+ parent: 8364
+ - uid: 2261
+ components:
+ - type: Transform
+ pos: -54.5,32.5
+ parent: 8364
+ - uid: 3539
+ components:
+ - type: Transform
+ pos: -54.5,34.5
+ parent: 8364
+ - uid: 4262
+ components:
+ - type: Transform
+ pos: 15.5,-84.5
+ parent: 8364
+ - uid: 4264
+ components:
+ - type: Transform
+ pos: 13.5,-83.5
+ parent: 8364
+ - uid: 4265
+ components:
+ - type: Transform
+ pos: 13.5,-85.5
+ parent: 8364
+ - uid: 4280
+ components:
+ - type: Transform
+ pos: 7.5,-83.5
+ parent: 8364
+ - uid: 4281
+ components:
+ - type: Transform
+ pos: 7.5,-82.5
+ parent: 8364
+ - uid: 4282
+ components:
+ - type: Transform
+ pos: 7.5,-81.5
+ parent: 8364
+ - uid: 4283
+ components:
+ - type: Transform
+ pos: 7.5,-80.5
+ parent: 8364
+ - uid: 4301
+ components:
+ - type: Transform
+ pos: 8.5,-80.5
+ parent: 8364
+ - uid: 4302
+ components:
+ - type: Transform
+ pos: 9.5,-83.5
+ parent: 8364
+ - uid: 4303
+ components:
+ - type: Transform
+ pos: 7.5,-88.5
+ parent: 8364
+ - uid: 4304
+ components:
+ - type: Transform
+ pos: 7.5,-86.5
+ parent: 8364
+ - uid: 4305
+ components:
+ - type: Transform
+ pos: 7.5,-85.5
+ parent: 8364
+ - uid: 4306
+ components:
+ - type: Transform
+ pos: 7.5,-90.5
+ parent: 8364
+ - uid: 4307
+ components:
+ - type: Transform
+ pos: 83.5,-83.5
+ parent: 8364
+ - uid: 4308
+ components:
+ - type: Transform
+ pos: 79.5,-81.5
+ parent: 8364
+ - uid: 4309
+ components:
+ - type: Transform
+ pos: 79.5,-83.5
+ parent: 8364
+ - uid: 4310
+ components:
+ - type: Transform
+ pos: 78.5,-83.5
+ parent: 8364
+ - uid: 4311
+ components:
+ - type: Transform
+ pos: 8.5,-82.5
+ parent: 8364
+ - uid: 4312
+ components:
+ - type: Transform
+ pos: 9.5,-81.5
+ parent: 8364
+ - uid: 4313
+ components:
+ - type: Transform
+ pos: 8.5,-85.5
+ parent: 8364
+ - uid: 4314
+ components:
+ - type: Transform
+ pos: 9.5,-80.5
+ parent: 8364
+ - uid: 4315
+ components:
+ - type: Transform
+ pos: 8.5,-84.5
+ parent: 8364
+ - uid: 4316
+ components:
+ - type: Transform
+ pos: 77.5,-79.5
+ parent: 8364
+ - uid: 4317
+ components:
+ - type: Transform
+ pos: 76.5,-79.5
+ parent: 8364
+ - uid: 4318
+ components:
+ - type: Transform
+ pos: 75.5,-79.5
+ parent: 8364
+ - uid: 4319
+ components:
+ - type: Transform
+ pos: 8.5,-83.5
+ parent: 8364
+ - uid: 4320
+ components:
+ - type: Transform
+ pos: 8.5,-88.5
+ parent: 8364
+ - uid: 4321
+ components:
+ - type: Transform
+ pos: 8.5,-87.5
+ parent: 8364
+ - uid: 4322
+ components:
+ - type: Transform
+ pos: 8.5,-86.5
+ parent: 8364
+ - uid: 4332
+ components:
+ - type: Transform
+ pos: 51.5,34.5
+ parent: 8364
+ - uid: 4333
+ components:
+ - type: Transform
+ pos: 50.5,34.5
+ parent: 8364
+ - uid: 4334
+ components:
+ - type: Transform
+ pos: 49.5,34.5
+ parent: 8364
+ - uid: 4335
+ components:
+ - type: Transform
+ pos: 50.5,36.5
+ parent: 8364
+ - uid: 4336
+ components:
+ - type: Transform
+ pos: 51.5,36.5
+ parent: 8364
+ - uid: 4337
+ components:
+ - type: Transform
+ pos: 75.5,-81.5
+ parent: 8364
+ - uid: 4338
+ components:
+ - type: Transform
+ pos: 78.5,-81.5
+ parent: 8364
+ - uid: 4339
+ components:
+ - type: Transform
+ pos: 76.5,-81.5
+ parent: 8364
+ - uid: 4340
+ components:
+ - type: Transform
+ pos: 77.5,-81.5
+ parent: 8364
+ - uid: 4341
+ components:
+ - type: Transform
+ pos: 7.5,-89.5
+ parent: 8364
+ - uid: 4342
+ components:
+ - type: Transform
+ pos: 8.5,-81.5
+ parent: 8364
+ - uid: 4343
+ components:
+ - type: Transform
+ pos: 50.5,38.5
+ parent: 8364
+ - uid: 4344
+ components:
+ - type: Transform
+ pos: 52.5,36.5
+ parent: 8364
+ - uid: 4345
+ components:
+ - type: Transform
+ pos: 49.5,36.5
+ parent: 8364
+ - uid: 4346
+ components:
+ - type: Transform
+ pos: 53.5,36.5
+ parent: 8364
+ - uid: 4347
+ components:
+ - type: Transform
+ pos: -54.5,-55.5
+ parent: 8364
+ - uid: 4348
+ components:
+ - type: Transform
+ pos: -54.5,-56.5
+ parent: 8364
+ - uid: 4349
+ components:
+ - type: Transform
+ pos: -52.5,-55.5
+ parent: 8364
+ - uid: 4350
+ components:
+ - type: Transform
+ pos: -54.5,-57.5
+ parent: 8364
+ - uid: 4351
+ components:
+ - type: Transform
+ pos: 49.5,38.5
+ parent: 8364
+ - uid: 4352
+ components:
+ - type: Transform
+ pos: 53.5,38.5
+ parent: 8364
+ - uid: 4353
+ components:
+ - type: Transform
+ pos: 52.5,38.5
+ parent: 8364
+ - uid: 4354
+ components:
+ - type: Transform
+ pos: 51.5,38.5
+ parent: 8364
+ - uid: 4361
+ components:
+ - type: Transform
+ pos: -52.5,-59.5
+ parent: 8364
+ - uid: 4362
+ components:
+ - type: Transform
+ pos: -52.5,-58.5
+ parent: 8364
+ - uid: 4363
+ components:
+ - type: Transform
+ pos: -52.5,-57.5
+ parent: 8364
+ - uid: 4364
+ components:
+ - type: Transform
+ pos: -52.5,-56.5
+ parent: 8364
+ - uid: 4377
+ components:
+ - type: Transform
+ pos: -54.5,-58.5
+ parent: 8364
+ - uid: 4378
+ components:
+ - type: Transform
+ pos: -54.5,-59.5
+ parent: 8364
+ - uid: 4409
+ components:
+ - type: Transform
+ pos: -9.5,-79.5
+ parent: 8364
+ - uid: 4411
+ components:
+ - type: Transform
+ pos: -8.5,-82.5
+ parent: 8364
+ - uid: 4412
+ components:
+ - type: Transform
+ pos: -8.5,-90.5
+ parent: 8364
+ - uid: 4414
+ components:
+ - type: Transform
+ pos: -8.5,-81.5
+ parent: 8364
+ - uid: 4415
+ components:
+ - type: Transform
+ pos: -8.5,-84.5
+ parent: 8364
+ - uid: 4416
+ components:
+ - type: Transform
+ pos: 51.5,30.5
+ parent: 8364
+ - uid: 4417
+ components:
+ - type: Transform
+ pos: 85.5,-75.5
+ parent: 8364
+ - uid: 4418
+ components:
+ - type: Transform
+ pos: 87.5,-75.5
+ parent: 8364
+ - uid: 4419
+ components:
+ - type: Transform
+ pos: 86.5,-73.5
+ parent: 8364
+ - uid: 4420
+ components:
+ - type: Transform
+ pos: 1.5,-80.5
+ parent: 8364
+ - uid: 4421
+ components:
+ - type: Transform
+ pos: -1.5,-80.5
+ parent: 8364
+ - uid: 4422
+ components:
+ - type: Transform
+ pos: 0.5,-80.5
+ parent: 8364
+ - uid: 4423
+ components:
+ - type: Transform
+ pos: 14.5,-83.5
+ parent: 8364
+ - uid: 4424
+ components:
+ - type: Transform
+ pos: 13.5,-84.5
+ parent: 8364
+ - uid: 4427
+ components:
+ - type: Transform
+ pos: 15.5,-85.5
+ parent: 8364
+ - uid: 4428
+ components:
+ - type: Transform
+ pos: 16.5,-83.5
+ parent: 8364
+ - uid: 4430
+ components:
+ - type: Transform
+ pos: 14.5,-85.5
+ parent: 8364
+ - uid: 4431
+ components:
+ - type: Transform
+ pos: 15.5,-83.5
+ parent: 8364
+ - uid: 4432
+ components:
+ - type: Transform
+ pos: 14.5,-84.5
+ parent: 8364
+ - uid: 4442
+ components:
+ - type: Transform
+ pos: 4.5,-80.5
+ parent: 8364
+ - uid: 4443
+ components:
+ - type: Transform
+ pos: 3.5,-79.5
+ parent: 8364
+ - uid: 4444
+ components:
+ - type: Transform
+ pos: 3.5,-80.5
+ parent: 8364
+ - uid: 4445
+ components:
+ - type: Transform
+ pos: 2.5,-80.5
+ parent: 8364
+ - uid: 4446
+ components:
+ - type: Transform
+ pos: -7.5,-80.5
+ parent: 8364
+ - uid: 4447
+ components:
+ - type: Transform
+ pos: 72.5,15.5
+ parent: 8364
+ - uid: 4449
+ components:
+ - type: Transform
+ pos: 50.5,28.5
+ parent: 8364
+ - uid: 4450
+ components:
+ - type: Transform
+ pos: 53.5,30.5
+ parent: 8364
+ - uid: 4451
+ components:
+ - type: Transform
+ pos: 52.5,28.5
+ parent: 8364
+ - uid: 4452
+ components:
+ - type: Transform
+ pos: -3.5,-80.5
+ parent: 8364
+ - uid: 4453
+ components:
+ - type: Transform
+ pos: -4.5,-80.5
+ parent: 8364
+ - uid: 4454
+ components:
+ - type: Transform
+ pos: -5.5,-80.5
+ parent: 8364
+ - uid: 4455
+ components:
+ - type: Transform
+ pos: -6.5,-80.5
+ parent: 8364
+ - uid: 4466
+ components:
+ - type: Transform
+ pos: 21.5,-83.5
+ parent: 8364
+ - uid: 4467
+ components:
+ - type: Transform
+ pos: 21.5,-84.5
+ parent: 8364
+ - uid: 4468
+ components:
+ - type: Transform
+ pos: 21.5,-85.5
+ parent: 8364
+ - uid: 4469
+ components:
+ - type: Transform
+ pos: 22.5,-83.5
+ parent: 8364
+ - uid: 4470
+ components:
+ - type: Transform
+ pos: 22.5,-84.5
+ parent: 8364
+ - uid: 4471
+ components:
+ - type: Transform
+ pos: 22.5,-85.5
+ parent: 8364
+ - uid: 4472
+ components:
+ - type: Transform
+ pos: 84.5,-83.5
+ parent: 8364
+ - uid: 4473
+ components:
+ - type: Transform
+ pos: 86.5,-83.5
+ parent: 8364
+ - uid: 4477
+ components:
+ - type: Transform
+ pos: 86.5,-79.5
+ parent: 8364
+ - uid: 4478
+ components:
+ - type: Transform
+ pos: 47.5,41.5
+ parent: 8364
+ - uid: 4479
+ components:
+ - type: Transform
+ pos: 42.5,36.5
+ parent: 8364
+ - uid: 4480
+ components:
+ - 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
+ pos: 45.5,36.5
+ parent: 8364
+ - uid: 4483
+ components:
+ - type: Transform
+ pos: 43.5,36.5
+ parent: 8364
+ - uid: 4484
+ components:
+ - type: Transform
+ pos: -50.5,-57.5
+ parent: 8364
+ - uid: 4485
+ components:
+ - type: Transform
+ pos: -50.5,-55.5
+ parent: 8364
+ - uid: 4486
+ components:
+ - type: Transform
+ pos: -50.5,-56.5
+ parent: 8364
+ - uid: 4487
+ components:
+ - type: Transform
+ pos: -50.5,-58.5
+ parent: 8364
+ - uid: 4488
+ components:
+ - type: Transform
+ pos: 7.5,-87.5
+ parent: 8364
+ - uid: 4489
+ components:
+ - type: Transform
+ pos: 77.5,-83.5
+ parent: 8364
+ - uid: 4490
+ components:
+ - type: Transform
+ pos: 76.5,-83.5
+ parent: 8364
+ - uid: 4491
+ components:
+ - type: Transform
+ pos: 75.5,-83.5
+ parent: 8364
+ - uid: 4626
+ components:
+ - type: Transform
+ pos: 16.5,-84.5
+ parent: 8364
+ - uid: 4627
+ components:
+ - type: Transform
+ pos: 16.5,-85.5
+ parent: 8364
+ - uid: 4628
+ components:
+ - type: Transform
+ pos: 9.5,-82.5
+ parent: 8364
+ - uid: 4629
+ components:
+ - type: Transform
+ pos: 7.5,-84.5
+ parent: 8364
+ - uid: 4630
+ components:
+ - type: Transform
+ pos: -0.5,-80.5
+ parent: 8364
+ - uid: 4631
+ components:
+ - type: Transform
+ pos: 84.5,-73.5
+ parent: 8364
+ - uid: 4632
+ components:
+ - type: Transform
+ pos: 84.5,-79.5
+ parent: 8364
+ - uid: 4633
+ components:
+ - type: Transform
+ pos: 85.5,-79.5
+ parent: 8364
+ - uid: 4634
+ components:
+ - type: Transform
+ pos: 81.5,-86.5
+ parent: 8364
+ - uid: 4635
+ components:
+ - type: Transform
+ pos: 83.5,-73.5
+ parent: 8364
+ - uid: 4636
+ components:
+ - type: Transform
+ pos: 85.5,-73.5
+ parent: 8364
+ - uid: 4637
+ components:
+ - type: Transform
+ pos: 87.5,-73.5
+ parent: 8364
+ - uid: 4638
+ components:
+ - type: Transform
+ pos: 86.5,-75.5
+ parent: 8364
+ - uid: 4639
+ components:
+ - type: Transform
+ pos: 50.5,30.5
+ parent: 8364
+ - uid: 4640
+ components:
+ - type: Transform
+ pos: 85.5,-83.5
+ parent: 8364
+ - uid: 4641
+ components:
+ - type: Transform
+ pos: 87.5,-83.5
+ parent: 8364
+ - uid: 4642
+ components:
+ - type: Transform
+ pos: 87.5,-79.5
+ parent: 8364
+ - uid: 4643
+ components:
+ - type: Transform
+ pos: 44.5,38.5
+ parent: 8364
+ - uid: 4644
+ components:
+ - 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
+ pos: 51.5,28.5
+ parent: 8364
+ - uid: 4657
+ components:
+ - type: Transform
+ pos: 52.5,30.5
+ parent: 8364
+ - uid: 4678
+ components:
+ - type: Transform
+ pos: 49.5,28.5
+ parent: 8364
+ - uid: 4680
+ components:
+ - type: Transform
+ pos: 53.5,28.5
+ parent: 8364
+ - uid: 4684
+ components:
+ - type: Transform
+ pos: 79.5,15.5
+ parent: 8364
+ - uid: 4696
+ components:
+ - type: Transform
+ pos: 87.5,-81.5
+ parent: 8364
+ - uid: 4699
+ components:
+ - type: Transform
+ pos: 6.5,-80.5
+ parent: 8364
+ - uid: 4834
+ components:
+ - type: Transform
+ pos: 5.5,-79.5
+ parent: 8364
+ - uid: 4935
+ components:
+ - type: Transform
+ pos: -9.5,-82.5
+ parent: 8364
+ - uid: 4936
+ components:
+ - type: Transform
+ pos: -8.5,-83.5
+ parent: 8364
+ - uid: 4937
+ components:
+ - type: Transform
+ pos: -8.5,-85.5
+ parent: 8364
+ - uid: 4938
+ components:
+ - type: Transform
+ pos: -7.5,-81.5
+ parent: 8364
+ - uid: 4939
+ components:
+ - type: Transform
+ pos: -9.5,-80.5
+ parent: 8364
+ - uid: 4962
+ components:
+ - type: Transform
+ pos: -7.5,-79.5
+ parent: 8364
+ - uid: 4963
+ components:
+ - type: Transform
+ pos: -6.5,-79.5
+ parent: 8364
+ - uid: 4964
+ components:
+ - type: Transform
+ pos: -5.5,-79.5
+ parent: 8364
+ - uid: 4965
+ components:
+ - type: Transform
+ pos: -4.5,-79.5
+ parent: 8364
+ - uid: 4966
+ components:
+ - type: Transform
+ pos: -2.5,-80.5
+ parent: 8364
+ - uid: 5197
+ components:
+ - type: Transform
+ pos: 23.5,-83.5
+ parent: 8364
+ - uid: 5198
+ components:
+ - type: Transform
+ pos: 23.5,-84.5
+ parent: 8364
+ - uid: 5200
+ components:
+ - type: Transform
+ pos: 23.5,-85.5
+ parent: 8364
+ - uid: 5201
+ components:
+ - type: Transform
+ pos: 20.5,-85.5
+ parent: 8364
+ - uid: 5273
+ components:
+ - type: Transform
+ pos: 8.5,-89.5
+ parent: 8364
+ - uid: 6091
+ components:
+ - type: Transform
+ pos: -46.5,32.5
+ parent: 8364
+ - uid: 6092
+ components:
+ - type: Transform
+ pos: -47.5,32.5
+ parent: 8364
+ - uid: 6093
+ components:
+ - type: Transform
+ pos: -57.5,-61.5
+ parent: 8364
+ - uid: 6096
+ components:
+ - 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
+ pos: -34.5,14.5
+ parent: 8364
+ - uid: 8045
+ components:
+ - type: Transform
+ pos: -48.5,-59.5
+ parent: 8364
+ - uid: 8076
+ components:
+ - type: Transform
+ pos: -50.5,-59.5
+ parent: 8364
- uid: 9355
components:
- type: Transform
@@ -16615,6 +18400,36 @@ entities:
- type: Transform
pos: 26.5,-50.5
parent: 8364
+ - uid: 10555
+ components:
+ - type: Transform
+ pos: -48.5,-58.5
+ parent: 8364
+ - uid: 10706
+ components:
+ - type: Transform
+ pos: -44.5,-67.5
+ parent: 8364
+ - uid: 10855
+ components:
+ - type: Transform
+ pos: 79.5,-79.5
+ parent: 8364
+ - uid: 10869
+ components:
+ - type: Transform
+ pos: 79.5,-77.5
+ parent: 8364
+ - uid: 11751
+ components:
+ - type: Transform
+ pos: -45.5,32.5
+ parent: 8364
+ - uid: 11759
+ components:
+ - type: Transform
+ pos: 6.5,-81.5
+ parent: 8364
- uid: 11914
components:
- type: Transform
@@ -16630,6 +18445,31 @@ entities:
- type: Transform
pos: 28.5,-52.5
parent: 8364
+ - uid: 14481
+ components:
+ - type: Transform
+ pos: 4.5,-79.5
+ parent: 8364
+ - uid: 14482
+ components:
+ - type: Transform
+ pos: 6.5,-79.5
+ parent: 8364
+ - uid: 14483
+ components:
+ - type: Transform
+ pos: -46.5,-58.5
+ parent: 8364
+ - uid: 14505
+ components:
+ - type: Transform
+ pos: 85.5,-77.5
+ parent: 8364
+ - uid: 14506
+ components:
+ - type: Transform
+ pos: 15.5,-49.5
+ parent: 8364
- uid: 14641
components:
- type: Transform
@@ -16725,6 +18565,131 @@ entities:
- type: Transform
pos: 14.5,-50.5
parent: 8364
+ - uid: 22450
+ components:
+ - 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
+ pos: 42.5,38.5
+ parent: 8364
+ - uid: 22455
+ components:
+ - type: Transform
+ pos: 41.5,38.5
+ parent: 8364
+ - uid: 22456
+ components:
+ - type: Transform
+ pos: 43.5,38.5
+ parent: 8364
+ - uid: 22457
+ components:
+ - type: Transform
+ pos: 87.5,-77.5
+ parent: 8364
+ - uid: 22513
+ components:
+ - type: Transform
+ pos: 86.5,-77.5
+ parent: 8364
+ - uid: 22514
+ components:
+ - type: Transform
+ pos: -8.5,-86.5
+ parent: 8364
+ - uid: 22515
+ components:
+ - type: Transform
+ pos: -8.5,-88.5
+ parent: 8364
+ - uid: 22527
+ components:
+ - type: Transform
+ pos: -9.5,-78.5
+ parent: 8364
+ - uid: 22528
+ components:
+ - type: Transform
+ pos: -9.5,-81.5
+ parent: 8364
+ - uid: 22547
+ components:
+ - type: Transform
+ pos: 20.5,-83.5
+ parent: 8364
+ - uid: 22548
+ components:
+ - type: Transform
+ pos: 20.5,-84.5
+ parent: 8364
+ - uid: 22551
+ components:
+ - type: Transform
+ pos: 86.5,-81.5
+ parent: 8364
+ - uid: 22556
+ components:
+ - type: Transform
+ pos: 85.5,-81.5
+ parent: 8364
+ - uid: 22557
+ components:
+ - type: Transform
+ pos: 83.5,-81.5
+ parent: 8364
+ - uid: 22573
+ components:
+ - type: Transform
+ pos: 83.5,-77.5
+ parent: 8364
+ - uid: 22591
+ components:
+ - type: Transform
+ pos: 84.5,-77.5
+ parent: 8364
+ - uid: 22600
+ components:
+ - type: Transform
+ pos: 83.5,-75.5
+ parent: 8364
+ - uid: 22601
+ components:
+ - type: Transform
+ pos: 5.5,-80.5
+ parent: 8364
+ - uid: 22644
+ components:
+ - type: Transform
+ pos: -48.5,-56.5
+ parent: 8364
+ - uid: 22658
+ components:
+ - type: Transform
+ pos: -46.5,-59.5
+ parent: 8364
+ - uid: 22695
+ components:
+ - type: Transform
+ pos: -48.5,-57.5
+ parent: 8364
- uid: 22803
components:
- type: Transform
@@ -16735,56 +18700,966 @@ entities:
- type: Transform
pos: 15.5,-52.5
parent: 8364
+ - uid: 23134
+ components:
+ - 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
+ pos: -8.5,-89.5
+ parent: 8364
- uid: 23143
components:
- type: Transform
pos: 15.5,-51.5
parent: 8364
+ - uid: 23155
+ components:
+ - type: Transform
+ pos: 84.5,-81.5
+ parent: 8364
+ - uid: 23166
+ components:
+ - type: Transform
+ pos: 15.5,-53.5
+ parent: 8364
- uid: 23167
components:
- type: Transform
pos: 16.5,-50.5
parent: 8364
+ - uid: 23319
+ components:
+ - type: Transform
+ pos: -8.5,-79.5
+ parent: 8364
+ - uid: 23533
+ components:
+ - type: Transform
+ pos: 83.5,-79.5
+ parent: 8364
+ - uid: 23536
+ components:
+ - 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
+ pos: -46.5,-57.5
+ parent: 8364
+ - uid: 23922
+ components:
+ - type: Transform
+ pos: -46.5,-64.5
+ parent: 8364
+ - uid: 23928
+ components:
+ - type: Transform
+ pos: -46.5,-66.5
+ parent: 8364
+ - uid: 23929
+ components:
+ - type: Transform
+ pos: -50.5,-65.5
+ parent: 8364
+ - uid: 23931
+ components:
+ - type: Transform
+ pos: -52.5,-66.5
+ parent: 8364
+ - uid: 23932
+ components:
+ - type: Transform
+ pos: -50.5,-66.5
+ parent: 8364
+ - uid: 23933
+ components:
+ - type: Transform
+ pos: -50.5,-64.5
+ parent: 8364
+ - uid: 23934
+ components:
+ - type: Transform
+ pos: -50.5,-67.5
+ parent: 8364
+ - uid: 23937
+ components:
+ - type: Transform
+ pos: -50.5,-63.5
+ parent: 8364
+ - uid: 23939
+ components:
+ - type: Transform
+ pos: -52.5,-63.5
+ parent: 8364
+ - uid: 23941
+ components:
+ - type: Transform
+ pos: -46.5,-63.5
+ parent: 8364
+ - uid: 23946
+ components:
+ - type: Transform
+ pos: -48.5,-65.5
+ parent: 8364
+ - uid: 23947
+ components:
+ - type: Transform
+ pos: -9.5,-87.5
+ parent: 8364
+ - uid: 23948
+ components:
+ - type: Transform
+ pos: -9.5,-83.5
+ parent: 8364
+ - uid: 24187
+ components:
+ - type: Transform
+ pos: -9.5,-84.5
+ parent: 8364
+ - uid: 24188
+ components:
+ - type: Transform
+ pos: -9.5,-88.5
+ parent: 8364
+ - uid: 24384
+ components:
+ - type: Transform
+ pos: -48.5,-63.5
+ parent: 8364
+ - uid: 24979
+ components:
+ - type: Transform
+ pos: -54.5,-64.5
+ parent: 8364
+ - uid: 24982
+ components:
+ - type: Transform
+ pos: -54.5,-66.5
+ parent: 8364
+ - uid: 24983
+ components:
+ - type: Transform
+ pos: -52.5,-67.5
+ parent: 8364
+ - uid: 24984
+ components:
+ - type: Transform
+ pos: -54.5,-65.5
+ parent: 8364
+ - uid: 25055
+ components:
+ - type: Transform
+ pos: 44.5,30.5
+ parent: 8364
+ - uid: 25063
+ components:
+ - type: Transform
+ pos: 41.5,32.5
+ parent: 8364
+ - uid: 25074
+ components:
+ - type: Transform
+ pos: 45.5,30.5
+ parent: 8364
+ - uid: 25077
+ components:
+ - type: Transform
+ pos: -52.5,-65.5
+ parent: 8364
+ - uid: 25087
+ components:
+ - type: Transform
+ pos: -51.5,28.5
+ parent: 8364
+ - uid: 25150
+ components:
+ - type: Transform
+ pos: -55.5,28.5
+ parent: 8364
+ - uid: 25158
+ components:
+ - type: Transform
+ pos: -53.5,34.5
+ parent: 8364
+ - uid: 25163
+ components:
+ - type: Transform
+ pos: 65.5,-78.5
+ parent: 8364
+ - uid: 25165
+ components:
+ - type: Transform
+ pos: -44.5,34.5
+ parent: 8364
+ - uid: 25184
+ components:
+ - type: Transform
+ pos: -9.5,-91.5
+ parent: 8364
+ - uid: 25188
+ components:
+ - type: Transform
+ pos: -47.5,36.5
+ parent: 8364
+ - uid: 25192
+ components:
+ - type: Transform
+ pos: 75.5,-75.5
+ parent: 8364
+ - uid: 25193
+ components:
+ - type: Transform
+ pos: 77.5,-77.5
+ parent: 8364
+ - uid: 25195
+ components:
+ - type: Transform
+ pos: 53.5,34.5
+ parent: 8364
+ - uid: 25202
+ components:
+ - type: Transform
+ pos: -43.5,32.5
+ parent: 8364
+ - uid: 25203
+ components:
+ - type: Transform
+ pos: 44.5,32.5
+ parent: 8364
+ - uid: 25223
+ components:
+ - type: Transform
+ pos: 5.5,-93.5
+ parent: 8364
+ - uid: 25224
+ components:
+ - type: Transform
+ pos: -5.5,-93.5
+ parent: 8364
+ - uid: 25241
+ components:
+ - type: Transform
+ pos: 3.5,-93.5
+ parent: 8364
+ - uid: 25347
+ components:
+ - type: Transform
+ pos: -53.5,28.5
+ parent: 8364
+ - uid: 25453
+ components:
+ - type: Transform
+ pos: -51.5,32.5
+ parent: 8364
+ - uid: 25458
+ components:
+ - type: Transform
+ pos: 42.5,32.5
+ parent: 8364
+ - uid: 25479
+ components:
+ - type: Transform
+ pos: 45.5,32.5
+ parent: 8364
+ - uid: 25486
+ components:
+ - type: Transform
+ pos: 43.5,32.5
+ parent: 8364
+ - uid: 25495
+ components:
+ - type: Transform
+ pos: -48.5,-66.5
+ parent: 8364
+ - uid: 25677
+ components:
+ - type: Transform
+ pos: -0.5,-86.5
+ parent: 8364
+ - uid: 25678
+ components:
+ - type: Transform
+ pos: -10.5,-85.5
+ parent: 8364
+ - uid: 25892
+ components:
+ - type: Transform
+ pos: -54.5,-67.5
+ parent: 8364
+ - uid: 25897
+ components:
+ - type: Transform
+ pos: -52.5,32.5
+ parent: 8364
+ - uid: 25927
+ components:
+ - type: Transform
+ pos: -54.5,28.5
+ parent: 8364
+ - uid: 25949
+ components:
+ - type: Transform
+ pos: 65.5,-79.5
+ parent: 8364
+ - uid: 25966
+ components:
+ - type: Transform
+ pos: -55.5,32.5
+ parent: 8364
+ - uid: 25975
+ components:
+ - type: Transform
+ pos: 49.5,30.5
+ parent: 8364
+ - uid: 25982
+ components:
+ - type: Transform
+ pos: -45.5,34.5
+ parent: 8364
+ - uid: 26033
+ components:
+ - type: Transform
+ pos: -6.5,-93.5
+ parent: 8364
+ - uid: 26065
+ components:
+ - type: Transform
+ pos: -10.5,-91.5
+ parent: 8364
+ - uid: 26072
+ components:
+ - type: Transform
+ pos: -7.5,-93.5
+ parent: 8364
+ - uid: 26081
+ components:
+ - type: Transform
+ pos: -15.5,-82.5
+ parent: 8364
+ - uid: 26082
+ components:
+ - type: Transform
+ pos: -10.5,-84.5
+ parent: 8364
+ - uid: 26088
+ components:
+ - type: Transform
+ pos: -14.5,-82.5
+ parent: 8364
+ - uid: 26102
+ components:
+ - type: Transform
+ pos: 56.5,-78.5
+ parent: 8364
+ - uid: 26103
+ components:
+ - type: Transform
+ pos: -3.5,-93.5
+ parent: 8364
+ - uid: 26104
+ components:
+ - type: Transform
+ pos: 2.5,-93.5
+ parent: 8364
+ - uid: 26106
+ components:
+ - type: Transform
+ pos: 8.5,-91.5
+ parent: 8364
+ - uid: 26107
+ components:
+ - type: Transform
+ pos: 8.5,-90.5
+ parent: 8364
+ - uid: 26381
+ components:
+ - type: Transform
+ pos: 6.5,-91.5
+ parent: 8364
+ - uid: 26388
+ components:
+ - type: Transform
+ pos: -46.5,-65.5
+ parent: 8364
+ - uid: 26628
+ components:
+ - type: Transform
+ pos: -52.5,-64.5
+ parent: 8364
+ - uid: 26670
+ components:
+ - type: Transform
+ pos: -48.5,-67.5
+ parent: 8364
+ - uid: 26877
+ components:
+ - type: Transform
+ pos: -54.5,-63.5
+ parent: 8364
+ - uid: 26924
+ components:
+ - type: Transform
+ pos: -46.5,34.5
+ parent: 8364
+ - uid: 26930
+ components:
+ - type: Transform
+ pos: -52.5,28.5
+ parent: 8364
+ - uid: 26946
+ components:
+ - type: Transform
+ pos: -44.5,-59.5
+ parent: 8364
+ - uid: 26947
+ components:
+ - type: Transform
+ pos: -46.5,-55.5
+ parent: 8364
+ - uid: 26948
+ components:
+ - type: Transform
+ pos: -8.5,-80.5
+ parent: 8364
+ - uid: 26949
+ components:
+ - type: Transform
+ pos: -8.5,-87.5
+ parent: 8364
+ - uid: 26951
+ components:
+ - type: Transform
+ pos: 45.5,34.5
+ parent: 8364
+ - uid: 26961
+ components:
+ - type: Transform
+ pos: 44.5,34.5
+ parent: 8364
+ - uid: 26967
+ components:
+ - type: Transform
+ pos: -51.5,34.5
+ parent: 8364
+ - uid: 26968
+ components:
+ - type: Transform
+ pos: -43.5,28.5
+ parent: 8364
+ - uid: 26969
+ components:
+ - type: Transform
+ pos: -52.5,36.5
+ parent: 8364
+ - uid: 26970
+ components:
+ - type: Transform
+ pos: -55.5,30.5
+ parent: 8364
+ - uid: 26971
+ components:
+ - type: Transform
+ pos: -9.5,-86.5
+ parent: 8364
+ - uid: 26972
+ components:
+ - type: Transform
+ pos: -9.5,-89.5
+ parent: 8364
+ - uid: 26976
+ components:
+ - type: Transform
+ pos: -9.5,-90.5
+ parent: 8364
+ - uid: 26981
+ components:
+ - type: Transform
+ pos: -44.5,-57.5
+ parent: 8364
+ - uid: 26982
+ components:
+ - type: Transform
+ pos: -44.5,-65.5
+ parent: 8364
+ - uid: 26983
+ components:
+ - type: Transform
+ pos: -44.5,-58.5
+ parent: 8364
+ - uid: 27004
+ components:
+ - type: Transform
+ pos: -49.5,41.5
+ parent: 8364
+ - uid: 27005
+ components:
+ - type: Transform
+ pos: -55.5,36.5
+ parent: 8364
+ - uid: 27006
+ components:
+ - type: Transform
+ pos: -47.5,28.5
+ parent: 8364
+ - uid: 27014
+ components:
+ - type: Transform
+ pos: -54.5,30.5
+ parent: 8364
+ - uid: 27015
+ components:
+ - type: Transform
+ pos: -47.5,30.5
+ parent: 8364
+ - uid: 27032
+ components:
+ - type: Transform
+ pos: 51.5,32.5
+ parent: 8364
+ - uid: 27035
+ components:
+ - type: Transform
+ pos: 52.5,32.5
+ parent: 8364
+ - uid: 27039
+ components:
+ - type: Transform
+ pos: -46.5,38.5
+ parent: 8364
+ - uid: 27040
+ components:
+ - type: Transform
+ pos: -55.5,34.5
+ parent: 8364
+ - uid: 27041
+ components:
+ - type: Transform
+ pos: 67.5,-76.5
+ parent: 8364
+ - uid: 27042
+ components:
+ - type: Transform
+ pos: 68.5,-75.5
+ parent: 8364
+ - uid: 27069
+ components:
+ - type: Transform
+ pos: -36.5,16.5
+ parent: 8364
+ - uid: 27070
+ components:
+ - type: Transform
+ pos: -46.5,28.5
+ parent: 8364
+ - uid: 27071
+ components:
+ - type: Transform
+ pos: -44.5,28.5
+ parent: 8364
+ - uid: 27072
+ components:
+ - type: Transform
+ pos: -52.5,30.5
+ parent: 8364
+ - uid: 27073
+ components:
+ - type: Transform
+ pos: -51.5,30.5
+ parent: 8364
+ - uid: 27074
+ components:
+ - type: Transform
+ pos: -53.5,30.5
+ parent: 8364
+ - uid: 27075
+ components:
+ - type: Transform
+ pos: -45.5,30.5
+ parent: 8364
+ - uid: 27076
+ components:
+ - type: Transform
+ pos: -43.5,30.5
+ parent: 8364
+ - uid: 27077
+ components:
+ - type: Transform
+ pos: -45.5,28.5
+ parent: 8364
+ - uid: 27078
+ components:
+ - type: Transform
+ pos: -44.5,30.5
+ parent: 8364
+ - uid: 27079
+ components:
+ - type: Transform
+ pos: -35.5,15.5
+ parent: 8364
+ - uid: 27081
+ components:
+ - type: Transform
+ pos: 50.5,32.5
+ parent: 8364
+ - uid: 27082
+ components:
+ - type: Transform
+ pos: 43.5,34.5
+ parent: 8364
+ - uid: 27083
+ components:
+ - type: Transform
+ pos: -43.5,38.5
+ parent: 8364
+ - uid: 27084
+ components:
+ - type: Transform
+ pos: -51.5,36.5
+ parent: 8364
+ - uid: 27085
+ components:
+ - type: Transform
+ pos: 41.5,34.5
+ parent: 8364
+ - uid: 27086
+ components:
+ - type: Transform
+ pos: 49.5,32.5
+ parent: 8364
+ - uid: 27087
+ components:
+ - type: Transform
+ pos: 42.5,34.5
+ parent: 8364
+ - uid: 27088
+ components:
+ - type: Transform
+ pos: 66.5,-76.5
+ parent: 8364
+ - uid: 27089
+ components:
+ - type: Transform
+ pos: 69.5,-79.5
+ parent: 8364
+ - uid: 27090
+ components:
+ - type: Transform
+ pos: 67.5,-78.5
+ parent: 8364
+ - uid: 27091
+ components:
+ - type: Transform
+ pos: 70.5,-80.5
+ parent: 8364
+ - uid: 27092
+ components:
+ - type: Transform
+ pos: 66.5,-78.5
+ parent: 8364
+ - uid: 27093
+ components:
+ - type: Transform
+ pos: 43.5,30.5
+ parent: 8364
+ - uid: 27094
+ components:
+ - type: Transform
+ pos: 42.5,30.5
+ parent: 8364
+ - uid: 27095
+ components:
+ - type: Transform
+ pos: 66.5,-77.5
+ parent: 8364
+ - uid: 27096
+ components:
+ - type: Transform
+ pos: 45.5,38.5
+ parent: 8364
+ - uid: 27097
+ components:
+ - type: Transform
+ pos: -46.5,30.5
+ parent: 8364
+ - uid: 27098
+ components:
+ - type: Transform
+ pos: 45.5,28.5
+ parent: 8364
+ - uid: 27099
+ components:
+ - type: Transform
+ pos: 41.5,30.5
+ parent: 8364
+ - uid: 27100
+ components:
+ - type: Transform
+ pos: 43.5,28.5
+ parent: 8364
+ - uid: 27101
+ components:
+ - type: Transform
+ pos: 44.5,28.5
+ parent: 8364
+ - uid: 27102
+ components:
+ - type: Transform
+ pos: 68.5,-76.5
+ parent: 8364
+ - uid: 27103
+ components:
+ - type: Transform
+ pos: 67.5,-77.5
+ parent: 8364
+ - uid: 27104
+ components:
+ - type: Transform
+ pos: 70.5,-78.5
+ parent: 8364
+ - uid: 27105
+ components:
+ - type: Transform
+ pos: 68.5,-77.5
+ parent: 8364
+ - uid: 27106
+ components:
+ - type: Transform
+ pos: 42.5,28.5
+ parent: 8364
+ - uid: 27107
+ components:
+ - type: Transform
+ pos: 41.5,28.5
+ parent: 8364
+ - uid: 27108
+ components:
+ - type: Transform
+ pos: 69.5,-76.5
+ parent: 8364
+ - uid: 27109
+ components:
+ - type: Transform
+ pos: 69.5,-78.5
+ parent: 8364
+ - uid: 27110
+ components:
+ - type: Transform
+ pos: 70.5,-77.5
+ parent: 8364
+ - uid: 27111
+ components:
+ - type: Transform
+ pos: 69.5,-77.5
+ parent: 8364
+ - uid: 27172
+ components:
+ - type: Transform
+ pos: -7.5,-91.5
+ parent: 8364
+ - uid: 27173
+ components:
+ - type: Transform
+ pos: 66.5,-80.5
+ parent: 8364
+ - uid: 27174
+ components:
+ - type: Transform
+ pos: 66.5,-79.5
+ parent: 8364
+ - uid: 27207
+ components:
+ - type: Transform
+ pos: 4.5,-93.5
+ parent: 8364
+ - uid: 27230
+ components:
+ - type: Transform
+ pos: -8.5,-91.5
+ parent: 8364
+ - uid: 27236
+ components:
+ - type: Transform
+ pos: 76.5,-73.5
+ parent: 8364
+ - uid: 27240
+ components:
+ - type: Transform
+ pos: 75.5,-73.5
+ parent: 8364
+ - uid: 27256
+ components:
+ - type: Transform
+ pos: 78.5,-75.5
+ parent: 8364
+ - uid: 27257
+ components:
+ - type: Transform
+ pos: 79.5,-73.5
+ parent: 8364
+ - uid: 27533
+ components:
+ - type: Transform
+ pos: 7.5,-91.5
+ parent: 8364
+ - uid: 27551
+ components:
+ - type: Transform
+ pos: 76.5,-75.5
+ parent: 8364
+ - uid: 27552
+ components:
+ - type: Transform
+ pos: 77.5,-75.5
+ parent: 8364
+ - uid: 27795
+ components:
+ - type: Transform
+ pos: -53.5,36.5
+ parent: 8364
+ - uid: 27796
+ components:
+ - type: Transform
+ pos: -54.5,36.5
+ parent: 8364
+ - uid: 27797
+ components:
+ - type: Transform
+ pos: -45.5,38.5
+ parent: 8364
+ - uid: 27798
+ components:
+ - type: Transform
+ pos: -44.5,-55.5
+ parent: 8364
+ - uid: 27799
+ components:
+ - type: Transform
+ pos: -44.5,-63.5
+ parent: 8364
+ - uid: 27800
+ components:
+ - type: Transform
+ pos: -44.5,-56.5
+ parent: 8364
+ - uid: 27801
+ components:
+ - type: Transform
+ pos: -44.5,-64.5
+ parent: 8364
+ - uid: 27802
+ components:
+ - type: Transform
+ pos: -54.5,38.5
+ parent: 8364
+ - uid: 27803
+ components:
+ - type: Transform
+ pos: -52.5,38.5
+ parent: 8364
+ - uid: 27804
+ components:
+ - type: Transform
+ pos: -53.5,38.5
+ parent: 8364
+ - uid: 27805
+ components:
+ - type: Transform
+ pos: -55.5,38.5
+ parent: 8364
+ - uid: 27806
+ components:
+ - type: Transform
+ pos: -43.5,36.5
+ parent: 8364
+ - uid: 27807
+ components:
+ - type: Transform
+ pos: -45.5,36.5
+ parent: 8364
+ - uid: 27808
+ components:
+ - type: Transform
+ pos: -44.5,36.5
+ parent: 8364
+ - uid: 27809
+ components:
+ - type: Transform
+ pos: -46.5,36.5
+ parent: 8364
+ - uid: 27810
+ components:
+ - type: Transform
+ pos: -44.5,-66.5
+ parent: 8364
+ - uid: 27811
+ components:
+ - type: Transform
+ pos: -51.5,38.5
+ parent: 8364
+ - uid: 27863
+ components:
+ - type: Transform
+ pos: -47.5,38.5
+ parent: 8364
+ - uid: 27864
+ components:
+ - type: Transform
+ pos: -44.5,38.5
+ parent: 8364
+ - uid: 27865
+ components:
+ - type: Transform
+ pos: 77.5,-73.5
+ parent: 8364
+ - uid: 27866
+ components:
+ - type: Transform
+ pos: 78.5,-73.5
+ parent: 8364
+ - uid: 27867
+ components:
+ - type: Transform
+ pos: 77.5,11.5
+ parent: 8364
+ - uid: 27868
+ components:
+ - type: Transform
+ pos: 79.5,-75.5
+ parent: 8364
+ - uid: 27870
+ components:
+ - type: Transform
+ pos: 78.5,-77.5
+ parent: 8364
+ - uid: 27871
+ components:
+ - type: Transform
+ pos: 75.5,-77.5
+ parent: 8364
+ - uid: 27989
+ components:
+ - type: Transform
+ pos: 76.5,-77.5
+ parent: 8364
- uid: 27997
components:
- type: Transform
pos: -8.5,-92.5
parent: 8364
- - uid: 27998
- components:
- - type: Transform
- pos: 21.5,-80.5
- parent: 8364
- - uid: 27999
- components:
- - type: Transform
- pos: 22.5,-80.5
- parent: 8364
- - uid: 28000
- components:
- - type: Transform
- pos: 23.5,-80.5
- parent: 8364
- - uid: 28001
- components:
- - type: Transform
- pos: 25.5,-80.5
- parent: 8364
- - uid: 28002
- components:
- - type: Transform
- pos: 24.5,-80.5
- parent: 8364
- - uid: 28003
- components:
- - type: Transform
- pos: 21.5,-87.5
- parent: 8364
- - uid: 28004
- components:
- - type: Transform
- pos: 20.5,-87.5
- parent: 8364
- uid: 28005
components:
- type: Transform
@@ -17192,13 +20067,6 @@ entities:
- type: Transform
pos: -32.5,-22.5
parent: 8364
-- proto: BannerNanotrasen
- entities:
- - uid: 21765
- components:
- - type: Transform
- pos: -24.5,-9.5
- parent: 8364
- proto: Barricade
entities:
- uid: 54
@@ -17374,11 +20242,13 @@ entities:
rot: -1.5707963267948966 rad
pos: 80.5,-51.5
parent: 8364
- - uid: 27190
+- proto: BaseComputerAiAccess
+ entities:
+ - uid: 28183
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 33.5,-86.5
+ pos: 0.5,-26.5
parent: 8364
- proto: BaseGasCondenser
entities:
@@ -17842,6 +20712,12 @@ entities:
- type: Transform
pos: 27.5,-41.5
parent: 8364
+ - uid: 3542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-86.5
+ parent: 8364
- uid: 3568
components:
- type: MetaData
@@ -17849,6 +20725,12 @@ entities:
- type: Transform
pos: -42.5,-49.5
parent: 8364
+ - uid: 3605
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-86.5
+ parent: 8364
- uid: 3750
components:
- type: Transform
@@ -17859,6 +20741,12 @@ entities:
- type: Transform
pos: -6.5,-76.5
parent: 8364
+ - uid: 4205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-86.5
+ parent: 8364
- uid: 4704
components:
- type: Transform
@@ -17908,15 +20796,22 @@ entities:
- type: Transform
pos: -5.5,-76.5
parent: 8364
+ - uid: 13849
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-86.5
+ parent: 8364
- uid: 13910
components:
- type: Transform
pos: -61.5,-21.5
parent: 8364
- - uid: 17676
+ - uid: 15544
components:
- type: Transform
- pos: 19.5,-86.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-86.5
parent: 8364
- uid: 18326
components:
@@ -17953,16 +20848,6 @@ entities:
- type: Transform
pos: 91.5,-25.5
parent: 8364
- - uid: 20133
- components:
- - type: Transform
- pos: 19.5,-83.5
- parent: 8364
- - uid: 20134
- components:
- - type: Transform
- pos: 19.5,-84.5
- parent: 8364
- uid: 20180
components:
- type: Transform
@@ -17988,10 +20873,11 @@ entities:
- type: Transform
pos: 15.5,-49.5
parent: 8364
- - uid: 26646
+ - uid: 25091
components:
- type: Transform
- pos: 19.5,-85.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-86.5
parent: 8364
- uid: 26666
components:
@@ -18297,15 +21183,16 @@ entities:
parent: 8364
- proto: BorgCharger
entities:
- - uid: 25975
+ - uid: 3719
components:
- type: Transform
- pos: 2.5,-10.5
+ pos: -4.5,-14.5
parent: 8364
- - uid: 26072
+ - uid: 4207
components:
- type: Transform
- pos: -3.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-14.5
parent: 8364
- uid: 27381
components:
@@ -18327,11 +21214,6 @@ entities:
- type: Transform
pos: -48.5,-16.5
parent: 8364
- - uid: 27996
- components:
- - type: Transform
- pos: 33.5,-84.5
- parent: 8364
- proto: BoxBeaker
entities:
- uid: 18896
@@ -18432,7 +21314,7 @@ entities:
- uid: 9388
components:
- type: Transform
- pos: -2.4849367,38.8545
+ pos: -2.3561149,38.959312
parent: 8364
- uid: 9589
components:
@@ -18488,10 +21370,17 @@ entities:
- type: Transform
pos: -55.5,-11.5
parent: 8364
- - uid: 25859
+- proto: BoxFolderClipboard
+ entities:
+ - uid: 6122
components:
- type: Transform
- pos: -0.48406625,-11.440446
+ pos: -20.684553,-13.423042
+ parent: 8364
+ - uid: 8459
+ components:
+ - type: Transform
+ pos: 3.5576177,24.479216
parent: 8364
- proto: BoxFolderGrey
entities:
@@ -18515,7 +21404,7 @@ entities:
- uid: 8803
components:
- type: Transform
- pos: -11.5,32.5
+ pos: -11.686346,32.74469
parent: 8364
- uid: 9172
components:
@@ -18569,11 +21458,6 @@ entities:
- type: Transform
pos: 69.5,-35.5
parent: 8364
- - uid: 27175
- components:
- - type: Transform
- pos: 26.534222,-106.3969
- parent: 8364
- proto: BoxFolderYellow
entities:
- uid: 6601
@@ -18657,7 +21541,15 @@ entities:
- uid: 9389
components:
- type: Transform
- pos: -2.5193274,39.107735
+ pos: -2.7208788,39.167786
+ parent: 8364
+- proto: BoxingBell
+ entities:
+ - uid: 11158
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,14.5
parent: 8364
- proto: BoxLatexGloves
entities:
@@ -18687,11 +21579,6 @@ entities:
- type: Transform
pos: 55.44968,-51.427322
parent: 8364
- - uid: 14437
- components:
- - type: Transform
- pos: -20.70863,-5.352804
- parent: 8364
- proto: BoxLightMixed
entities:
- uid: 2271
@@ -18704,25 +21591,25 @@ entities:
- type: Transform
pos: 6.392988,-63.281517
parent: 8364
+ - uid: 9310
+ components:
+ - type: Transform
+ pos: 2.5504029,-35.390793
+ parent: 8364
- uid: 14439
components:
- type: Transform
- pos: -20.20863,-5.399679
+ pos: -20.550636,-5.3221245
parent: 8364
- proto: BoxLighttube
entities:
- uid: 14438
components:
- type: Transform
- pos: -20.536755,-5.462179
+ pos: -20.331778,-5.4367876
parent: 8364
- proto: BoxLighttubeHoliday
entities:
- - uid: 16587
- components:
- - type: Transform
- pos: 2.6634254,-34.550735
- parent: 8364
- uid: 16591
components:
- type: Transform
@@ -18789,6 +21676,13 @@ entities:
- type: Transform
pos: 2.4019985,-33.752228
parent: 8364
+- proto: BoxWarmLightbulb
+ entities:
+ - uid: 3152
+ components:
+ - type: Transform
+ pos: -20.727808,-5.2387333
+ parent: 8364
- proto: BoxZiptie
entities:
- uid: 542
@@ -18906,6 +21800,44 @@ entities:
- type: Transform
pos: 5.6363735,-36.502228
parent: 8364
+- proto: ButtonFrameCaution
+ entities:
+ - uid: 4248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,-86.5
+ parent: 8364
+ - uid: 22313
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-71.5
+ parent: 8364
+ - uid: 23908
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-71.5
+ parent: 8364
+ - uid: 27061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-82.5
+ parent: 8364
+ - uid: 27063
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,-86.5
+ parent: 8364
+ - uid: 27850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-82.5
+ parent: 8364
- proto: ButtonFrameExit
entities:
- uid: 3810
@@ -18940,11 +21872,6 @@ entities:
- type: Transform
pos: 9.5,-77.5
parent: 8364
- - uid: 144
- components:
- - type: Transform
- pos: 14.5,-77.5
- parent: 8364
- uid: 346
components:
- type: Transform
@@ -19045,6 +21972,11 @@ entities:
- type: Transform
pos: -25.5,-0.5
parent: 8364
+ - uid: 566
+ components:
+ - type: Transform
+ pos: -1.5,-15.5
+ parent: 8364
- uid: 577
components:
- type: Transform
@@ -19125,6 +22057,11 @@ entities:
- type: Transform
pos: -78.5,-4.5
parent: 8364
+ - uid: 784
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 8364
- uid: 1107
components:
- type: Transform
@@ -19565,6 +22502,46 @@ entities:
- type: Transform
pos: 34.5,-64.5
parent: 8364
+ - uid: 3281
+ components:
+ - type: Transform
+ pos: -0.5,-16.5
+ parent: 8364
+ - uid: 3631
+ components:
+ - type: Transform
+ pos: -2.5,-17.5
+ parent: 8364
+ - uid: 3632
+ components:
+ - type: Transform
+ pos: -3.5,-14.5
+ parent: 8364
+ - uid: 3633
+ components:
+ - type: Transform
+ pos: -3.5,-15.5
+ parent: 8364
+ - uid: 3634
+ components:
+ - type: Transform
+ pos: -3.5,-17.5
+ parent: 8364
+ - uid: 3653
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 8364
+ - uid: 3654
+ components:
+ - type: Transform
+ pos: -1.5,-17.5
+ parent: 8364
+ - uid: 3671
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 8364
- uid: 3681
components:
- type: Transform
@@ -19580,6 +22557,11 @@ entities:
- type: Transform
pos: 25.5,-60.5
parent: 8364
+ - uid: 3701
+ components:
+ - type: Transform
+ pos: 2.5,-15.5
+ parent: 8364
- uid: 3702
components:
- type: Transform
@@ -19665,6 +22647,11 @@ entities:
- type: Transform
pos: 17.5,-42.5
parent: 8364
+ - uid: 3772
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 8364
- uid: 3792
components:
- type: Transform
@@ -19685,11 +22672,6 @@ entities:
- type: Transform
pos: 11.5,-77.5
parent: 8364
- - uid: 3826
- components:
- - type: Transform
- pos: 12.5,-77.5
- parent: 8364
- uid: 3827
components:
- type: Transform
@@ -19700,6 +22682,11 @@ entities:
- type: Transform
pos: 12.5,-71.5
parent: 8364
+ - uid: 3834
+ components:
+ - type: Transform
+ pos: -2.5,-12.5
+ parent: 8364
- uid: 3839
components:
- type: Transform
@@ -19780,16 +22767,6 @@ entities:
- type: Transform
pos: 2.5,-63.5
parent: 8364
- - uid: 4005
- components:
- - type: Transform
- pos: 13.5,-77.5
- parent: 8364
- - uid: 4031
- components:
- - type: Transform
- pos: -19.5,-72.5
- parent: 8364
- uid: 4032
components:
- type: Transform
@@ -19825,6 +22802,146 @@ entities:
- type: Transform
pos: 25.5,-51.5
parent: 8364
+ - uid: 4251
+ components:
+ - type: Transform
+ pos: 19.5,-81.5
+ parent: 8364
+ - uid: 4252
+ components:
+ - type: Transform
+ pos: 20.5,-81.5
+ parent: 8364
+ - uid: 4253
+ components:
+ - type: Transform
+ pos: 16.5,-81.5
+ parent: 8364
+ - uid: 4254
+ components:
+ - type: Transform
+ pos: 14.5,-81.5
+ parent: 8364
+ - uid: 4255
+ components:
+ - type: Transform
+ pos: 24.5,-81.5
+ parent: 8364
+ - uid: 4256
+ components:
+ - type: Transform
+ pos: 25.5,-81.5
+ parent: 8364
+ - uid: 4257
+ components:
+ - type: Transform
+ pos: 22.5,-81.5
+ parent: 8364
+ - uid: 4258
+ components:
+ - type: Transform
+ pos: 25.5,-80.5
+ parent: 8364
+ - uid: 4271
+ components:
+ - type: Transform
+ pos: -24.5,-76.5
+ parent: 8364
+ - uid: 4284
+ components:
+ - type: Transform
+ pos: -21.5,-77.5
+ parent: 8364
+ - uid: 4292
+ components:
+ - type: Transform
+ pos: -22.5,-76.5
+ parent: 8364
+ - uid: 4298
+ components:
+ - type: Transform
+ pos: -24.5,-74.5
+ parent: 8364
+ - uid: 4359
+ components:
+ - type: Transform
+ pos: 25.5,-79.5
+ parent: 8364
+ - uid: 4360
+ components:
+ - type: Transform
+ pos: 25.5,-78.5
+ parent: 8364
+ - uid: 4381
+ components:
+ - type: Transform
+ pos: 18.5,-81.5
+ parent: 8364
+ - uid: 4382
+ components:
+ - type: Transform
+ pos: 15.5,-81.5
+ parent: 8364
+ - uid: 4383
+ components:
+ - type: Transform
+ pos: 17.5,-81.5
+ parent: 8364
+ - uid: 4384
+ components:
+ - type: Transform
+ pos: 21.5,-81.5
+ parent: 8364
+ - uid: 4389
+ components:
+ - type: Transform
+ pos: 12.5,-81.5
+ parent: 8364
+ - uid: 4391
+ components:
+ - type: Transform
+ pos: 23.5,-81.5
+ parent: 8364
+ - uid: 4392
+ components:
+ - type: Transform
+ pos: 25.5,-77.5
+ parent: 8364
+ - uid: 4393
+ components:
+ - type: Transform
+ pos: 25.5,-76.5
+ parent: 8364
+ - uid: 4408
+ components:
+ - type: Transform
+ pos: -21.5,-82.5
+ parent: 8364
+ - uid: 4439
+ components:
+ - type: Transform
+ pos: -19.5,-81.5
+ parent: 8364
+ - uid: 4440
+ components:
+ - type: Transform
+ pos: -18.5,-81.5
+ parent: 8364
+ - uid: 4441
+ components:
+ - type: Transform
+ pos: -19.5,-83.5
+ parent: 8364
+ - uid: 4448
+ components:
+ - type: Transform
+ pos: -20.5,-83.5
+ parent: 8364
+ - uid: 4459
+ components:
+ - type: Transform
+ pos: -18.5,-80.5
+ parent: 8364
- uid: 4520
components:
- type: Transform
@@ -19840,15 +22957,10 @@ entities:
- type: Transform
pos: 0.5,-60.5
parent: 8364
- - uid: 4696
+ - uid: 4623
components:
- type: Transform
- pos: 13.5,-83.5
- parent: 8364
- - uid: 4699
- components:
- - type: Transform
- pos: 18.5,-77.5
+ pos: 13.5,-81.5
parent: 8364
- uid: 4710
components:
@@ -19860,6 +22972,36 @@ entities:
- type: Transform
pos: -12.5,36.5
parent: 8364
+ - uid: 4940
+ components:
+ - type: Transform
+ pos: -19.5,-84.5
+ parent: 8364
+ - uid: 4941
+ components:
+ - type: Transform
+ pos: -21.5,-73.5
+ parent: 8364
+ - uid: 4949
+ components:
+ - type: Transform
+ pos: -22.5,-72.5
+ parent: 8364
+ - uid: 4953
+ components:
+ - type: Transform
+ pos: -24.5,-75.5
+ parent: 8364
+ - uid: 4955
+ components:
+ - type: Transform
+ pos: -20.5,-81.5
+ parent: 8364
+ - uid: 4959
+ components:
+ - type: Transform
+ pos: -21.5,-76.5
+ parent: 8364
- uid: 5069
components:
- type: Transform
@@ -20065,36 +23207,16 @@ entities:
- type: Transform
pos: 4.5,-14.5
parent: 8364
- - uid: 5739
- components:
- - type: Transform
- pos: -2.5,-16.5
- parent: 8364
- uid: 5750
components:
- type: Transform
pos: -0.5,-3.5
parent: 8364
- - uid: 5751
- components:
- - type: Transform
- pos: -3.5,-16.5
- parent: 8364
- uid: 5762
components:
- type: Transform
pos: -0.5,-7.5
parent: 8364
- - uid: 5865
- components:
- - type: Transform
- pos: -2.5,-24.5
- parent: 8364
- - uid: 5876
- components:
- - type: Transform
- pos: -1.5,-24.5
- parent: 8364
- uid: 5895
components:
- type: Transform
@@ -20400,36 +23522,6 @@ entities:
- type: Transform
pos: -7.5,-8.5
parent: 8364
- - uid: 6088
- components:
- - type: Transform
- pos: -0.5,-12.5
- parent: 8364
- - uid: 6089
- components:
- - type: Transform
- pos: -1.5,-12.5
- parent: 8364
- - uid: 6090
- components:
- - type: Transform
- pos: -2.5,-12.5
- parent: 8364
- - uid: 6091
- components:
- - type: Transform
- pos: 0.5,-12.5
- parent: 8364
- - uid: 6092
- components:
- - type: Transform
- pos: 1.5,-12.5
- parent: 8364
- - uid: 6093
- components:
- - type: Transform
- pos: -0.5,-11.5
- parent: 8364
- uid: 6101
components:
- type: Transform
@@ -20510,6 +23602,11 @@ entities:
- type: Transform
pos: -10.5,-25.5
parent: 8364
+ - uid: 6143
+ components:
+ - type: Transform
+ pos: -1.5,-12.5
+ parent: 8364
- uid: 6212
components:
- type: Transform
@@ -20540,21 +23637,6 @@ entities:
- type: Transform
pos: -13.5,-17.5
parent: 8364
- - uid: 6218
- components:
- - type: Transform
- pos: -0.5,-23.5
- parent: 8364
- - uid: 6219
- components:
- - type: Transform
- pos: -0.5,-24.5
- parent: 8364
- - uid: 6220
- components:
- - type: Transform
- pos: -0.5,-25.5
- parent: 8364
- uid: 6221
components:
- type: Transform
@@ -20685,11 +23767,6 @@ entities:
- type: Transform
pos: 25.5,18.5
parent: 8364
- - uid: 6419
- components:
- - type: Transform
- pos: 2.5,-16.5
- parent: 8364
- uid: 6431
components:
- type: Transform
@@ -20990,11 +24067,6 @@ entities:
- type: Transform
pos: 20.5,-0.5
parent: 8364
- - uid: 6925
- components:
- - type: Transform
- pos: -1.5,-16.5
- parent: 8364
- uid: 7000
components:
- type: Transform
@@ -21110,11 +24182,6 @@ entities:
- type: Transform
pos: 26.5,-0.5
parent: 8364
- - uid: 7098
- components:
- - type: Transform
- pos: 0.5,-16.5
- parent: 8364
- uid: 7099
components:
- type: Transform
@@ -21305,31 +24372,6 @@ entities:
- type: Transform
pos: -46.5,21.5
parent: 8364
- - uid: 8117
- components:
- - type: Transform
- pos: -3.5,-12.5
- parent: 8364
- - uid: 8118
- components:
- - type: Transform
- pos: -0.5,-13.5
- parent: 8364
- - uid: 8120
- components:
- - type: Transform
- pos: -0.5,-14.5
- parent: 8364
- - uid: 8121
- components:
- - type: Transform
- pos: -0.5,-15.5
- parent: 8364
- - uid: 8154
- components:
- - type: Transform
- pos: 2.5,-13.5
- parent: 8364
- uid: 8185
components:
- type: Transform
@@ -21355,6 +24397,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
@@ -22235,30 +25302,25 @@ entities:
- type: Transform
pos: 17.5,33.5
parent: 8364
- - uid: 9310
- components:
- - type: Transform
- pos: 16.5,33.5
- parent: 8364
- uid: 9311
components:
- type: Transform
- pos: 15.5,33.5
+ pos: 14.5,31.5
parent: 8364
- uid: 9312
components:
- type: Transform
- pos: 14.5,33.5
+ pos: 15.5,31.5
parent: 8364
- uid: 9313
components:
- type: Transform
- pos: 13.5,33.5
+ pos: 16.5,31.5
parent: 8364
- uid: 9314
components:
- type: Transform
- pos: 13.5,32.5
+ pos: 16.5,34.5
parent: 8364
- uid: 9315
components:
@@ -22298,17 +25360,17 @@ entities:
- uid: 9324
components:
- type: Transform
- pos: 15.5,34.5
+ pos: 17.5,34.5
parent: 8364
- uid: 9325
components:
- type: Transform
- pos: 12.5,33.5
+ pos: 14.5,34.5
parent: 8364
- uid: 9326
components:
- type: Transform
- pos: 18.5,34.5
+ pos: 15.5,34.5
parent: 8364
- uid: 9327
components:
@@ -22370,6 +25432,11 @@ entities:
- type: Transform
pos: -19.5,50.5
parent: 8364
+ - uid: 9457
+ components:
+ - type: Transform
+ pos: 17.5,35.5
+ parent: 8364
- uid: 9599
components:
- type: Transform
@@ -24010,11 +27077,6 @@ entities:
- type: Transform
pos: 48.5,-2.5
parent: 8364
- - uid: 10555
- components:
- - type: Transform
- pos: -0.5,-16.5
- parent: 8364
- uid: 10658
components:
- type: Transform
@@ -24230,6 +27292,16 @@ entities:
- type: Transform
pos: -11.5,44.5
parent: 8364
+ - uid: 10853
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 8364
+ - uid: 10871
+ components:
+ - type: Transform
+ pos: -0.5,-15.5
+ parent: 8364
- uid: 10914
components:
- type: Transform
@@ -24460,11 +27532,6 @@ entities:
- type: Transform
pos: 70.5,-9.5
parent: 8364
- - uid: 11094
- components:
- - type: Transform
- pos: 69.5,-9.5
- parent: 8364
- uid: 11095
components:
- type: Transform
@@ -26610,6 +29677,11 @@ entities:
- type: Transform
pos: -65.5,14.5
parent: 8364
+ - uid: 12429
+ components:
+ - type: Transform
+ pos: 11.5,-81.5
+ parent: 8364
- uid: 12497
components:
- type: Transform
@@ -29595,6 +32667,11 @@ entities:
- type: Transform
pos: -2.5,11.5
parent: 8364
+ - uid: 13663
+ components:
+ - type: Transform
+ pos: 69.5,-9.5
+ parent: 8364
- uid: 13693
components:
- type: Transform
@@ -30030,11 +33107,6 @@ entities:
- type: Transform
pos: 6.5,-34.5
parent: 8364
- - uid: 14125
- components:
- - type: Transform
- pos: 2.5,-12.5
- parent: 8364
- uid: 14144
components:
- type: Transform
@@ -30325,51 +33397,6 @@ entities:
- type: Transform
pos: 5.5,-35.5
parent: 8364
- - uid: 14477
- components:
- - type: Transform
- pos: -19.5,-10.5
- parent: 8364
- - uid: 14478
- components:
- - type: Transform
- pos: -20.5,-10.5
- parent: 8364
- - uid: 14479
- components:
- - type: Transform
- pos: -21.5,-10.5
- parent: 8364
- - uid: 14480
- components:
- - type: Transform
- pos: -22.5,-10.5
- parent: 8364
- - uid: 14481
- components:
- - type: Transform
- pos: -23.5,-10.5
- parent: 8364
- - uid: 14482
- components:
- - type: Transform
- pos: -23.5,-11.5
- parent: 8364
- - uid: 14483
- components:
- - type: Transform
- pos: -23.5,-12.5
- parent: 8364
- - uid: 14484
- components:
- - type: Transform
- pos: -22.5,-12.5
- parent: 8364
- - uid: 14485
- components:
- - type: Transform
- pos: -21.5,-12.5
- parent: 8364
- uid: 14618
components:
- type: Transform
@@ -31235,15 +34262,10 @@ entities:
- type: Transform
pos: -22.5,-28.5
parent: 8364
- - uid: 14916
+ - uid: 14920
components:
- type: Transform
- pos: -3.5,-13.5
- parent: 8364
- - uid: 14918
- components:
- - type: Transform
- pos: 1.5,-16.5
+ pos: 15.5,-71.5
parent: 8364
- uid: 14980
components:
@@ -32345,11 +35367,6 @@ entities:
- type: Transform
pos: -29.5,-26.5
parent: 8364
- - uid: 15369
- components:
- - type: Transform
- pos: -3.5,-24.5
- parent: 8364
- uid: 15434
components:
- type: Transform
@@ -32370,16 +35387,6 @@ entities:
- type: Transform
pos: 20.5,-55.5
parent: 8364
- - uid: 15481
- components:
- - type: Transform
- pos: -0.5,-22.5
- parent: 8364
- - uid: 15491
- components:
- - type: Transform
- pos: -0.5,-21.5
- parent: 8364
- uid: 15496
components:
- type: Transform
@@ -32645,11 +35652,6 @@ entities:
- type: Transform
pos: -38.5,-58.5
parent: 8364
- - uid: 15721
- components:
- - type: Transform
- pos: -0.5,-20.5
- parent: 8364
- uid: 15798
components:
- type: Transform
@@ -32675,16 +35677,16 @@ 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
pos: -37.5,-8.5
parent: 8364
- - uid: 16153
- components:
- - type: Transform
- pos: -19.5,-73.5
- parent: 8364
- uid: 16212
components:
- type: Transform
@@ -33230,11 +36232,6 @@ entities:
- type: Transform
pos: 26.5,-70.5
parent: 8364
- - uid: 16506
- components:
- - type: Transform
- pos: 12.5,-83.5
- parent: 8364
- uid: 16507
components:
- type: Transform
@@ -33275,11 +36272,6 @@ entities:
- type: Transform
pos: 4.5,-43.5
parent: 8364
- - uid: 16522
- components:
- - type: Transform
- pos: 11.5,-83.5
- parent: 8364
- uid: 16523
components:
- type: Transform
@@ -33315,11 +36307,6 @@ entities:
- type: Transform
pos: -0.5,-65.5
parent: 8364
- - uid: 16546
- components:
- - type: Transform
- pos: 14.5,-83.5
- parent: 8364
- uid: 16549
components:
- type: Transform
@@ -33520,16 +36507,6 @@ entities:
- type: Transform
pos: 25.5,-56.5
parent: 8364
- - uid: 16623
- components:
- - type: Transform
- pos: 31.5,-116.5
- parent: 8364
- - uid: 16624
- components:
- - type: Transform
- pos: 31.5,-117.5
- parent: 8364
- uid: 16636
components:
- type: Transform
@@ -33850,11 +36827,6 @@ entities:
- type: Transform
pos: 16.5,-71.5
parent: 8364
- - uid: 16723
- components:
- - type: Transform
- pos: 17.5,-83.5
- parent: 8364
- uid: 16725
components:
- type: Transform
@@ -33865,21 +36837,6 @@ entities:
- type: Transform
pos: 14.5,-71.5
parent: 8364
- - uid: 16731
- components:
- - type: Transform
- pos: 16.5,-83.5
- parent: 8364
- - uid: 16735
- components:
- - type: Transform
- pos: 18.5,-83.5
- parent: 8364
- - uid: 16737
- components:
- - type: Transform
- pos: 15.5,-71.5
- parent: 8364
- uid: 16738
components:
- type: Transform
@@ -33955,11 +36912,6 @@ entities:
- type: Transform
pos: 13.5,-71.5
parent: 8364
- - uid: 16833
- components:
- - type: Transform
- pos: 15.5,-83.5
- parent: 8364
- uid: 16834
components:
- type: Transform
@@ -34030,11 +36982,6 @@ entities:
- type: Transform
pos: 9.5,-76.5
parent: 8364
- - uid: 16918
- components:
- - type: Transform
- pos: -0.5,-19.5
- parent: 8364
- uid: 16934
components:
- type: Transform
@@ -34075,21 +37022,6 @@ entities:
- type: Transform
pos: -15.5,-77.5
parent: 8364
- - uid: 16953
- components:
- - type: Transform
- pos: 25.5,-73.5
- parent: 8364
- - uid: 16954
- components:
- - type: Transform
- pos: 25.5,-72.5
- parent: 8364
- - uid: 16964
- components:
- - type: Transform
- pos: 25.5,-74.5
- parent: 8364
- uid: 16987
components:
- type: Transform
@@ -34263,7 +37195,7 @@ entities:
- uid: 17287
components:
- type: Transform
- pos: -9.5,-69.5
+ pos: 34.5,-20.5
parent: 8364
- uid: 17288
components:
@@ -34510,16 +37442,6 @@ entities:
- type: Transform
pos: -19.5,-69.5
parent: 8364
- - uid: 17424
- components:
- - type: Transform
- pos: -19.5,-70.5
- parent: 8364
- - uid: 17425
- components:
- - type: Transform
- pos: -19.5,-71.5
- parent: 8364
- uid: 17427
components:
- type: Transform
@@ -34715,16 +37637,6 @@ entities:
- type: Transform
pos: -16.5,-71.5
parent: 8364
- - uid: 17782
- components:
- - type: Transform
- pos: 15.5,-77.5
- parent: 8364
- - uid: 17783
- components:
- - type: Transform
- pos: 16.5,-77.5
- parent: 8364
- uid: 17811
components:
- type: Transform
@@ -34940,11 +37852,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
@@ -36085,31 +38992,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
@@ -37885,11 +40767,6 @@ entities:
- type: Transform
pos: 56.5,-63.5
parent: 8364
- - uid: 19580
- components:
- - type: Transform
- pos: 62.5,-70.5
- parent: 8364
- uid: 19581
components:
- type: Transform
@@ -39905,46 +42782,6 @@ entities:
- type: Transform
pos: 8.5,-36.5
parent: 8364
- - uid: 21997
- components:
- - type: Transform
- pos: -4.5,-16.5
- parent: 8364
- - uid: 21998
- components:
- - type: Transform
- pos: -4.5,-17.5
- parent: 8364
- - uid: 21999
- components:
- - type: Transform
- pos: 3.5,-17.5
- parent: 8364
- - uid: 22000
- components:
- - type: Transform
- pos: 3.5,-16.5
- parent: 8364
- - uid: 22001
- components:
- - type: Transform
- pos: -1.5,-23.5
- parent: 8364
- - uid: 22002
- components:
- - type: Transform
- pos: -2.5,-23.5
- parent: 8364
- - uid: 22003
- components:
- - type: Transform
- pos: 0.5,-23.5
- parent: 8364
- - uid: 22004
- components:
- - type: Transform
- pos: 1.5,-23.5
- parent: 8364
- uid: 22460
components:
- type: Transform
@@ -39975,6 +42812,21 @@ entities:
- type: Transform
pos: 11.5,-8.5
parent: 8364
+ - uid: 22529
+ components:
+ - type: Transform
+ pos: -20.5,-82.5
+ parent: 8364
+ - uid: 22530
+ components:
+ - type: Transform
+ pos: -22.5,-73.5
+ parent: 8364
+ - uid: 22538
+ components:
+ - type: Transform
+ pos: -21.5,-74.5
+ parent: 8364
- uid: 22578
components:
- type: Transform
@@ -40005,11 +42857,6 @@ entities:
- type: Transform
pos: -7.5,-61.5
parent: 8364
- - uid: 22856
- components:
- - type: Transform
- pos: 17.5,-77.5
- parent: 8364
- uid: 22857
components:
- type: Transform
@@ -40055,16 +42902,6 @@ entities:
- type: Transform
pos: -14.5,-71.5
parent: 8364
- - uid: 23009
- components:
- - type: Transform
- pos: 11.5,-82.5
- parent: 8364
- - uid: 23098
- components:
- - type: Transform
- pos: 11.5,-81.5
- parent: 8364
- uid: 23138
components:
- type: Transform
@@ -40075,6 +42912,31 @@ entities:
- type: Transform
pos: -13.5,-71.5
parent: 8364
+ - uid: 23243
+ components:
+ - type: Transform
+ pos: -3.5,-13.5
+ parent: 8364
+ - uid: 23261
+ components:
+ - type: Transform
+ pos: 19.5,-55.5
+ parent: 8364
+ - uid: 24926
+ components:
+ - type: Transform
+ pos: -21.5,-75.5
+ parent: 8364
+ - uid: 25207
+ components:
+ - type: Transform
+ pos: 2.5,-14.5
+ parent: 8364
+ - uid: 25315
+ components:
+ - type: Transform
+ pos: -63.5,14.5
+ parent: 8364
- uid: 25739
components:
- type: Transform
@@ -40130,11 +42992,6 @@ entities:
- type: Transform
pos: 9.5,-75.5
parent: 8364
- - uid: 26102
- components:
- - type: Transform
- pos: 24.5,-74.5
- parent: 8364
- uid: 26136
components:
- type: Transform
@@ -40315,585 +43172,215 @@ entities:
- type: Transform
pos: 4.5,-72.5
parent: 8364
- - uid: 27031
+ - uid: 26977
components:
- type: Transform
- pos: 29.5,-111.5
+ pos: 27.5,-72.5
parent: 8364
- - uid: 27032
+ - uid: 26978
components:
- type: Transform
- pos: 28.5,-111.5
+ pos: 19.5,-84.5
parent: 8364
- - uid: 27033
+ - uid: 27003
components:
- type: Transform
- pos: 28.5,-110.5
+ pos: 2.5,-13.5
parent: 8364
- - uid: 27034
+ - uid: 27009
components:
- type: Transform
- pos: 28.5,-109.5
+ pos: -0.5,-17.5
parent: 8364
- - uid: 27035
+ - uid: 27010
components:
- type: Transform
- pos: 28.5,-108.5
- parent: 8364
- - uid: 27036
- components:
- - type: Transform
- pos: 29.5,-109.5
- parent: 8364
- - uid: 27037
- components:
- - type: Transform
- pos: 30.5,-109.5
- parent: 8364
- - uid: 27038
- components:
- - type: Transform
- pos: 31.5,-109.5
- parent: 8364
- - uid: 27039
- components:
- - type: Transform
- pos: 31.5,-111.5
- parent: 8364
- - uid: 27040
- components:
- - type: Transform
- pos: 31.5,-110.5
- parent: 8364
- - uid: 27041
- components:
- - type: Transform
- pos: 31.5,-112.5
- parent: 8364
- - uid: 27042
- components:
- - type: Transform
- pos: 31.5,-113.5
- parent: 8364
- - uid: 27043
- components:
- - type: Transform
- pos: 31.5,-114.5
- parent: 8364
- - uid: 27044
- components:
- - type: Transform
- pos: 31.5,-115.5
- parent: 8364
- - uid: 27045
- components:
- - type: Transform
- pos: 30.5,-115.5
- parent: 8364
- - uid: 27046
- components:
- - type: Transform
- pos: 29.5,-115.5
- parent: 8364
- - uid: 27047
- components:
- - type: Transform
- pos: 28.5,-115.5
- parent: 8364
- - uid: 27048
- components:
- - type: Transform
- pos: 27.5,-115.5
- parent: 8364
- - uid: 27049
- components:
- - type: Transform
- pos: 26.5,-115.5
- parent: 8364
- - uid: 27050
- components:
- - type: Transform
- pos: 25.5,-115.5
- parent: 8364
- - uid: 27051
- components:
- - type: Transform
- pos: 25.5,-114.5
- parent: 8364
- - uid: 27052
- components:
- - type: Transform
- pos: 25.5,-113.5
- parent: 8364
- - uid: 27053
- components:
- - type: Transform
- pos: 25.5,-112.5
- parent: 8364
- - uid: 27054
- components:
- - type: Transform
- pos: 25.5,-111.5
- parent: 8364
- - uid: 27055
- components:
- - type: Transform
- pos: 25.5,-110.5
- parent: 8364
- - uid: 27056
- components:
- - type: Transform
- pos: 25.5,-109.5
- parent: 8364
- - uid: 27057
- components:
- - type: Transform
- pos: 26.5,-109.5
- parent: 8364
- - uid: 27058
- components:
- - type: Transform
- pos: 27.5,-109.5
- parent: 8364
- - uid: 27059
- components:
- - type: Transform
- pos: 28.5,-107.5
- parent: 8364
- - uid: 27060
- components:
- - type: Transform
- pos: 28.5,-106.5
- parent: 8364
- - uid: 27061
- components:
- - type: Transform
- pos: 27.5,-106.5
- parent: 8364
- - uid: 27062
- components:
- - type: Transform
- pos: 29.5,-106.5
- parent: 8364
- - uid: 27063
- components:
- - type: Transform
- pos: 31.5,-100.5
- parent: 8364
- - uid: 27064
- components:
- - type: Transform
- pos: 30.5,-100.5
- parent: 8364
- - uid: 27065
- components:
- - type: Transform
- pos: 29.5,-103.5
- parent: 8364
- - uid: 27066
- components:
- - type: Transform
- pos: 29.5,-102.5
- parent: 8364
- - uid: 27067
- components:
- - type: Transform
- pos: 29.5,-101.5
- parent: 8364
- - uid: 27068
- components:
- - type: Transform
- pos: 29.5,-100.5
- parent: 8364
- - uid: 27069
- components:
- - type: Transform
- pos: 29.5,-99.5
- parent: 8364
- - uid: 27070
- components:
- - type: Transform
- pos: 29.5,-98.5
- parent: 8364
- - uid: 27071
- components:
- - type: Transform
- pos: 29.5,-97.5
- parent: 8364
- - uid: 27072
- components:
- - type: Transform
- pos: 29.5,-96.5
- parent: 8364
- - uid: 27073
- components:
- - type: Transform
- pos: 29.5,-95.5
- parent: 8364
- - uid: 27074
- components:
- - type: Transform
- pos: 27.5,-95.5
- parent: 8364
- - uid: 27075
- components:
- - type: Transform
- pos: 27.5,-96.5
- parent: 8364
- - uid: 27076
- components:
- - type: Transform
- pos: 27.5,-97.5
- parent: 8364
- - uid: 27077
- components:
- - type: Transform
- pos: 27.5,-98.5
- parent: 8364
- - uid: 27078
- components:
- - type: Transform
- pos: 27.5,-99.5
- parent: 8364
- - uid: 27079
- components:
- - type: Transform
- pos: 27.5,-100.5
- parent: 8364
- - uid: 27080
- components:
- - type: Transform
- pos: 27.5,-101.5
- parent: 8364
- - uid: 27081
- components:
- - type: Transform
- pos: 27.5,-102.5
- parent: 8364
- - uid: 27082
- components:
- - type: Transform
- pos: 27.5,-103.5
- parent: 8364
- - uid: 27083
- components:
- - type: Transform
- pos: 28.5,-100.5
- parent: 8364
- - uid: 27084
- components:
- - type: Transform
- pos: 32.5,-100.5
- parent: 8364
- - uid: 27085
- components:
- - type: Transform
- pos: 32.5,-101.5
- parent: 8364
- - uid: 27086
- components:
- - type: Transform
- pos: 32.5,-102.5
- parent: 8364
- - uid: 27087
- components:
- - type: Transform
- pos: 32.5,-103.5
- parent: 8364
- - uid: 27088
- components:
- - type: Transform
- pos: 33.5,-103.5
- parent: 8364
- - uid: 27089
- components:
- - type: Transform
- pos: 33.5,-104.5
- parent: 8364
- - uid: 27090
- components:
- - type: Transform
- pos: 32.5,-99.5
- parent: 8364
- - uid: 27091
- components:
- - type: Transform
- pos: 32.5,-98.5
- parent: 8364
- - uid: 27092
- components:
- - type: Transform
- pos: 32.5,-97.5
- parent: 8364
- - uid: 27093
- components:
- - type: Transform
- pos: 32.5,-96.5
- parent: 8364
- - uid: 27094
- components:
- - type: Transform
- pos: 35.5,-92.5
- parent: 8364
- - uid: 27095
- components:
- - type: Transform
- pos: 34.5,-92.5
- parent: 8364
- - uid: 27096
- components:
- - type: Transform
- pos: 33.5,-92.5
- parent: 8364
- - uid: 27097
- components:
- - type: Transform
- pos: 32.5,-92.5
- parent: 8364
- - uid: 27098
- components:
- - type: Transform
- pos: 31.5,-92.5
- parent: 8364
- - uid: 27099
- components:
- - type: Transform
- pos: 32.5,-91.5
- parent: 8364
- - uid: 27100
- components:
- - type: Transform
- pos: 32.5,-90.5
- parent: 8364
- - uid: 27101
- components:
- - type: Transform
- pos: 32.5,-89.5
- parent: 8364
- - uid: 27102
- components:
- - type: Transform
- pos: 32.5,-88.5
- parent: 8364
- - uid: 27103
- components:
- - type: Transform
- pos: 32.5,-93.5
- parent: 8364
- - uid: 27104
- components:
- - type: Transform
- pos: 21.5,-92.5
- parent: 8364
- - uid: 27105
- components:
- - type: Transform
- pos: 22.5,-92.5
- parent: 8364
- - uid: 27106
- components:
- - type: Transform
- pos: 23.5,-92.5
- parent: 8364
- - uid: 27107
- components:
- - type: Transform
- pos: 24.5,-92.5
- parent: 8364
- - uid: 27108
- components:
- - type: Transform
- pos: 24.5,-91.5
- parent: 8364
- - uid: 27109
- components:
- - type: Transform
- pos: 24.5,-90.5
- parent: 8364
- - uid: 27110
- components:
- - type: Transform
- pos: 24.5,-89.5
- parent: 8364
- - uid: 27111
- components:
- - type: Transform
- pos: 24.5,-93.5
+ pos: 2.5,-12.5
parent: 8364
- uid: 27112
components:
- type: Transform
- pos: 24.5,-94.5
+ pos: 18.5,-72.5
parent: 8364
- uid: 27113
components:
- type: Transform
- pos: 24.5,-95.5
+ pos: 25.5,-72.5
parent: 8364
- uid: 27114
components:
- type: Transform
- pos: 24.5,-96.5
+ pos: 18.5,-73.5
parent: 8364
- uid: 27115
components:
- type: Transform
- pos: 24.5,-97.5
+ pos: 26.5,-81.5
parent: 8364
- uid: 27116
components:
- type: Transform
- pos: 24.5,-98.5
+ pos: 25.5,-74.5
parent: 8364
- uid: 27117
components:
- type: Transform
- pos: 24.5,-99.5
+ pos: 27.5,-78.5
parent: 8364
- uid: 27118
components:
- type: Transform
- pos: 24.5,-100.5
+ pos: 18.5,-85.5
parent: 8364
- uid: 27119
components:
- type: Transform
- pos: 24.5,-101.5
+ pos: 18.5,-86.5
parent: 8364
- uid: 27120
components:
- type: Transform
- pos: 24.5,-102.5
+ pos: 27.5,-79.5
parent: 8364
- uid: 27121
components:
- type: Transform
- pos: 24.5,-103.5
+ pos: 27.5,-80.5
parent: 8364
- uid: 27122
components:
- type: Transform
- pos: 23.5,-103.5
+ pos: 25.5,-82.5
parent: 8364
- uid: 27123
components:
- type: Transform
- pos: 23.5,-104.5
+ pos: 15.5,-84.5
parent: 8364
- uid: 27124
components:
- type: Transform
- pos: 31.5,-86.5
+ pos: 17.5,-84.5
parent: 8364
- uid: 27125
components:
- type: Transform
- pos: 30.5,-86.5
+ pos: 16.5,-84.5
parent: 8364
- uid: 27126
components:
- type: Transform
- pos: 29.5,-86.5
+ pos: 14.5,-84.5
parent: 8364
- uid: 27127
components:
- type: Transform
- pos: 28.5,-86.5
+ pos: 26.5,-84.5
parent: 8364
- uid: 27128
components:
- type: Transform
- pos: 28.5,-87.5
+ pos: 27.5,-81.5
parent: 8364
- uid: 27129
components:
- type: Transform
- pos: 28.5,-88.5
+ pos: 27.5,-71.5
parent: 8364
- uid: 27130
components:
- type: Transform
- pos: 28.5,-89.5
+ pos: 18.5,-74.5
parent: 8364
- uid: 27131
components:
- type: Transform
- pos: 28.5,-90.5
+ pos: 25.5,-75.5
parent: 8364
- uid: 27132
components:
- type: Transform
- pos: 28.5,-91.5
+ pos: 25.5,-73.5
parent: 8364
- uid: 27133
components:
- type: Transform
- pos: 28.5,-92.5
+ pos: 18.5,-83.5
parent: 8364
- uid: 27134
components:
- type: Transform
- pos: 28.5,-93.5
+ pos: 18.5,-75.5
parent: 8364
- uid: 27135
components:
- type: Transform
- pos: 28.5,-85.5
+ pos: 18.5,-78.5
parent: 8364
- uid: 27136
components:
- type: Transform
- pos: 28.5,-84.5
+ pos: 18.5,-76.5
parent: 8364
- uid: 27137
components:
- type: Transform
- pos: 28.5,-83.5
+ pos: 18.5,-77.5
parent: 8364
- uid: 27138
components:
- type: Transform
- pos: 28.5,-82.5
+ pos: 18.5,-79.5
parent: 8364
- uid: 27139
components:
- type: Transform
- pos: 28.5,-81.5
- parent: 8364
- - uid: 27140
- components:
- - type: Transform
- pos: 28.5,-80.5
+ pos: 25.5,-83.5
parent: 8364
- uid: 27141
components:
- type: Transform
- pos: 28.5,-79.5
+ pos: 25.5,-84.5
parent: 8364
- - uid: 27142
+ - uid: 27151
components:
- type: Transform
- pos: 28.5,-78.5
+ pos: 27.5,-73.5
parent: 8364
- - uid: 27146
+ - uid: 27175
components:
- type: Transform
- pos: 29.5,-85.5
+ pos: 27.5,-74.5
parent: 8364
- - uid: 27147
+ - uid: 27178
components:
- type: Transform
- pos: 30.5,-85.5
+ pos: 18.5,-80.5
parent: 8364
- - uid: 27148
+ - uid: 27181
components:
- type: Transform
- pos: 31.5,-85.5
+ pos: 18.5,-84.5
parent: 8364
- - uid: 27149
+ - uid: 27182
components:
- type: Transform
- pos: 32.5,-85.5
+ pos: 21.5,-84.5
+ parent: 8364
+ - uid: 27183
+ components:
+ - type: Transform
+ pos: 18.5,-82.5
+ parent: 8364
+ - uid: 27190
+ components:
+ - type: Transform
+ pos: 20.5,-84.5
+ parent: 8364
+ - uid: 27191
+ components:
+ - type: Transform
+ pos: 22.5,-84.5
parent: 8364
- uid: 27223
components:
@@ -41140,55 +43627,35 @@ entities:
- type: Transform
pos: 86.5,-2.5
parent: 8364
- - uid: 27861
+ - uid: 27787
components:
- type: Transform
- pos: 25.5,-117.5
- parent: 8364
- - uid: 27862
- components:
- - type: Transform
- pos: 25.5,-116.5
- parent: 8364
- - uid: 27863
- components:
- - type: Transform
- pos: 24.5,-112.5
- parent: 8364
- - uid: 27864
- components:
- - type: Transform
- pos: 23.5,-112.5
- parent: 8364
- - uid: 27865
- components:
- - type: Transform
- pos: 32.5,-112.5
- parent: 8364
- - uid: 27866
- components:
- - type: Transform
- pos: 33.5,-112.5
- parent: 8364
- - uid: 27872
- components:
- - type: Transform
- pos: 29.5,-79.5
- parent: 8364
- - uid: 27873
- components:
- - type: Transform
- pos: 30.5,-79.5
+ pos: -23.5,-76.5
parent: 8364
- uid: 27874
components:
- type: Transform
- pos: 31.5,-79.5
+ pos: 1.5,-17.5
parent: 8364
- - uid: 27875
+ - uid: 27919
components:
- type: Transform
- pos: 32.5,-79.5
+ pos: 0.5,-17.5
+ parent: 8364
+ - uid: 27927
+ components:
+ - type: Transform
+ pos: 60.5,-69.5
+ parent: 8364
+ - uid: 27934
+ components:
+ - type: Transform
+ pos: 13.5,34.5
+ parent: 8364
+ - uid: 27935
+ components:
+ - type: Transform
+ pos: 12.5,34.5
parent: 8364
- uid: 27971
components:
@@ -41200,6 +43667,171 @@ entities:
- type: Transform
pos: 59.5,-38.5
parent: 8364
+ - uid: 27977
+ components:
+ - type: Transform
+ pos: 2.5,-17.5
+ parent: 8364
+ - uid: 27978
+ components:
+ - type: Transform
+ pos: 2.5,-16.5
+ parent: 8364
+ - uid: 28000
+ components:
+ - type: Transform
+ pos: -19.5,-9.5
+ parent: 8364
+ - uid: 28001
+ components:
+ - type: Transform
+ pos: -20.5,-9.5
+ parent: 8364
+ - uid: 28002
+ components:
+ - type: Transform
+ pos: -21.5,-9.5
+ parent: 8364
+ - uid: 28003
+ components:
+ - type: Transform
+ pos: -22.5,-9.5
+ parent: 8364
+ - uid: 28004
+ components:
+ - type: Transform
+ pos: -22.5,-11.5
+ parent: 8364
+ - uid: 28021
+ components:
+ - type: Transform
+ pos: -22.5,-10.5
+ parent: 8364
+ - uid: 28024
+ components:
+ - type: Transform
+ pos: -22.5,-12.5
+ parent: 8364
+ - uid: 28069
+ components:
+ - type: Transform
+ pos: -22.5,-13.5
+ parent: 8364
+ - uid: 28159
+ components:
+ - type: Transform
+ pos: -3.5,-22.5
+ parent: 8364
+ - uid: 28160
+ components:
+ - type: Transform
+ pos: -2.5,-22.5
+ parent: 8364
+ - uid: 28161
+ components:
+ - type: Transform
+ pos: -1.5,-22.5
+ parent: 8364
+ - uid: 28162
+ components:
+ - type: Transform
+ pos: -0.5,-22.5
+ parent: 8364
+ - uid: 28163
+ components:
+ - type: Transform
+ pos: -0.5,-21.5
+ parent: 8364
+ - uid: 28164
+ components:
+ - type: Transform
+ pos: -0.5,-20.5
+ parent: 8364
+ - uid: 28165
+ components:
+ - type: Transform
+ pos: -0.5,-23.5
+ parent: 8364
+ - uid: 28166
+ components:
+ - type: Transform
+ pos: -0.5,-24.5
+ parent: 8364
+ - uid: 28167
+ components:
+ - type: Transform
+ pos: -0.5,-25.5
+ parent: 8364
+ - uid: 28168
+ components:
+ - type: Transform
+ pos: 0.5,-24.5
+ parent: 8364
+ - uid: 28169
+ components:
+ - type: Transform
+ pos: 1.5,-24.5
+ parent: 8364
+ - uid: 28170
+ components:
+ - type: Transform
+ pos: 2.5,-24.5
+ parent: 8364
+ - uid: 28171
+ components:
+ - type: Transform
+ pos: 3.5,-24.5
+ parent: 8364
+ - uid: 28172
+ components:
+ - type: Transform
+ pos: -1.5,-24.5
+ parent: 8364
+ - uid: 28173
+ components:
+ - type: Transform
+ pos: -2.5,-24.5
+ parent: 8364
+ - uid: 28174
+ components:
+ - type: Transform
+ pos: -3.5,-24.5
+ parent: 8364
+ - uid: 28175
+ components:
+ - type: Transform
+ pos: -4.5,-24.5
+ parent: 8364
+ - uid: 28176
+ components:
+ - type: Transform
+ pos: -2.5,-20.5
+ parent: 8364
+ - uid: 28177
+ components:
+ - type: Transform
+ pos: -1.5,-20.5
+ parent: 8364
+ - uid: 28178
+ components:
+ - type: Transform
+ pos: 0.5,-20.5
+ parent: 8364
+ - uid: 28179
+ components:
+ - type: Transform
+ pos: 1.5,-20.5
+ parent: 8364
+ - uid: 28180
+ components:
+ - type: Transform
+ pos: 2.5,-20.5
+ parent: 8364
+ - uid: 28181
+ components:
+ - type: Transform
+ pos: -3.5,-20.5
+ parent: 8364
- proto: CableApcStack
entities:
- uid: 1195
@@ -41377,11 +44009,31 @@ entities:
- type: Transform
pos: -3.5,-66.5
parent: 8364
+ - uid: 2928
+ components:
+ - type: Transform
+ pos: 16.5,-80.5
+ parent: 8364
- uid: 3054
components:
- type: Transform
pos: -7.5,-10.5
parent: 8364
+ - uid: 3536
+ components:
+ - type: Transform
+ pos: -0.5,-20.5
+ parent: 8364
+ - uid: 3540
+ components:
+ - type: Transform
+ pos: -2.5,-15.5
+ parent: 8364
+ - uid: 3630
+ components:
+ - type: Transform
+ pos: -0.5,-23.5
+ parent: 8364
- uid: 3691
components:
- type: Transform
@@ -41472,21 +44124,61 @@ entities:
- type: Transform
pos: -8.5,-74.5
parent: 8364
- - uid: 3869
+ - uid: 3873
components:
- type: Transform
- pos: 15.5,-77.5
+ pos: -19.5,-72.5
parent: 8364
- uid: 4050
components:
- type: Transform
pos: 10.5,-80.5
parent: 8364
+ - uid: 4210
+ components:
+ - type: Transform
+ pos: -0.5,-21.5
+ parent: 8364
+ - uid: 4211
+ components:
+ - type: Transform
+ pos: -0.5,-22.5
+ parent: 8364
+ - uid: 4272
+ components:
+ - type: Transform
+ pos: -20.5,-72.5
+ parent: 8364
+ - uid: 4369
+ components:
+ - type: Transform
+ pos: -1.5,-56.5
+ parent: 8364
+ - uid: 4371
+ components:
+ - type: Transform
+ pos: -18.5,-11.5
+ parent: 8364
+ - uid: 4372
+ components:
+ - type: Transform
+ pos: -17.5,-11.5
+ parent: 8364
+ - uid: 4373
+ components:
+ - type: Transform
+ pos: -16.5,-11.5
+ parent: 8364
- uid: 4519
components:
- type: Transform
pos: -0.5,-58.5
parent: 8364
+ - uid: 4550
+ components:
+ - type: Transform
+ pos: -0.5,-24.5
+ parent: 8364
- uid: 4553
components:
- type: Transform
@@ -41557,21 +44249,11 @@ entities:
- type: Transform
pos: 46.5,19.5
parent: 8364
- - uid: 5272
- components:
- - type: Transform
- pos: 1.5,-24.5
- parent: 8364
- uid: 5314
components:
- type: Transform
pos: -3.5,-5.5
parent: 8364
- - uid: 5450
- components:
- - type: Transform
- pos: -44.5,-61.5
- parent: 8364
- uid: 5520
components:
- type: Transform
@@ -41642,16 +44324,6 @@ entities:
- type: Transform
pos: -13.5,-12.5
parent: 8364
- - uid: 5766
- components:
- - type: Transform
- pos: 0.5,-25.5
- parent: 8364
- - uid: 5771
- components:
- - type: Transform
- pos: -0.5,-25.5
- parent: 8364
- uid: 5772
components:
- type: Transform
@@ -41842,16 +44514,6 @@ entities:
- type: Transform
pos: -2.5,-59.5
parent: 8364
- - uid: 5827
- components:
- - type: Transform
- pos: -2.5,-57.5
- parent: 8364
- - uid: 5828
- components:
- - type: Transform
- pos: -1.5,-57.5
- parent: 8364
- uid: 5829
components:
- type: Transform
@@ -41982,26 +44644,11 @@ entities:
- type: Transform
pos: -16.5,-15.5
parent: 8364
- - uid: 5855
- components:
- - type: Transform
- pos: -19.5,-12.5
- parent: 8364
- - uid: 5856
- components:
- - type: Transform
- pos: -18.5,-12.5
- parent: 8364
- uid: 5857
components:
- type: Transform
pos: -16.5,-14.5
parent: 8364
- - uid: 5858
- components:
- - type: Transform
- pos: -17.5,-12.5
- parent: 8364
- uid: 5859
components:
- type: Transform
@@ -42042,16 +44689,6 @@ entities:
- type: Transform
pos: -22.5,-12.5
parent: 8364
- - uid: 5927
- components:
- - type: Transform
- pos: -21.5,-12.5
- parent: 8364
- - uid: 5928
- components:
- - type: Transform
- pos: -20.5,-12.5
- parent: 8364
- uid: 5929
components:
- type: Transform
@@ -42432,16 +45069,6 @@ entities:
- type: Transform
pos: -16.5,-68.5
parent: 8364
- - uid: 6392
- components:
- - type: Transform
- pos: 1.5,-25.5
- parent: 8364
- - uid: 6596
- components:
- - type: Transform
- pos: 27.5,-77.5
- parent: 8364
- uid: 6605
components:
- type: Transform
@@ -43147,11 +45774,6 @@ entities:
- type: Transform
pos: -6.5,-62.5
parent: 8364
- - uid: 7073
- components:
- - type: Transform
- pos: 27.5,-78.5
- parent: 8364
- uid: 7201
components:
- type: Transform
@@ -43422,11 +46044,6 @@ entities:
- type: Transform
pos: 31.5,-38.5
parent: 8364
- - uid: 8814
- components:
- - type: Transform
- pos: -43.5,-61.5
- parent: 8364
- uid: 8885
components:
- type: Transform
@@ -43472,11 +46089,6 @@ entities:
- type: Transform
pos: 7.5,26.5
parent: 8364
- - uid: 9243
- components:
- - type: Transform
- pos: -45.5,-61.5
- parent: 8364
- uid: 9462
components:
- type: Transform
@@ -45127,10 +47739,10 @@ entities:
- type: Transform
pos: 45.5,37.5
parent: 8364
- - uid: 11984
+ - uid: 11758
components:
- type: Transform
- pos: -46.5,-61.5
+ pos: 18.5,-79.5
parent: 8364
- uid: 11990
components:
@@ -45222,11 +47834,6 @@ entities:
- type: Transform
pos: -44.5,28.5
parent: 8364
- - uid: 12023
- components:
- - type: Transform
- pos: -47.5,-61.5
- parent: 8364
- uid: 12025
components:
- type: Transform
@@ -45307,11 +47914,6 @@ entities:
- type: Transform
pos: -45.5,12.5
parent: 8364
- - uid: 12641
- components:
- - type: Transform
- pos: -48.5,-61.5
- parent: 8364
- uid: 13102
components:
- type: Transform
@@ -45817,10 +48419,10 @@ entities:
- type: Transform
pos: -50.5,-3.5
parent: 8364
- - uid: 14147
+ - uid: 14088
components:
- type: Transform
- pos: -49.5,-61.5
+ pos: 18.5,-76.5
parent: 8364
- uid: 14368
components:
@@ -45877,25 +48479,15 @@ entities:
- type: Transform
pos: -22.5,-67.5
parent: 8364
- - uid: 15105
+ - uid: 15340
components:
- type: Transform
- pos: -50.5,-61.5
+ pos: 15.5,-80.5
parent: 8364
- - uid: 15106
+ - uid: 15344
components:
- type: Transform
- pos: -51.5,-61.5
- parent: 8364
- - uid: 15126
- components:
- - type: Transform
- pos: -52.5,-61.5
- parent: 8364
- - uid: 15127
- components:
- - type: Transform
- pos: -53.5,-61.5
+ pos: 14.5,-80.5
parent: 8364
- uid: 15460
components:
@@ -45962,11 +48554,6 @@ entities:
- type: Transform
pos: -52.5,-55.5
parent: 8364
- - uid: 15831
- components:
- - type: Transform
- pos: -49.5,-60.5
- parent: 8364
- uid: 15832
components:
- type: Transform
@@ -46037,16 +48624,6 @@ entities:
- type: Transform
pos: -54.5,-67.5
parent: 8364
- - uid: 15857
- components:
- - type: Transform
- pos: -53.5,-62.5
- parent: 8364
- - uid: 15858
- components:
- - type: Transform
- pos: -53.5,-60.5
- parent: 8364
- uid: 15859
components:
- type: Transform
@@ -46107,6 +48684,11 @@ entities:
- type: Transform
pos: -6.5,-74.5
parent: 8364
+ - uid: 15892
+ components:
+ - type: Transform
+ pos: 18.5,-80.5
+ parent: 8364
- uid: 15904
components:
- type: Transform
@@ -46757,16 +49339,6 @@ entities:
- type: Transform
pos: 6.5,-55.5
parent: 8364
- - uid: 17589
- components:
- - type: Transform
- pos: 15.5,-75.5
- parent: 8364
- - uid: 17602
- components:
- - type: Transform
- pos: 15.5,-76.5
- parent: 8364
- uid: 17698
components:
- type: Transform
@@ -46897,6 +49469,11 @@ entities:
- type: Transform
pos: -6.5,-61.5
parent: 8364
+ - uid: 19073
+ components:
+ - type: Transform
+ pos: -0.5,-25.5
+ parent: 8364
- uid: 19130
components:
- type: Transform
@@ -46962,31 +49539,31 @@ entities:
- type: Transform
pos: -30.5,-60.5
parent: 8364
- - uid: 19169
- components:
- - type: Transform
- pos: -54.5,-61.5
- parent: 8364
- - uid: 19172
- components:
- - type: Transform
- pos: -55.5,-61.5
- parent: 8364
- - uid: 19173
- components:
- - type: Transform
- pos: -56.5,-61.5
- parent: 8364
- uid: 19174
components:
- type: Transform
pos: -57.5,-61.5
parent: 8364
- - uid: 19175
+ - uid: 19197
+ components:
+ - type: Transform
+ pos: -56.5,-61.5
+ parent: 8364
+ - uid: 19202
+ components:
+ - type: Transform
+ pos: -55.5,-61.5
+ parent: 8364
+ - uid: 19203
components:
- type: Transform
pos: -42.5,-61.5
parent: 8364
+ - uid: 19204
+ components:
+ - type: Transform
+ pos: -43.5,-61.5
+ parent: 8364
- uid: 19288
components:
- type: Transform
@@ -47302,11 +49879,6 @@ entities:
- type: Transform
pos: 85.5,-44.5
parent: 8364
- - uid: 19773
- components:
- - type: Transform
- pos: -45.5,-62.5
- parent: 8364
- uid: 19774
components:
- type: Transform
@@ -47547,11 +50119,6 @@ entities:
- type: Transform
pos: -49.5,-63.5
parent: 8364
- - uid: 19900
- components:
- - type: Transform
- pos: -49.5,-62.5
- parent: 8364
- uid: 19901
components:
- type: Transform
@@ -47607,11 +50174,6 @@ entities:
- type: Transform
pos: -45.5,-59.5
parent: 8364
- - uid: 19912
- components:
- - type: Transform
- pos: -45.5,-60.5
- parent: 8364
- uid: 19913
components:
- type: Transform
@@ -47677,186 +50239,16 @@ entities:
- type: Transform
pos: 81.5,-68.5
parent: 8364
- - uid: 21377
- components:
- - type: Transform
- pos: 28.5,-113.5
- parent: 8364
- - uid: 21378
- components:
- - type: Transform
- pos: 28.5,-114.5
- parent: 8364
- - uid: 21379
- components:
- - type: Transform
- pos: 29.5,-114.5
- parent: 8364
- - uid: 21380
- components:
- - type: Transform
- pos: 30.5,-114.5
- parent: 8364
- - uid: 21386
- components:
- - type: Transform
- pos: 27.5,-113.5
- parent: 8364
- - uid: 21494
- components:
- - type: Transform
- pos: 26.5,-113.5
- parent: 8364
- - uid: 21527
- components:
- - type: Transform
- pos: 26.5,-112.5
- parent: 8364
- - uid: 21579
- components:
- - type: Transform
- pos: 25.5,-112.5
- parent: 8364
- - uid: 21968
- components:
- - type: Transform
- pos: 24.5,-112.5
- parent: 8364
- uid: 22337
components:
- type: Transform
pos: -0.5,-31.5
parent: 8364
- - uid: 22454
- components:
- - type: Transform
- pos: 30.5,-113.5
- parent: 8364
- - uid: 22455
- components:
- - type: Transform
- pos: 30.5,-112.5
- parent: 8364
- - uid: 22456
- components:
- - type: Transform
- pos: 30.5,-111.5
- parent: 8364
- - uid: 22457
- components:
- - type: Transform
- pos: 30.5,-110.5
- parent: 8364
- - uid: 22527
- components:
- - type: Transform
- pos: 30.5,-109.5
- parent: 8364
- - uid: 22528
- components:
- - type: Transform
- pos: 29.5,-109.5
- parent: 8364
- - uid: 22529
- components:
- - type: Transform
- pos: 28.5,-109.5
- parent: 8364
- - uid: 22530
- components:
- - type: Transform
- pos: 28.5,-108.5
- parent: 8364
- - uid: 22536
- components:
- - type: Transform
- pos: 28.5,-107.5
- parent: 8364
- - uid: 22537
- components:
- - type: Transform
- pos: 28.5,-106.5
- parent: 8364
- - uid: 22538
- components:
- - type: Transform
- pos: 28.5,-105.5
- parent: 8364
- - uid: 22539
- components:
- - type: Transform
- pos: 28.5,-104.5
- parent: 8364
- - uid: 22540
- components:
- - type: Transform
- pos: 28.5,-103.5
- parent: 8364
- - uid: 22541
- components:
- - type: Transform
- pos: 28.5,-101.5
- parent: 8364
- - uid: 22542
- components:
- - type: Transform
- pos: 28.5,-100.5
- parent: 8364
- - uid: 22547
- components:
- - type: Transform
- pos: 28.5,-102.5
- parent: 8364
- - uid: 22548
- components:
- - type: Transform
- pos: 28.5,-98.5
- parent: 8364
- uid: 22583
components:
- type: Transform
pos: 4.5,-80.5
parent: 8364
- - uid: 22644
- components:
- - type: Transform
- pos: 28.5,-97.5
- parent: 8364
- - uid: 22736
- components:
- - type: Transform
- pos: 28.5,-96.5
- parent: 8364
- - uid: 22737
- components:
- - type: Transform
- pos: 28.5,-99.5
- parent: 8364
- - uid: 22747
- components:
- - type: Transform
- pos: 28.5,-93.5
- parent: 8364
- - uid: 22750
- components:
- - type: Transform
- pos: 28.5,-92.5
- parent: 8364
- - uid: 22758
- components:
- - type: Transform
- pos: 28.5,-95.5
- parent: 8364
- - uid: 22764
- components:
- - type: Transform
- pos: 28.5,-94.5
- parent: 8364
- - uid: 22770
- components:
- - type: Transform
- pos: 28.5,-91.5
- parent: 8364
- uid: 22807
components:
- type: Transform
@@ -47872,140 +50264,45 @@ entities:
- type: Transform
pos: 1.5,-80.5
parent: 8364
- - uid: 22858
- components:
- - type: Transform
- pos: 29.5,-91.5
- parent: 8364
- - uid: 22889
- components:
- - type: Transform
- pos: 30.5,-91.5
- parent: 8364
- - uid: 22921
- components:
- - type: Transform
- pos: 31.5,-91.5
- parent: 8364
- uid: 22961
components:
- type: Transform
pos: -10.5,-74.5
parent: 8364
- - uid: 22975
- components:
- - type: Transform
- pos: 31.5,-92.5
- parent: 8364
- - uid: 22976
- components:
- - type: Transform
- pos: 32.5,-92.5
- parent: 8364
- - uid: 22977
- components:
- - type: Transform
- pos: 33.5,-92.5
- parent: 8364
- uid: 22979
components:
- type: Transform
pos: 0.5,-80.5
parent: 8364
- - uid: 23133
+ - uid: 23003
components:
- type: Transform
- pos: 27.5,-109.5
+ pos: 18.5,-77.5
parent: 8364
- uid: 23203
components:
- type: Transform
pos: -14.5,-74.5
parent: 8364
- - uid: 23204
- components:
- - type: Transform
- pos: 26.5,-109.5
- parent: 8364
- - uid: 23211
- components:
- - type: Transform
- pos: 25.5,-109.5
- parent: 8364
- - uid: 23223
- components:
- - type: Transform
- pos: 12.5,-80.5
- parent: 8364
- uid: 23238
components:
- type: Transform
pos: -0.5,-80.5
parent: 8364
- - uid: 23915
+ - uid: 24928
components:
- type: Transform
- pos: 24.5,-109.5
+ pos: -19.5,-71.5
parent: 8364
- - uid: 24005
+ - uid: 24970
components:
- type: Transform
- pos: 23.5,-109.5
+ pos: 12.5,-80.5
parent: 8364
- - uid: 24687
+ - uid: 25208
components:
- type: Transform
- pos: 13.5,-80.5
- parent: 8364
- - uid: 25012
- components:
- - type: Transform
- pos: 23.5,-108.5
- parent: 8364
- - uid: 25013
- components:
- - type: Transform
- pos: 23.5,-107.5
- parent: 8364
- - uid: 25225
- components:
- - type: Transform
- pos: 23.5,-106.5
- parent: 8364
- - uid: 25226
- components:
- - type: Transform
- pos: 23.5,-105.5
- parent: 8364
- - uid: 25228
- components:
- - type: Transform
- pos: 23.5,-104.5
- parent: 8364
- - uid: 25229
- components:
- - type: Transform
- pos: 23.5,-103.5
- parent: 8364
- - uid: 25230
- components:
- - type: Transform
- pos: 24.5,-103.5
- parent: 8364
- - uid: 25231
- components:
- - type: Transform
- pos: 24.5,-102.5
- parent: 8364
- - uid: 25232
- components:
- - type: Transform
- pos: 24.5,-101.5
- parent: 8364
- - uid: 25347
- components:
- - type: Transform
- pos: 24.5,-100.5
+ pos: -2.5,-13.5
parent: 8364
- uid: 25611
components:
@@ -48027,21 +50324,6 @@ entities:
- type: Transform
pos: -10.5,26.5
parent: 8364
- - uid: 25677
- components:
- - type: Transform
- pos: 24.5,-99.5
- parent: 8364
- - uid: 25678
- components:
- - type: Transform
- pos: 24.5,-97.5
- parent: 8364
- - uid: 25784
- components:
- - type: Transform
- pos: 24.5,-96.5
- parent: 8364
- uid: 25839
components:
- type: Transform
@@ -48057,16 +50339,6 @@ entities:
- type: Transform
pos: -2.5,-80.5
parent: 8364
- - uid: 25892
- components:
- - type: Transform
- pos: 24.5,-95.5
- parent: 8364
- - uid: 25893
- components:
- - type: Transform
- pos: 24.5,-94.5
- parent: 8364
- uid: 25894
components:
- type: Transform
@@ -48077,61 +50349,11 @@ entities:
- type: Transform
pos: -6.5,-51.5
parent: 8364
- - uid: 25927
- components:
- - type: Transform
- pos: 24.5,-93.5
- parent: 8364
- - uid: 25949
- components:
- - type: Transform
- pos: 24.5,-92.5
- parent: 8364
- - uid: 25950
- components:
- - type: Transform
- pos: 24.5,-91.5
- parent: 8364
- - uid: 25981
- components:
- - type: Transform
- pos: 24.5,-98.5
- parent: 8364
- - uid: 25982
- components:
- - type: Transform
- pos: 25.5,-91.5
- parent: 8364
- - uid: 25983
- components:
- - type: Transform
- pos: 26.5,-91.5
- parent: 8364
- - uid: 25984
- components:
- - type: Transform
- pos: 27.5,-91.5
- parent: 8364
- - uid: 25985
- components:
- - type: Transform
- pos: 32.5,-93.5
- parent: 8364
- - uid: 25986
- components:
- - type: Transform
- pos: 32.5,-94.5
- parent: 8364
- uid: 25987
components:
- type: Transform
pos: -3.5,-80.5
parent: 8364
- - uid: 26000
- components:
- - type: Transform
- pos: 32.5,-95.5
- parent: 8364
- uid: 26001
components:
- type: Transform
@@ -48142,11 +50364,6 @@ entities:
- type: Transform
pos: -5.5,-80.5
parent: 8364
- - uid: 26003
- components:
- - type: Transform
- pos: 32.5,-96.5
- parent: 8364
- uid: 26005
components:
- type: Transform
@@ -48157,16 +50374,6 @@ entities:
- type: Transform
pos: -7.5,-80.5
parent: 8364
- - uid: 26007
- components:
- - type: Transform
- pos: 32.5,-97.5
- parent: 8364
- - uid: 26008
- components:
- - type: Transform
- pos: 32.5,-98.5
- parent: 8364
- uid: 26009
components:
- type: Transform
@@ -48197,21 +50404,6 @@ entities:
- type: Transform
pos: -9.5,-84.5
parent: 8364
- - uid: 26017
- components:
- - type: Transform
- pos: 32.5,-99.5
- parent: 8364
- - uid: 26018
- components:
- - type: Transform
- pos: 32.5,-100.5
- parent: 8364
- - uid: 26019
- components:
- - type: Transform
- pos: 32.5,-101.5
- parent: 8364
- uid: 26021
components:
- type: Transform
@@ -48262,11 +50454,6 @@ entities:
- type: Transform
pos: -15.5,-74.5
parent: 8364
- - uid: 26088
- components:
- - type: Transform
- pos: 32.5,-102.5
- parent: 8364
- uid: 26124
components:
- type: Transform
@@ -48502,66 +50689,6 @@ entities:
- type: Transform
pos: -20.5,51.5
parent: 8364
- - uid: 26381
- components:
- - type: Transform
- pos: 32.5,-103.5
- parent: 8364
- - uid: 26382
- components:
- - type: Transform
- pos: 33.5,-103.5
- parent: 8364
- - uid: 26383
- components:
- - type: Transform
- pos: 33.5,-104.5
- parent: 8364
- - uid: 26384
- components:
- - type: Transform
- pos: 33.5,-105.5
- parent: 8364
- - uid: 26385
- components:
- - type: Transform
- pos: 33.5,-106.5
- parent: 8364
- - uid: 26386
- components:
- - type: Transform
- pos: 33.5,-107.5
- parent: 8364
- - uid: 26387
- components:
- - type: Transform
- pos: 33.5,-108.5
- parent: 8364
- - uid: 26388
- components:
- - type: Transform
- pos: 32.5,-108.5
- parent: 8364
- - uid: 26389
- components:
- - type: Transform
- pos: 31.5,-108.5
- parent: 8364
- - uid: 26567
- components:
- - type: Transform
- pos: 31.5,-109.5
- parent: 8364
- - uid: 26568
- components:
- - type: Transform
- pos: 28.5,-90.5
- parent: 8364
- - uid: 26576
- components:
- - type: Transform
- pos: 28.5,-89.5
- parent: 8364
- uid: 26579
components:
- type: Transform
@@ -48587,41 +50714,6 @@ entities:
- type: Transform
pos: 8.5,-81.5
parent: 8364
- - uid: 26589
- components:
- - type: Transform
- pos: 14.5,-80.5
- parent: 8364
- - uid: 26591
- components:
- - type: Transform
- pos: 15.5,-80.5
- parent: 8364
- - uid: 26608
- components:
- - type: Transform
- pos: 15.5,-79.5
- parent: 8364
- - uid: 26627
- components:
- - type: Transform
- pos: 28.5,-88.5
- parent: 8364
- - uid: 26628
- components:
- - type: Transform
- pos: 28.5,-87.5
- parent: 8364
- - uid: 26712
- components:
- - type: Transform
- pos: 28.5,-86.5
- parent: 8364
- - uid: 26738
- components:
- - type: Transform
- pos: 28.5,-85.5
- parent: 8364
- uid: 26742
components:
- type: Transform
@@ -48682,41 +50774,6 @@ entities:
- type: Transform
pos: -11.5,-61.5
parent: 8364
- - uid: 26797
- components:
- - type: Transform
- pos: 28.5,-84.5
- parent: 8364
- - uid: 26798
- components:
- - type: Transform
- pos: 28.5,-83.5
- parent: 8364
- - uid: 26799
- components:
- - type: Transform
- pos: 28.5,-82.5
- parent: 8364
- - uid: 26800
- components:
- - type: Transform
- pos: 28.5,-81.5
- parent: 8364
- - uid: 26801
- components:
- - type: Transform
- pos: 28.5,-80.5
- parent: 8364
- - uid: 26802
- components:
- - type: Transform
- pos: 28.5,-79.5
- parent: 8364
- - uid: 26803
- components:
- - type: Transform
- pos: 28.5,-78.5
- parent: 8364
- uid: 26911
components:
- type: Transform
@@ -48742,25 +50799,30 @@ entities:
- type: Transform
pos: 9.5,-76.5
parent: 8364
- - uid: 26966
+ - uid: 26996
components:
- type: Transform
- pos: 34.5,-92.5
+ pos: 13.5,-80.5
parent: 8364
- - uid: 26967
+ - uid: 27007
components:
- type: Transform
- pos: 34.5,-91.5
+ pos: -0.5,-17.5
parent: 8364
- - uid: 26968
+ - uid: 27011
components:
- type: Transform
- pos: 34.5,-90.5
+ pos: -0.5,-18.5
parent: 8364
- - uid: 26969
+ - uid: 27012
components:
- type: Transform
- pos: 34.5,-89.5
+ pos: -1.5,-17.5
+ parent: 8364
+ - uid: 27065
+ components:
+ - type: Transform
+ pos: 18.5,-78.5
parent: 8364
- uid: 27143
components:
@@ -48782,11 +50844,6 @@ entities:
- type: Transform
pos: 9.5,-75.5
parent: 8364
- - uid: 27230
- components:
- - type: Transform
- pos: 15.5,-78.5
- parent: 8364
- uid: 27461
components:
- type: Transform
@@ -48842,141 +50899,41 @@ entities:
- type: Transform
pos: 4.5,-68.5
parent: 8364
- - uid: 27809
- components:
- - type: Transform
- pos: 27.5,-76.5
- parent: 8364
- - uid: 27810
- components:
- - type: Transform
- pos: 27.5,-75.5
- parent: 8364
- - uid: 27811
- components:
- - type: Transform
- pos: 27.5,-74.5
- parent: 8364
- - uid: 27812
- components:
- - type: Transform
- pos: 27.5,-73.5
- parent: 8364
- - uid: 27813
- components:
- - type: Transform
- pos: 27.5,-72.5
- parent: 8364
- - uid: 27814
- components:
- - type: Transform
- pos: 27.5,-71.5
- parent: 8364
- - uid: 27815
- components:
- - type: Transform
- pos: 27.5,-70.5
- parent: 8364
- - uid: 27816
- components:
- - type: Transform
- pos: 27.5,-68.5
- parent: 8364
- - uid: 27817
- components:
- - type: Transform
- pos: 27.5,-69.5
- parent: 8364
- - uid: 27818
- components:
- - type: Transform
- pos: 26.5,-68.5
- parent: 8364
- - uid: 27819
- components:
- - type: Transform
- pos: 25.5,-68.5
- parent: 8364
- - uid: 27820
- components:
- - type: Transform
- pos: 24.5,-68.5
- parent: 8364
- - uid: 27821
- components:
- - type: Transform
- pos: 23.5,-68.5
- parent: 8364
- - uid: 27822
- components:
- - type: Transform
- pos: 22.5,-68.5
- parent: 8364
- - uid: 27823
- components:
- - type: Transform
- pos: 21.5,-68.5
- parent: 8364
- - uid: 27824
- components:
- - type: Transform
- pos: 20.5,-68.5
- parent: 8364
- - uid: 27825
- components:
- - type: Transform
- pos: 19.5,-68.5
- parent: 8364
- - uid: 27826
- components:
- - type: Transform
- pos: 18.5,-68.5
- parent: 8364
- - uid: 27827
- components:
- - type: Transform
- pos: 17.5,-68.5
- parent: 8364
- - uid: 27828
- components:
- - type: Transform
- pos: 16.5,-68.5
- parent: 8364
- - uid: 27829
- components:
- - type: Transform
- pos: 15.5,-68.5
- parent: 8364
- - uid: 27830
- components:
- - type: Transform
- pos: 13.5,-68.5
- parent: 8364
- - uid: 27831
- components:
- - type: Transform
- pos: 12.5,-68.5
- parent: 8364
- - uid: 27832
- components:
- - type: Transform
- pos: 11.5,-68.5
- parent: 8364
- - uid: 27833
- components:
- - type: Transform
- pos: 14.5,-68.5
- parent: 8364
- - uid: 27834
- components:
- - type: Transform
- pos: 10.5,-68.5
- parent: 8364
- uid: 27835
components:
- type: Transform
pos: 9.5,-68.5
parent: 8364
+ - uid: 27845
+ components:
+ - type: Transform
+ pos: 17.5,-80.5
+ parent: 8364
+ - uid: 27873
+ components:
+ - type: Transform
+ pos: -0.5,-19.5
+ parent: 8364
+ - uid: 27876
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 8364
+ - uid: 27877
+ components:
+ - type: Transform
+ pos: -1.5,-11.5
+ parent: 8364
+ - uid: 27883
+ components:
+ - type: Transform
+ pos: -0.5,-11.5
+ parent: 8364
+ - uid: 27884
+ components:
+ - type: Transform
+ pos: -2.5,-16.5
+ parent: 8364
- uid: 27905
components:
- type: Transform
@@ -49002,6 +50959,46 @@ entities:
- type: Transform
pos: 9.5,-73.5
parent: 8364
+ - uid: 27918
+ components:
+ - type: Transform
+ pos: -2.5,-17.5
+ parent: 8364
+ - uid: 27980
+ components:
+ - type: Transform
+ pos: -2.5,-11.5
+ parent: 8364
+ - uid: 27981
+ components:
+ - type: Transform
+ pos: -2.5,-14.5
+ parent: 8364
+ - uid: 27982
+ components:
+ - type: Transform
+ pos: -2.5,-12.5
+ parent: 8364
+ - uid: 28090
+ components:
+ - type: Transform
+ pos: -19.5,-11.5
+ parent: 8364
+ - uid: 28099
+ components:
+ - type: Transform
+ pos: -20.5,-11.5
+ parent: 8364
+ - uid: 28110
+ components:
+ - type: Transform
+ pos: -21.5,-11.5
+ parent: 8364
+ - uid: 28112
+ components:
+ - type: Transform
+ pos: -22.5,-11.5
+ parent: 8364
- proto: CableHVStack
entities:
- uid: 1683
@@ -49181,11 +51178,26 @@ entities:
- type: Transform
pos: -20.5,-65.5
parent: 8364
+ - uid: 3541
+ components:
+ - type: Transform
+ pos: -20.5,-76.5
+ parent: 8364
- uid: 3635
components:
- type: Transform
pos: -20.5,-68.5
parent: 8364
+ - uid: 3672
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 8364
+ - uid: 3673
+ components:
+ - type: Transform
+ pos: 1.5,-11.5
+ parent: 8364
- uid: 3723
components:
- type: Transform
@@ -49221,11 +51233,71 @@ entities:
- type: Transform
pos: 43.5,-3.5
parent: 8364
+ - uid: 4277
+ components:
+ - type: Transform
+ pos: -19.5,-77.5
+ parent: 8364
+ - uid: 4278
+ components:
+ - type: Transform
+ pos: -19.5,-78.5
+ parent: 8364
+ - uid: 4279
+ components:
+ - type: Transform
+ pos: -19.5,-76.5
+ parent: 8364
+ - uid: 4285
+ components:
+ - type: Transform
+ pos: -19.5,-79.5
+ parent: 8364
+ - uid: 4286
+ components:
+ - type: Transform
+ pos: -19.5,-80.5
+ parent: 8364
+ - uid: 4291
+ components:
+ - type: Transform
+ pos: -18.5,-80.5
+ parent: 8364
+ - uid: 4554
+ components:
+ - type: Transform
+ pos: 1.5,-15.5
+ parent: 8364
+ - uid: 4561
+ components:
+ - type: Transform
+ pos: 1.5,-13.5
+ parent: 8364
+ - uid: 4562
+ components:
+ - type: Transform
+ pos: 1.5,-14.5
+ parent: 8364
+ - uid: 4563
+ components:
+ - type: Transform
+ pos: 1.5,-16.5
+ parent: 8364
- uid: 4578
components:
- type: Transform
pos: 0.5,-60.5
parent: 8364
+ - uid: 4942
+ components:
+ - type: Transform
+ pos: -22.5,-75.5
+ parent: 8364
+ - uid: 4943
+ components:
+ - type: Transform
+ pos: -22.5,-72.5
+ parent: 8364
- uid: 5313
components:
- type: Transform
@@ -49271,11 +51343,6 @@ entities:
- type: Transform
pos: -12.5,-19.5
parent: 8364
- - uid: 5728
- components:
- - type: Transform
- pos: 0.5,-24.5
- parent: 8364
- uid: 5731
components:
- type: Transform
@@ -49286,41 +51353,11 @@ entities:
- type: Transform
pos: 4.5,-14.5
parent: 8364
- - uid: 5763
- components:
- - type: Transform
- pos: -1.5,-24.5
- parent: 8364
- - uid: 5781
- components:
- - type: Transform
- pos: -0.5,-15.5
- parent: 8364
- uid: 5788
components:
- type: Transform
pos: -28.5,-64.5
parent: 8364
- - uid: 5789
- components:
- - type: Transform
- pos: -0.5,-14.5
- parent: 8364
- - uid: 5861
- components:
- - type: Transform
- pos: -0.5,-24.5
- parent: 8364
- - uid: 5866
- components:
- - type: Transform
- pos: -2.5,-24.5
- parent: 8364
- - uid: 5874
- components:
- - type: Transform
- pos: -3.5,-24.5
- parent: 8364
- uid: 5949
components:
- type: Transform
@@ -49711,26 +51748,6 @@ entities:
- type: Transform
pos: 5.5,-25.5
parent: 8364
- - uid: 6094
- components:
- - type: Transform
- pos: -0.5,-9.5
- parent: 8364
- - uid: 6095
- components:
- - type: Transform
- pos: -0.5,-10.5
- parent: 8364
- - uid: 6096
- components:
- - type: Transform
- pos: -0.5,-11.5
- parent: 8364
- - uid: 6097
- components:
- - type: Transform
- pos: -0.5,-12.5
- parent: 8364
- uid: 6315
components:
- type: Transform
@@ -50351,11 +52368,6 @@ entities:
- type: Transform
pos: 3.5,-45.5
parent: 8364
- - uid: 8142
- components:
- - type: Transform
- pos: -0.5,-13.5
- parent: 8364
- uid: 8161
components:
- type: Transform
@@ -53456,36 +55468,6 @@ entities:
- type: Transform
pos: -23.5,-12.5
parent: 8364
- - uid: 14501
- components:
- - type: Transform
- pos: -23.5,-11.5
- parent: 8364
- - uid: 14502
- components:
- - type: Transform
- pos: -23.5,-10.5
- parent: 8364
- - uid: 14503
- components:
- - type: Transform
- pos: -22.5,-10.5
- parent: 8364
- - uid: 14504
- components:
- - type: Transform
- pos: -21.5,-10.5
- parent: 8364
- - uid: 14505
- components:
- - type: Transform
- pos: -20.5,-10.5
- parent: 8364
- - uid: 14506
- components:
- - type: Transform
- pos: -19.5,-10.5
- parent: 8364
- uid: 14572
components:
- type: Transform
@@ -53906,11 +55888,6 @@ entities:
- type: Transform
pos: -26.5,-20.5
parent: 8364
- - uid: 14919
- components:
- - type: Transform
- pos: 1.5,-24.5
- parent: 8364
- uid: 14970
components:
- type: Transform
@@ -56451,16 +58428,6 @@ entities:
- type: Transform
pos: 69.5,-45.5
parent: 8364
- - uid: 20279
- components:
- - type: Transform
- pos: 70.5,-45.5
- parent: 8364
- - uid: 20280
- components:
- - type: Transform
- pos: 71.5,-45.5
- parent: 8364
- uid: 20281
components:
- type: Transform
@@ -56501,11 +58468,6 @@ entities:
- type: Transform
pos: 77.5,-43.5
parent: 8364
- - uid: 20289
- components:
- - type: Transform
- pos: 66.5,-39.5
- parent: 8364
- uid: 20290
components:
- type: Transform
@@ -56671,11 +58633,6 @@ entities:
- type: Transform
pos: 61.5,-29.5
parent: 8364
- - uid: 20327
- components:
- - type: Transform
- pos: 66.5,-26.5
- parent: 8364
- uid: 20328
components:
- type: Transform
@@ -56831,6 +58788,16 @@ entities:
- type: Transform
pos: 55.5,-32.5
parent: 8364
+ - uid: 20858
+ components:
+ - type: Transform
+ pos: 66.5,-26.5
+ parent: 8364
+ - uid: 21376
+ components:
+ - type: Transform
+ pos: 66.5,-39.5
+ parent: 8364
- uid: 21473
components:
- type: Transform
@@ -57326,45 +59293,30 @@ entities:
- type: Transform
pos: 8.5,-36.5
parent: 8364
+ - uid: 21968
+ components:
+ - type: Transform
+ pos: 71.5,-45.5
+ parent: 8364
- uid: 22005
components:
- type: Transform
pos: -10.5,-19.5
parent: 8364
- - uid: 22214
- components:
- - type: Transform
- pos: 24.5,-112.5
- parent: 8364
- uid: 22216
components:
- type: Transform
pos: 7.5,-86.5
parent: 8364
- - uid: 22220
+ - uid: 22536
components:
- type: Transform
- pos: 25.5,-112.5
+ pos: -22.5,-74.5
parent: 8364
- - uid: 22450
+ - uid: 22537
components:
- type: Transform
- pos: 26.5,-112.5
- parent: 8364
- - uid: 22451
- components:
- - type: Transform
- pos: 26.5,-111.5
- parent: 8364
- - uid: 22452
- components:
- - type: Transform
- pos: 26.5,-110.5
- parent: 8364
- - uid: 22453
- components:
- - type: Transform
- pos: 27.5,-110.5
+ pos: -22.5,-73.5
parent: 8364
- uid: 22634
components:
@@ -57441,11 +59393,56 @@ entities:
- type: Transform
pos: -16.5,-70.5
parent: 8364
+ - uid: 23849
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 8364
+ - uid: 23904
+ components:
+ - type: Transform
+ pos: 70.5,-45.5
+ parent: 8364
+ - uid: 23914
+ components:
+ - type: Transform
+ pos: -0.5,-22.5
+ parent: 8364
- uid: 24189
components:
- type: Transform
pos: -1.5,-8.5
parent: 8364
+ - uid: 24923
+ components:
+ - type: Transform
+ pos: -20.5,-74.5
+ parent: 8364
+ - uid: 24927
+ components:
+ - type: Transform
+ pos: -21.5,-76.5
+ parent: 8364
+ - uid: 24974
+ components:
+ - type: Transform
+ pos: -0.5,-19.5
+ parent: 8364
+ - uid: 25089
+ components:
+ - type: Transform
+ pos: 0.5,-16.5
+ parent: 8364
+ - uid: 25215
+ components:
+ - type: Transform
+ pos: -19.5,-9.5
+ parent: 8364
+ - uid: 25251
+ components:
+ - type: Transform
+ pos: -22.5,-76.5
+ parent: 8364
- uid: 25262
components:
- type: Transform
@@ -58231,6 +60228,16 @@ entities:
- type: Transform
pos: -14.5,34.5
parent: 8364
+ - uid: 26673
+ components:
+ - type: Transform
+ pos: -0.5,-21.5
+ parent: 8364
+ - uid: 26679
+ components:
+ - type: Transform
+ pos: -0.5,-20.5
+ parent: 8364
- uid: 26715
components:
- type: Transform
@@ -58276,310 +60283,40 @@ entities:
- type: Transform
pos: -6.5,-80.5
parent: 8364
- - uid: 26970
+ - uid: 26943
components:
- type: Transform
- pos: 35.5,-92.5
+ pos: -0.5,-17.5
parent: 8364
- - uid: 26971
+ - uid: 26954
components:
- type: Transform
- pos: 34.5,-92.5
+ pos: -0.5,-16.5
parent: 8364
- - uid: 26972
+ - uid: 26955
components:
- type: Transform
- pos: 33.5,-92.5
+ pos: -0.5,-15.5
parent: 8364
- - uid: 26973
+ - uid: 26956
components:
- type: Transform
- pos: 33.5,-91.5
- parent: 8364
- - uid: 26974
- components:
- - type: Transform
- pos: 33.5,-90.5
- parent: 8364
- - uid: 26975
- components:
- - type: Transform
- pos: 33.5,-89.5
- parent: 8364
- - uid: 26976
- components:
- - type: Transform
- pos: 34.5,-89.5
- parent: 8364
- - uid: 26977
- components:
- - type: Transform
- pos: 32.5,-91.5
- parent: 8364
- - uid: 26978
- components:
- - type: Transform
- pos: 31.5,-91.5
- parent: 8364
- - uid: 26979
- components:
- - type: Transform
- pos: 30.5,-91.5
- parent: 8364
- - uid: 26980
- components:
- - type: Transform
- pos: 29.5,-91.5
- parent: 8364
- - uid: 26981
- components:
- - type: Transform
- pos: 28.5,-91.5
- parent: 8364
- - uid: 26982
- components:
- - type: Transform
- pos: 28.5,-90.5
- parent: 8364
- - uid: 26983
- components:
- - type: Transform
- pos: 28.5,-89.5
- parent: 8364
- - uid: 26984
- components:
- - type: Transform
- pos: 28.5,-88.5
- parent: 8364
- - uid: 26985
- components:
- - type: Transform
- pos: 28.5,-87.5
- parent: 8364
- - uid: 26986
- components:
- - type: Transform
- pos: 28.5,-86.5
- parent: 8364
- - uid: 26987
- components:
- - type: Transform
- pos: 29.5,-86.5
- parent: 8364
- - uid: 26988
- components:
- - type: Transform
- pos: 30.5,-86.5
- parent: 8364
- - uid: 26989
- components:
- - type: Transform
- pos: 31.5,-86.5
- parent: 8364
- - uid: 26990
- components:
- - type: Transform
- pos: 27.5,-91.5
- parent: 8364
- - uid: 26991
- components:
- - type: Transform
- pos: 26.5,-91.5
- parent: 8364
- - uid: 26992
- components:
- - type: Transform
- pos: 25.5,-91.5
- parent: 8364
- - uid: 26993
- components:
- - type: Transform
- pos: 24.5,-91.5
- parent: 8364
- - uid: 26994
- components:
- - type: Transform
- pos: 23.5,-91.5
- parent: 8364
- - uid: 26995
- components:
- - type: Transform
- pos: 22.5,-91.5
- parent: 8364
- - uid: 26996
- components:
- - type: Transform
- pos: 22.5,-92.5
- parent: 8364
- - uid: 26997
- components:
- - type: Transform
- pos: 21.5,-92.5
- parent: 8364
- - uid: 26998
- components:
- - type: Transform
- pos: 28.5,-92.5
- parent: 8364
- - uid: 26999
- components:
- - type: Transform
- pos: 28.5,-93.5
- parent: 8364
- - uid: 27000
- components:
- - type: Transform
- pos: 28.5,-94.5
- parent: 8364
- - uid: 27001
- components:
- - type: Transform
- pos: 28.5,-95.5
- parent: 8364
- - uid: 27002
- components:
- - type: Transform
- pos: 28.5,-96.5
- parent: 8364
- - uid: 27003
- components:
- - type: Transform
- pos: 28.5,-97.5
- parent: 8364
- - uid: 27004
- components:
- - type: Transform
- pos: 28.5,-98.5
- parent: 8364
- - uid: 27005
- components:
- - type: Transform
- pos: 28.5,-99.5
- parent: 8364
- - uid: 27006
- components:
- - type: Transform
- pos: 28.5,-100.5
- parent: 8364
- - uid: 27007
- components:
- - type: Transform
- pos: 29.5,-100.5
+ pos: -20.5,-72.5
parent: 8364
- uid: 27008
components:
- type: Transform
- pos: 30.5,-100.5
+ pos: -1.5,-15.5
parent: 8364
- - uid: 27009
+ - uid: 27054
components:
- type: Transform
- pos: 31.5,-100.5
+ pos: -20.5,-73.5
parent: 8364
- - uid: 27010
+ - uid: 27205
components:
- type: Transform
- pos: 32.5,-100.5
- parent: 8364
- - uid: 27011
- components:
- - type: Transform
- pos: 32.5,-99.5
- parent: 8364
- - uid: 27012
- components:
- - type: Transform
- pos: 32.5,-98.5
- parent: 8364
- - uid: 27013
- components:
- - type: Transform
- pos: 32.5,-97.5
- parent: 8364
- - uid: 27014
- components:
- - type: Transform
- pos: 32.5,-96.5
- parent: 8364
- - uid: 27015
- components:
- - type: Transform
- pos: 32.5,-95.5
- parent: 8364
- - uid: 27016
- components:
- - type: Transform
- pos: 32.5,-94.5
- parent: 8364
- - uid: 27017
- components:
- - type: Transform
- pos: 32.5,-93.5
- parent: 8364
- - uid: 27018
- components:
- - type: Transform
- pos: 32.5,-92.5
- parent: 8364
- - uid: 27019
- components:
- - type: Transform
- pos: 28.5,-101.5
- parent: 8364
- - uid: 27020
- components:
- - type: Transform
- pos: 28.5,-102.5
- parent: 8364
- - uid: 27021
- components:
- - type: Transform
- pos: 28.5,-103.5
- parent: 8364
- - uid: 27022
- components:
- - type: Transform
- pos: 28.5,-104.5
- parent: 8364
- - uid: 27023
- components:
- - type: Transform
- pos: 28.5,-105.5
- parent: 8364
- - uid: 27024
- components:
- - type: Transform
- pos: 28.5,-106.5
- parent: 8364
- - uid: 27025
- components:
- - type: Transform
- pos: 28.5,-107.5
- parent: 8364
- - uid: 27026
- components:
- - type: Transform
- pos: 28.5,-108.5
- parent: 8364
- - uid: 27027
- components:
- - type: Transform
- pos: 28.5,-109.5
- parent: 8364
- - uid: 27028
- components:
- - type: Transform
- pos: 28.5,-110.5
- parent: 8364
- - uid: 27029
- components:
- - type: Transform
- pos: 28.5,-111.5
- parent: 8364
- - uid: 27030
- components:
- - type: Transform
- pos: 29.5,-111.5
+ pos: -20.5,-75.5
parent: 8364
- uid: 27314
components:
@@ -58781,6 +60518,11 @@ entities:
- type: Transform
pos: -0.5,-76.5
parent: 8364
+ - uid: 27814
+ components:
+ - type: Transform
+ pos: -0.5,-18.5
+ parent: 8364
- uid: 27967
components:
- type: Transform
@@ -58801,11 +60543,56 @@ entities:
- type: Transform
pos: 59.5,-38.5
parent: 8364
+ - uid: 27993
+ components:
+ - type: Transform
+ pos: -20.5,-9.5
+ parent: 8364
+ - uid: 27994
+ components:
+ - type: Transform
+ pos: -21.5,-9.5
+ parent: 8364
+ - uid: 27995
+ components:
+ - type: Transform
+ pos: -22.5,-9.5
+ parent: 8364
+ - uid: 27996
+ components:
+ - type: Transform
+ pos: -22.5,-10.5
+ parent: 8364
+ - uid: 27998
+ components:
+ - type: Transform
+ pos: -22.5,-11.5
+ parent: 8364
+ - uid: 27999
+ components:
+ - type: Transform
+ pos: -22.5,-12.5
+ parent: 8364
- uid: 28060
components:
- type: Transform
pos: 58.5,-35.5
parent: 8364
+ - uid: 28156
+ components:
+ - type: Transform
+ pos: -1.5,-22.5
+ parent: 8364
+ - uid: 28157
+ components:
+ - type: Transform
+ pos: -2.5,-22.5
+ parent: 8364
+ - uid: 28158
+ components:
+ - type: Transform
+ pos: -3.5,-22.5
+ parent: 8364
- proto: CableMVStack
entities:
- uid: 1697
@@ -58992,17 +60779,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 81.5,-65.5
parent: 8364
- - uid: 21376
+ - uid: 25051
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-114.5
- parent: 8364
- - uid: 26965
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-92.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-11.5
parent: 8364
- proto: CannabisSeeds
entities:
@@ -59026,12 +60807,12 @@ entities:
- uid: 21190
components:
- type: Transform
- pos: 74.3515,-19.897121
+ pos: 74.41276,-20.008142
parent: 8364
- uid: 21198
components:
- type: Transform
- pos: 74.72912,-20.240425
+ pos: 74.631615,-20.414675
parent: 8364
- proto: CaptainIDCard
entities:
@@ -59069,6 +60850,21 @@ entities:
- type: Transform
pos: -15.5,52.5
parent: 8364
+ - uid: 4508
+ components:
+ - type: Transform
+ pos: 55.5,-8.5
+ parent: 8364
+ - uid: 4510
+ components:
+ - type: Transform
+ pos: 55.5,-6.5
+ parent: 8364
+ - uid: 4512
+ components:
+ - type: Transform
+ pos: 56.5,-6.5
+ parent: 8364
- uid: 5260
components:
- type: Transform
@@ -59129,21 +60925,6 @@ entities:
- type: Transform
pos: 55.5,-3.5
parent: 8364
- - uid: 5378
- components:
- - type: Transform
- pos: 55.5,-4.5
- parent: 8364
- - uid: 5379
- components:
- - type: Transform
- pos: 55.5,-5.5
- parent: 8364
- - uid: 5380
- components:
- - type: Transform
- pos: 55.5,-6.5
- parent: 8364
- uid: 5384
components:
- type: Transform
@@ -59154,21 +60935,6 @@ entities:
- type: Transform
pos: 56.5,-3.5
parent: 8364
- - uid: 5386
- components:
- - type: Transform
- pos: 56.5,-4.5
- parent: 8364
- - uid: 5387
- components:
- - type: Transform
- pos: 56.5,-5.5
- parent: 8364
- - uid: 5388
- components:
- - type: Transform
- pos: 56.5,-6.5
- parent: 8364
- uid: 5396
components:
- type: Transform
@@ -59399,16 +61165,31 @@ entities:
- type: Transform
pos: 11.5,-24.5
parent: 8364
+ - uid: 6089
+ components:
+ - type: Transform
+ pos: 55.5,-5.5
+ parent: 8364
- uid: 7045
components:
- type: Transform
pos: 8.5,-27.5
parent: 8364
+ - uid: 7418
+ components:
+ - type: Transform
+ pos: 55.5,-9.5
+ parent: 8364
- uid: 8026
components:
- type: Transform
pos: 20.5,-7.5
parent: 8364
+ - uid: 8143
+ components:
+ - type: Transform
+ pos: 55.5,-7.5
+ parent: 8364
- uid: 8200
components:
- type: Transform
@@ -59464,6 +61245,11 @@ entities:
- type: Transform
pos: 20.5,-8.5
parent: 8364
+ - uid: 14484
+ components:
+ - type: Transform
+ pos: 56.5,-8.5
+ parent: 8364
- uid: 14857
components:
- type: Transform
@@ -59569,6 +61355,16 @@ entities:
- type: Transform
pos: -31.5,-25.5
parent: 8364
+ - uid: 22732
+ components:
+ - type: Transform
+ pos: 55.5,-4.5
+ parent: 8364
+ - uid: 22733
+ components:
+ - type: Transform
+ pos: 56.5,-5.5
+ parent: 8364
- uid: 22809
components:
- type: Transform
@@ -59594,36 +61390,6 @@ entities:
- type: Transform
pos: 19.5,-5.5
parent: 8364
- - uid: 24941
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-7.5
- parent: 8364
- - uid: 24942
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,-7.5
- parent: 8364
- - uid: 24943
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,-8.5
- parent: 8364
- - uid: 24944
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-8.5
- parent: 8364
- - uid: 24945
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,-8.5
- parent: 8364
- uid: 24946
components:
- type: Transform
@@ -59636,23 +61402,15 @@ entities:
rot: -1.5707963267948966 rad
pos: 58.5,-9.5
parent: 8364
- - uid: 24948
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,-9.5
- parent: 8364
- uid: 24949
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-9.5
+ pos: 56.5,-4.5
parent: 8364
- - uid: 24950
+ - uid: 24961
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,-9.5
+ pos: 56.5,-7.5
parent: 8364
- uid: 25684
components:
@@ -59734,6 +61492,21 @@ entities:
- type: Transform
pos: -11.5,52.5
parent: 8364
+ - uid: 26680
+ components:
+ - type: Transform
+ pos: 57.5,-9.5
+ parent: 8364
+ - uid: 26684
+ components:
+ - type: Transform
+ pos: 57.5,-8.5
+ parent: 8364
+ - uid: 26690
+ components:
+ - type: Transform
+ pos: 56.5,-9.5
+ parent: 8364
- uid: 26884
components:
- type: Transform
@@ -60115,6 +61888,11 @@ entities:
parent: 8364
- proto: CarpetGreen
entities:
+ - uid: 828
+ components:
+ - type: Transform
+ pos: 69.5,-4.5
+ parent: 8364
- uid: 1588
components:
- type: Transform
@@ -60140,6 +61918,51 @@ entities:
- type: Transform
pos: 11.5,-36.5
parent: 8364
+ - uid: 4513
+ components:
+ - type: Transform
+ pos: 66.5,-8.5
+ parent: 8364
+ - uid: 4518
+ components:
+ - type: Transform
+ pos: 66.5,-9.5
+ parent: 8364
+ - uid: 4521
+ components:
+ - type: Transform
+ pos: 69.5,-8.5
+ parent: 8364
+ - uid: 4530
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-8.5
+ parent: 8364
+ - uid: 4531
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,-9.5
+ parent: 8364
+ - uid: 4533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,-9.5
+ parent: 8364
+ - uid: 4534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,-10.5
+ parent: 8364
+ - uid: 4535
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,-10.5
+ parent: 8364
- uid: 5239
components:
- type: Transform
@@ -60150,6 +61973,47 @@ entities:
- type: Transform
pos: 56.5,-35.5
parent: 8364
+ - uid: 5737
+ components:
+ - type: Transform
+ pos: 69.5,-5.5
+ parent: 8364
+ - uid: 5739
+ components:
+ - type: Transform
+ pos: 69.5,-6.5
+ parent: 8364
+ - uid: 5828
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-12.5
+ parent: 8364
+ - uid: 5876
+ components:
+ - type: Transform
+ pos: 71.5,-9.5
+ parent: 8364
+ - uid: 5882
+ components:
+ - type: Transform
+ pos: 72.5,-8.5
+ parent: 8364
+ - uid: 5883
+ components:
+ - type: Transform
+ pos: 72.5,-9.5
+ parent: 8364
+ - uid: 5988
+ components:
+ - type: Transform
+ pos: 71.5,-8.5
+ parent: 8364
+ - uid: 6090
+ components:
+ - type: Transform
+ pos: 69.5,-7.5
+ parent: 8364
- uid: 6952
components:
- type: Transform
@@ -60185,86 +62049,31 @@ entities:
- type: Transform
pos: 18.5,24.5
parent: 8364
- - uid: 7038
- components:
- - type: Transform
- pos: 66.5,-9.5
- parent: 8364
- - uid: 7046
- components:
- - type: Transform
- pos: 70.5,-10.5
- parent: 8364
- - uid: 7074
- components:
- - type: Transform
- pos: 67.5,-8.5
- parent: 8364
- uid: 7080
components:
- type: Transform
pos: 64.5,-8.5
parent: 8364
- - uid: 7087
- components:
- - type: Transform
- pos: 66.5,-8.5
- parent: 8364
- uid: 7090
components:
- type: Transform
pos: 18.5,25.5
parent: 8364
- - uid: 7092
- components:
- - type: Transform
- pos: 68.5,-9.5
- parent: 8364
- uid: 7127
components:
- type: Transform
pos: 68.5,-4.5
parent: 8364
- - uid: 7133
- components:
- - type: Transform
- pos: 65.5,-8.5
- parent: 8364
- - uid: 7153
- components:
- - type: Transform
- pos: 69.5,-10.5
- parent: 8364
- - uid: 7154
- components:
- - type: Transform
- pos: 68.5,-8.5
- parent: 8364
- - uid: 7176
- components:
- - type: Transform
- pos: 68.5,-10.5
- parent: 8364
- uid: 7181
components:
- type: Transform
pos: 68.5,-5.5
parent: 8364
- - uid: 7217
- components:
- - type: Transform
- pos: 67.5,-9.5
- parent: 8364
- uid: 7224
components:
- type: Transform
pos: 71.5,-10.5
parent: 8364
- - uid: 7231
- components:
- - type: Transform
- pos: 65.5,-9.5
- parent: 8364
- uid: 7232
components:
- type: Transform
@@ -60290,6 +62099,21 @@ entities:
- type: Transform
pos: 16.5,24.5
parent: 8364
+ - uid: 8146
+ components:
+ - type: Transform
+ pos: 67.5,-8.5
+ parent: 8364
+ - uid: 8147
+ components:
+ - type: Transform
+ pos: 65.5,-8.5
+ parent: 8364
+ - uid: 8148
+ components:
+ - type: Transform
+ pos: 65.5,-9.5
+ parent: 8364
- uid: 8401
components:
- type: Transform
@@ -60320,6 +62144,12 @@ entities:
- type: Transform
pos: 61.5,-3.5
parent: 8364
+ - uid: 10870
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-12.5
+ parent: 8364
- uid: 11373
components:
- type: Transform
@@ -60470,11 +62300,29 @@ entities:
- type: Transform
pos: 54.5,-0.5
parent: 8364
+ - uid: 17704
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-10.5
+ parent: 8364
- uid: 19153
components:
- type: Transform
pos: 11.5,-35.5
parent: 8364
+ - uid: 20119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-9.5
+ parent: 8364
+ - uid: 20124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-8.5
+ parent: 8364
- uid: 20364
components:
- type: Transform
@@ -60530,72 +62378,22 @@ entities:
- type: Transform
pos: 5.5,-18.5
parent: 8364
- - uid: 24969
+ - uid: 22736
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-9.5
+ pos: 68.5,-8.5
parent: 8364
- - uid: 24970
+ - uid: 22737
components:
- type: Transform
- rot: 1.5707963267948966 rad
+ pos: 67.5,-9.5
+ parent: 8364
+ - uid: 23772
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 70.5,-9.5
parent: 8364
- - uid: 24971
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-9.5
- parent: 8364
- - uid: 24972
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,-9.5
- parent: 8364
- - uid: 24973
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,-9.5
- parent: 8364
- - uid: 24974
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,-8.5
- parent: 8364
- - uid: 24975
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,-8.5
- parent: 8364
- - uid: 24976
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-8.5
- parent: 8364
- - uid: 24977
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-8.5
- parent: 8364
- - uid: 24978
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-8.5
- parent: 8364
- - uid: 24979
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-7.5
- parent: 8364
- uid: 24980
components:
- type: Transform
@@ -60608,24 +62406,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 70.5,-6.5
parent: 8364
- - uid: 24982
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-6.5
- parent: 8364
- - uid: 24983
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-5.5
- parent: 8364
- - uid: 24984
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-4.5
- parent: 8364
- uid: 24985
components:
- type: Transform
@@ -60638,6 +62418,18 @@ entities:
rot: 1.5707963267948966 rad
pos: 70.5,-5.5
parent: 8364
+ - uid: 25190
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-13.5
+ parent: 8364
+ - uid: 25201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-13.5
+ parent: 8364
- uid: 26117
components:
- type: Transform
@@ -60674,6 +62466,18 @@ entities:
rot: 3.141592653589793 rad
pos: 27.5,-0.5
parent: 8364
+ - uid: 27021
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-13.5
+ parent: 8364
+ - uid: 27022
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-12.5
+ parent: 8364
- proto: CarpetOrange
entities:
- uid: 1753
@@ -61022,11 +62826,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -8.5,-16.5
parent: 8364
- - uid: 13471
- components:
- - type: Transform
- pos: -23.5,-11.5
- parent: 8364
- uid: 13478
components:
- type: Transform
@@ -61043,46 +62842,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -10.5,-16.5
parent: 8364
- - uid: 14091
- components:
- - type: Transform
- pos: -23.5,-12.5
- parent: 8364
- - uid: 14105
- components:
- - type: Transform
- pos: -22.5,-10.5
- parent: 8364
- - uid: 14106
- components:
- - type: Transform
- pos: -23.5,-10.5
- parent: 8364
- - uid: 14113
- components:
- - type: Transform
- pos: -21.5,-10.5
- parent: 8364
- - uid: 14114
- components:
- - type: Transform
- pos: -21.5,-12.5
- parent: 8364
- - uid: 14115
- components:
- - type: Transform
- pos: -21.5,-11.5
- parent: 8364
- - uid: 14116
- components:
- - type: Transform
- pos: -22.5,-11.5
- parent: 8364
- - uid: 14117
- components:
- - type: Transform
- pos: -22.5,-12.5
- parent: 8364
- uid: 19150
components:
- type: Transform
@@ -61123,11 +62882,29 @@ entities:
- type: Transform
pos: 49.5,-30.5
parent: 8364
+ - uid: 2017
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-79.5
+ parent: 8364
+ - uid: 3606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-88.5
+ parent: 8364
- uid: 4244
components:
- type: Transform
pos: 49.5,-18.5
parent: 8364
+ - uid: 4476
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,-79.5
+ parent: 8364
- uid: 4663
components:
- type: Transform
@@ -61143,6 +62920,29 @@ entities:
- type: Transform
pos: 49.5,-22.5
parent: 8364
+ - uid: 5861
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,-88.5
+ parent: 8364
+ - uid: 5864
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-79.5
+ parent: 8364
+ - uid: 5865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,-79.5
+ parent: 8364
+ - uid: 5866
+ components:
+ - type: Transform
+ pos: 0.5,41.5
+ parent: 8364
- uid: 7149
components:
- type: Transform
@@ -61158,6 +62958,12 @@ entities:
- type: Transform
pos: 2.5,11.5
parent: 8364
+ - uid: 10548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-11.5
+ parent: 8364
- uid: 10573
components:
- type: Transform
@@ -61583,6 +63389,12 @@ entities:
- type: Transform
pos: 32.5,-45.5
parent: 8364
+ - uid: 12262
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-88.5
+ parent: 8364
- uid: 12328
components:
- type: Transform
@@ -61623,6 +63435,12 @@ entities:
- type: Transform
pos: 32.5,-53.5
parent: 8364
+ - uid: 12458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-88.5
+ parent: 8364
- uid: 12561
components:
- type: Transform
@@ -62268,6 +64086,12 @@ entities:
- type: Transform
pos: -22.5,10.5
parent: 8364
+ - uid: 13781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-79.5
+ parent: 8364
- uid: 13786
components:
- type: Transform
@@ -62308,6 +64132,18 @@ entities:
- type: Transform
pos: -39.5,-17.5
parent: 8364
+ - uid: 14091
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,-79.5
+ parent: 8364
+ - uid: 14106
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,-84.5
+ parent: 8364
- uid: 14119
components:
- type: Transform
@@ -62393,16 +64229,6 @@ entities:
- type: Transform
pos: -26.5,-10.5
parent: 8364
- - uid: 14702
- components:
- - type: Transform
- pos: -26.5,-11.5
- parent: 8364
- - uid: 14703
- components:
- - type: Transform
- pos: -26.5,-12.5
- parent: 8364
- uid: 14757
components:
- type: Transform
@@ -63118,6 +64944,21 @@ entities:
- type: Transform
pos: 47.5,38.5
parent: 8364
+ - uid: 15831
+ components:
+ - type: Transform
+ pos: -53.5,-61.5
+ parent: 8364
+ - uid: 15857
+ components:
+ - type: Transform
+ pos: -45.5,-61.5
+ parent: 8364
+ - uid: 15858
+ components:
+ - type: Transform
+ pos: -55.5,-61.5
+ parent: 8364
- uid: 15871
components:
- type: Transform
@@ -63138,6 +64979,12 @@ entities:
- type: Transform
pos: 47.5,34.5
parent: 8364
+ - uid: 15879
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-79.5
+ parent: 8364
- uid: 15894
components:
- type: Transform
@@ -63498,6 +65345,18 @@ entities:
- type: Transform
pos: -47.5,13.5
parent: 8364
+ - uid: 16145
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-88.5
+ parent: 8364
+ - uid: 16207
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-88.5
+ parent: 8364
- uid: 16307
components:
- type: Transform
@@ -63578,11 +65437,35 @@ entities:
- type: Transform
pos: -49.5,2.5
parent: 8364
+ - uid: 16396
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-81.5
+ parent: 8364
+ - uid: 16398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,-79.5
+ parent: 8364
+ - uid: 16451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,-79.5
+ parent: 8364
- uid: 16452
components:
- type: Transform
pos: -49.5,1.5
parent: 8364
+ - uid: 16506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,-84.5
+ parent: 8364
- uid: 16532
components:
- type: Transform
@@ -63603,16 +65486,53 @@ entities:
- type: Transform
pos: 0.5,-76.5
parent: 8364
- - uid: 16634
+ - uid: 16553
components:
- type: Transform
- pos: 27.5,-76.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,-88.5
+ parent: 8364
+ - uid: 16554
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-80.5
+ parent: 8364
+ - uid: 16555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-84.5
+ parent: 8364
+ - uid: 16619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-87.5
+ parent: 8364
+ - uid: 16621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-85.5
parent: 8364
- uid: 16714
components:
- type: Transform
pos: -0.5,-77.5
parent: 8364
+ - uid: 16789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,-79.5
+ parent: 8364
+ - uid: 16973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-79.5
+ parent: 8364
- uid: 17184
components:
- type: Transform
@@ -63656,80 +65576,60 @@ entities:
rot: 3.141592653589793 rad
pos: -24.5,-68.5
parent: 8364
- - uid: 19189
- components:
- - type: Transform
- pos: -42.5,-61.5
- parent: 8364
- - uid: 19194
- components:
- - type: Transform
- pos: -43.5,-61.5
- parent: 8364
- - uid: 19195
- components:
- - type: Transform
- pos: -44.5,-61.5
- parent: 8364
- - uid: 19196
- components:
- - type: Transform
- pos: -45.5,-61.5
- parent: 8364
- - uid: 19197
- components:
- - type: Transform
- pos: -46.5,-61.5
- parent: 8364
- - uid: 19200
- components:
- - type: Transform
- pos: -47.5,-61.5
- parent: 8364
- - uid: 19201
- components:
- - type: Transform
- pos: -48.5,-61.5
- parent: 8364
- - uid: 19202
+ - uid: 19173
components:
- type: Transform
pos: -49.5,-61.5
parent: 8364
- - uid: 19203
+ - uid: 19175
components:
- type: Transform
- pos: -50.5,-61.5
+ pos: -47.5,-61.5
parent: 8364
- - uid: 19204
+ - uid: 19189
components:
- type: Transform
pos: -51.5,-61.5
parent: 8364
- - uid: 19205
+ - uid: 19194
components:
- type: Transform
- pos: -52.5,-61.5
+ pos: -42.5,-61.5
parent: 8364
- - uid: 19207
+ - uid: 19195
components:
- type: Transform
- pos: -53.5,-61.5
+ pos: -45.5,-60.5
+ parent: 8364
+ - uid: 19196
+ components:
+ - type: Transform
+ pos: -53.5,-62.5
+ parent: 8364
+ - uid: 19200
+ components:
+ - type: Transform
+ pos: -49.5,-60.5
+ parent: 8364
+ - uid: 19201
+ components:
+ - type: Transform
+ pos: -53.5,-60.5
parent: 8364
- uid: 19209
components:
- type: Transform
- pos: -54.5,-61.5
+ pos: -45.5,-62.5
parent: 8364
- uid: 19210
components:
- type: Transform
- pos: -55.5,-61.5
+ pos: -49.5,-62.5
parent: 8364
- uid: 19211
components:
- type: Transform
- pos: -56.5,-61.5
+ pos: -43.5,-61.5
parent: 8364
- uid: 19212
components:
@@ -63759,12 +65659,12 @@ entities:
- uid: 19222
components:
- type: Transform
- pos: -53.5,-60.5
+ pos: -54.5,-61.5
parent: 8364
- uid: 19223
components:
- type: Transform
- pos: -49.5,-60.5
+ pos: -52.5,-61.5
parent: 8364
- uid: 19224
components:
@@ -63819,12 +65719,12 @@ entities:
- uid: 19269
components:
- type: Transform
- pos: -45.5,-60.5
+ pos: -50.5,-61.5
parent: 8364
- uid: 19270
components:
- type: Transform
- pos: -45.5,-62.5
+ pos: -48.5,-61.5
parent: 8364
- uid: 19271
components:
@@ -63854,7 +65754,7 @@ entities:
- uid: 19290
components:
- type: Transform
- pos: -49.5,-62.5
+ pos: -46.5,-61.5
parent: 8364
- uid: 19291
components:
@@ -63884,7 +65784,7 @@ entities:
- uid: 19300
components:
- type: Transform
- pos: -53.5,-62.5
+ pos: -44.5,-61.5
parent: 8364
- uid: 19301
components:
@@ -64246,6 +66146,12 @@ entities:
- type: Transform
pos: 87.5,-74.5
parent: 8364
+ - uid: 22000
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,-79.5
+ parent: 8364
- uid: 22489
components:
- type: Transform
@@ -64366,21 +66272,6 @@ entities:
- type: Transform
pos: 52.5,-79.5
parent: 8364
- - uid: 22513
- components:
- - type: Transform
- pos: 52.5,-80.5
- parent: 8364
- - uid: 22514
- components:
- - type: Transform
- pos: 52.5,-81.5
- parent: 8364
- - uid: 22515
- components:
- - type: Transform
- pos: 52.5,-82.5
- parent: 8364
- uid: 22517
components:
- type: Transform
@@ -64446,6 +66337,72 @@ entities:
- type: Transform
pos: -10.5,-74.5
parent: 8364
+ - uid: 22744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-88.5
+ parent: 8364
+ - uid: 22922
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-82.5
+ parent: 8364
+ - uid: 22941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,-79.5
+ parent: 8364
+ - uid: 22944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-79.5
+ parent: 8364
+ - uid: 23002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,-79.5
+ parent: 8364
+ - uid: 23006
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-88.5
+ parent: 8364
+ - uid: 23008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-88.5
+ parent: 8364
+ - uid: 23150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,-88.5
+ parent: 8364
+ - uid: 23153
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-86.5
+ parent: 8364
+ - uid: 23179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-79.5
+ parent: 8364
+ - uid: 23182
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-83.5
+ parent: 8364
- uid: 26401
components:
- type: Transform
@@ -64590,16 +66547,28 @@ entities:
- type: Transform
pos: -1.5,-75.5
parent: 8364
+ - uid: 26784
+ components:
+ - type: Transform
+ pos: -56.5,-61.5
+ parent: 8364
+ - uid: 26995
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-88.5
+ parent: 8364
+ - uid: 27060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-84.5
+ parent: 8364
- uid: 27276
components:
- type: Transform
pos: -0.5,41.5
parent: 8364
- - uid: 27277
- components:
- - type: Transform
- pos: 0.5,41.5
- parent: 8364
- uid: 27278
components:
- type: Transform
@@ -64741,80 +66710,11 @@ entities:
- type: Transform
pos: 86.5,-13.5
parent: 8364
- - uid: 27836
+ - uid: 27852
components:
- type: Transform
- pos: 13.5,-68.5
- parent: 8364
- - uid: 27837
- components:
- - type: Transform
- pos: 14.5,-68.5
- parent: 8364
- - uid: 27838
- components:
- - type: Transform
- pos: 15.5,-68.5
- parent: 8364
- - uid: 27839
- components:
- - type: Transform
- pos: 16.5,-68.5
- parent: 8364
- - uid: 27840
- components:
- - type: Transform
- pos: 17.5,-68.5
- parent: 8364
- - uid: 27841
- components:
- - type: Transform
- pos: 18.5,-68.5
- parent: 8364
- - uid: 27842
- components:
- - type: Transform
- pos: 19.5,-68.5
- parent: 8364
- - uid: 27843
- components:
- - type: Transform
- pos: 21.5,-68.5
- parent: 8364
- - uid: 27844
- components:
- - type: Transform
- pos: 22.5,-68.5
- parent: 8364
- - uid: 27845
- components:
- - type: Transform
- pos: 20.5,-68.5
- parent: 8364
- - uid: 27846
- components:
- - type: Transform
- pos: 23.5,-68.5
- parent: 8364
- - uid: 27847
- components:
- - type: Transform
- pos: 24.5,-68.5
- parent: 8364
- - uid: 27876
- components:
- - type: Transform
- pos: 34.5,-80.5
- parent: 8364
- - uid: 27877
- components:
- - type: Transform
- pos: 34.5,-79.5
- parent: 8364
- - uid: 27878
- components:
- - type: Transform
- pos: 34.5,-78.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,-84.5
parent: 8364
- proto: Cautery
entities:
@@ -64825,12 +66725,6 @@ entities:
parent: 8364
- proto: Chair
entities:
- - uid: 827
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-105.5
- parent: 8364
- uid: 921
components:
- type: Transform
@@ -65421,11 +67315,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -19.5,-66.5
parent: 8364
- - uid: 16145
- components:
- - type: Transform
- pos: -20.5,-72.5
- parent: 8364
- uid: 16694
components:
- type: Transform
@@ -65605,6 +67494,12 @@ entities:
- type: Transform
pos: 71.5,6.5
parent: 8364
+ - uid: 27988
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,-41.5
+ parent: 8364
- proto: ChairFolding
entities:
- uid: 6912
@@ -65641,17 +67536,6 @@ entities:
parent: 8364
- proto: ChairOfficeDark
entities:
- - uid: 592
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-85.5
- parent: 8364
- - uid: 824
- components:
- - type: Transform
- pos: 30.5,-106.5
- parent: 8364
- uid: 1859
components:
- type: Transform
@@ -65669,6 +67553,12 @@ entities:
rot: 3.141592653589793 rad
pos: 38.5,-17.5
parent: 8364
+ - uid: 3824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-9.5
+ parent: 8364
- uid: 5219
components:
- type: Transform
@@ -65717,18 +67607,18 @@ entities:
rot: 1.5707963267948966 rad
pos: -10.5,-26.5
parent: 8364
+ - uid: 5781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.464273,-12.388837
+ parent: 8364
- uid: 6985
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 21.5,3.5
parent: 8364
- - uid: 8203
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-12.5
- parent: 8364
- uid: 8393
components:
- type: Transform
@@ -65850,17 +67740,6 @@ entities:
- type: Transform
pos: 62.5,-6.5
parent: 8364
- - uid: 14089
- components:
- - type: Transform
- pos: -21.5,-12.5
- parent: 8364
- - uid: 14111
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-11.5
- parent: 8364
- uid: 14309
components:
- type: Transform
@@ -65975,6 +67854,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 56.5,-31.5
parent: 8364
+ - uid: 23189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.567106,-24.230312
+ parent: 8364
- uid: 25020
components:
- type: Transform
@@ -66025,11 +67910,6 @@ entities:
- type: Transform
pos: 1.5,28.5
parent: 8364
- - uid: 27919
- components:
- - type: Transform
- pos: 2.7203026,-11.488351
- parent: 8364
- uid: 28111
components:
- type: Transform
@@ -66089,11 +67969,6 @@ entities:
rot: 3.141592653589793 rad
pos: 36.5,-41.5
parent: 8364
- - uid: 17554
- components:
- - type: Transform
- pos: -2.5,-24.5
- parent: 8364
- uid: 17594
components:
- type: Transform
@@ -66464,6 +68339,11 @@ entities:
- type: Transform
pos: -61.04908,-2.3450234
parent: 8364
+ - uid: 15345
+ components:
+ - type: Transform
+ pos: 86.32974,-42.329636
+ parent: 8364
- uid: 16746
components:
- type: Transform
@@ -66591,6 +68471,30 @@ entities:
rot: 3.141592653589793 rad
pos: 65.5,-3.5
parent: 8364
+- proto: CigaretteSpent
+ entities:
+ - uid: 4492
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.651825,-41.79801
+ parent: 8364
+ - uid: 15341
+ components:
+ - type: Transform
+ pos: 85.11039,-41.422752
+ parent: 8364
+ - uid: 22916
+ components:
+ - type: Transform
+ pos: 85.433464,-41.568687
+ parent: 8364
+ - uid: 26738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.495995,-40.943253
+ parent: 8364
- proto: CigarGold
entities:
- uid: 5205
@@ -67674,43 +69578,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 20029
- components:
- - type: Transform
- pos: 86.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
- - 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
- uid: 20030
components:
- type: Transform
@@ -67785,43 +69652,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 20032
- components:
- - type: Transform
- pos: 63.5,-70.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
- uid: 20033
components:
- type: Transform
@@ -67950,6 +69780,11 @@ entities:
- type: Transform
pos: 1.5,-55.5
parent: 8364
+ - uid: 24914
+ components:
+ - type: Transform
+ pos: 63.5,-72.5
+ parent: 8364
- uid: 26546
components:
- type: Transform
@@ -67983,6 +69818,11 @@ entities:
- type: Transform
pos: -40.5,-20.5
parent: 8364
+ - uid: 27861
+ components:
+ - type: Transform
+ pos: 83.5,-50.5
+ parent: 8364
- proto: ClosetEmergencyN2FilledRandom
entities:
- uid: 7998
@@ -68249,43 +70089,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 20024
- components:
- - type: Transform
- pos: 86.5,-50.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
- uid: 20025
components:
- type: Transform
@@ -68398,6 +70201,11 @@ entities:
- type: Transform
pos: 11.5,-75.5
parent: 8364
+ - uid: 25985
+ components:
+ - type: Transform
+ pos: 83.5,-51.5
+ parent: 8364
- uid: 27448
components:
- type: Transform
@@ -68643,6 +70451,18 @@ entities:
- 0
- 0
- 0
+- proto: ClosetMaintenance
+ entities:
+ - uid: 15880
+ components:
+ - type: Transform
+ pos: 70.5,-62.5
+ parent: 8364
+ - uid: 26939
+ components:
+ - type: Transform
+ pos: 85.5,-59.5
+ parent: 8364
- proto: ClosetMaintenanceFilledRandom
entities:
- uid: 1026
@@ -68705,6 +70525,11 @@ entities:
- 0
- 0
- 0
+ - uid: 8120
+ components:
+ - type: Transform
+ pos: 71.5,-62.5
+ parent: 8364
- uid: 10527
components:
- type: Transform
@@ -69349,8 +71174,18 @@ entities:
- type: Transform
pos: 15.5,-36.5
parent: 8364
+ - uid: 27033
+ components:
+ - type: Transform
+ pos: 46.5,11.5
+ parent: 8364
- proto: ClosetRadiationSuitFilled
entities:
+ - uid: 4325
+ components:
+ - type: Transform
+ pos: -20.5,-77.5
+ parent: 8364
- uid: 14550
components:
- type: Transform
@@ -69379,52 +71214,6 @@ entities:
- 0
- 0
- 0
- - uid: 21290
- components:
- - type: Transform
- pos: -1.5,-27.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: 21762
- components:
- - type: Transform
- pos: 0.5,-27.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: 21769
components:
- type: Transform
@@ -69671,43 +71460,6 @@ entities:
- type: Transform
pos: -36.5,-7.5
parent: 8364
- - uid: 20017
- components:
- - type: Transform
- pos: 88.5,-31.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
- uid: 21341
components:
- type: Transform
@@ -69974,11 +71726,6 @@ entities:
parent: 8364
- proto: ClothingBeltUtility
entities:
- - uid: 10603
- components:
- - type: Transform
- pos: 60.05134,-49.51496
- parent: 8364
- uid: 12274
components:
- type: Transform
@@ -69989,11 +71736,6 @@ entities:
- type: Transform
pos: -34.5,-60.5
parent: 8364
- - uid: 21240
- components:
- - type: Transform
- pos: 60.5,-19.5
- parent: 8364
- uid: 26833
components:
- type: Transform
@@ -70013,11 +71755,6 @@ entities:
- type: Transform
pos: 74.5232,-33.467606
parent: 8364
- - uid: 5318
- components:
- - type: Transform
- pos: 74.5101,-30.533546
- parent: 8364
- uid: 12265
components:
- type: Transform
@@ -70035,11 +71772,6 @@ entities:
- type: Transform
pos: 74.511635,-31.335205
parent: 8364
- - uid: 22551
- components:
- - type: Transform
- pos: 69.542885,-29.28833
- parent: 8364
- proto: ClothingEyesGlassesMeson
entities:
- uid: 2018
@@ -70146,54 +71878,6 @@ entities:
- type: Transform
pos: 2.5269985,-33.330353
parent: 8364
-- proto: ClothingHandsGlovesColorYellow
- entities:
- - uid: 12261
- components:
- - type: Transform
- pos: -42.47281,1.4692228
- parent: 8364
- - uid: 21614
- components:
- - type: MetaData
- name: the grey kings gloves
- - type: Transform
- pos: 43.508904,-73.44038
- parent: 8364
-- proto: ClothingHandsGlovesColorYellowBudget
- entities:
- - uid: 11795
- components:
- - type: Transform
- pos: 70.5,12.5
- parent: 8364
- - uid: 11796
- components:
- - type: Transform
- pos: 46.5,13.5
- parent: 8364
- - uid: 13852
- components:
- - type: Transform
- pos: -48.265545,1.3473
- parent: 8364
- - uid: 14433
- components:
- - type: Transform
- pos: -19.5,-6.5
- parent: 8364
- - uid: 19347
- components:
- - type: Transform
- pos: 47.523952,-66.32047
- parent: 8364
-- proto: ClothingHandsGlovesFingerless
- entities:
- - uid: 2257
- components:
- - type: Transform
- pos: 58.641335,-51.477516
- parent: 8364
- proto: ClothingHandsGlovesLatex
entities:
- uid: 21264
@@ -70338,6 +72022,13 @@ entities:
- type: Transform
pos: -17.569038,51.765076
parent: 8364
+- proto: ClothingHeadHatPaper
+ entities:
+ - uid: 5782
+ components:
+ - type: Transform
+ pos: -22.41492,-12.798657
+ parent: 8364
- proto: ClothingHeadHatPirate
entities:
- uid: 5004
@@ -70477,7 +72168,7 @@ entities:
- uid: 20122
components:
- type: Transform
- pos: 76.5,-57.5
+ pos: 80.51578,-56.381706
parent: 8364
- uid: 21145
components:
@@ -70714,7 +72405,7 @@ entities:
- uid: 21750
components:
- type: Transform
- pos: 45.295048,-62.737274
+ pos: 45.45511,-62.762016
parent: 8364
- proto: ClothingOuterApron
entities:
@@ -70795,13 +72486,6 @@ entities:
- type: Transform
pos: -46.493744,14.462048
parent: 8364
-- proto: ClothingOuterCoatDetectiveLoadout
- entities:
- - uid: 17906
- components:
- - type: Transform
- pos: 45.44214,-62.516068
- parent: 8364
- proto: ClothingOuterCoatJensen
entities:
- uid: 14199
@@ -70826,6 +72510,13 @@ entities:
- type: Transform
pos: 58.27977,8.379128
parent: 8364
+- proto: ClothingOuterCoatTrench
+ entities:
+ - uid: 19343
+ components:
+ - type: Transform
+ pos: 45.46393,-62.490334
+ parent: 8364
- proto: ClothingOuterHardsuitEVA
entities:
- uid: 12448
@@ -70896,7 +72587,7 @@ entities:
- uid: 20120
components:
- type: Transform
- pos: 76.5,-57.5
+ pos: 80.5262,-56.392128
parent: 8364
- proto: ClothingOuterSuitMonkey
entities:
@@ -70967,11 +72658,6 @@ entities:
- type: Transform
pos: 88.4803,-26.689615
parent: 8364
- - uid: 13781
- components:
- - type: Transform
- pos: -53.5,3.5
- parent: 8364
- proto: ClothingShoesBootsMag
entities:
- uid: 94
@@ -71055,10 +72741,10 @@ entities:
- type: Transform
pos: -38.47627,-56.748375
parent: 8364
- - uid: 5120
+ - uid: 27044
components:
- type: Transform
- pos: 1.4697213,-22.60485
+ pos: -26.493788,-77.45809
parent: 8364
- proto: ClothingUniformJumpsuitEngineeringHazard
entities:
@@ -71603,7 +73289,7 @@ entities:
- uid: 27910
components:
- type: Transform
- pos: -4.600172,-11.893632
+ pos: -3.6,-23.95
parent: 8364
- proto: CommsComputerCircuitboard
entities:
@@ -71614,12 +73300,6 @@ entities:
parent: 8364
- proto: ComputerAlert
entities:
- - uid: 661
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-84.5
- parent: 8364
- uid: 1611
components:
- type: Transform
@@ -71643,6 +73323,10 @@ entities:
rot: 3.141592653589793 rad
pos: 79.5,-26.5
parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20207:
+ - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
- uid: 17552
components:
- type: Transform
@@ -71835,17 +73519,18 @@ entities:
parent: 8364
- proto: ComputerFrame
entities:
- - uid: 16630
- components:
- - type: Transform
- pos: 30.5,-105.5
- parent: 8364
- uid: 19878
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 45.5,-44.5
parent: 8364
+ - uid: 28184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-26.5
+ parent: 8364
- proto: ComputerId
entities:
- uid: 5326
@@ -71870,6 +73555,14 @@ entities:
- type: Transform
pos: 5.5,-6.5
parent: 8364
+- proto: ComputerMassMedia
+ entities:
+ - uid: 23828
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-12.5
+ parent: 8364
- proto: ComputerMedicalRecords
entities:
- uid: 12065
@@ -71891,12 +73584,6 @@ entities:
parent: 8364
- proto: ComputerPowerMonitoring
entities:
- - uid: 595
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-85.5
- parent: 8364
- uid: 5549
components:
- type: Transform
@@ -72140,18 +73827,27 @@ entities:
- uid: 5216
components:
- type: Transform
+ anchored: False
pos: -13.5,-64.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- uid: 6436
components:
- type: Transform
+ anchored: False
pos: -12.5,-64.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- uid: 6437
components:
- type: Transform
+ anchored: False
pos: -12.5,-63.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- uid: 17155
components:
- type: Transform
@@ -72160,8 +73856,11 @@ entities:
- uid: 26910
components:
- type: Transform
+ anchored: False
pos: -13.5,-63.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- proto: ConveyorBelt
entities:
- uid: 1073
@@ -72437,7 +74136,7 @@ entities:
- uid: 27914
components:
- type: Transform
- pos: -4.441743,-12.321369
+ pos: -3.5,-23.7
parent: 8364
- proto: CowToolboxFilled
entities:
@@ -72471,6 +74170,11 @@ entities:
- 0
- 0
- 0
+ - uid: 27530
+ components:
+ - type: Transform
+ pos: 72.5,-43.5
+ parent: 8364
- proto: CrateCoffin
entities:
- uid: 11610
@@ -72498,6 +74202,13 @@ entities:
- type: Transform
pos: 73.5,2.5
parent: 8364
+- proto: CrateContrabandStorageSecure
+ entities:
+ - uid: 27489
+ components:
+ - type: Transform
+ pos: -2.5,32.5
+ parent: 8364
- proto: CrateEmergencyRadiation
entities:
- uid: 19055
@@ -72522,6 +74233,41 @@ entities:
- type: Transform
pos: 57.5,-43.5
parent: 8364
+ - uid: 6287
+ components:
+ - type: Transform
+ pos: 90.5,-31.5
+ parent: 8364
+ - uid: 6597
+ components:
+ - type: Transform
+ pos: -8.5,-42.5
+ parent: 8364
+ - uid: 6598
+ components:
+ - type: Transform
+ pos: -32.5,-43.5
+ parent: 8364
+ - uid: 6599
+ components:
+ - type: Transform
+ pos: -20.5,-58.5
+ parent: 8364
+ - uid: 6600
+ components:
+ - type: Transform
+ pos: -9.5,-41.5
+ parent: 8364
+ - uid: 6908
+ components:
+ - type: Transform
+ pos: 89.5,-31.5
+ parent: 8364
+ - uid: 12023
+ components:
+ - type: Transform
+ pos: -32.5,-13.5
+ parent: 8364
- uid: 12659
components:
- type: Transform
@@ -72547,6 +74293,21 @@ entities:
- type: Transform
pos: -29.5,-12.5
parent: 8364
+ - uid: 26568
+ components:
+ - type: Transform
+ pos: -8.5,-44.5
+ parent: 8364
+ - uid: 26591
+ components:
+ - type: Transform
+ pos: -20.5,-57.5
+ parent: 8364
+ - uid: 26878
+ components:
+ - type: Transform
+ pos: -7.5,-43.5
+ parent: 8364
- proto: CrateEngineeringAMEShielding
entities:
- uid: 17716
@@ -72625,6 +74386,16 @@ entities:
- 0
- proto: CrateFilledSpawner
entities:
+ - uid: 6224
+ components:
+ - type: Transform
+ pos: 88.5,-31.5
+ parent: 8364
+ - uid: 6767
+ components:
+ - type: Transform
+ pos: 89.5,-24.5
+ parent: 8364
- uid: 17768
components:
- type: Transform
@@ -72817,123 +74588,6 @@ entities:
containers:
- EntityStorageComponent
- entity_storage
- - uid: 15489
- components:
- - type: Transform
- pos: -8.5,-43.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: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 15937
- components:
- - type: Transform
- pos: -32.5,-43.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: []
- PaperLabel: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents: []
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 15951
- components:
- - type: Transform
- pos: -20.5,-58.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: []
- PaperLabel: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents: []
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- uid: 16395
components:
- type: Transform
@@ -72979,141 +74633,6 @@ entities:
containers:
- EntityStorageComponent
- entity_storage
- - uid: 16398
- components:
- - type: Transform
- pos: -9.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
- - type: ContainerContainer
- containers:
- EntityStorageComponent: !type:Container
- showEnts: False
- occludes: True
- ents: []
- PaperLabel: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents: []
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 20015
- components:
- - type: Transform
- pos: 90.5,-31.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: []
- PaperLabel: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents: []
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 20016
- components:
- - type: Transform
- pos: 89.5,-31.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: []
- PaperLabel: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents: []
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- proto: CrateHydroponicsSeeds
entities:
- uid: 13263
@@ -73206,6 +74725,20 @@ entities:
showEnts: False
occludes: True
ent: null
+- proto: CrateMaterialPlasma
+ entities:
+ - uid: 26965
+ components:
+ - 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
@@ -73317,8 +74850,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 5.001885
- - 18.816614
+ - 2.146141
+ - 8.073578
- 0
- 0
- 0
@@ -73358,6 +74891,13 @@ entities:
- type: Transform
pos: 19.5,-36.5
parent: 8364
+- proto: CrateTechBoardRandom
+ entities:
+ - uid: 25893
+ components:
+ - type: Transform
+ pos: 2.5,-53.5
+ parent: 8364
- proto: CrateTrashCart
entities:
- uid: 27585
@@ -73397,7 +74937,7 @@ entities:
- uid: 11148
components:
- type: Transform
- pos: 65.5,2.5
+ pos: 65.5126,2.4867446
parent: 8364
- uid: 14339
components:
@@ -73461,11 +75001,6 @@ entities:
- type: Transform
pos: -37.449833,2.5174625
parent: 8364
- - uid: 12357
- components:
- - type: Transform
- pos: -56.729946,3.644562
- parent: 8364
- uid: 13503
components:
- type: Transform
@@ -73476,16 +75011,6 @@ entities:
- type: Transform
pos: -22.5,6.5
parent: 8364
- - uid: 15969
- components:
- - type: Transform
- pos: -24.345285,-43.747276
- parent: 8364
- - uid: 21248
- components:
- - type: Transform
- pos: 63.478237,-20.930044
- parent: 8364
- uid: 21271
components:
- type: Transform
@@ -73496,11 +75021,6 @@ entities:
- type: Transform
pos: 65.5,-53.5
parent: 8364
- - uid: 21619
- components:
- - type: Transform
- pos: 40.48116,-72.5237
- parent: 8364
- uid: 22819
components:
- type: Transform
@@ -73579,30 +75099,6 @@ entities:
- type: Transform
pos: 29.484377,-32.156303
parent: 8364
-- proto: d10Dice
- entities:
- - uid: 10852
- components:
- - type: Transform
- pos: 56.5,3.5000002
- parent: 8364
- - uid: 10872
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 8364
-- proto: d12Dice
- entities:
- - uid: 10854
- components:
- - type: Transform
- pos: 56.5,3.5000002
- parent: 8364
- - uid: 10874
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 8364
- proto: d20Dice
entities:
- uid: 6522
@@ -73610,16 +75106,6 @@ entities:
- type: Transform
pos: 12.5,11.5
parent: 8364
- - uid: 10855
- components:
- - type: Transform
- pos: 56.5,3.5000002
- parent: 8364
- - uid: 10875
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 8364
- uid: 11666
components:
- type: Transform
@@ -73627,16 +75113,6 @@ entities:
parent: 8364
- proto: d4Dice
entities:
- - uid: 10869
- components:
- - type: Transform
- pos: 56.5,3.5000002
- parent: 8364
- - uid: 10876
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 8364
- uid: 11667
components:
- type: Transform
@@ -73654,16 +75130,6 @@ entities:
- type: Transform
pos: 58.5,15.5
parent: 8364
- - uid: 10870
- components:
- - type: Transform
- pos: 56.5,3.5000002
- parent: 8364
- - uid: 10877
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 8364
- uid: 26362
components:
- type: Transform
@@ -73691,21 +75157,25 @@ entities:
parent: 8364
- proto: d8Dice
entities:
- - uid: 10871
- components:
- - type: Transform
- pos: 56.5,3.5000002
- parent: 8364
- - uid: 10878
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 8364
- uid: 11668
components:
- type: Transform
pos: 55.5,18.5
parent: 8364
+- proto: DefaultStationBeaconAICore
+ entities:
+ - uid: 563
+ components:
+ - type: Transform
+ pos: -0.5,-15.5
+ parent: 8364
+- proto: DefaultStationBeaconAIUpload
+ entities:
+ - uid: 984
+ components:
+ - type: Transform
+ pos: -0.5,-22.5
+ parent: 8364
- proto: DefaultStationBeaconAME
entities:
- uid: 27241
@@ -73811,10 +75281,10 @@ entities:
parent: 8364
- proto: DefaultStationBeaconChapel
entities:
- - uid: 27716
+ - uid: 5736
components:
- type: Transform
- pos: 69.5,-2.5
+ pos: 69.5,-4.5
parent: 8364
- proto: DefaultStationBeaconChemistry
entities:
@@ -73963,6 +75433,13 @@ entities:
- type: Transform
pos: 70.5,-36.5
parent: 8364
+- proto: DefaultStationBeaconReporter
+ entities:
+ - uid: 3786
+ components:
+ - type: Transform
+ pos: -22.5,-11.5
+ parent: 8364
- proto: DefaultStationBeaconRND
entities:
- uid: 27732
@@ -74005,10 +75482,10 @@ entities:
parent: 8364
- proto: DefaultStationBeaconSingularity
entities:
- - uid: 27257
+ - uid: 23069
components:
- type: Transform
- pos: -1.5,-73.5
+ pos: -0.5,-73.5
parent: 8364
- proto: DefaultStationBeaconSolars
entities:
@@ -74039,13 +75516,6 @@ entities:
- type: Transform
pos: -6.5,-36.5
parent: 8364
-- proto: DefaultStationBeaconTEG
- entities:
- - uid: 27256
- components:
- - type: Transform
- pos: 15.5,-76.5
- parent: 8364
- proto: DefaultStationBeaconTelecoms
entities:
- uid: 27259
@@ -74140,6 +75610,18 @@ entities:
- type: Physics
canCollide: False
bodyType: Static
+- proto: DiceBag
+ entities:
+ - uid: 7046
+ components:
+ - type: Transform
+ pos: 55.490345,0.6314087
+ parent: 8364
+ - uid: 7071
+ components:
+ - type: Transform
+ pos: 56.42831,3.6334934
+ parent: 8364
- proto: DiseaseDiagnoser
entities:
- uid: 18698
@@ -74191,12 +75673,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -7.5,-21.5
parent: 8364
- - uid: 6287
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-8.5
- parent: 8364
- uid: 6405
components:
- type: Transform
@@ -74255,6 +75731,17 @@ entities:
- type: Transform
pos: 46.5,3.5
parent: 8364
+ - uid: 7226
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,-8.5
+ parent: 8364
+ - uid: 7231
+ components:
+ - type: Transform
+ pos: -24.5,-12.5
+ parent: 8364
- uid: 8172
components:
- type: Transform
@@ -74534,17 +76021,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -42.5,-9.5
parent: 8364
- - uid: 14514
- components:
- - type: Transform
- pos: -24.5,-12.5
- parent: 8364
- - uid: 14515
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-12.5
- parent: 8364
- uid: 14516
components:
- type: Transform
@@ -75095,11 +76571,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 38.5,-31.5
parent: 8364
- - uid: 27808
- components:
- - type: Transform
- pos: 27.5,-68.5
- parent: 8364
- proto: DisposalJunction
entities:
- uid: 4660
@@ -75107,6 +76578,12 @@ entities:
- type: Transform
pos: 25.5,-35.5
parent: 8364
+ - uid: 5855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-12.5
+ parent: 8364
- uid: 6128
components:
- type: Transform
@@ -75166,12 +76643,6 @@ entities:
rot: 3.141592653589793 rad
pos: 54.5,5.5
parent: 8364
- - uid: 15372
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-12.5
- parent: 8364
- uid: 16827
components:
- type: Transform
@@ -77808,12 +79279,6 @@ entities:
- type: Transform
pos: -26.5,-11.5
parent: 8364
- - uid: 14546
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-12.5
- parent: 8364
- uid: 14558
components:
- type: Transform
@@ -82087,155 +83552,11 @@ entities:
rot: 3.141592653589793 rad
pos: 1.5,-68.5
parent: 8364
- - uid: 27704
+ - uid: 27869
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-78.5
- parent: 8364
- - uid: 27705
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-77.5
- parent: 8364
- - uid: 27706
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-76.5
- parent: 8364
- - uid: 27744
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-75.5
- parent: 8364
- - uid: 27762
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-74.5
- parent: 8364
- - uid: 27763
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-73.5
- parent: 8364
- - uid: 27764
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-72.5
- parent: 8364
- - uid: 27787
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-71.5
- parent: 8364
- - uid: 27788
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-70.5
- parent: 8364
- - uid: 27789
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-69.5
- parent: 8364
- - uid: 27790
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-68.5
- parent: 8364
- - uid: 27791
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-68.5
- parent: 8364
- - uid: 27792
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-68.5
- parent: 8364
- - uid: 27793
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-68.5
- parent: 8364
- - uid: 27794
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-68.5
- parent: 8364
- - uid: 27795
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-68.5
- parent: 8364
- - uid: 27796
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-68.5
- parent: 8364
- - uid: 27797
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-68.5
- parent: 8364
- - uid: 27798
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-68.5
- parent: 8364
- - uid: 27799
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-68.5
- parent: 8364
- - uid: 27800
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-68.5
- parent: 8364
- - uid: 27801
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-68.5
- parent: 8364
- - uid: 27802
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-68.5
- parent: 8364
- - uid: 27803
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-68.5
- parent: 8364
- - uid: 27807
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-12.5
parent: 8364
- proto: DisposalRouter
entities:
@@ -82376,6 +83697,12 @@ entities:
rot: 3.141592653589793 rad
pos: -18.5,22.5
parent: 8364
+ - uid: 7910
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,-13.5
+ parent: 8364
- uid: 9246
components:
- type: Transform
@@ -82455,12 +83782,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -49.5,-8.5
parent: 8364
- - uid: 14513
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-13.5
- parent: 8364
- uid: 14863
components:
- type: Transform
@@ -82637,18 +83958,6 @@ entities:
rot: 3.141592653589793 rad
pos: 1.5,-71.5
parent: 8364
- - uid: 27703
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-79.5
- parent: 8364
- - uid: 27804
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-68.5
- parent: 8364
- proto: DisposalUnit
entities:
- uid: 1432
@@ -82666,6 +83975,11 @@ entities:
- type: Transform
pos: -30.5,-31.5
parent: 8364
+ - uid: 5770
+ components:
+ - type: Transform
+ pos: -24.5,-13.5
+ parent: 8364
- uid: 5908
components:
- type: Transform
@@ -82786,11 +84100,6 @@ entities:
- type: Transform
pos: -43.5,-9.5
parent: 8364
- - uid: 14512
- components:
- - type: Transform
- pos: -24.5,-13.5
- parent: 8364
- uid: 14557
components:
- type: Transform
@@ -82901,18 +84210,6 @@ entities:
- type: Transform
pos: 1.5,-71.5
parent: 8364
- - uid: 27702
- components:
- - type: Transform
- pos: 27.5,-79.5
- parent: 8364
- - uid: 27806
- components:
- - type: MetaData
- name: AI Core Chube
- - type: Transform
- pos: 11.5,-68.5
- parent: 8364
- uid: 27920
components:
- type: Transform
@@ -83114,10 +84411,17 @@ entities:
parent: 8364
- proto: DrinkHotCoffee
entities:
- - uid: 27918
+ - uid: 28153
components:
- type: Transform
- pos: 3.3560345,-11.363264
+ pos: 2.4114609,-24.480486
+ parent: 8364
+- proto: DrinkMug
+ entities:
+ - uid: 1382
+ components:
+ - type: Transform
+ pos: -23.441877,-9.337173
parent: 8364
- proto: DrinkMugBlack
entities:
@@ -83721,6 +85025,35 @@ entities:
rot: 1.5707963267948966 rad
pos: 75.5,-11.5
parent: 8364
+ - uid: 28209
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-26.5
+ parent: 8364
+ - uid: 28210
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 8364
+ - uid: 28211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-24.5
+ parent: 8364
+ - uid: 28212
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-15.5
+ parent: 8364
+ - uid: 28213
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-15.5
+ parent: 8364
- proto: EmergencyOxygenTank
entities:
- uid: 12451
@@ -83773,13 +85106,23 @@ entities:
- uid: 12711
components:
- type: Transform
+ anchored: False
pos: -9.5,-62.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
+ - type: PowerConsumer
+ drawRate: 1
- uid: 12712
components:
- type: Transform
+ anchored: False
pos: -9.5,-61.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
+ - type: PowerConsumer
+ drawRate: 1
- uid: 17158
components:
- type: Transform
@@ -83903,11 +85246,6 @@ entities:
parent: 8364
- proto: ExtinguisherCabinetFilled
entities:
- - uid: 835
- components:
- - type: Transform
- pos: 31.5,-106.5
- parent: 8364
- uid: 3693
components:
- type: Transform
@@ -84078,11 +85416,6 @@ entities:
- type: Transform
pos: -47.5,4.5
parent: 8364
- - uid: 22237
- components:
- - type: Transform
- pos: -35.5,-7.5
- parent: 8364
- uid: 22238
components:
- type: Transform
@@ -84193,21 +85526,22 @@ entities:
- type: Transform
pos: 2.5,-46.5
parent: 8364
- - uid: 27183
+ - uid: 25316
components:
- type: Transform
- pos: 25.5,-88.5
- parent: 8364
- - uid: 27184
- components:
- - type: Transform
- pos: 31.5,-88.5
+ pos: -35.5,-9.5
parent: 8364
- uid: 27577
components:
- type: Transform
pos: 8.5,-33.5
parent: 8364
+ - uid: 28214
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-16.5
+ parent: 8364
- proto: FaxMachineBase
entities:
- uid: 1866
@@ -84259,6 +85593,13 @@ entities:
parent: 8364
- type: FaxMachine
name: Law Office
+ - uid: 19348
+ components:
+ - type: Transform
+ pos: 12.5,32.5
+ parent: 8364
+ - type: FaxMachine
+ name: Security
- uid: 21200
components:
- type: Transform
@@ -84305,6 +85646,11 @@ entities:
name: Captain
- proto: FigureSpawner
entities:
+ - uid: 7074
+ components:
+ - type: Transform
+ pos: 56.5,1.5
+ parent: 8364
- uid: 11690
components:
- type: Transform
@@ -84317,11 +85663,6 @@ entities:
parent: 8364
- proto: filingCabinet
entities:
- - uid: 537
- components:
- - type: Transform
- pos: -20.5,-9.5
- parent: 8364
- uid: 5523
components:
- type: Transform
@@ -84475,7 +85816,6 @@ entities:
- 5511
- 5512
- 5513
- - 1479
- uid: 1907
components:
- type: Transform
@@ -84484,16 +85824,16 @@ entities:
parent: 8364
- type: DeviceList
devices:
+ - 5277
+ - 16977
+ - 23151
+ - 10877
+ - 27405
+ - 27404
- 27403
- 5278
- - 5279
+ - 16627
- 5264
- - 27404
- - 27405
- - 27406
- - 23151
- - 16977
- - 27489
- uid: 3213
components:
- type: Transform
@@ -84552,7 +85892,6 @@ entities:
- 17087
- 26635
- 16853
- - 14486
- uid: 17071
components:
- type: Transform
@@ -84625,7 +85964,6 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 22700
- 20899
- 20900
- 26036
@@ -84680,10 +86018,15 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 22591
- 6917
- 9826
- 9825
+ - 7277
+ - 8080
+ - 8110
+ - 1652
+ - 16943
+ - 1672
- uid: 22592
components:
- type: Transform
@@ -84844,8 +86187,6 @@ entities:
devices:
- 22645
- 22646
- - 22647
- - 27233
- uid: 22654
components:
- type: Transform
@@ -84886,14 +86227,12 @@ entities:
- 13385
- 22645
- 22646
- - 2940
- 14093
- 14208
- 14220
- 14094
- 11725
- 11719
- - 22658
- 13391
- 13390
- 13389
@@ -84914,7 +86253,6 @@ entities:
- 14093
- 14208
- 14220
- - 22666
- 14094
- 11725
- 11719
@@ -84984,16 +86322,15 @@ entities:
- 13378
- 13362
- 13363
- - 22690
- - 13391
- - 13390
- - 13389
- - 10521
- - 10523
- - 22691
- - 19992
- - 19991
- - 19993
+ - 17600
+ - 9450
+ - 17602
+ - 23089
+ - 782
+ - 23879
+ - 26804
+ - 26805
+ - 26806
- uid: 22692
components:
- type: Transform
@@ -85001,18 +86338,16 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 13380
- - 13379
- - 13378
- - 13362
- - 13363
- - 22690
- - 13391
- - 13390
- 13389
+ - 13390
+ - 13391
+ - 26804
+ - 26805
+ - 26806
- 10521
- 10523
- - 22691
+ - 26039
+ - 26038
- uid: 22698
components:
- type: Transform
@@ -85024,7 +86359,6 @@ entities:
- 13380
- 13379
- 13378
- - 22697
- 19992
- 19991
- 19993
@@ -85046,18 +86380,18 @@ entities:
parent: 8364
- type: DeviceList
devices:
+ - 13364
+ - 5518
+ - 5519
+ - 6459
+ - 13371
+ - 13370
+ - 13369
- 13365
- 13367
- 13368
- - 13369
- - 13370
- - 13371
- 22713
- - 5519
- - 5518
- - 6459
- - 5236
- - 5235
+ - 23256
- uid: 22716
components:
- type: Transform
@@ -85069,7 +86403,6 @@ entities:
- 13371
- 13370
- 13369
- - 22717
- 13362
- uid: 22724
components:
@@ -85084,7 +86417,6 @@ entities:
- 6488
- 6489
- 19883
- - 22725
- uid: 22727
components:
- type: Transform
@@ -85114,7 +86446,6 @@ entities:
- 6463
- 6464
- 6467
- - 22731
- uid: 22962
components:
- type: Transform
@@ -85201,7 +86532,6 @@ entities:
- 11600
- 11377
- 11603
- - 23939
- 23940
- uid: 25233
components:
@@ -85240,8 +86570,6 @@ entities:
- 7078
- 7180
- 7043
- - 25827
- - 25826
- 11722
- uid: 25832
components:
@@ -85291,7 +86619,6 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 22647
- 25964
- 25963
- 25958
@@ -85341,7 +86668,7 @@ entities:
- 27403
- 27404
- 27405
- - 27406
+ - 10877
- uid: 27487
components:
- type: Transform
@@ -85352,23 +86679,21 @@ entities:
- 27403
- 27404
- 27405
- - 27406
- 23151
- 16977
- - 27489
- proto: FireAxeCabinetFilled
entities:
- - uid: 5782
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-9.5
- parent: 8364
- uid: 17598
components:
- type: Transform
pos: 6.5,-45.5
parent: 8364
+ - uid: 25064
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-9.5
+ parent: 8364
- proto: FireExtinguisher
entities:
- uid: 2019
@@ -85384,7 +86709,7 @@ entities:
- uid: 20118
components:
- type: Transform
- pos: 76.5,-57.5
+ pos: 78.444824,-56.4234
parent: 8364
- proto: FirelockEdge
entities:
@@ -85398,11 +86723,19 @@ entities:
- type: Transform
pos: 0.5,-32.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - 22590
- uid: 1672
components:
- type: Transform
pos: -1.5,-32.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - 22590
- uid: 5912
components:
- type: Transform
@@ -85421,12 +86754,18 @@ entities:
rot: 3.141592653589793 rad
pos: 9.5,16.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- uid: 13469
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 8.5,16.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- uid: 14853
components:
- type: Transform
@@ -85467,6 +86806,10 @@ entities:
- type: Transform
pos: -0.5,-32.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - 22590
- uid: 16960
components:
- type: Transform
@@ -85592,12 +86935,18 @@ entities:
rot: 3.141592653589793 rad
pos: 9.5,1.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- uid: 22632
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 8.5,1.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- uid: 22953
components:
- type: Transform
@@ -85609,30 +86958,47 @@ entities:
rot: 3.141592653589793 rad
pos: 30.5,-8.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 26036
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 75.5,-9.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22694
- uid: 26037
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 75.5,-8.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22694
- uid: 26038
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 53.5,-9.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22692
+ - 22693
- uid: 26039
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 53.5,-8.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22692
+ - 22693
- uid: 26635
components:
- type: Transform
@@ -85661,6 +87027,9 @@ entities:
- type: Transform
pos: 20.5,-23.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27964
- uid: 2940
components:
- type: Transform
@@ -85671,6 +87040,9 @@ entities:
- type: Transform
pos: -62.5,0.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 2946
components:
- type: Transform
@@ -85696,56 +87068,90 @@ entities:
- type: Transform
pos: 52.5,-26.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27881
- uid: 5236
components:
- type: Transform
pos: 52.5,-27.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27881
- uid: 5264
components:
- type: Transform
pos: -8.5,-70.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 26707
+ - 17159
- uid: 5277
components:
- type: Transform
pos: -18.5,-69.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26707
+ - 1907
- uid: 5278
components:
- type: Transform
pos: -8.5,-68.5
parent: 8364
- - uid: 5279
- components:
- - type: Transform
- pos: -8.5,-69.5
- parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 26707
+ - 17159
- uid: 5511
components:
- type: Transform
pos: 65.5,-48.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- uid: 5512
components:
- type: Transform
pos: 66.5,-48.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- uid: 5513
components:
- type: Transform
pos: 67.5,-48.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- uid: 5518
components:
- type: Transform
pos: 65.5,-37.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
+ - 4329
- uid: 5519
components:
- type: Transform
pos: 66.5,-37.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
+ - 4329
- uid: 5546
components:
- type: Transform
@@ -85756,11 +87162,18 @@ entities:
- type: Transform
pos: 34.5,-28.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22670
- uid: 5548
components:
- type: Transform
pos: 25.5,-26.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
+ - 291
- uid: 5753
components:
- type: Transform
@@ -85776,11 +87189,19 @@ entities:
- type: Transform
pos: 28.5,-28.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 291
+ - 22670
- uid: 6211
components:
- type: Transform
pos: 28.5,-29.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 291
+ - 22670
- uid: 6243
components:
- type: Transform
@@ -85796,46 +87217,75 @@ entities:
- type: Transform
pos: 67.5,-37.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
+ - 4329
- uid: 6463
components:
- type: Transform
pos: 65.5,-42.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- uid: 6464
components:
- type: Transform
pos: 66.5,-42.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- uid: 6467
components:
- type: Transform
pos: 67.5,-42.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- uid: 6468
components:
- type: Transform
pos: 76.5,-42.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
- uid: 6473
components:
- type: Transform
pos: 77.5,-42.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
- uid: 6474
components:
- type: Transform
pos: 78.5,-42.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
- uid: 6488
components:
- type: Transform
pos: 76.5,-38.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
- uid: 6489
components:
- type: Transform
pos: 77.5,-38.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
- uid: 6651
components:
- type: Transform
@@ -85901,11 +87351,17 @@ entities:
- type: Transform
pos: -52.5,-0.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 7078
components:
- type: Transform
pos: -52.5,-2.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 7140
components:
- type: Transform
@@ -85931,6 +87387,9 @@ entities:
- type: Transform
pos: -52.5,-1.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 7252
components:
- type: Transform
@@ -85941,6 +87400,10 @@ entities:
- type: Transform
pos: 9.5,-31.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - 22590
- uid: 7357
components:
- type: Transform
@@ -85976,16 +87439,27 @@ entities:
- type: Transform
pos: 34.5,-29.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22670
- uid: 8080
components:
- type: Transform
pos: 9.5,-30.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - 22590
- uid: 8110
components:
- type: Transform
pos: 9.5,-29.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - 22590
- uid: 8199
components:
- type: Transform
@@ -86021,6 +87495,10 @@ entities:
- type: Transform
pos: 26.5,-26.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
+ - 291
- uid: 9823
components:
- type: Transform
@@ -86061,11 +87539,29 @@ entities:
- type: Transform
pos: 47.5,-10.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22692
- uid: 10523
components:
- type: Transform
pos: 48.5,-10.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22692
+ - uid: 10877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-71.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 27407
+ - 23133
+ - 17159
- uid: 11001
components:
- type: Transform
@@ -86116,16 +87612,25 @@ entities:
- type: Transform
pos: 35.5,-15.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- uid: 11722
components:
- type: Transform
pos: -58.5,2.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 11725
components:
- type: Transform
pos: 34.5,-15.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- uid: 12064
components:
- type: Transform
@@ -86151,36 +87656,63 @@ entities:
- type: Transform
pos: 64.5,-23.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
- uid: 13365
components:
- type: Transform
pos: 65.5,-21.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 13367
components:
- type: Transform
pos: 66.5,-21.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 13368
components:
- type: Transform
pos: 67.5,-21.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 13369
components:
- type: Transform
pos: 68.5,-22.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 13370
components:
- type: Transform
pos: 68.5,-23.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 13371
components:
- type: Transform
pos: 68.5,-24.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 13378
components:
- type: Transform
@@ -86236,16 +87768,25 @@ entities:
- type: Transform
pos: 41.5,-12.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22692
- uid: 13390
components:
- type: Transform
pos: 41.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22692
- uid: 13391
components:
- type: Transform
pos: 41.5,-14.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22692
- uid: 13394
components:
- type: Transform
@@ -86271,11 +87812,17 @@ entities:
- type: Transform
pos: 25.5,-15.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- uid: 14094
components:
- type: Transform
pos: 33.5,-15.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- uid: 14126
components:
- type: Transform
@@ -86311,6 +87858,9 @@ entities:
- type: Transform
pos: -62.5,-5.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 14174
components:
- type: Transform
@@ -86326,21 +87876,33 @@ entities:
- type: Transform
pos: 26.5,-15.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- uid: 14220
components:
- type: Transform
pos: 27.5,-15.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- uid: 14342
components:
- type: Transform
pos: -62.5,1.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 14343
components:
- type: Transform
pos: -62.5,-4.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 14556
components:
- type: Transform
@@ -86367,7 +87929,7 @@ entities:
pos: -34.5,-14.5
parent: 8364
- type: Door
- secondsUntilStateChange: -32040.709
+ secondsUntilStateChange: -72829.68
state: Closing
- uid: 15010
components:
@@ -86379,11 +87941,6 @@ entities:
- type: Transform
pos: 60.5,11.5
parent: 8364
- - uid: 15527
- components:
- - type: Transform
- pos: 72.5,4.5
- parent: 8364
- uid: 15566
components:
- type: Transform
@@ -86409,6 +87966,17 @@ entities:
- type: Transform
pos: 34.5,3.5
parent: 8364
+ - uid: 16627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-69.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 26707
+ - 17159
- uid: 16975
components:
- type: Transform
@@ -86424,6 +87992,10 @@ entities:
- type: Transform
pos: 8.5,-64.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 17159
- uid: 17717
components:
- type: Transform
@@ -86434,11 +88006,17 @@ entities:
- type: Transform
pos: 35.5,-26.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
- uid: 18682
components:
- type: Transform
pos: 36.5,-26.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
- uid: 18752
components:
- type: Transform
@@ -86494,6 +88072,9 @@ entities:
- type: Transform
pos: 78.5,-38.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
- uid: 19934
components:
- type: Transform
@@ -86504,16 +88085,27 @@ entities:
- type: Transform
pos: 21.5,-23.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27964
- uid: 21773
components:
- type: Transform
pos: 23.5,-25.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27964
+ - 27965
- uid: 21774
components:
- type: Transform
pos: 23.5,-24.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27964
+ - 27965
- uid: 21812
components:
- type: Transform
@@ -86609,11 +88201,17 @@ entities:
- type: Transform
pos: 22.5,-11.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 22646
components:
- type: Transform
pos: 24.5,-11.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 22687
components:
- type: Transform
@@ -86634,6 +88232,10 @@ entities:
- type: Transform
pos: 3.5,-64.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 17159
- uid: 25951
components:
- type: Transform
@@ -86664,51 +88266,54 @@ entities:
- type: Transform
pos: 28.5,-8.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 25959
components:
- type: Transform
pos: 28.5,-7.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 25960
components:
- type: Transform
pos: 28.5,-6.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 25961
components:
- type: Transform
pos: 28.5,-5.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 25962
components:
- type: Transform
pos: 28.5,-4.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 25963
components:
- type: Transform
pos: 29.5,-8.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 26031
components:
- type: Transform
pos: 45.5,8.5
parent: 8364
- - uid: 26032
- components:
- - type: Transform
- pos: 71.5,4.5
- parent: 8364
- - uid: 26033
- components:
- - type: Transform
- pos: 70.5,4.5
- parent: 8364
- - uid: 26034
- components:
- - type: Transform
- pos: 69.5,4.5
- parent: 8364
- uid: 26035
components:
- type: Transform
@@ -86829,39 +88434,61 @@ entities:
- type: Transform
pos: 55.5,-14.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
+ - 22692
+ - 22693
- uid: 26805
components:
- type: Transform
pos: 55.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
+ - 22692
+ - 22693
- uid: 26806
components:
- type: Transform
pos: 55.5,-12.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
+ - 22692
+ - 22693
- uid: 27403
components:
- type: Transform
pos: -7.5,-71.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 17159
+ - 23133
- uid: 27404
components:
- type: Transform
pos: -6.5,-71.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 17159
+ - 23133
- uid: 27405
components:
- type: Transform
pos: -5.5,-71.5
parent: 8364
- - uid: 27406
- components:
- - type: Transform
- pos: -4.5,-71.5
- parent: 8364
- - type: Door
- secondsUntilStateChange: -23788.44
- state: Closing
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 17159
+ - 23133
- proto: Fireplace
entities:
- uid: 11559
@@ -86886,12 +88513,6 @@ entities:
- type: Transform
pos: -5.590146,-5.5357327
parent: 8364
- - uid: 12356
- components:
- - type: Transform
- rot: 0.00028195229242555797 rad
- pos: -56.26376,3.5820982
- parent: 8364
- uid: 16300
components:
- type: Transform
@@ -86899,16 +88520,13 @@ entities:
parent: 8364
- proto: FlashlightLantern
entities:
- - uid: 2017
- components:
- - type: Transform
- pos: 53.45759,-48.32746
- parent: 8364
- uid: 11756
components:
- type: Transform
- pos: 49.435802,16.306866
+ pos: 49.481064,16.680466
parent: 8364
+ - type: HandheldLight
+ toggleActionEntity: 16587
- type: ContainerContainer
containers:
cellslot_cell_container: !type:ContainerSlot
@@ -86919,51 +88537,12 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 11757
- components:
- - type: Transform
- pos: 48.529552,11.266704
- parent: 8364
- - type: ContainerContainer
- containers:
- cellslot_cell_container: !type:ContainerSlot
+ actions: !type:Container
showEnts: False
occludes: True
- ent: null
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 11758
- components:
- - type: Transform
- pos: 48.47014,7.514141
- parent: 8364
- - type: ContainerContainer
- containers:
- cellslot_cell_container: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 11759
- components:
- - type: Transform
- pos: 66.53939,6.4304285
- parent: 8364
- - type: ContainerContainer
- containers:
- cellslot_cell_container: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
+ ents:
+ - 16587
+ - type: ActionsContainer
- uid: 11760
components:
- type: Transform
@@ -86979,21 +88558,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 11761
- components:
- - type: Transform
- pos: 67.42922,18.532057
- parent: 8364
- - type: ContainerContainer
- containers:
- cellslot_cell_container: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- uid: 11762
components:
- type: Transform
@@ -87024,21 +88588,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 13848
- components:
- - type: Transform
- pos: -45.601074,22.357426
- parent: 8364
- - type: ContainerContainer
- containers:
- cellslot_cell_container: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- uid: 13851
components:
- type: Transform
@@ -87084,21 +88633,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 16451
- components:
- - type: Transform
- pos: -4.4961033,-45.400856
- parent: 8364
- - type: ContainerContainer
- containers:
- cellslot_cell_container: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- uid: 16744
components:
- type: Transform
@@ -87144,16 +88678,6 @@ entities:
- type: Transform
pos: -43.302475,5.7392464
parent: 8364
- - uid: 26783
- components:
- - type: Transform
- pos: 12.378976,32.716896
- parent: 8364
- - uid: 26784
- components:
- - type: Transform
- pos: 12.519601,32.51377
- parent: 8364
- uid: 26814
components:
- type: Transform
@@ -87740,6 +89264,18 @@ entities:
- type: Transform
pos: 34.5,12.5
parent: 8364
+- proto: FolderSpawner
+ entities:
+ - uid: 3825
+ components:
+ - type: Transform
+ pos: -23.380865,-10.331876
+ parent: 8364
+ - uid: 6142
+ components:
+ - type: Transform
+ pos: -22.531582,-12.47005
+ parent: 8364
- proto: FoodBanana
entities:
- uid: 6983
@@ -87776,11 +89312,6 @@ entities:
- type: Transform
pos: 51.57733,-33.333336
parent: 8364
- - uid: 27155
- components:
- - type: Transform
- pos: 26.502972,-87.37317
- parent: 8364
- proto: FoodBoxDonut
entities:
- uid: 541
@@ -87913,8 +89444,7 @@ entities:
- uid: 10943
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,3.5000002
+ pos: 74.49744,3.4977798
parent: 8364
- uid: 20891
components:
@@ -87971,7 +89501,7 @@ entities:
- uid: 27917
components:
- type: Transform
- pos: 3.5477152,-12.389968
+ pos: -3.6,-24.45
parent: 8364
- proto: GasAnalyzer
entities:
@@ -87991,7 +89521,7 @@ entities:
pos: 12.5,-59.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17248
components:
- type: MetaData
@@ -88038,7 +89568,7 @@ entities:
pos: 29.5,-34.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- proto: GasMinerCarbonDioxide
entities:
- uid: 16807
@@ -88099,16 +89629,16 @@ entities:
rot: -1.5707963267948966 rad
pos: 72.5,-47.5
parent: 8364
-- proto: GasMixerFlipped
- entities:
- - uid: 27555
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-71.5
- parent: 8364
- proto: GasOutletInjector
entities:
+ - uid: 11752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-83.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 15511
components:
- type: Transform
@@ -88145,14 +89675,12 @@ entities:
rot: 3.141592653589793 rad
pos: 12.5,-64.5
parent: 8364
- - uid: 23110
+ - uid: 23157
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 18.5,-83.5
+ pos: 22.5,-83.5
parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- proto: GasPassiveGate
entities:
- uid: 21381
@@ -88187,14 +89715,6 @@ entities:
rot: 3.141592653589793 rad
pos: 20.5,-64.5
parent: 8364
- - uid: 16540
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 16760
components:
- type: Transform
@@ -88219,14 +89739,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 17031
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17222
components:
- type: Transform
@@ -88287,12 +89799,6 @@ entities:
rot: 3.141592653589793 rad
pos: 15.5,-50.5
parent: 8364
- - uid: 27182
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-94.5
- parent: 8364
- proto: GasPipeBend
entities:
- uid: 4
@@ -88310,22 +89816,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2004
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3821
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-71.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 4140
components:
- type: Transform
@@ -88334,129 +89824,68 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 4508
+ - uid: 4230
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 16.5,-79.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4512
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-75.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4513
- components:
- - type: Transform
- pos: 30.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4518
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4554
- components:
- - type: Transform
- pos: 32.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4555
- components:
- - type: Transform
- rot: 3.141592653589793 rad
pos: 32.5,-75.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4556
+ - uid: 4355
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 31.5,-72.5
+ pos: 29.5,-74.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4557
+ - uid: 4357
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 31.5,-75.5
+ pos: 30.5,-78.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4561
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-75.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4562
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-75.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4563
+ - uid: 4366
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 16.5,-80.5
+ pos: 0.5,-24.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4572
- components:
- - type: Transform
- pos: 28.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4610
- components:
- - type: Transform
- pos: 14.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4652
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4657
+ color: '#0055CCFF'
+ - uid: 4367
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 28.5,-72.5
+ pos: 1.5,-24.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4388
+ components:
+ - type: Transform
+ pos: 32.5,-74.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4678
+ - uid: 4401
components:
- type: Transform
- pos: 14.5,-80.5
+ pos: 73.5,-50.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 4402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 5202
components:
- type: Transform
@@ -88479,19 +89908,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 44.5,-39.5
parent: 8364
- - uid: 5284
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-68.5
- parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5317
+ color: '#0055CCFF'
+ - uid: 5379
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-66.5
+ pos: 55.5,-1.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -88503,6 +89925,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 5382
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,-1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5387
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,-1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5388
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 5389
components:
- type: Transform
@@ -88511,21 +89965,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5390
+ - uid: 5393
components:
- type: Transform
- pos: 56.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 65.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5391
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 5595
components:
- type: Transform
@@ -88557,22 +90004,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 7062
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 69.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 7228
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 70.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 7312
components:
- type: Transform
@@ -88798,7 +90229,7 @@ entities:
pos: 40.5,8.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 10443
components:
- type: Transform
@@ -88807,6 +90238,46 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 11757
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 12357
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,-78.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 12460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-85.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 13066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-77.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 13850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,-75.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 14489
components:
- type: Transform
@@ -88815,21 +90286,20 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 15341
+ - uid: 15347
components:
- type: Transform
- pos: -1.5,-21.5
+ pos: 28.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 15369
+ components:
+ - type: Transform
+ pos: 17.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15367
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-21.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 15502
components:
- type: Transform
@@ -88837,35 +90307,11 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15880
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-79.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 15881
+ - uid: 15527
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 16.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 15890
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-78.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 15892
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-78.5
+ pos: 13.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -88877,6 +90323,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 15937
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-78.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 16168
components:
- type: Transform
@@ -88885,60 +90339,29 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16550
+ - uid: 16631
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-75.5
+ pos: 29.5,-76.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 16553
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-75.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 16554
- components:
- - type: Transform
- pos: 34.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 16555
+ - uid: 16712
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 33.5,-72.5
+ pos: 19.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 16879
+ - uid: 16737
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,-71.5
+ pos: 13.5,-85.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 16882
- components:
- - type: Transform
- pos: 35.5,-71.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 16885
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-75.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- uid: 16988
components:
- type: Transform
@@ -89030,6 +90453,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 17188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17203
components:
- type: Transform
@@ -89053,7 +90484,7 @@ entities:
pos: 11.5,-59.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17255
components:
- type: Transform
@@ -89115,30 +90546,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 17565
+ - uid: 17425
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 17.5,-74.5
+ pos: -25.5,-69.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 17675
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-85.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17704
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-85.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
+ color: '#990000FF'
- uid: 18600
components:
- type: Transform
@@ -89147,11 +90562,11 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 18659
+ - uid: 18735
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 77.5,-12.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -89163,14 +90578,52 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 20067
+ - uid: 19951
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-81.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,-12.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#990000FF'
+ - uid: 20032
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20060
+ components:
+ - type: Transform
+ pos: 26.5,14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20126
+ components:
+ - type: Transform
+ pos: 73.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20133
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20185
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 20202
components:
- type: Transform
@@ -89178,14 +90631,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20368
+ - uid: 21348
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 58.5,-41.5
+ pos: 21.5,-10.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 21417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 21770
components:
- type: Transform
@@ -89202,6 +90663,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
+ - uid: 21995
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,16.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22545
components:
- type: Transform
@@ -89210,14 +90679,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 22744
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-81.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- uid: 22780
components:
- type: Transform
@@ -89241,11 +90702,11 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 23008
+ - uid: 23026
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-53.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,-13.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -89256,65 +90717,26 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23127
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23128
- components:
- - type: Transform
- pos: 8.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23129
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-67.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23130
- components:
- - type: Transform
- pos: 9.5,-67.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23147
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-66.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23148
+ - uid: 23109
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 2.5,-67.5
+ pos: 81.5,-13.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23149
+ - uid: 23184
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,-65.5
+ pos: 23.5,-79.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23150
+ color: '#03FCD3FF'
+ - uid: 23193
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-66.5
+ pos: 7.5,-52.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -89408,6 +90830,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23775
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,-55.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23783
components:
- type: Transform
@@ -89416,14 +90846,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23899
+ - uid: 23912
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 78.5,-14.5
+ pos: 19.5,-79.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#947507FF'
- uid: 23983
components:
- type: Transform
@@ -89523,6 +90953,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24162
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24217
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 24262
components:
- type: Transform
@@ -89568,65 +91014,40 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24435
+ - uid: 24431
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-7.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24437
- components:
- - type: Transform
- pos: 22.5,-6.5
+ pos: 40.5,-22.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24438
+ - uid: 24432
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 20.5,-6.5
+ pos: 36.5,-48.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24442
- components:
- - type: Transform
- pos: 25.5,-4.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24462
+ - uid: 24450
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 21.5,3.5
+ pos: 24.5,-10.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24476
+ - uid: 24451
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-9.5
+ pos: 22.5,-10.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24477
+ - uid: 24464
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-10.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24598
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-25.5
+ pos: 22.5,5.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -89646,14 +91067,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24603
+ - uid: 24619
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-40.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24624
components:
- type: Transform
@@ -89662,46 +91083,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24634
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-24.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24635
+ - uid: 24633
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 41.5,-23.5
+ pos: 35.5,-46.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24636
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-23.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24638
+ - uid: 24641
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 40.5,-22.5
+ pos: 19.5,-17.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24639
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-22.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24660
components:
- type: Transform
@@ -89718,6 +91115,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24675
+ components:
+ - type: Transform
+ pos: 28.5,-33.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 24723
components:
- type: Transform
@@ -89732,6 +91136,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24813
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24837
components:
- type: Transform
@@ -89785,44 +91221,30 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24902
+ - uid: 24969
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,-78.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24905
+ color: '#03FCD3FF'
+ - uid: 24971
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 48.5,-3.5
+ pos: 62.5,-9.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24906
+ - uid: 24972
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 47.5,-2.5
+ pos: 61.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24960
- components:
- - type: Transform
- pos: 69.5,1.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24961
- components:
- - type: Transform
- pos: 70.5,2.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25065
components:
- type: Transform
@@ -89845,22 +91267,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25199
+ - uid: 25261
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 66.5,-50.5
+ pos: 17.5,-79.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25200
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,-51.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#947507FF'
- uid: 25351
components:
- type: Transform
@@ -89893,6 +91307,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 25505
+ components:
+ - type: Transform
+ pos: 79.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 25561
components:
- type: Transform
@@ -89988,14 +91409,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25880
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-4.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 26043
components:
- type: Transform
@@ -90019,33 +91432,176 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27180
+ - uid: 26695
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 22.5,-93.5
+ pos: 29.5,-75.5
parent: 8364
- - uid: 27181
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 26697
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 21.5,-93.5
+ pos: 30.5,-75.5
parent: 8364
- - uid: 27240
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 26760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-79.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 26797
+ components:
+ - type: Transform
+ pos: 31.5,-77.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 26933
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 27.5,-80.5
+ pos: 21.5,-85.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27427
+ color: '#03FCD3FF'
+ - uid: 26957
components:
- type: Transform
- pos: 27.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,10.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 26964
+ components:
+ - type: Transform
+ pos: -1.5,-24.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-43.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27058
+ components:
+ - type: Transform
+ pos: 32.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 27169
+ components:
+ - type: Transform
+ pos: -22.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 27211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -22.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27658
+ components:
+ - type: Transform
+ pos: 56.5,-36.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27704
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-85.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27958
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28148
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-24.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28218
+ components:
+ - type: Transform
+ pos: -13.5,-53.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-56.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeFourway
entities:
- uid: 5316
@@ -90055,6 +91611,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 5732
+ components:
+ - type: Transform
+ pos: 68.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 8876
components:
- type: Transform
@@ -90062,10 +91625,17 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 20264
+ - uid: 13665
components:
- type: Transform
- pos: 65.5,-40.5
+ pos: 70.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17467
+ components:
+ - type: Transform
+ pos: -7.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -90076,24 +91646,45 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 23026
+ - uid: 21997
components:
- type: Transform
- pos: 0.5,-55.5
+ pos: 0.5,19.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23027
+ - uid: 22975
components:
- type: Transform
- pos: -1.5,-56.5
+ pos: -7.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23072
+ components:
+ - type: Transform
+ pos: 5.5,-31.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23118
+ - uid: 23126
components:
- type: Transform
- pos: 8.5,-66.5
+ pos: 70.5,-24.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23129
+ components:
+ - type: Transform
+ pos: 67.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23209
+ components:
+ - type: Transform
+ pos: -7.5,-53.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -90174,20 +91765,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24572
- components:
- - type: Transform
- pos: 35.5,-23.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24625
- components:
- - type: Transform
- pos: 39.5,-24.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24681
components:
- type: Transform
@@ -90216,13 +91793,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24780
- components:
- - type: Transform
- pos: 39.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24781
components:
- type: Transform
@@ -90265,20 +91835,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25150
- components:
- - type: Transform
- pos: 66.5,-34.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25187
- components:
- - type: Transform
- pos: 66.5,-41.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25537
components:
- type: Transform
@@ -90307,13 +91863,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25786
- components:
- - type: Transform
- pos: 15.5,31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25787
components:
- type: Transform
@@ -90321,15 +91870,23 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26931
+ - uid: 27974
components:
- type: Transform
- pos: 28.5,-91.5
+ pos: 29.5,-7.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- proto: GasPipeSensor
entities:
+ - uid: 16635
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 17381
components:
- type: MetaData
@@ -90344,19 +91901,6 @@ entities:
currentLabel: Cryogenics
- type: NameModifier
baseName: gas pipe sensor
- - uid: 19020
- components:
- - type: MetaData
- name: gas pipe sensor (TEG Mix)
- - type: Transform
- pos: 17.5,-58.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - type: Label
- currentLabel: TEG Mix
- - type: NameModifier
- baseName: gas pipe sensor
- proto: GasPipeSensorDistribution
entities:
- uid: 10817
@@ -90376,23 +91920,23 @@ entities:
parent: 8364
- proto: GasPipeSensorTEGCold
entities:
- - uid: 7418
+ - uid: 4177
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-72.5
+ pos: 19.5,-75.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- proto: GasPipeSensorTEGHot
entities:
- - uid: 16396
+ - uid: 13067
components:
- type: Transform
- pos: 14.5,-77.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-77.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#947507FF'
- proto: GasPipeSensorWaste
entities:
- uid: 16914
@@ -90485,6 +92029,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 750
components:
- type: Transform
@@ -90493,6 +92053,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-67.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 14.5,-81.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 954
components:
- type: Transform
@@ -90521,6 +92096,13 @@ entities:
- type: Transform
pos: 15.5,-54.5
parent: 8364
+ - uid: 1479
+ components:
+ - type: Transform
+ pos: 13.5,-77.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 1617
components:
- type: Transform
@@ -90537,6 +92119,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 1627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-83.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 1643
components:
- type: Transform
@@ -90545,6 +92135,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 2826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,-0.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-79.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 3682
components:
- type: Transform
@@ -90559,64 +92165,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 3719
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 3771
- components:
- - type: Transform
- pos: 29.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 3772
- components:
- - type: Transform
- pos: 33.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 3782
- components:
- - type: Transform
- pos: 34.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 3783
- components:
- - type: Transform
- pos: 33.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 3786
- components:
- - type: Transform
- pos: 35.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 3818
- components:
- - type: Transform
- pos: 29.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 3819
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-71.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 3837
components:
- type: Transform
@@ -90633,14 +92181,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 3865
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 3878
components:
- type: Transform
@@ -90735,14 +92275,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 4062
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-71.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 4073
components:
- type: Transform
@@ -90782,36 +92314,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 4107
+ - uid: 4139
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-71.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,-83.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4135
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-71.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4136
- components:
- - type: Transform
- pos: 17.5,-83.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- uid: 4147
components:
- type: Transform
pos: 11.5,-49.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 4149
components:
- type: Transform
@@ -90876,6 +92393,231 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 4215
+ components:
+ - type: Transform
+ pos: -2.5,-18.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4229
+ components:
+ - type: Transform
+ pos: 13.5,-78.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-77.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 4273
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4288
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4290
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4293
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4294
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-50.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4295
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,-50.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4296
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,-50.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,-50.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4358
+ components:
+ - type: Transform
+ pos: 28.5,-78.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 4376
+ components:
+ - type: Transform
+ pos: 1.5,-23.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4433
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,-43.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4434
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4435
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4436
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4437
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,-44.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4463
+ components:
+ - type: Transform
+ pos: 76.5,-43.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4464
+ components:
+ - type: Transform
+ pos: 76.5,-42.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4465
+ components:
+ - type: Transform
+ pos: 76.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,-80.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 4493
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-83.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 4498
components:
- type: Transform
@@ -90886,203 +92628,111 @@ entities:
- uid: 4501
components:
- type: Transform
- pos: 17.5,-82.5
+ rot: 1.5707963267948966 rad
+ pos: 57.5,-1.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 4502
components:
- type: Transform
- pos: 13.5,-82.5
+ pos: 58.5,-0.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 4509
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-74.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,-81.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4510
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4521
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4530
- components:
- - type: Transform
- pos: 32.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4531
- components:
- - type: Transform
- pos: 31.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4533
- components:
- - type: Transform
- pos: 31.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4534
- components:
- - type: Transform
- pos: 30.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4535
- components:
- - type: Transform
- pos: 32.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4536
- components:
- - type: Transform
- pos: 30.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4537
+ color: '#990000FF'
+ - uid: 4529
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-73.5
+ pos: 70.5,-13.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4538
+ color: '#0055CCFF'
+ - uid: 4555
components:
- type: Transform
- pos: 15.5,-83.5
+ pos: -2.5,-19.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4539
+ color: '#990000FF'
+ - uid: 4577
components:
- type: Transform
- pos: 35.5,-72.5
+ pos: -2.5,-23.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4540
+ color: '#990000FF'
+ - uid: 4610
components:
- type: Transform
- pos: 34.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: 71.5,-45.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4559
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4560
- components:
- - type: Transform
- pos: 16.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4564
- components:
- - type: Transform
- pos: 15.5,-82.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4565
- components:
- - type: Transform
- pos: 14.5,-82.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4566
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4567
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4576
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- uid: 4612
components:
- type: Transform
- pos: 17.5,-79.5
+ anchored: False
+ rot: -1.5707963267948966 rad
+ pos: 69.5,-45.5
+ parent: 8364
+ - type: Physics
+ canCollide: True
+ bodyType: Dynamic
+ - uid: 4621
+ components:
+ - type: Transform
+ pos: 67.5,-23.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4648
+ color: '#990000FF'
+ - uid: 4622
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 27.5,-72.5
+ pos: 25.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4650
+ - uid: 4967
components:
- type: Transform
- pos: 16.5,-83.5
+ rot: 3.141592653589793 rad
+ pos: 78.5,-42.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4680
+ color: '#990000FF'
+ - uid: 5009
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-74.5
+ pos: 76.5,-39.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4684
+ color: '#0055CCFF'
+ - uid: 5010
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-72.5
+ pos: 76.5,-38.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
+ - uid: 5015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,-38.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 5068
components:
- type: Transform
@@ -91147,6 +92797,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 5120
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,-44.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 5203
components:
- type: Transform
@@ -91178,6 +92836,35 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 5268
+ components:
+ - type: Transform
+ pos: 14.5,-77.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 5272
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-75.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5274
+ components:
+ - type: Transform
+ pos: 55.5,-2.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5279
+ components:
+ - type: Transform
+ pos: 56.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 5280
components:
- type: Transform
@@ -91192,6 +92879,72 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 5317
+ components:
+ - type: Transform
+ pos: 55.5,-3.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5318
+ components:
+ - type: Transform
+ pos: 56.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5335
+ components:
+ - type: Transform
+ pos: 56.5,-6.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5370
+ components:
+ - type: Transform
+ pos: 56.5,-3.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5378
+ components:
+ - type: Transform
+ pos: 56.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5380
+ components:
+ - type: Transform
+ pos: 56.5,-2.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5383
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,-1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 5392
components:
- type: Transform
@@ -91200,14 +92953,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5393
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 5394
components:
- type: Transform
@@ -91224,6 +92969,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 5462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 5593
components:
- type: Transform
@@ -91286,13 +93039,120 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5988
+ - uid: 5644
components:
- type: Transform
- pos: 0.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 70.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5701
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-9.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 5729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5733
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,3.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5751
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5755
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5756
+ components:
+ - type: Transform
+ pos: 68.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5763
+ components:
+ - type: Transform
+ pos: 68.5,-3.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5764
+ components:
+ - type: Transform
+ pos: 68.5,-2.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5766
+ components:
+ - type: Transform
+ pos: 68.5,-0.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6026
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-10.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-11.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,-44.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6220
+ components:
+ - type: Transform
+ pos: 1.5,-21.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6222
+ components:
+ - type: Transform
+ pos: 1.5,-20.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 6251
components:
- type: Transform
@@ -91315,13 +93175,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 7041
- components:
- - type: Transform
- pos: 69.5,-6.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 7056
components:
- type: Transform
@@ -91329,13 +93182,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 7071
- components:
- - type: Transform
- pos: 69.5,-7.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 7072
components:
- type: Transform
@@ -91382,13 +93228,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 7114
- components:
- - type: Transform
- pos: 69.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 7143
components:
- type: Transform
@@ -91396,6 +93235,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 7154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 7156
components:
- type: Transform
@@ -91419,13 +93266,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 7216
- components:
- - type: Transform
- pos: 69.5,-4.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 7221
components:
- type: Transform
@@ -91440,13 +93280,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 7226
- components:
- - type: Transform
- pos: 69.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 7278
components:
- type: Transform
@@ -91619,6 +93452,45 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8118
+ components:
+ - type: Transform
+ pos: 53.5,-0.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,11.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,17.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8159
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,16.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 8216
components:
- type: Transform
@@ -91634,6 +93506,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,15.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 8402
components:
- type: Transform
@@ -91650,6 +93530,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
@@ -92314,6 +94206,46 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 10872
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11159
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,10.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 12354
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-79.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 12356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 12640
components:
- type: Transform
@@ -92322,37 +94254,123 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13665
- components:
- - type: Transform
- pos: 13.5,-83.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14079
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 14087
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 14088
+ - uid: 13419
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 25.5,-74.5
+ pos: 27.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
+ - uid: 13471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13474
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13661
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13662
+ components:
+ - type: Transform
+ pos: 55.5,-6.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-82.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 14075
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 14079
+ components:
+ - type: Transform
+ pos: 14.5,-75.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 14089
+ components:
+ - type: Transform
+ pos: 14.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 14090
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 14110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,-27.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14113
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-72.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14116
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 14195
components:
- type: Transform
@@ -92361,6 +94379,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 14232
components:
- type: Transform
@@ -92377,27 +94403,157 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 15340
+ - uid: 14421
components:
- type: Transform
- pos: -1.5,-22.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15342
- components:
- - type: Transform
- pos: -1.5,-23.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15345
- components:
- - type: Transform
- pos: 0.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-13.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 14477
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,3.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14479
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14503
+ components:
+ - type: Transform
+ pos: 67.5,-37.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14507
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-81.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 14514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 14515
+ components:
+ - type: Transform
+ pos: 13.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14564
+ components:
+ - type: Transform
+ pos: 22.5,-81.5
+ parent: 8364
+ - uid: 14703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14916
+ components:
+ - type: Transform
+ pos: 28.5,-77.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 14918
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-84.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14919
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15343
+ components:
+ - type: Transform
+ pos: 15.5,-79.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15367
+ components:
+ - type: Transform
+ pos: 32.5,-77.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 15372
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15481
+ components:
+ - type: Transform
+ pos: 13.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 15501
components:
- type: Transform
@@ -92417,77 +94573,89 @@ entities:
- uid: 15543
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 15544
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-76.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15876
- components:
- - type: Transform
- pos: 14.5,-84.5
+ pos: 14.5,-78.5
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 15546
+ components:
+ - type: Transform
+ pos: 13.5,-75.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 15877
components:
- type: Transform
- pos: 14.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15878
- components:
- - type: Transform
- pos: 13.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15879
- components:
- - type: Transform
- pos: 13.5,-79.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15882
- components:
- - type: Transform
- pos: 16.5,-74.5
+ pos: 21.5,-79.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 15883
+ - uid: 15878
components:
- type: Transform
- pos: 13.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 15887
+ components:
+ - type: Transform
+ pos: 68.5,-5.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15888
+ components:
+ - type: Transform
+ pos: 68.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 15889
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-72.5
+ pos: 68.5,-6.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
+ - uid: 15890
+ components:
+ - type: Transform
+ pos: 68.5,-1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 15891
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-72.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15899
+ components:
+ - type: Transform
+ pos: 22.5,-82.5
+ parent: 8364
+ - uid: 15951
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-84.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
+ - uid: 15979
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-83.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16511
components:
- type: Transform
@@ -92504,6 +94672,29 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-82.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16540
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-84.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 16590
+ components:
+ - type: Transform
+ pos: 14.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 16601
components:
- type: Transform
@@ -92511,7 +94702,23 @@ entities:
pos: 10.5,-48.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
+ - uid: 16629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16720
components:
- type: Transform
@@ -92520,6 +94727,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16723
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 16741
components:
- type: Transform
@@ -92604,22 +94819,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#3AB334FF'
- - uid: 16825
+ - uid: 16879
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-72.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-52.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 16880
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- uid: 16888
components:
- type: Transform
@@ -92652,21 +94859,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16915
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-76.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 16936
components:
- type: Transform
- pos: 17.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-53.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
+ - uid: 16953
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-53.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16954
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-53.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16983
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-66.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16984
components:
- type: Transform
@@ -92694,7 +94918,8 @@ entities:
- uid: 17002
components:
- type: Transform
- pos: 13.5,-76.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-65.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -92753,28 +94978,70 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 17025
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-66.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17026
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17028
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 16.5,-77.5
+ pos: 8.5,-69.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 17029
components:
- type: Transform
- pos: 17.5,-76.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-70.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 17030
components:
- type: Transform
- pos: 13.5,-77.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17040
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17041
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-67.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 17045
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17047
components:
- type: Transform
@@ -92817,10 +95084,43 @@ entities:
- uid: 17057
components:
- type: Transform
- pos: 14.5,-83.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-70.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#0055CCFF'
+ - uid: 17061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17064
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17072
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,-67.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17083
components:
- type: Transform
@@ -92836,13 +95136,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 17088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17091
components:
- type: Transform
pos: 11.5,-55.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17092
components:
- type: Transform
@@ -92869,10 +95177,10 @@ entities:
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 4.5,-65.5
+ pos: 0.5,-70.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 17115
components:
- type: Transform
@@ -93001,8 +95309,16 @@ entities:
- uid: 17144
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-66.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17149
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -93017,11 +95333,11 @@ entities:
- uid: 17166
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-69.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-68.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 17171
components:
- type: Transform
@@ -93029,86 +95345,127 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17173
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-69.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17176
+ - uid: 17172
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -13.5,-69.5
+ pos: 0.5,-68.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17190
+ color: '#990000FF'
+ - uid: 17173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17180
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -5.5,-67.5
+ pos: -10.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-69.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-69.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17209
components:
- type: Transform
pos: 11.5,-56.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17210
components:
- type: Transform
pos: 11.5,-57.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17211
components:
- type: Transform
pos: 11.5,-58.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17212
components:
- type: Transform
- pos: 16.5,-82.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-70.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#0055CCFF'
- uid: 17213
components:
- type: Transform
pos: 11.5,-53.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17214
components:
- type: Transform
pos: 11.5,-52.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17215
components:
- type: Transform
pos: 11.5,-51.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17216
components:
- type: Transform
pos: 11.5,-50.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17217
components:
- type: Transform
@@ -93117,6 +95474,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
+ - uid: 17221
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17228
components:
- type: Transform
@@ -93343,7 +95708,7 @@ entities:
pos: 11.5,-54.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17336
components:
- type: Transform
@@ -93360,14 +95725,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-69.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17383
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-70.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
+ - uid: 17424
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17426
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17466
components:
- type: Transform
@@ -93376,6 +95765,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 17472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-31.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17521
components:
- type: Transform
@@ -93400,6 +95797,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17554
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17560
components:
- type: Transform
@@ -93411,10 +95816,19 @@ entities:
- uid: 17564
components:
- type: Transform
- pos: 15.5,-80.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-29.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#0055CCFF'
+ - uid: 17565
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17569
components:
- type: Transform
@@ -93446,14 +95860,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 17600
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-65.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17601
components:
- type: Transform
@@ -93478,22 +95884,78 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,-10.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17702
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 22.5,-71.5
+ pos: 78.5,-13.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#0055CCFF'
+ - uid: 17707
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,-5.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17719
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-11.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17775
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17782
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17794
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-71.5
+ rot: 3.141592653589793 rad
+ pos: 77.5,-8.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#990000FF'
+ - uid: 17802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17807
components:
- type: Transform
@@ -93542,10 +96004,19 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#3AB334FF'
- - uid: 18404
+ - uid: 18620
components:
- type: Transform
- pos: -3.5,-67.5
+ rot: 3.141592653589793 rad
+ pos: 81.5,-11.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18659
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -93556,6 +96027,30 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 18681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,-13.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18758
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-3.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19020
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-5.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 19066
components:
- type: Transform
@@ -93564,6 +96059,50 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 19079
+ components:
+ - type: Transform
+ pos: -2.5,-21.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19148
+ components:
+ - type: Transform
+ pos: -2.5,-20.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,-6.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19857
+ components:
+ - type: Transform
+ pos: 26.5,-5.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19900
+ components:
+ - type: Transform
+ pos: -58.5,0.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 19936
components:
- type: Transform
@@ -93612,14 +96151,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 19942
+ - uid: 19953
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-31.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- uid: 19957
components:
- type: Transform
@@ -93628,14 +96167,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 20003
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-30.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 20125
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-71.5
+ rot: 3.141592653589793 rad
+ pos: 81.5,-12.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#0055CCFF'
- uid: 20127
components:
- type: Transform
@@ -93644,6 +96207,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 20135
+ components:
+ - type: Transform
+ pos: 68.5,0.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20136
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 20153
components:
- type: Transform
@@ -93667,6 +96245,115 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 20264
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,2.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20279
+ components:
+ - type: Transform
+ pos: 67.5,-25.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20368
+ components:
+ - type: Transform
+ pos: 67.5,-24.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20859
+ components:
+ - type: Transform
+ pos: 67.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20898
+ components:
+ - type: Transform
+ pos: 67.5,-30.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-31.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21248
+ components:
+ - type: Transform
+ pos: 67.5,-32.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21290
+ components:
+ - type: Transform
+ pos: 67.5,-35.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21364
+ components:
+ - type: Transform
+ pos: 67.5,-36.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21366
+ components:
+ - type: Transform
+ pos: 67.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21370
+ components:
+ - type: Transform
+ pos: 67.5,-40.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21371
+ components:
+ - type: Transform
+ pos: 67.5,-42.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21378
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21380
+ components:
+ - type: Transform
+ pos: 67.5,-47.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 21382
components:
- type: Transform
@@ -93683,6 +96370,118 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 21386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21406
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21416
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-51.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21421
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21469
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21527
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-18.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 21742
components:
- type: Transform
@@ -93691,6 +96490,76 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 21763
+ components:
+ - type: Transform
+ pos: 67.5,-48.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21766
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21798
+ components:
+ - type: Transform
+ pos: 67.5,-46.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21998
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,19.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22001
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22004
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22140
components:
- type: Transform
@@ -93699,6 +96568,93 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22539
+ components:
+ - type: Transform
+ pos: 76.5,-40.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22541
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22542
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,-40.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-18.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,-18.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,-18.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22717
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22725
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 22735
components:
- type: Transform
@@ -93706,6 +96662,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
+ - uid: 22738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,-11.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22739
components:
- type: Transform
@@ -93727,14 +96691,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 22749
+ - uid: 22746
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-76.5
+ pos: 25.5,14.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#990000FF'
- uid: 22760
components:
- type: Transform
@@ -93990,6 +96954,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 22817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,15.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22820
components:
- type: Transform
@@ -94054,6 +97026,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,13.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22836
components:
- type: Transform
@@ -94102,21 +97082,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 22916
+ - uid: 22851
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-75.5
+ pos: 25.5,17.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 22922
+ color: '#990000FF'
+ - uid: 22856
components:
- type: Transform
- pos: 18.5,-82.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,16.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#0055CCFF'
+ - uid: 22858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-72.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22929
components:
- type: Transform
@@ -94133,22 +97130,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22941
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-77.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 22944
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-78.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- uid: 22947
components:
- type: Transform
@@ -94202,27 +97183,11 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23002
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-52.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23003
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-52.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23004
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-53.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -94230,23 +97195,15 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 6.5,-53.5
+ pos: -15.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23006
+ - uid: 23010
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-53.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23007
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-53.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-67.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -94334,6 +97291,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23027
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23028
components:
- type: Transform
@@ -94367,10 +97332,11 @@ entities:
- uid: 23032
components:
- type: Transform
- pos: -1.5,-53.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-55.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 23033
components:
- type: Transform
@@ -94388,10 +97354,11 @@ entities:
- uid: 23035
components:
- type: Transform
- pos: 0.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-56.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23036
components:
- type: Transform
@@ -94565,11 +97532,27 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23072
+ - uid: 23067
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-53.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23068
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -6.5,-56.5
+ pos: 2.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-68.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -94590,10 +97573,11 @@ entities:
- uid: 23075
components:
- type: Transform
- pos: -7.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-31.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23076
components:
- type: Transform
@@ -94626,10 +97610,10 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -8.5,-55.5
+ pos: -7.5,-31.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23081
components:
- type: Transform
@@ -94650,15 +97634,14 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -9.5,-55.5
+ pos: 3.5,21.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23084
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-55.5
+ pos: 4.5,-34.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -94670,6 +97653,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 23091
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,-14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23092
components:
- type: Transform
@@ -94694,6 +97685,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23098
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23103
components:
- type: Transform
@@ -94729,22 +97728,20 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23109
+ - uid: 23110
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-71.5
+ pos: -1.5,-27.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- uid: 23111
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-79.5
+ pos: 0.5,-26.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#0055CCFF'
- uid: 23113
components:
- type: Transform
@@ -94769,6 +97766,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23119
components:
- type: Transform
@@ -94777,72 +97782,36 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23122
+ - uid: 23120
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-66.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23123
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-66.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23124
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-6.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23125
+ - uid: 23127
components:
- type: Transform
- pos: 7.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,-22.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23126
+ - uid: 23128
components:
- type: Transform
- pos: 7.5,-67.5
+ pos: 67.5,-28.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23131
+ - uid: 23130
components:
- type: Transform
- pos: 8.5,-69.5
+ pos: 67.5,-49.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23132
- components:
- - type: Transform
- pos: 8.5,-70.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23134
- components:
- - type: Transform
- pos: 9.5,-69.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23135
- components:
- - type: Transform
- pos: 9.5,-70.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23136
components:
- type: Transform
@@ -94859,22 +97828,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23139
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-66.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23141
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-66.5
+ rot: 3.141592653589793 rad
+ pos: 78.5,-39.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23144
components:
- type: Transform
@@ -94891,62 +97852,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23153
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-65.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23154
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-67.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23155
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 8.5,-71.5
+ pos: 15.5,-84.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 23156
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-71.5
+ pos: 14.5,-73.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23157
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23158
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23159
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#947507FF'
- uid: 23162
components:
- type: Transform
@@ -94971,46 +97891,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23165
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23166
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23168
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-73.5
+ pos: 13.5,-79.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23169
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23170
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23178
components:
- type: Transform
@@ -95023,75 +97910,34 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 23184
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-67.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23185
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-67.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23186
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-66.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23187
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-66.5
+ pos: 55.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 23188
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-66.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23189
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 23191
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-67.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,-69.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 23192
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-67.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23193
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-67.5
+ rot: 3.141592653589793 rad
+ pos: 81.5,-3.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -95135,6 +97981,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-56.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 23205
components:
- type: Transform
@@ -95160,8 +98014,8 @@ entities:
- uid: 23214
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-69.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -95169,10 +98023,10 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -11.5,-69.5
+ pos: -24.5,-69.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23216
components:
- type: Transform
@@ -95184,16 +98038,7 @@ entities:
- uid: 23217
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23218
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-69.5
+ pos: 1.5,-18.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -95221,14 +98066,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23243
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23244
components:
- type: Transform
@@ -95253,91 +98090,51 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23247
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23248
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -20.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23249
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23251
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-69.5
+ pos: 80.5,-13.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,11.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 23253
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -16.5,-69.5
+ pos: 70.5,-35.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 23254
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-69.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23255
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-69.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23256
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-69.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,-52.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 23257
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-69.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23258
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-69.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23259
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-69.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,-44.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -95587,14 +98384,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23316
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23317
components:
- type: Transform
@@ -95611,14 +98400,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23319
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23321
components:
- type: Transform
@@ -96935,22 +99716,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23537
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23538
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23539
components:
- type: Transform
@@ -97071,14 +99836,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23556
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23557
components:
- type: Transform
@@ -98065,6 +100822,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-69.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 23722
components:
- type: Transform
@@ -98383,14 +101148,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23771
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23773
components:
- type: Transform
@@ -98399,22 +101156,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23774
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23775
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23776
components:
- type: Transform
@@ -98507,10 +101248,10 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 21.5,-14.5
+ pos: -11.5,-56.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23790
components:
- type: Transform
@@ -98551,6 +101292,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-69.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 23798
components:
- type: Transform
@@ -98591,14 +101340,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23804
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23806
components:
- type: Transform
@@ -98698,8 +101439,7 @@ entities:
- uid: 23820
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-14.5
+ pos: 1.5,-19.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -98731,7 +101471,7 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 57.5,-14.5
+ pos: -2.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -98751,14 +101491,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23828
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-12.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23829
components:
- type: Transform
@@ -98783,14 +101515,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23832
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,-12.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23833
components:
- type: Transform
@@ -98895,14 +101619,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23849
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-12.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23850
components:
- type: Transform
@@ -98986,8 +101702,8 @@ entities:
- uid: 23864
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: 77.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -99055,14 +101771,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23876
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,-14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23877
components:
- type: Transform
@@ -99079,14 +101787,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23879
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,-14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23880
components:
- type: Transform
@@ -99127,11 +101827,18 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23887
+ - uid: 23886
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 68.5,-12.5
+ pos: 69.5,-35.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23887
+ components:
+ - type: Transform
+ pos: 67.5,-33.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -99146,8 +101853,7 @@ entities:
- uid: 23889
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,-12.5
+ pos: 67.5,-26.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -99218,48 +101924,14 @@ entities:
- uid: 23901
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23902
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-13.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23904
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-11.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23905
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-11.5
+ pos: 67.5,-44.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23906
+ - uid: 23907
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-10.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23908
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-8.5
+ pos: -5.5,-72.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -99267,95 +101939,23 @@ entities:
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 78.5,-10.5
+ pos: 21.5,-82.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23910
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23912
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-7.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23913
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-7.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23914
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-6.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23916
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23917
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-6.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23918
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23919
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-4.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#03FCD3FF'
- uid: 23920
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-3.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23921
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23922
+ - uid: 23921
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -99407,46 +102007,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23931
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-25.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23932
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-25.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23933
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-24.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23934
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-24.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23937
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-23.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23951
components:
- type: Transform
@@ -100148,14 +102708,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24078
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-11.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24079
components:
- type: Transform
@@ -100180,38 +102732,49 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-72.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24088
components:
- type: Transform
pos: 4.5,-32.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24089
components:
- type: Transform
pos: 4.5,-33.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24090
components:
- type: Transform
- pos: 4.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24091
components:
- type: Transform
- pos: 5.5,-30.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24092
- components:
- - type: Transform
- pos: 5.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-44.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -100221,19 +102784,35 @@ entities:
pos: 5.5,-32.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24094
components:
- type: Transform
pos: 5.5,-33.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24095
components:
- type: Transform
pos: 5.5,-34.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24096
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-37.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24097
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-37.5
+ parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24100
@@ -100660,6 +103239,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24173
+ components:
+ - type: Transform
+ pos: 70.5,-25.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24175
components:
- type: Transform
@@ -100687,38 +103273,27 @@ entities:
- uid: 24182
components:
- type: Transform
- pos: 0.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-73.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24183
components:
- type: Transform
- pos: 0.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-71.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24184
components:
- type: Transform
- pos: 0.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-72.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24185
- components:
- - type: Transform
- pos: -1.5,-10.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24186
- components:
- - type: Transform
- pos: -1.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24190
components:
- type: Transform
@@ -100909,8 +103484,8 @@ entities:
- uid: 24223
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,-36.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -101012,6 +103587,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24246
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-38.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 24247
components:
- type: Transform
@@ -101270,8 +103853,7 @@ entities:
- uid: 24301
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-4.5
+ pos: 48.5,-5.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -101657,14 +104239,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24384
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24385
components:
- type: Transform
@@ -101681,22 +104255,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24387
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24388
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24389
components:
- type: Transform
@@ -101729,14 +104287,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24393
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24394
components:
- type: Transform
@@ -101745,14 +104295,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24395
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24396
components:
- type: Transform
@@ -101761,14 +104303,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24397
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24402
components:
- type: Transform
@@ -101925,174 +104459,171 @@ entities:
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 22.5,-10.5
+ pos: 48.5,-3.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24429
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 24.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24431
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-8.5
+ pos: 21.5,-2.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24432
+ - uid: 24430
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,-22.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24436
+ components:
+ - type: Transform
+ pos: 21.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24437
+ components:
+ - type: Transform
+ pos: 26.5,-6.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 24440
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 24.5,-4.5
+ pos: 27.5,-10.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24441
+ - uid: 24442
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 21.5,-6.5
+ pos: 23.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24443
- components:
- - type: Transform
- pos: 25.5,-6.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24444
- components:
- - type: Transform
- pos: 25.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24445
components:
- type: Transform
- pos: 20.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,-3.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24446
components:
- type: Transform
- pos: 20.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,-5.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24447
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,-3.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24448
components:
- type: Transform
- pos: 21.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,4.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24449
components:
- type: Transform
- pos: 20.5,-3.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24450
- components:
- - type: Transform
- pos: 20.5,-2.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24451
- components:
- - type: Transform
- pos: 21.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,3.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24452
components:
- type: Transform
- pos: 21.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,2.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24453
components:
- type: Transform
- pos: 20.5,-1.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24454
- components:
- - type: Transform
- pos: 20.5,-0.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24455
- components:
- - type: Transform
- pos: 20.5,0.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24456
- components:
- - type: Transform
- pos: 21.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,1.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24454
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-0.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,0.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24456
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-0.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 24457
components:
- type: Transform
pos: 21.5,0.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24458
components:
- type: Transform
pos: 21.5,1.5
parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24459
- components:
- - type: Transform
- pos: 20.5,1.5
- parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24460
components:
- type: Transform
- pos: 20.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -102102,28 +104633,27 @@ entities:
pos: 21.5,2.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24465
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-10.5
+ pos: 21.5,-6.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24466
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24467
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -102131,146 +104661,95 @@ entities:
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 28.5,-10.5
+ pos: 24.5,-1.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24469
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24470
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,-2.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24471
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24472
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 25.5,-9.5
+ pos: 23.5,-4.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24473
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 26.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24474
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24475
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24478
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-9.5
+ pos: 24.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24479
+ - uid: 24474
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24475
+ components:
+ - type: Transform
+ pos: 26.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24476
+ components:
+ - type: Transform
+ pos: 26.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24477
+ components:
+ - type: Transform
+ pos: 26.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24480
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24481
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-7.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24482
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-7.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24483
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-10.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24484
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-22.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24485
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-22.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24486
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24487
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-4.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24488
components:
- type: Transform
@@ -102473,13 +104952,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24524
- components:
- - type: Transform
- pos: 25.5,-18.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24525
components:
- type: Transform
@@ -102700,10 +105172,11 @@ entities:
- uid: 24560
components:
- type: Transform
- pos: 35.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-19.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24561
components:
- type: Transform
@@ -102823,6 +105296,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24584
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-19.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24589
components:
- type: Transform
@@ -102980,30 +105461,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24616
+ - uid: 24618
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-23.5
+ pos: 36.5,-41.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24617
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,-23.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24619
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,-22.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24620
components:
- type: Transform
@@ -103031,11 +105495,10 @@ entities:
- uid: 24623
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,-23.5
+ pos: 41.5,-49.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24626
components:
- type: Transform
@@ -103055,10 +105518,11 @@ entities:
- uid: 24628
components:
- type: Transform
- pos: 39.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,-48.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24629
components:
- type: Transform
@@ -103080,45 +105544,51 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24632
+ - uid: 24637
components:
- type: Transform
- pos: 39.5,-19.5
+ pos: 43.5,-8.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24633
+ color: '#990000FF'
+ - uid: 24639
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-24.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24640
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,-22.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24641
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24642
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-21.5
+ pos: 48.5,-6.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24643
+ components:
+ - type: Transform
+ pos: 43.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-19.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-18.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24647
components:
- type: Transform
@@ -103257,13 +105727,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24675
- components:
- - type: Transform
- pos: 25.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24676
components:
- type: Transform
@@ -103400,14 +105863,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24702
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-33.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24703
components:
- type: Transform
@@ -103419,11 +105874,33 @@ entities:
- uid: 24704
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-33.5
+ pos: 21.5,-9.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24705
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24711
+ components:
+ - type: Transform
+ pos: 25.5,-17.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24713
components:
- type: Transform
@@ -103448,14 +105925,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24716
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24717
components:
- type: Transform
@@ -103527,13 +105996,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24729
- components:
- - type: Transform
- pos: 35.5,-28.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24730
components:
- type: Transform
@@ -103765,8 +106227,7 @@ entities:
- uid: 24771
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-40.5
+ pos: 25.5,-28.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -103786,11 +106247,11 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24774
+ - uid: 24778
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: 43.5,-5.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -103801,46 +106262,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24784
+ - uid: 24780
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-49.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24785
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-49.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24786
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-49.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24787
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-49.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24788
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-48.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,-5.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-20.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24789
components:
- type: Transform
@@ -103849,22 +106286,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24790
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24791
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24792
components:
- type: Transform
@@ -104017,6 +106438,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24814
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 24817
components:
- type: Transform
@@ -104350,16 +106779,16 @@ entities:
- uid: 24888
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-1.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24889
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-1.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -104371,13 +106800,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24893
+ - uid: 24891
components:
- type: Transform
- pos: 44.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,-1.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24894
components:
- type: Transform
@@ -104385,46 +106815,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24895
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24896
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-6.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24897
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 44.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24898
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-4.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24899
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,-4.5
+ pos: 29.5,0.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24899
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24900
components:
- type: Transform
@@ -104457,27 +106863,11 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24908
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-3.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24909
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-3.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24910
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 47.5,-3.5
+ pos: 36.5,-46.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -104505,54 +106895,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24922
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 75.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24923
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24924
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 76.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24925
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 75.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24926
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24927
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24932
components:
- type: Transform
@@ -104617,18 +106959,33 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24940
+ - uid: 24942
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,-8.5
+ pos: 0.5,-25.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24943
+ components:
+ - type: Transform
+ pos: -1.5,-25.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24950
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-17.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24951
components:
- type: Transform
- pos: 69.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-17.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -104649,7 +107006,8 @@ entities:
- uid: 24954
components:
- type: Transform
- pos: 69.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -104663,10 +107021,11 @@ entities:
- uid: 24956
components:
- type: Transform
- pos: 69.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-73.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#03FCD3FF'
- uid: 24957
components:
- type: Transform
@@ -104699,11 +107058,11 @@ entities:
- uid: 24963
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 68.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#03FCD3FF'
- uid: 24964
components:
- type: Transform
@@ -104728,6 +107087,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24973
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-82.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 25006
components:
- type: Transform
@@ -104890,13 +107257,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25046
- components:
- - type: Transform
- pos: 66.5,-24.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25047
components:
- type: Transform
@@ -104929,14 +107289,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25051
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-22.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25052
components:
- type: Transform
@@ -105009,22 +107361,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25063
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,-22.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25064
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,-22.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25067
components:
- type: Transform
@@ -105041,21 +107377,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25074
- components:
- - type: Transform
- pos: 66.5,-25.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25077
+ - uid: 25072
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 66.5,-26.5
+ pos: 1.5,-16.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 25078
components:
- type: Transform
@@ -105119,13 +107448,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25087
- components:
- - type: Transform
- pos: 66.5,-28.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25088
components:
- type: Transform
@@ -105133,13 +107455,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25089
- components:
- - type: Transform
- pos: 66.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25090
components:
- type: Transform
@@ -105147,27 +107462,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25091
- components:
- - type: Transform
- pos: 66.5,-30.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25092
- components:
- - type: Transform
- pos: 65.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25093
- components:
- - type: Transform
- pos: 66.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25095
components:
- type: Transform
@@ -105427,11 +107721,10 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25147
+ - uid: 25146
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-33.5
+ pos: 68.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -105499,14 +107792,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25158
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-34.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25159
components:
- type: Transform
@@ -105523,13 +107808,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25161
- components:
- - type: Transform
- pos: 66.5,-35.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25162
components:
- type: Transform
@@ -105537,13 +107815,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25163
- components:
- - type: Transform
- pos: 66.5,-36.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25172
components:
- type: Transform
@@ -105560,14 +107831,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25174
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,-39.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25175
components:
- type: Transform
@@ -105608,14 +107871,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25181
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,-46.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25182
components:
- type: Transform
@@ -105624,78 +107879,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25183
+ - uid: 25187
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-9.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25184
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-38.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25185
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-39.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25186
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25188
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-42.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25189
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-43.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25190
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-44.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25192
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-46.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25193
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-47.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 25194
components:
- type: Transform
@@ -105704,22 +107895,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25195
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-48.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25196
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-49.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25197
components:
- type: Transform
@@ -105736,38 +107911,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25201
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-51.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25202
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-51.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25203
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,-51.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25204
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-50.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25205
components:
- type: Transform
@@ -105776,14 +107919,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25208
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25209
components:
- type: Transform
@@ -105800,14 +107935,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25211
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25212
components:
- type: Transform
@@ -105816,14 +107943,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25213
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25214
components:
- type: Transform
@@ -105832,14 +107951,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25215
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25216
components:
- type: Transform
@@ -105848,14 +107959,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25217
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25218
components:
- type: Transform
@@ -105864,58 +107967,18 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25219
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25220
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25221
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25222
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,-40.5
+ pos: 14.5,-79.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#947507FF'
- uid: 25227
components:
- type: Transform
- pos: 58.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25245
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25246
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,-40.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -105927,38 +107990,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25248
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25249
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25250
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25251
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25252
components:
- type: Transform
@@ -107025,14 +109056,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25453
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,16.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25454
components:
- type: Transform
@@ -107065,14 +109088,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25458
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,16.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25459
components:
- type: Transform
@@ -107249,14 +109264,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25495
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,19.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25496
components:
- type: Transform
@@ -107321,22 +109328,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25505
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,21.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25506
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,21.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25507
components:
- type: Transform
@@ -108374,6 +110365,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 25784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 25785
components:
- type: Transform
@@ -108382,6 +110381,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 25786
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 25788
components:
- type: Transform
@@ -108398,14 +110405,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25790
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,34.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25791
components:
- type: Transform
@@ -108565,14 +110564,29 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25966
+ - uid: 25988
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-79.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 26018
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-80.5
+ pos: -2.5,-16.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#990000FF'
+ - uid: 26019
+ components:
+ - type: Transform
+ pos: 70.5,-26.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 26041
components:
- type: Transform
@@ -108612,14 +110626,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 26082
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 26089
components:
- type: Transform
@@ -108628,6 +110634,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 26383
+ components:
+ - type: Transform
+ pos: 70.5,-27.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 26621
components:
- type: Transform
@@ -108636,6 +110657,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 26646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-15.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-15.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 26676
components:
- type: Transform
@@ -108660,22 +110697,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26679
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-70.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26680
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 26681
components:
- type: Transform
@@ -108700,22 +110721,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26684
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26685
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 26686
components:
- type: Transform
@@ -108748,492 +110753,549 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26690
+ - uid: 26692
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-73.5
+ pos: 29.5,-77.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 26696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26691
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26921
+ - uid: 26712
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 28.5,-81.5
+ pos: 23.5,-81.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26922
+ color: '#03FCD3FF'
+ - uid: 26802
+ components:
+ - type: Transform
+ pos: 14.5,-82.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 26803
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 28.5,-82.5
+ pos: 28.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26923
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-83.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26924
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26926
- components:
- - type: Transform
- pos: 28.5,-86.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26927
- components:
- - type: Transform
- pos: 28.5,-87.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#03FCD3FF'
- uid: 26928
components:
- type: Transform
- pos: 28.5,-88.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26929
- components:
- - type: Transform
- pos: 28.5,-89.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26930
- components:
- - type: Transform
- pos: 28.5,-90.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26933
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-93.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26934
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-94.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26935
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-95.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26936
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-96.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26937
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-97.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26938
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-98.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26939
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-99.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26940
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-100.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,10.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 26941
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-101.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-80.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26942
+ color: '#947507FF'
+ - uid: 26958
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 28.5,-102.5
+ pos: 25.5,10.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26943
+ color: '#990000FF'
+ - uid: 26966
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26998
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 28.5,-103.5
+ pos: 61.5,-7.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26944
+ color: '#990000FF'
+ - uid: 27016
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27017
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27018
+ components:
+ - type: Transform
+ pos: 55.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27024
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 28.5,-104.5
+ pos: 15.5,-81.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27157
+ components:
+ - type: Transform
+ pos: 54.5,-13.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27158
+ components:
+ - type: Transform
+ pos: 54.5,-15.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27159
+ components:
+ - type: Transform
+ pos: 54.5,-14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27160
+ components:
+ - type: Transform
+ pos: 54.5,-16.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27161
+ components:
+ - type: Transform
+ pos: 73.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27162
+ components:
+ - type: Transform
+ pos: 73.5,-24.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27163
+ components:
+ - type: Transform
+ pos: 70.5,-28.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26945
+ - uid: 27164
+ components:
+ - type: Transform
+ pos: 73.5,-23.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27170
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 28.5,-105.5
+ pos: -20.5,-75.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26947
+ - uid: 27171
components:
- type: Transform
- pos: 28.5,-107.5
+ pos: -26.5,-74.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26948
+ - uid: 27196
components:
- type: Transform
- pos: 28.5,-108.5
+ rot: 3.141592653589793 rad
+ pos: 56.5,-38.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26952
+ - uid: 27200
+ components:
+ - type: Transform
+ pos: 73.5,-28.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27203
+ components:
+ - type: Transform
+ pos: 70.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27208
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27209
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 27.5,-91.5
+ pos: -25.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26953
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-91.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26954
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-91.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26955
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-91.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26956
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-91.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26957
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-91.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27179
- components:
- - type: Transform
- pos: 22.5,-92.5
- parent: 8364
- uid: 27258
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-79.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27289
+ - uid: 27277
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-78.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-75.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27290
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-77.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 27307
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-76.5
+ pos: 73.5,-26.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 27308
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-75.5
+ pos: 73.5,-25.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27311
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 27380
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: 72.5,-35.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 27382
+ components:
+ - type: Transform
+ pos: 52.5,-15.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27383
+ components:
+ - type: Transform
+ pos: 73.5,-27.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27384
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,-35.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27389
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27406
+ components:
+ - type: Transform
+ pos: 54.5,-17.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 27413
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27418
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-70.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27425
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-71.5
+ pos: 52.5,-16.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 27426
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-69.5
+ rot: 1.5707963267948966 rad
+ pos: 55.5,-36.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 27427
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-35.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 27486
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-68.5
+ rot: 1.5707963267948966 rad
+ pos: 53.5,-34.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27529
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27530
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27531
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27532
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 27548
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 27549
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 20.5,-68.5
+ pos: -21.5,-75.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 27550
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-68.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27552
+ - uid: 27650
+ components:
+ - type: Transform
+ pos: 52.5,-17.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27762
+ components:
+ - type: Transform
+ pos: 14.5,-80.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 27847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27848
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27938
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-3.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27940
+ components:
+ - type: Transform
+ pos: 48.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,-25.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27950
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 18.5,-68.5
+ pos: 26.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27564
+ - uid: 27951
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 14.5,-68.5
+ pos: 35.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27618
+ - uid: 27952
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 13.5,-68.5
+ pos: 34.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27619
+ - uid: 27953
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 12.5,-68.5
+ pos: 33.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27620
+ - uid: 27954
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 11.5,-68.5
+ pos: 34.5,-28.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27621
+ color: '#990000FF'
+ - uid: 27955
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 10.5,-68.5
+ pos: 33.5,-28.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27622
+ color: '#990000FF'
+ - uid: 27956
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 21.5,-68.5
+ pos: 32.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27623
+ - uid: 27957
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 17.5,-68.5
+ pos: 31.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27624
+ - uid: 27975
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28196
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 15.5,-68.5
+ pos: 6.5,-31.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27625
+ color: '#990000FF'
+ - uid: 28219
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-55.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28225
+ components:
+ - type: Transform
+ pos: -12.5,-54.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 28226
+ components:
+ - type: Transform
+ pos: -12.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28228
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-54.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-54.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeTJunction
entities:
- uid: 1
@@ -109250,6 +111312,27 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 834
+ components:
+ - type: Transform
+ pos: 72.5,-22.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 844
+ components:
+ - type: Transform
+ pos: 60.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 849
+ components:
+ - type: Transform
+ pos: 2.5,21.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 953
components:
- type: Transform
@@ -109273,14 +111356,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 3860
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 3998
components:
- type: Transform
@@ -109297,14 +111372,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 4052
+ - uid: 4110
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 8.5,-74.5
+ pos: 15.5,-71.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#947507FF'
- uid: 4145
components:
- type: Transform
@@ -109312,44 +111387,86 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 4173
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-80.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4485
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4541
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-78.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 5240
+ - uid: 4260
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 13.5,-78.5
+ pos: 21.5,-78.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 4327
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-50.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 4462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4538
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,13.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4549
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-22.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,-46.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 5261
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 43.5,-39.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,-5.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 7306
components:
- type: Transform
@@ -109389,6 +111506,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 8203
+ components:
+ - type: Transform
+ pos: 59.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 8524
components:
- type: Transform
@@ -109497,6 +111621,53 @@ entities:
rot: -1.5707963267948966 rad
pos: 40.5,7.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10875
+ components:
+ - type: Transform
+ pos: 68.5,1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10876
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,2.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-80.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 14087
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-78.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14125
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-67.5
+ parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 14212
@@ -109507,6 +111678,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 14486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-55.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,-80.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 15494
components:
- type: Transform
@@ -109515,14 +111718,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 15546
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-80.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 15549
components:
- type: Transform
@@ -109531,6 +111726,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 15883
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-80.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16134
components:
- type: Transform
@@ -109562,15 +111773,62 @@ entities:
pos: 11.5,-48.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 16830
+ color: '#990000FF'
+ - uid: 16624
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -7.5,-69.5
+ pos: 3.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16628
+ components:
+ - type: Transform
+ pos: -20.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16634
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16885
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-53.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16892
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-53.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-56.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16990
components:
- type: Transform
@@ -109585,22 +111843,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 17025
+ - uid: 17031
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-53.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17026
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-52.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17042
components:
- type: Transform
@@ -109617,20 +111867,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 17063
+ - uid: 17062
components:
- type: Transform
- pos: 15.5,-79.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-73.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17064
- components:
- - type: Transform
- pos: 19.5,-71.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
+ color: '#990000FF'
- uid: 17112
components:
- type: Transform
@@ -109646,14 +111890,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 17149
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-65.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17160
components:
- type: Transform
@@ -109662,22 +111898,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 17183
+ - uid: 17190
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-69.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17221
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-75.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- uid: 17261
components:
- type: Transform
@@ -109700,14 +111928,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17467
+ - uid: 17468
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-67.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-31.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 17559
components:
- type: Transform
@@ -109726,8 +111954,14 @@ entities:
- uid: 17570
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-75.5
+ pos: 7.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17589
+ components:
+ - type: Transform
+ pos: 23.5,-12.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -109738,6 +111972,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17592
+ components:
+ - type: Transform
+ pos: 54.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17605
components:
- type: Transform
@@ -109745,19 +111994,72 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17673
+ - uid: 17607
+ components:
+ - type: Transform
+ pos: 52.5,-14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17661
+ components:
+ - type: Transform
+ pos: 38.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17662
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,-85.5
+ pos: 21.5,-14.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17870
+ color: '#0055CCFF'
+ - uid: 17671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17673
+ components:
+ - type: Transform
+ pos: 69.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,-14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17766
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 28.5,-33.5
+ pos: 81.5,-6.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-10.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17870
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-6.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -109769,13 +112071,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18735
+ - uid: 18395
components:
- type: Transform
- pos: 7.5,-65.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-34.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,-10.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 19101
components:
- type: Transform
@@ -109784,10 +112095,43 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20185
+ - uid: 19580
components:
- type: Transform
- pos: 76.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20050
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-9.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -109807,6 +112151,20 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 20280
+ components:
+ - type: Transform
+ pos: 67.5,-22.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20327
+ components:
+ - type: Transform
+ pos: 73.5,-22.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 20884
components:
- type: Transform
@@ -109822,6 +112180,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 21365
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,-40.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,-43.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21377
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 21383
components:
- type: Transform
@@ -109830,19 +112220,67 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 22556
+ - uid: 21385
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 76.5,-12.5
+ pos: 69.5,-52.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 22557
+ color: '#0055CCFF'
+ - uid: 21486
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 78.5,-12.5
+ pos: 20.5,-24.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21525
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-25.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21579
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,-38.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22540
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,-44.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22666
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,-22.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-14.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -109861,6 +112299,29 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 22970
+ components:
+ - type: Transform
+ pos: -59.5,0.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-53.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23011
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,-14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23017
components:
- type: Transform
@@ -109917,44 +112378,61 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23069
+ - uid: 23121
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-55.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-13.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23070
+ - uid: 23124
components:
- type: Transform
- pos: -7.5,-56.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-22.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23071
+ - uid: 23125
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-55.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23182
- components:
- - type: Transform
- pos: 0.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: 67.5,-27.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23183
+ - uid: 23132
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -1.5,-67.5
+ pos: -6.5,-74.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23186
+ components:
+ - type: Transform
+ pos: 18.5,-79.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 23202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-56.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 23228
components:
- type: Transform
@@ -109963,13 +112441,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23252
- components:
- - type: Transform
- pos: -13.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23271
components:
- type: Transform
@@ -110171,21 +112642,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23407
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,0.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23415
- components:
- - type: Transform
- pos: -59.5,-4.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23423
components:
- type: Transform
@@ -110305,33 +112761,11 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23533
- components:
- - type: Transform
- pos: -2.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23536
- components:
- - type: Transform
- pos: 5.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23553
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23558
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,-5.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -110566,13 +113000,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23721
- components:
- - type: Transform
- pos: 0.5,19.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23728
components:
- type: Transform
@@ -110628,13 +113055,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23772
- components:
- - type: Transform
- pos: 4.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23782
components:
- type: Transform
@@ -110657,13 +113077,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23797
- components:
- - type: Transform
- pos: 31.5,-12.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23802
components:
- type: Transform
@@ -110671,6 +113084,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 23804
+ components:
+ - type: Transform
+ pos: -4.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 23805
components:
- type: Transform
@@ -110703,6 +113123,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23832
+ components:
+ - type: Transform
+ pos: 4.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23835
components:
- type: Transform
@@ -110741,14 +113168,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23856
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23860
components:
- type: Transform
@@ -110778,53 +113197,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23885
- components:
- - type: Transform
- pos: 65.5,-12.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23886
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 67.5,-14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23907
+ - uid: 23902
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 78.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23911
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 76.5,-9.5
+ pos: 67.5,-31.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23928
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-27.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23929
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-26.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23957
components:
- type: Transform
@@ -110927,13 +113307,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24162
- components:
- - type: Transform
- pos: -1.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24164
components:
- type: Transform
@@ -110949,13 +113322,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24173
- components:
- - type: Transform
- pos: 0.5,-6.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24174
components:
- type: Transform
@@ -110964,14 +113330,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24198
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-13.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24199
components:
- type: Transform
@@ -111155,31 +113513,88 @@ entities:
- uid: 24428
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-10.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24430
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 47.5,-2.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24433
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,31.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24478
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,-10.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24479
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24439
+ - uid: 24481
components:
- type: Transform
- pos: 24.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-18.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,-22.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-23.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-24.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-23.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -111202,8 +113617,8 @@ entities:
- uid: 24523
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-19.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -111254,6 +113669,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24598
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24611
components:
- type: Transform
@@ -111262,19 +113685,43 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24618
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,-23.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24637
+ - uid: 24616
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 40.5,-23.5
+ pos: 35.5,-28.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24617
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24636
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -111282,7 +113729,7 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 25.5,-28.5
+ pos: 15.5,34.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -111309,6 +113756,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24702
+ components:
+ - type: Transform
+ pos: 26.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24716
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-23.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 24739
components:
- type: Transform
@@ -111349,14 +113811,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24783
+ - uid: 24786
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-18.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24821
components:
- type: Transform
@@ -111403,37 +113865,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24891
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24892
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24928
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24929
- components:
- - type: Transform
- pos: 73.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25026
components:
- type: Transform
@@ -111450,14 +113881,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25041
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-22.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25042
components:
- type: Transform
@@ -111466,30 +113889,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25045
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-23.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25054
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 70.5,-24.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25055
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 70.5,-22.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25073
components:
- type: Transform
@@ -111506,14 +113905,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25076
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,-27.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25117
components:
- type: Transform
@@ -111552,22 +113943,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25146
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-32.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25179
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25191
components:
- type: Transform
@@ -111576,6 +113951,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 25232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,-14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25246
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 25344
components:
- type: Transform
@@ -111799,58 +114190,73 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26673
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26674
- components:
- - type: Transform
- pos: -6.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26675
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26920
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-80.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26925
+ - uid: 26945
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 28.5,-85.5
+ pos: -2.5,-22.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26932
+ color: '#990000FF'
+ - uid: 26975
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 28.5,-92.5
+ pos: -20.5,-74.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26946
+ - uid: 26986
+ components:
+ - type: Transform
+ pos: 31.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27168
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-75.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27554
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27564
+ components:
+ - type: Transform
+ pos: -12.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27942
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28217
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 28.5,-106.5
+ pos: -14.5,-53.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28220
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-53.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -111873,7 +114279,7 @@ entities:
pos: 39.5,8.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 3798
components:
- type: Transform
@@ -111892,6 +114298,20 @@ entities:
rot: 3.141592653589793 rad
pos: 1.5,-47.5
parent: 8364
+ - uid: 4259
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-75.5
+ parent: 8364
+ - uid: 4625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-78.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 5596
components:
- type: Transform
@@ -111911,8 +114331,23 @@ entities:
rot: 1.5707963267948966 rad
pos: 39.5,7.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-78.5
+ parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14546
+ components:
+ - type: Transform
+ pos: 21.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 15045
components:
- type: Transform
@@ -111958,6 +114393,12 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 16153
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-74.5
+ parent: 8364
- uid: 16330
components:
- type: Transform
@@ -111971,22 +114412,20 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 17571
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-73.5
- parent: 8364
- uid: 18298
components:
- type: Transform
pos: 43.5,-38.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18299
components:
- type: Transform
pos: 44.5,-38.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 19162
components:
- type: Transform
@@ -112006,38 +114445,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 86.5,-48.5
parent: 8364
- - uid: 20069
- components:
- - type: Transform
- pos: 18.5,-76.5
- parent: 8364
- - uid: 20070
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-75.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 20124
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-75.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20135
- components:
- - type: Transform
- pos: 12.5,-76.5
- parent: 8364
- - uid: 20136
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-73.5
- parent: 8364
- uid: 20802
components:
- type: Transform
@@ -112110,29 +114517,13 @@ entities:
rot: -1.5707963267948966 rad
pos: 78.5,-39.5
parent: 8364
- - uid: 27178
+ - uid: 25041
components:
- type: Transform
- pos: 22.5,-91.5
- parent: 8364
- - uid: 27551
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-72.5
- parent: 8364
- - uid: 27553
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-71.5
- parent: 8364
- - uid: 27554
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-71.5
+ pos: 15.5,-76.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPressurePump
entities:
- uid: 3993
@@ -112157,6 +114548,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
@@ -112178,7 +114581,7 @@ entities:
pos: 40.5,6.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 13813
components:
- type: Transform
@@ -112278,20 +114681,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 20066
- components:
- - type: Transform
- pos: 12.5,-77.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20068
- components:
- - type: Transform
- pos: 18.5,-77.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 22840
components:
- type: Transform
@@ -112305,18 +114694,15 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25004
+ - uid: 23247
components:
+ - type: MetaData
+ name: TEG Supply
- 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
+ pos: 17.5,-58.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 26040
components:
- type: Transform
@@ -112324,16 +114710,21 @@ entities:
pos: 33.5,-34.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 26081
+ color: '#0055CCFF'
+ - uid: 27140
components:
- - type: MetaData
- name: Mix to TEG
- type: Transform
- pos: 17.5,-57.5
+ pos: 15.5,-77.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#990000FF'
+ - uid: 27152
+ components:
+ - type: Transform
+ pos: 21.5,-77.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- proto: GasThermoMachineFreezer
entities:
- uid: 3805
@@ -112354,22 +114745,11 @@ entities:
- type: Transform
pos: 38.5,0.5
parent: 8364
- - uid: 20859
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-73.5
- parent: 8364
- uid: 21274
components:
- type: Transform
pos: 57.5,-29.5
parent: 8364
- - uid: 21406
- components:
- - type: Transform
- pos: 70.5,-47.5
- parent: 8364
- uid: 22565
components:
- type: Transform
@@ -112380,6 +114760,18 @@ entities:
- type: Transform
pos: 18.5,-50.5
parent: 8364
+ - uid: 23169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-47.5
+ parent: 8364
+ - uid: 23177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-75.5
+ parent: 8364
- proto: GasThermoMachineHeater
entities:
- uid: 3803
@@ -112388,6 +114780,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 9.5,-41.5
parent: 8364
+ - uid: 12428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-74.5
+ parent: 8364
- uid: 17695
components:
- type: Transform
@@ -112398,24 +114796,65 @@ entities:
- type: Transform
pos: 12.5,-51.5
parent: 8364
- - uid: 20858
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-73.5
- parent: 8364
- - uid: 21405
+ - uid: 23171
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 74.5,-47.5
parent: 8364
- proto: GasValve
entities:
- - uid: 17062
+ - uid: 4231
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 20.5,-71.5
+ pos: 20.5,-80.5
+ parent: 8364
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 13407
+ components:
+ - type: Transform
+ pos: 23.5,-80.5
+ parent: 8364
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 15721
+ components:
+ - type: Transform
+ pos: 19.5,-78.5
+ parent: 8364
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 16550
+ components:
+ - type: Transform
+ pos: 17.5,-78.5
+ parent: 8364
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 16633
+ components:
+ - type: Transform
+ pos: 13.5,-80.5
+ parent: 8364
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-71.5
parent: 8364
- type: GasValve
open: False
@@ -112429,66 +114868,6 @@ entities:
parent: 8364
- type: GasValve
open: False
- - uid: 17707
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-78.5
- parent: 8364
- - type: GasValve
- open: False
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17719
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-78.5
- parent: 8364
- - type: GasValve
- open: False
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17766
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-81.5
- parent: 8364
- - type: GasValve
- open: False
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 17775
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-81.5
- parent: 8364
- - type: GasValve
- open: False
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 17781
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-81.5
- parent: 8364
- - type: GasValve
- open: False
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18758
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-81.5
- parent: 8364
- - type: GasValve
- open: False
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 22843
components:
- type: MetaData
@@ -112499,20 +114878,77 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 25002
+ - uid: 23185
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 77.5,-41.5
- parent: 8364
- - uid: 25003
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-39.5
+ pos: 16.5,-80.5
parent: 8364
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasVentPump
entities:
+ - uid: 747
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-70.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22588
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 824
+ components:
+ - type: Transform
+ pos: 29.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3860
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-22.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28154
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4404
+ components:
+ - type: Transform
+ pos: 79.5,-51.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22954
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4461
+ components:
+ - type: Transform
+ pos: 69.5,-51.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22954
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4536
+ components:
+ - type: Transform
+ pos: 81.5,-2.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 4546
components:
- type: Transform
@@ -112521,22 +114957,68 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5382
+ - uid: 5463
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-10.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5462
- components:
- - type: Transform
- pos: -15.5,-68.5
+ pos: 65.5,-7.5
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 26707
+ - 22699
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5735
+ components:
+ - type: Transform
+ pos: 70.5,4.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22701
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-11.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 5769
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,-6.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22694
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,-10.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22694
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7133
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-5.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22703
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 7282
@@ -112563,6 +115045,17 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8149
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,10.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8150
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 8909
components:
- type: Transform
@@ -112610,6 +115103,49 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 11761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,-40.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14124
+ components:
+ - type: Transform
+ pos: -6.5,-69.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 17159
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14501
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 18773
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14502
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-73.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26908
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 14562
components:
- type: Transform
@@ -112618,14 +115154,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 15344
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-21.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 16155
components:
- type: Transform
@@ -112634,7 +115162,7 @@ entities:
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 22970
+ - 19344
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 16399
@@ -112645,6 +115173,49 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-0.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16882
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 17778
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16918
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17043
+ components:
+ - type: Transform
+ pos: 6.5,-69.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 17159
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17123
components:
- type: Transform
@@ -112653,13 +115224,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17188
- components:
- - type: Transform
- pos: -1.5,-66.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 17520
components:
- type: Transform
@@ -112668,6 +115232,16 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17600
+ components:
+ - type: Transform
+ pos: 57.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18741
components:
- type: Transform
@@ -112684,6 +115258,46 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 19169
+ components:
+ - type: Transform
+ pos: -59.5,-3.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19952
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-35.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20029
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22612
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20068
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8150
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 22458
components:
- type: Transform
@@ -112691,12 +115305,24 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22696
+ - uid: 22731
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 79.5,-12.5
+ pos: 58.5,0.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22703
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22748
+ components:
+ - type: Transform
+ pos: 23.5,18.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8249
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 22950
@@ -112714,49 +115340,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 23011
- components:
- - type: Transform
- pos: 9.5,-52.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23068
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-56.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23089
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-55.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23090
components:
- type: Transform
pos: -7.5,-51.5
parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23091
- components:
- - type: Transform
- pos: -6.5,-54.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23121
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-66.5
- parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 23146
@@ -112767,23 +115358,35 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23179
+ - uid: 23218
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23261
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-69.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,-30.5
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 22588
+ - 22589
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23258
+ components:
+ - type: Transform
+ pos: 0.5,20.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23938
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23259
+ components:
+ - type: Transform
+ pos: -6.5,-73.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23133
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 23279
@@ -112818,20 +115421,35 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23946
+ - uid: 23876
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-26.5
+ pos: 36.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23947
+ - uid: 23879
+ components:
+ - type: Transform
+ pos: 71.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23905
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -2.5,-30.5
+ pos: -4.5,16.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25517
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 23949
@@ -112919,14 +115537,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24082
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-11.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24085
components:
- type: Transform
@@ -112943,12 +115553,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24096
+ - uid: 24092
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-35.5
+ pos: 76.5,-37.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24098
@@ -112989,14 +115601,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24187
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-11.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24216
components:
- type: Transform
@@ -113005,14 +115609,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24217
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-13.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24220
components:
- type: Transform
@@ -113045,19 +115641,15 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24246
- components:
- - type: Transform
- pos: 78.5,-2.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24291
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 6.5,6.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24292
@@ -113066,6 +115658,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,9.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24293
@@ -113074,6 +115669,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,12.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24294
@@ -113082,6 +115680,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,15.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24299
@@ -113135,6 +115736,9 @@ entities:
- type: Transform
pos: 12.5,14.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24370
@@ -113142,6 +115746,9 @@ entities:
- type: Transform
pos: 16.5,14.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24376
@@ -113149,14 +115756,9 @@ entities:
- type: Transform
pos: 19.5,12.5
parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24400
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,14.5
- parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8150
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24419
@@ -113175,12 +115777,26 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24463
+ - uid: 24444
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 22.5,3.5
+ pos: 28.5,-10.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,5.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24493
@@ -113205,6 +115821,17 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24572
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,-19.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3087
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24583
components:
- type: Transform
@@ -113213,47 +115840,56 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24584
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-17.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24585
- components:
- - type: Transform
- pos: 29.5,-13.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24588
components:
- type: Transform
pos: 29.5,-24.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24599
+ - uid: 24603
components:
- type: Transform
- pos: 19.5,-20.5
+ pos: 19.5,-33.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25915
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24643
+ - uid: 24634
components:
- type: Transform
- pos: 42.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 35.5,-47.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 24632
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24645
+ - uid: 24638
components:
- type: Transform
- pos: 39.5,-18.5
+ pos: 47.5,-7.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22655
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-17.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22661
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24671
@@ -113271,14 +115907,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24705
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-28.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24706
components:
- type: Transform
@@ -113287,14 +115915,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24707
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-34.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24745
components:
- type: Transform
@@ -113311,14 +115931,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24775
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24776
components:
- type: Transform
@@ -113327,6 +115939,39 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-18.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22665
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-29.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 291
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-42.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 24812
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24811
components:
- type: Transform
@@ -113335,22 +115980,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24812
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-46.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24813
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-49.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24831
components:
- type: Transform
@@ -113397,11 +116026,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24914
+ - uid: 24893
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-8.5
+ pos: 39.5,-17.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3087
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24905
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,-5.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -113412,13 +116051,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24921
- components:
- - type: Transform
- pos: 67.5,-13.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24931
components:
- type: Transform
@@ -113463,6 +116095,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 54.5,-26.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27881
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 25132
@@ -113495,14 +116130,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 62.5,-35.5
parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25165
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,-35.5
- parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23899
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 25168
@@ -113511,6 +116141,9 @@ entities:
rot: -1.5707963267948966 rad
pos: 66.5,-33.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4328
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 25170
@@ -113519,37 +116152,9 @@ entities:
rot: -1.5707963267948966 rad
pos: 66.5,-25.5
parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25206
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,-51.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25224
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25242
- components:
- - type: Transform
- pos: 56.5,-39.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25260
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,-44.5
- parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4328
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 25276
@@ -113592,26 +116197,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25315
- components:
- - type: Transform
- pos: -59.5,1.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25325
components:
- type: Transform
pos: -60.5,4.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 19773
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 25336
@@ -113628,6 +116221,9 @@ entities:
rot: 3.141592653589793 rad
pos: -46.5,-11.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 19344
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 25367
@@ -113636,6 +116232,9 @@ entities:
rot: 1.5707963267948966 rad
pos: -43.5,-5.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 19344
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 25376
@@ -113729,14 +116328,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25486
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,15.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25488
components:
- type: Transform
@@ -113891,12 +116482,36 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26692
+ - uid: 25859
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,-44.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26051
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,-75.5
+ pos: -26.5,-75.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25225
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26691
+ components:
+ - type: Transform
+ pos: 62.5,-6.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22703
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 26693
@@ -113915,71 +116530,278 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26949
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-109.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26950
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-106.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26951
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-92.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26958
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-91.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 26959
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-91.5
+ pos: 1.5,-14.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3656
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26960
+ - uid: 26973
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-18.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22706
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26987
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 29.5,-85.5
+ pos: 66.5,-46.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26961
+ - uid: 27197
components:
- type: Transform
- pos: 28.5,-79.5
+ rot: 3.141592653589793 rad
+ pos: 60.5,-40.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27150
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27233
+ - uid: 27210
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-76.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25225
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27311
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-35.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22721
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-30.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22715
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27531
+ components:
+ - type: Transform
+ pos: -14.5,-69.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26707
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27879
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 23.5,-7.5
+ pos: 54.5,-36.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27150
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,34.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 24766
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-4.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22655
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-26.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27964
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-23.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27959
+ components:
+ - type: Transform
+ pos: 30.5,-28.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22670
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27966
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-1.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27992
+ components:
+ - type: Transform
+ pos: 21.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28205
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-30.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28223
+ components:
+ - type: Transform
+ pos: -12.5,-51.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28224
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,-55.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
- type: AtmosPipeColor
color: '#0055CCFF'
- proto: GasVentScrubber
entities:
+ - uid: 279
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,-10.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-74.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26704
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,-51.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22954
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,-10.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22694
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1416
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-0.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4403
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,-51.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22954
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 4547
components:
- type: Transform
@@ -113988,22 +116810,57 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 5383
+ - uid: 4557
components:
- type: Transform
- pos: 57.5,-7.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5463
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-22.5
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 26707
+ - 28154
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4565
+ components:
+ - type: Transform
+ pos: -21.5,-11.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 5769
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5730
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-10.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22699
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5748
+ components:
+ - type: Transform
+ pos: 71.5,4.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22701
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7098
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,-5.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22703
- type: AtmosPipeColor
color: '#990000FF'
- uid: 7284
@@ -114035,6 +116892,16 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 8142
+ components:
+ - type: Transform
+ pos: 53.5,0.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22703
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 8953
components:
- type: Transform
@@ -114051,6 +116918,17 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-69.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 17159
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 14226
components:
- type: Transform
@@ -114059,26 +116937,29 @@ entities:
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 22970
+ - 19344
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15347
+ - uid: 15346
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -2.5,-21.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16789
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-68.5
+ pos: 66.5,-38.5
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 22588
+ - 4329
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16626
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-67.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 17159
- type: AtmosPipeColor
color: '#990000FF'
- uid: 16832
@@ -114088,6 +116969,17 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 17778
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17122
components:
- type: Transform
@@ -114096,12 +116988,36 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 17187
+ - uid: 17208
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,-67.5
+ pos: -25.5,-70.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22588
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17571
+ components:
+ - type: Transform
+ pos: 5.5,-30.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17602
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
- type: AtmosPipeColor
color: '#990000FF'
- uid: 17630
@@ -114111,11 +117027,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 19123
+ - uid: 20066
components:
- type: Transform
- pos: 28.5,-32.5
+ pos: 27.5,10.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8150
- type: AtmosPipeColor
color: '#990000FF'
- uid: 20132
@@ -114126,6 +117045,61 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 20289
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,-23.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22715
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21228
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-31.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4328
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,-23.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4328
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21996
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,16.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25517
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22003
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-73.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23133
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22459
components:
- type: Transform
@@ -114133,12 +117107,24 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 22695
+ - uid: 22690
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-12.5
+ pos: -58.5,-3.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22747
+ components:
+ - type: Transform
+ pos: 25.5,18.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8249
- type: AtmosPipeColor
color: '#990000FF'
- uid: 22778
@@ -114170,38 +117156,38 @@ entities:
- type: Transform
pos: 11.5,-47.5
parent: 8364
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 23010
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-52.5
- parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23067
+ - uid: 23071
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-57.5
+ pos: -5.5,-30.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
- type: AtmosPipeColor
color: '#990000FF'
- uid: 23086
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,-57.5
+ pos: 31.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- type: AtmosPipeColor
color: '#990000FF'
- uid: 23087
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-56.5
+ rot: 3.141592653589793 rad
+ pos: 38.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- type: AtmosPipeColor
color: '#990000FF'
- uid: 23088
@@ -114209,21 +117195,45 @@ entities:
- type: Transform
pos: -5.5,-51.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23120
+ - uid: 23089
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23122
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 8.5,-65.5
+ pos: 78.5,-6.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22694
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23123
+ components:
+ - type: Transform
+ pos: 77.5,-2.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23177
+ - uid: 23223
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-74.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-35.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -114251,19 +117261,47 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23941
+ - uid: 23316
+ components:
+ - type: Transform
+ pos: 78.5,-37.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23774
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 18773
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23856
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,-27.5
+ pos: 11.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22612
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23948
+ - uid: 23906
components:
- type: Transform
- pos: 1.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-74.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26703
- type: AtmosPipeColor
color: '#990000FF'
- uid: 23950
@@ -114343,14 +117381,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24083
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-12.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24084
components:
- type: Transform
@@ -114367,14 +117397,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24097
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-35.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24099
components:
- type: Transform
@@ -114415,14 +117437,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24188
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-11.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24219
components:
- type: Transform
@@ -114431,14 +117445,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24224
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-13.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24239
components:
- type: Transform
@@ -114463,19 +117469,15 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24245
- components:
- - type: Transform
- pos: 76.5,-2.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24295
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 6.5,14.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24296
@@ -114484,6 +117486,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,11.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24297
@@ -114492,6 +117497,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,8.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24298
@@ -114500,6 +117508,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,5.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24300
@@ -114547,6 +117558,9 @@ entities:
- type: Transform
pos: 13.5,14.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24372
@@ -114554,6 +117568,9 @@ entities:
- type: Transform
pos: 17.5,14.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24373
@@ -114570,6 +117587,9 @@ entities:
rot: 3.141592653589793 rad
pos: 19.5,9.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8150
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24401
@@ -114578,6 +117598,9 @@ entities:
rot: -1.5707963267948966 rad
pos: 29.5,9.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8150
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24421
@@ -114596,26 +117619,25 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24436
+ - uid: 24441
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 21.5,-7.5
+ pos: 18.5,-1.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24464
+ - uid: 24462
components:
- type: Transform
- pos: 20.5,3.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24494
- components:
- - type: Transform
- pos: 29.5,-1.5
+ pos: 21.5,3.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24506
@@ -114633,6 +117655,16 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24524
+ components:
+ - type: Transform
+ pos: 38.5,-17.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3087
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 24581
components:
- type: Transform
@@ -114649,20 +117681,26 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24586
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,-13.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24587
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 31.5,-24.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24599
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-33.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25915
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24610
@@ -114672,18 +117710,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24644
+ - uid: 24635
components:
- type: Transform
- pos: 41.5,-20.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24646
- components:
- - type: Transform
- pos: 38.5,-18.5
+ pos: 36.5,-47.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 24632
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24673
@@ -114710,20 +117744,26 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24711
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-33.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24712
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 27.5,-28.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 291
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-23.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24747
@@ -114750,28 +117790,26 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24778
+ - uid: 24785
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-39.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24814
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: 42.5,-18.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3087
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24815
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: 28.5,-35.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3263
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24816
@@ -114829,6 +117867,36 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24895
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24896
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-39.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 24812
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24898
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,1.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22649
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 24916
components:
- type: Transform
@@ -114836,14 +117904,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24917
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24918
components:
- type: Transform
@@ -114852,14 +117912,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24919
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,-13.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24930
components:
- type: Transform
@@ -114884,6 +117936,17 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 25054
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,-46.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 25071
components:
- type: Transform
@@ -114892,13 +117955,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25072
- components:
- - type: Transform
- pos: 70.5,-21.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25116
components:
- type: Transform
@@ -114928,6 +117984,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 54.5,-27.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27881
- type: AtmosPipeColor
color: '#990000FF'
- uid: 25143
@@ -114944,61 +118003,20 @@ entities:
rot: 1.5707963267948966 rad
pos: 62.5,-34.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23899
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25167
+ - uid: 25231
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 69.5,-34.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25169
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-32.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25171
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-23.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25207
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,-50.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25223
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-41.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25241
- components:
- - type: Transform
- pos: 58.5,-39.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25261
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,-45.5
+ pos: 5.5,-73.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26908
- type: AtmosPipeColor
color: '#990000FF'
- uid: 25290
@@ -115033,29 +118051,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25317
- components:
- - type: Transform
- pos: -58.5,-4.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25318
- components:
- - type: MetaData
- name: air scrubber
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,0.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - type: Label
- uid: 25324
components:
- type: Transform
pos: -57.5,4.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 19773
- type: AtmosPipeColor
color: '#990000FF'
- uid: 25337
@@ -115072,6 +118075,9 @@ entities:
rot: -1.5707963267948966 rad
pos: -40.5,-5.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 19344
- type: AtmosPipeColor
color: '#990000FF'
- uid: 25365
@@ -115080,6 +118086,9 @@ entities:
rot: 3.141592653589793 rad
pos: -45.5,-11.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 19344
- type: AtmosPipeColor
color: '#990000FF'
- uid: 25377
@@ -115152,14 +118161,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25479
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,15.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25480
components:
- type: Transform
@@ -115191,6 +118192,16 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 25506
+ components:
+ - type: Transform
+ pos: 73.5,-33.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22721
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 25516
components:
- type: Transform
@@ -115349,59 +118360,239 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26695
+ - uid: 25986
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-73.5
+ pos: 61.5,-6.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22703
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26696
+ - uid: 26032
components:
- type: Transform
- pos: -6.5,-72.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,-69.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26707
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26697
+ - uid: 26034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,-76.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25225
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26674
+ components:
+ - type: Transform
+ pos: -2.5,-14.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3656
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,20.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23938
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,-44.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27198
+ components:
+ - type: Transform
+ pos: 54.5,-40.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27150
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,-30.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22715
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27274
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -9.5,-73.5
+ pos: -22.5,-75.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25225
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27875
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,-34.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27150
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-18.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22706
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27936
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-7.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22655
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27939
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-4.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22655
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,-26.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27964
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-28.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22670
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27991
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28222
+ components:
+ - type: Transform
+ pos: -6.5,-55.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28230
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-55.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28231
+ components:
+ - type: Transform
+ pos: -14.5,-51.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
- type: AtmosPipeColor
color: '#990000FF'
- proto: GasVolumePump
entities:
- - uid: 4577
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 19073
- components:
- - type: Transform
- pos: 16.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 19953
+ - uid: 4204
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 14.5,-73.5
+ pos: 17.5,-74.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 20006
+ - uid: 15875
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-81.5
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-79.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 16964
+ components:
+ - type: Transform
+ pos: 19.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 23158
+ components:
+ - type: Transform
+ pos: 14.5,-72.5
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
@@ -115466,13 +118657,11 @@ entities:
parent: 8364
- proto: GravityGenerator
entities:
- - uid: 17040
+ - uid: 25226
components:
- type: Transform
- pos: -0.5,-20.5
+ pos: -24.5,-75.5
parent: 8364
- - type: PointLight
- radius: 175.75
- proto: Grille
entities:
- uid: 95
@@ -116049,11 +119238,6 @@ entities:
- type: Transform
pos: 65.5,24.5
parent: 8364
- - uid: 984
- components:
- - type: Transform
- pos: -3.5,-25.5
- parent: 8364
- uid: 996
components:
- type: Transform
@@ -116491,6 +119675,12 @@ entities:
- type: Transform
pos: 8.5,-44.5
parent: 8364
+ - uid: 1676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-82.5
+ parent: 8364
- uid: 1679
components:
- type: Transform
@@ -117423,11 +120613,6 @@ entities:
- type: Transform
pos: 63.5,-63.5
parent: 8364
- - uid: 3152
- components:
- - type: Transform
- pos: 62.5,-70.5
- parent: 8364
- uid: 3153
components:
- type: Transform
@@ -117828,36 +121013,6 @@ entities:
- type: Transform
pos: -30.5,-75.5
parent: 8364
- - uid: 3653
- components:
- - type: Transform
- pos: -27.5,-74.5
- parent: 8364
- - uid: 3654
- components:
- - type: Transform
- pos: -26.5,-74.5
- parent: 8364
- - uid: 3655
- components:
- - type: Transform
- pos: -25.5,-74.5
- parent: 8364
- - uid: 3656
- components:
- - type: Transform
- pos: -24.5,-74.5
- parent: 8364
- - uid: 3657
- components:
- - type: Transform
- pos: -23.5,-74.5
- parent: 8364
- - uid: 3695
- components:
- - type: Transform
- pos: 27.5,-71.5
- parent: 8364
- uid: 3697
components:
- type: Transform
@@ -117888,11 +121043,6 @@ entities:
- type: Transform
pos: 25.5,-62.5
parent: 8364
- - uid: 3834
- components:
- - type: Transform
- pos: 27.5,-69.5
- parent: 8364
- uid: 3845
components:
- type: Transform
@@ -118064,6 +121214,12 @@ entities:
- type: Transform
pos: -15.5,-71.5
parent: 8364
+ - uid: 4045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-82.5
+ parent: 8364
- uid: 4064
components:
- type: Transform
@@ -118199,195 +121355,207 @@ entities:
- type: Transform
pos: 9.5,-64.5
parent: 8364
- - uid: 4201
+ - uid: 4135
components:
- type: Transform
- pos: 30.5,-81.5
+ rot: 3.141592653589793 rad
+ pos: 20.5,-82.5
parent: 8364
- - uid: 4202
+ - uid: 4234
components:
- type: Transform
- pos: 30.5,-80.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,-82.5
parent: 8364
- - uid: 4204
+ - uid: 4235
components:
- type: Transform
- pos: 30.5,-78.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-94.5
parent: 8364
- - uid: 4205
+ - uid: 4236
components:
- type: Transform
- pos: 30.5,-77.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-93.5
parent: 8364
- - uid: 4206
+ - uid: 4237
components:
- type: Transform
- pos: 29.5,-77.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-92.5
parent: 8364
- - uid: 4207
+ - uid: 4238
components:
- type: Transform
- pos: 28.5,-77.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,-92.5
parent: 8364
- - uid: 4208
+ - uid: 4239
components:
- type: Transform
- pos: 27.5,-77.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,-92.5
parent: 8364
- - uid: 4209
+ - uid: 4240
components:
- type: Transform
- pos: 26.5,-77.5
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-92.5
parent: 8364
- - uid: 4210
+ - uid: 4241
components:
- type: Transform
- pos: 26.5,-78.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,-82.5
parent: 8364
- - uid: 4211
+ - uid: 4247
components:
- type: Transform
- pos: 26.5,-79.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-92.5
parent: 8364
- - uid: 4215
+ - uid: 4263
components:
- type: Transform
- pos: 26.5,-81.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-92.5
parent: 8364
- - uid: 4418
+ - uid: 4266
components:
- type: Transform
- pos: 29.5,-95.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-92.5
parent: 8364
- - uid: 4419
+ - uid: 4267
components:
- type: Transform
- pos: 29.5,-96.5
+ rot: 1.5707963267948966 rad
+ pos: 35.5,-92.5
parent: 8364
- - uid: 4420
+ - uid: 4268
components:
- type: Transform
- pos: 29.5,-97.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-92.5
parent: 8364
- - uid: 4421
+ - uid: 4270
components:
- type: Transform
- pos: 29.5,-98.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-92.5
parent: 8364
- - uid: 4422
+ - uid: 4356
components:
- type: Transform
- pos: 29.5,-99.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,-82.5
parent: 8364
- - uid: 4423
+ - uid: 4379
components:
- type: Transform
- pos: 29.5,-100.5
+ rot: 3.141592653589793 rad
+ pos: 18.5,-86.5
parent: 8364
- - uid: 4424
+ - uid: 4380
components:
- type: Transform
- pos: 29.5,-101.5
+ pos: 27.5,-79.5
+ parent: 8364
+ - uid: 4394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-92.5
+ parent: 8364
+ - uid: 4395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-92.5
+ parent: 8364
+ - uid: 4396
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-92.5
+ parent: 8364
+ - uid: 4397
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-92.5
+ parent: 8364
+ - uid: 4398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-93.5
+ parent: 8364
+ - uid: 4399
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-92.5
+ parent: 8364
+ - uid: 4400
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-92.5
+ parent: 8364
+ - uid: 4405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,-85.5
+ parent: 8364
+ - uid: 4407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,-85.5
+ parent: 8364
+ - uid: 4410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,-84.5
parent: 8364
- uid: 4425
components:
- type: Transform
- pos: 29.5,-102.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-92.5
parent: 8364
- - uid: 4426
+ - uid: 4456
components:
- type: Transform
- pos: 29.5,-103.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,-84.5
parent: 8364
- - uid: 4430
+ - uid: 4475
components:
- type: Transform
- pos: 33.5,-107.5
- parent: 8364
- - uid: 4431
- components:
- - type: Transform
- pos: 33.5,-108.5
- parent: 8364
- - uid: 4433
- components:
- - type: Transform
- pos: 27.5,-103.5
- parent: 8364
- - uid: 4434
- components:
- - type: Transform
- pos: 27.5,-102.5
- parent: 8364
- - uid: 4435
- components:
- - type: Transform
- pos: 27.5,-101.5
- parent: 8364
- - uid: 4436
- components:
- - type: Transform
- pos: 27.5,-100.5
- parent: 8364
- - uid: 4437
- components:
- - type: Transform
- pos: 27.5,-99.5
- parent: 8364
- - uid: 4438
- components:
- - type: Transform
- pos: 27.5,-98.5
- parent: 8364
- - uid: 4439
- components:
- - type: Transform
- pos: 27.5,-97.5
- parent: 8364
- - uid: 4440
- components:
- - type: Transform
- pos: 27.5,-96.5
- parent: 8364
- - uid: 4441
- components:
- - type: Transform
- pos: 27.5,-95.5
- parent: 8364
- - uid: 4442
- components:
- - type: Transform
- pos: 23.5,-108.5
- parent: 8364
- - uid: 4443
- components:
- - type: Transform
- pos: 23.5,-107.5
- parent: 8364
- - uid: 4444
- components:
- - type: Transform
- pos: 30.5,-107.5
- parent: 8364
- - uid: 4445
- components:
- - type: Transform
- pos: 29.5,-107.5
- parent: 8364
- - uid: 4446
- components:
- - type: Transform
- pos: 27.5,-107.5
- parent: 8364
- - uid: 4447
- components:
- - type: Transform
- pos: 26.5,-107.5
+ pos: 27.5,-81.5
parent: 8364
- uid: 4497
components:
- type: Transform
- pos: 26.5,-80.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-74.5
+ parent: 8364
+ - uid: 4500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-69.5
+ parent: 8364
+ - uid: 4503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-73.5
parent: 8364
- uid: 4511
components:
@@ -118544,11 +121712,6 @@ entities:
- type: Transform
pos: -21.5,-89.5
parent: 8364
- - uid: 4615
- components:
- - type: Transform
- pos: -21.5,-88.5
- parent: 8364
- uid: 4616
components:
- type: Transform
@@ -118559,91 +121722,6 @@ entities:
- type: Transform
pos: -22.5,-87.5
parent: 8364
- - uid: 4629
- components:
- - type: Transform
- pos: -19.5,-77.5
- parent: 8364
- - uid: 4630
- components:
- - type: Transform
- pos: -19.5,-78.5
- parent: 8364
- - uid: 4631
- components:
- - type: Transform
- pos: -19.5,-79.5
- parent: 8364
- - uid: 4632
- components:
- - type: Transform
- pos: -19.5,-80.5
- parent: 8364
- - uid: 4633
- components:
- - type: Transform
- pos: -19.5,-81.5
- parent: 8364
- - uid: 4634
- components:
- - type: Transform
- pos: -19.5,-82.5
- parent: 8364
- - uid: 4635
- components:
- - type: Transform
- pos: -19.5,-83.5
- parent: 8364
- - uid: 4636
- components:
- - type: Transform
- pos: -19.5,-84.5
- parent: 8364
- - uid: 4637
- components:
- - type: Transform
- pos: -20.5,-84.5
- parent: 8364
- - uid: 4638
- components:
- - type: Transform
- pos: -21.5,-84.5
- parent: 8364
- - uid: 4639
- components:
- - type: Transform
- pos: -21.5,-83.5
- parent: 8364
- - uid: 4640
- components:
- - type: Transform
- pos: -21.5,-82.5
- parent: 8364
- - uid: 4641
- components:
- - type: Transform
- pos: -21.5,-81.5
- parent: 8364
- - uid: 4642
- components:
- - type: Transform
- pos: -21.5,-80.5
- parent: 8364
- - uid: 4643
- components:
- - type: Transform
- pos: -21.5,-79.5
- parent: 8364
- - uid: 4644
- components:
- - type: Transform
- pos: -21.5,-78.5
- parent: 8364
- - uid: 4645
- components:
- - type: Transform
- pos: -21.5,-77.5
- parent: 8364
- uid: 4685
components:
- type: Transform
@@ -119194,11 +122272,6 @@ entities:
- type: Transform
pos: 1.5,42.5
parent: 8364
- - uid: 4949
- components:
- - type: Transform
- pos: 0.5,42.5
- parent: 8364
- uid: 4950
components:
- type: Transform
@@ -119224,6 +122297,12 @@ entities:
- type: Transform
pos: 20.5,34.5
parent: 8364
+ - uid: 4961
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-83.5
+ parent: 8364
- uid: 5000
components:
- type: Transform
@@ -119737,7 +122816,8 @@ entities:
- uid: 5271
components:
- type: Transform
- pos: -4.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,-82.5
parent: 8364
- uid: 5275
components:
@@ -119789,11 +122869,6 @@ entities:
- type: Transform
pos: 2.5,-20.5
parent: 8364
- - uid: 5769
- components:
- - type: Transform
- pos: 3.5,-17.5
- parent: 8364
- uid: 5778
components:
- type: Transform
@@ -119804,16 +122879,6 @@ entities:
- type: Transform
pos: -0.5,-79.5
parent: 8364
- - uid: 5882
- components:
- - type: Transform
- pos: 1.5,-23.5
- parent: 8364
- - uid: 5883
- components:
- - type: Transform
- pos: 0.5,-23.5
- parent: 8364
- uid: 5913
components:
- type: Transform
@@ -119839,11 +122904,6 @@ entities:
- type: Transform
pos: 2.5,-93.5
parent: 8364
- - uid: 6767
- components:
- - type: Transform
- pos: -5.5,-93.5
- parent: 8364
- uid: 6771
components:
- type: Transform
@@ -120520,21 +123580,28 @@ entities:
- type: Transform
pos: 17.5,-6.5
parent: 8364
- - uid: 8078
- components:
- - type: Transform
- pos: -5.5,-18.5
- parent: 8364
- - uid: 8079
- components:
- - type: Transform
- pos: -5.5,-19.5
- parent: 8364
- uid: 8107
components:
- type: Transform
pos: -14.5,-15.5
parent: 8364
+ - uid: 8117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-68.5
+ parent: 8364
+ - uid: 8121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-72.5
+ parent: 8364
+ - uid: 8144
+ components:
+ - type: Transform
+ pos: 25.5,-68.5
+ parent: 8364
- uid: 8276
components:
- type: Transform
@@ -120962,6 +124029,12 @@ entities:
- type: Transform
pos: 67.5,3.5
parent: 8364
+ - uid: 10854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,-94.5
+ parent: 8364
- uid: 10867
components:
- type: Transform
@@ -120982,11 +124055,6 @@ entities:
- type: Transform
pos: 25.5,-69.5
parent: 8364
- - uid: 11574
- components:
- - type: Transform
- pos: 25.5,-68.5
- parent: 8364
- uid: 11591
components:
- type: Transform
@@ -121142,21 +124210,16 @@ entities:
- type: Transform
pos: -2.5,-65.5
parent: 8364
- - uid: 15343
- components:
- - type: Transform
- pos: -1.5,-23.5
- parent: 8364
- - uid: 15346
- components:
- - type: Transform
- pos: -2.5,-23.5
- parent: 8364
- uid: 15431
components:
- type: Transform
pos: -29.5,-26.5
parent: 8364
+ - uid: 15876
+ components:
+ - type: Transform
+ pos: 27.5,-80.5
+ parent: 8364
- uid: 16131
components:
- type: Transform
@@ -121178,6 +124241,11 @@ entities:
- type: Transform
pos: 7.5,-58.5
parent: 8364
+ - uid: 16630
+ components:
+ - type: Transform
+ pos: -22.5,-83.5
+ parent: 8364
- uid: 16659
components:
- type: Transform
@@ -121328,46 +124396,26 @@ entities:
- type: Transform
pos: -13.5,-77.5
parent: 8364
- - uid: 17172
- components:
- - type: Transform
- pos: 27.5,-74.5
- parent: 8364
- - uid: 17174
- components:
- - type: Transform
- pos: 26.5,-75.5
- parent: 8364
- uid: 17175
components:
- type: Transform
- pos: 25.5,-75.5
+ pos: -19.5,-85.5
+ parent: 8364
+ - uid: 17176
+ components:
+ - type: Transform
+ pos: -20.5,-85.5
parent: 8364
- uid: 17178
components:
- type: Transform
- pos: 27.5,-68.5
+ pos: -22.5,-82.5
parent: 8364
- uid: 17179
components:
- type: Transform
pos: 27.5,-67.5
parent: 8364
- - uid: 17180
- components:
- - type: Transform
- pos: 24.5,-75.5
- parent: 8364
- - uid: 17181
- components:
- - type: Transform
- pos: 23.5,-75.5
- parent: 8364
- - uid: 17182
- components:
- - type: Transform
- pos: 21.5,-75.5
- parent: 8364
- uid: 17191
components:
- type: Transform
@@ -121423,26 +124471,11 @@ entities:
- type: Transform
pos: 12.5,-63.5
parent: 8364
- - uid: 17468
- components:
- - type: Transform
- pos: 27.5,-73.5
- parent: 8364
- uid: 17469
components:
- type: Transform
pos: 27.5,-66.5
parent: 8364
- - uid: 17591
- components:
- - type: Transform
- pos: 27.5,-72.5
- parent: 8364
- - uid: 17592
- components:
- - type: Transform
- pos: 22.5,-75.5
- parent: 8364
- uid: 17629
components:
- type: Transform
@@ -122010,6 +125043,12 @@ entities:
- type: Transform
pos: 42.5,-1.5
parent: 8364
+ - uid: 22714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-71.5
+ parent: 8364
- uid: 22832
components:
- type: Transform
@@ -122130,6 +125169,11 @@ entities:
- type: Transform
pos: 10.5,-52.5
parent: 8364
+ - uid: 23007
+ components:
+ - type: Transform
+ pos: -22.5,-81.5
+ parent: 8364
- uid: 23051
components:
- type: Transform
@@ -122176,6 +125220,109 @@ entities:
- type: Transform
pos: 17.5,-51.5
parent: 8364
+ - uid: 24005
+ components:
+ - type: Transform
+ pos: -21.5,-75.5
+ parent: 8364
+ - uid: 24078
+ components:
+ - type: Transform
+ pos: -21.5,-74.5
+ parent: 8364
+ - uid: 24185
+ components:
+ - type: Transform
+ pos: -21.5,-77.5
+ parent: 8364
+ - uid: 24186
+ components:
+ - type: Transform
+ pos: -21.5,-73.5
+ parent: 8364
+ - uid: 24224
+ components:
+ - type: Transform
+ pos: 38.5,-86.5
+ parent: 8364
+ - uid: 24245
+ components:
+ - type: Transform
+ pos: 39.5,-86.5
+ parent: 8364
+ - uid: 24387
+ components:
+ - type: Transform
+ pos: -21.5,-88.5
+ parent: 8364
+ - uid: 24393
+ components:
+ - type: Transform
+ pos: -11.5,-83.5
+ parent: 8364
+ - uid: 24397
+ components:
+ - type: Transform
+ pos: -15.5,-81.5
+ parent: 8364
+ - uid: 24400
+ components:
+ - type: Transform
+ pos: -16.5,-81.5
+ parent: 8364
+ - uid: 24902
+ components:
+ - type: Transform
+ pos: 62.5,-71.5
+ parent: 8364
+ - uid: 24921
+ components:
+ - type: Transform
+ pos: -12.5,-81.5
+ parent: 8364
+ - uid: 24922
+ components:
+ - type: Transform
+ pos: -11.5,-81.5
+ parent: 8364
+ - uid: 24924
+ components:
+ - type: Transform
+ pos: -16.5,-83.5
+ parent: 8364
+ - uid: 24929
+ components:
+ - type: Transform
+ pos: 0.5,44.5
+ parent: 8364
+ - uid: 24944
+ components:
+ - type: Transform
+ pos: -5.5,-93.5
+ parent: 8364
+ - uid: 24976
+ components:
+ - type: Transform
+ pos: 0.5,42.5
+ parent: 8364
+ - uid: 25230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-94.5
+ parent: 8364
+ - uid: 25245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-94.5
+ parent: 8364
+ - uid: 25249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-94.5
+ parent: 8364
- uid: 25699
components:
- type: Transform
@@ -122221,11 +125368,6 @@ entities:
- type: Transform
pos: 8.5,29.5
parent: 8364
- - uid: 25897
- components:
- - type: Transform
- pos: 2.5,-25.5
- parent: 8364
- uid: 25903
components:
- type: Transform
@@ -122271,6 +125413,21 @@ entities:
- type: Transform
pos: 12.5,-28.5
parent: 8364
+ - uid: 26384
+ components:
+ - type: Transform
+ pos: 37.5,-87.5
+ parent: 8364
+ - uid: 26386
+ components:
+ - type: Transform
+ pos: 38.5,-87.5
+ parent: 8364
+ - uid: 26387
+ components:
+ - type: Transform
+ pos: 39.5,-85.5
+ parent: 8364
- uid: 26472
components:
- type: Transform
@@ -122606,20 +125763,80 @@ entities:
- type: Transform
pos: 5.5,-93.5
parent: 8364
- - uid: 26760
- components:
- - type: Transform
- pos: -10.5,-83.5
- parent: 8364
- uid: 26880
components:
- type: Transform
pos: 70.5,-0.5
parent: 8364
- - uid: 27274
+ - uid: 26950
components:
- type: Transform
- pos: 0.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-94.5
+ parent: 8364
+ - uid: 26988
+ components:
+ - type: Transform
+ pos: -15.5,-83.5
+ parent: 8364
+ - uid: 27179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-94.5
+ parent: 8364
+ - uid: 27184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-94.5
+ parent: 8364
+ - uid: 27185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-94.5
+ parent: 8364
+ - uid: 27186
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-94.5
+ parent: 8364
+ - uid: 27187
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-94.5
+ parent: 8364
+ - uid: 27192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-94.5
+ parent: 8364
+ - uid: 27193
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-94.5
+ parent: 8364
+ - uid: 27194
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-94.5
+ parent: 8364
+ - uid: 27195
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,-94.5
+ parent: 8364
+ - uid: 27206
+ components:
+ - type: Transform
+ pos: -21.5,-82.5
parent: 8364
- uid: 27275
components:
@@ -122631,6 +125848,11 @@ entities:
- type: Transform
pos: 2.5,44.5
parent: 8364
+ - uid: 27532
+ components:
+ - type: Transform
+ pos: -19.5,-84.5
+ parent: 8364
- uid: 27611
components:
- type: Transform
@@ -122646,35 +125868,56 @@ entities:
- type: Transform
pos: 86.5,-2.5
parent: 8364
- - uid: 27855
+ - uid: 27763
components:
- type: Transform
- pos: 33.5,-80.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,-82.5
+ parent: 8364
+ - uid: 27791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-82.5
+ parent: 8364
+ - uid: 27792
+ components:
+ - type: Transform
+ pos: -12.5,-83.5
+ parent: 8364
+ - uid: 27793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-82.5
parent: 8364
- uid: 27856
components:
- type: Transform
- pos: 32.5,-80.5
+ pos: 27.5,-78.5
parent: 8364
- - uid: 27857
+ - uid: 27926
components:
- type: Transform
- pos: 31.5,-80.5
+ pos: 60.5,-69.5
parent: 8364
- - uid: 27858
+ - uid: 27990
components:
- type: Transform
- pos: 31.5,-78.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,-94.5
parent: 8364
- - uid: 27859
+ - uid: 28143
components:
- type: Transform
- pos: 32.5,-78.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-24.5
parent: 8364
- - uid: 27860
+ - uid: 28147
components:
- type: Transform
- pos: 33.5,-78.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-24.5
parent: 8364
- proto: GrilleBroken
entities:
@@ -122803,6 +126046,24 @@ entities:
- type: Transform
pos: 9.5,-89.5
parent: 8364
+ - uid: 24388
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-83.5
+ parent: 8364
+ - uid: 24585
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-85.5
+ parent: 8364
+ - uid: 24919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-82.5
+ parent: 8364
- uid: 26534
components:
- type: Transform
@@ -122878,6 +126139,18 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,44.5
parent: 8364
+ - uid: 27764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-81.5
+ parent: 8364
+ - uid: 27812
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-83.5
+ parent: 8364
- proto: GunSafeDisabler
entities:
- uid: 6253
@@ -122918,11 +126191,12 @@ entities:
- type: Transform
pos: 2.5,37.5
parent: 8364
-- proto: Gyroscope
+- proto: GyroscopeUnanchored
entities:
- - uid: 12460
+ - uid: 25012
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -65.5,15.5
parent: 8364
- proto: Handcuffs
@@ -122957,13 +126231,6 @@ entities:
- type: Transform
pos: 3.5,23.5
parent: 8364
-- proto: HandheldHealthAnalyzer
- entities:
- - uid: 21715
- components:
- - type: Transform
- pos: 63.429848,12.47963
- parent: 8364
- proto: HandLabeler
entities:
- uid: 561
@@ -123035,63 +126302,46 @@ entities:
parent: 8364
- proto: HeatExchanger
entities:
- - uid: 4529
+ - uid: 4173
components:
- type: Transform
- pos: 35.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-85.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 17607
+ - uid: 24960
components:
- type: Transform
- pos: 15.5,-84.5
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-75.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
-- proto: Hemostat
- entities:
- - uid: 13776
+ color: '#03FCD3FF'
+ - uid: 26849
components:
- type: Transform
- pos: -52.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-85.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: Hemostat
+ entities:
- uid: 21263
components:
- type: Transform
rot: 0.000406441162340343 rad
pos: 52.576862,-22.263298
parent: 8364
-- proto: HighSecCaptainLocked
- entities:
- - uid: 5737
- components:
- - type: MetaData
- name: Captain Chunnel
- - type: Transform
- pos: -0.5,-17.5
- parent: 8364
- proto: HighSecCommandLocked
entities:
- - uid: 862
+ - uid: 4287
components:
+ - type: MetaData
+ name: Gravity Generator
- type: Transform
- pos: 28.5,-104.5
- parent: 8364
- - uid: 876
- components:
- - type: Transform
- pos: 30.5,-91.5
- parent: 8364
- - uid: 901
- components:
- - type: Transform
- pos: 26.5,-91.5
- parent: 8364
- - uid: 5335
- components:
- - type: Transform
- pos: -0.5,-9.5
+ pos: -21.5,-76.5
parent: 8364
- uid: 8140
components:
@@ -123105,10 +126355,12 @@ entities:
- type: Transform
pos: -11.5,-36.5
parent: 8364
- - uid: 18620
+ - uid: 26963
components:
+ - type: MetaData
+ name: AI Core
- type: Transform
- pos: -0.5,-23.5
+ pos: -0.5,-18.5
parent: 8364
- proto: HolofanProjector
entities:
@@ -123122,40 +126374,19 @@ entities:
- type: Transform
pos: 10.513089,-49.606483
parent: 8364
-- proto: HolopadAiBackupPower
- entities:
- - uid: 28123
- components:
- - type: Transform
- pos: 33.5,-91.5
- parent: 8364
- proto: HolopadAiCore
entities:
- - uid: 28124
+ - uid: 27840
components:
- type: Transform
- pos: 28.5,-108.5
- parent: 8364
-- proto: HolopadAiEntrance
- entities:
- - uid: 28122
- components:
- - type: Transform
- pos: 28.5,-80.5
- parent: 8364
-- proto: HolopadAiMain
- entities:
- - uid: 28099
- components:
- - type: Transform
- pos: 28.5,-85.5
+ pos: -0.5,-17.5
parent: 8364
- proto: HolopadAiUpload
entities:
- - uid: 19079
+ - uid: 27824
components:
- type: Transform
- pos: -0.5,-13.5
+ pos: -0.5,-22.5
parent: 8364
- proto: HolopadCargoBay
entities:
@@ -123276,13 +126507,6 @@ entities:
- type: Transform
pos: 16.5,-56.5
parent: 8364
-- proto: HolopadEngineeringAtmosTeg
- entities:
- - uid: 28090
- components:
- - type: Transform
- pos: 15.5,-73.5
- parent: 8364
- proto: HolopadEngineeringBreakroom
entities:
- uid: 28086
@@ -123304,10 +126528,10 @@ entities:
parent: 8364
- proto: HolopadEngineeringMain
entities:
- - uid: 28143
+ - uid: 27529
components:
- type: Transform
- pos: -2.5,-69.5
+ pos: -3.5,-69.5
parent: 8364
- proto: HolopadEngineeringPower
entities:
@@ -123377,7 +126601,7 @@ entities:
- uid: 28125
components:
- type: Transform
- pos: -42.5,3.5
+ pos: -41.5,3.5
parent: 8364
- proto: HolopadMedicalChemistry
entities:
@@ -123451,10 +126675,10 @@ entities:
parent: 8364
- proto: HolopadScienceFront
entities:
- - uid: 28112
+ - uid: 233
components:
- type: Transform
- pos: 72.5,-20.5
+ pos: 70.5,-19.5
parent: 8364
- proto: HolopadScienceRobotics
entities:
@@ -123556,10 +126780,10 @@ entities:
parent: 8364
- proto: HolopadServiceBar
entities:
- - uid: 28147
+ - uid: 24443
components:
- type: Transform
- pos: 30.5,-5.5
+ pos: 30.5,-6.5
parent: 8364
- proto: HolopadServiceBotany
entities:
@@ -123570,7 +126794,7 @@ entities:
parent: 8364
- proto: HolopadServiceChapel
entities:
- - uid: 28110
+ - uid: 3771
components:
- type: Transform
pos: 69.5,-5.5
@@ -123610,6 +126834,13 @@ entities:
- type: Transform
pos: 59.5,-8.5
parent: 8364
+- proto: HolopadServiceNewsroom
+ entities:
+ - uid: 4572
+ components:
+ - type: Transform
+ pos: -24.5,-10.5
+ parent: 8364
- proto: HospitalCurtainsOpen
entities:
- uid: 2213
@@ -123914,12 +127145,6 @@ entities:
parent: 8364
- proto: IntercomAll
entities:
- - uid: 4955
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-15.5
- parent: 8364
- uid: 5526
components:
- type: Transform
@@ -123932,6 +127157,23 @@ entities:
rot: 3.141592653589793 rad
pos: 6.5,-19.5
parent: 8364
+ - uid: 27818
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-14.5
+ parent: 8364
+ - uid: 27833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-14.5
+ parent: 8364
+ - uid: 27836
+ components:
+ - type: Transform
+ pos: -0.5,-13.5
+ parent: 8364
- proto: IntercomCommand
entities:
- uid: 8390
@@ -124158,11 +127400,6 @@ entities:
parent: 8364
- proto: KitchenMicrowave
entities:
- - uid: 594
- components:
- - type: Transform
- pos: 26.5,-86.5
- parent: 8364
- uid: 2585
components:
- type: Transform
@@ -124595,7 +127832,7 @@ entities:
- uid: 21214
components:
- type: Transform
- pos: 60.5,-17.5
+ pos: 60.50045,-17.347412
parent: 8364
- proto: Lighter
entities:
@@ -124609,7 +127846,7 @@ entities:
- uid: 14425
components:
- type: Transform
- pos: -28.5,-5.5
+ pos: -28.5095,-5.350807
parent: 8364
- proto: LockableButtonChiefMedicalOfficer
entities:
@@ -125975,6 +129212,28 @@ entities:
- 0
- 0
- 0
+- proto: LootSpawnerIndustrial
+ entities:
+ - uid: 7041
+ components:
+ - type: Transform
+ pos: 40.5,-72.5
+ parent: 8364
+ - uid: 11157
+ components:
+ - type: Transform
+ pos: 48.5,7.5
+ parent: 8364
+ - uid: 24978
+ components:
+ - type: Transform
+ pos: -4.5,-45.5
+ parent: 8364
+ - uid: 27030
+ components:
+ - type: Transform
+ pos: 48.5,11.5
+ parent: 8364
- proto: LootSpawnerIndustrialFluff
entities:
- uid: 1255
@@ -125982,6 +129241,165 @@ entities:
- type: Transform
pos: -41.5,-12.5
parent: 8364
+ - uid: 6925
+ components:
+ - type: Transform
+ pos: -3.5,-53.5
+ parent: 8364
+ - uid: 11750
+ components:
+ - type: Transform
+ pos: -3.5,-45.5
+ parent: 8364
+ - uid: 25981
+ components:
+ - type: Transform
+ pos: -57.5,3.5
+ parent: 8364
+ - uid: 26920
+ components:
+ - type: Transform
+ pos: -23.5,-77.5
+ parent: 8364
+- proto: LootSpawnerMaterialsHighValue
+ entities:
+ - uid: 26927
+ components:
+ - 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
+ components:
+ - type: Transform
+ pos: -53.5,7.5
+ parent: 8364
+ - uid: 25013
+ components:
+ - type: Transform
+ pos: 63.5,12.5
+ parent: 8364
+- proto: LootSpawnerRoboticsBorgModule
+ entities:
+ - uid: 25179
+ components:
+ - type: Transform
+ pos: 63.5,-20.5
+ parent: 8364
+- proto: LootSpawnerScienceMajor
+ entities:
+ - uid: 6246
+ components:
+ - type: Transform
+ pos: 58.5,-49.5
+ parent: 8364
+ - uid: 6311
+ components:
+ - type: Transform
+ pos: 74.5,-30.5
+ parent: 8364
+ - uid: 14112
+ components:
+ - type: Transform
+ pos: 56.5,-35.5
+ parent: 8364
+ - uid: 15105
+ components:
+ - type: Transform
+ pos: 74.5,-19.5
+ parent: 8364
+ - uid: 23009
+ components:
+ - type: Transform
+ pos: 74.5,-50.5
+ parent: 8364
+ - uid: 25174
+ components:
+ - type: Transform
+ pos: 63.5,-21.5
+ parent: 8364
+ - uid: 28186
+ components:
+ - type: Transform
+ pos: 0.5,-27.5
+ parent: 8364
+- proto: LootSpawnerScienceMinor
+ entities:
+ - uid: 6247
+ components:
+ - type: Transform
+ pos: 60.5,-19.5
+ parent: 8364
+ - uid: 16546
+ components:
+ - type: Transform
+ pos: 78.5,-50.5
+ parent: 8364
+ - uid: 17906
+ components:
+ - 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
+ pos: 61.5,-39.5
+ parent: 8364
+ - uid: 23183
+ components:
+ - type: Transform
+ pos: 85.5,-40.5
+ parent: 8364
+ - uid: 25161
+ components:
+ - type: Transform
+ pos: 88.5,-27.5
+ parent: 8364
+ - uid: 25169
+ components:
+ - type: Transform
+ pos: 80.5,-44.5
+ parent: 8364
+ - uid: 25171
+ components:
+ - type: Transform
+ pos: 80.5,-46.5
+ parent: 8364
+ - uid: 26921
+ components:
+ - type: Transform
+ pos: 59.5,-51.5
+ parent: 8364
+ - uid: 26923
+ components:
+ - type: Transform
+ pos: 51.5,-43.5
+ parent: 8364
+ - uid: 27036
+ components:
+ - type: Transform
+ pos: 85.5,-36.5
+ parent: 8364
+- proto: LootSpawnerSecurity
+ entities:
+ - uid: 10878
+ components:
+ - type: Transform
+ pos: -56.5,3.5
+ parent: 8364
- proto: MachineAnomalyGenerator
entities:
- uid: 21980
@@ -126066,11 +129484,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -42.5,-12.5
parent: 8364
- - uid: 27189
- components:
- - type: Transform
- pos: 33.5,-85.5
- parent: 8364
- proto: MachineFrameDestroyed
entities:
- uid: 13768
@@ -126198,21 +129611,128 @@ entities:
- type: Transform
pos: -41.5,-7.5
parent: 8364
+ - uid: 6219
+ components:
+ - type: Transform
+ pos: 85.5,-53.5
+ parent: 8364
+ - uid: 11094
+ components:
+ - type: Transform
+ pos: 53.5,-48.5
+ parent: 8364
- uid: 16149
components:
- type: Transform
pos: -43.5,-11.5
parent: 8364
+ - uid: 24917
+ components:
+ - type: Transform
+ pos: 65.5,-72.5
+ parent: 8364
+ - uid: 25046
+ components:
+ - type: Transform
+ pos: -53.5,5.5
+ parent: 8364
+ - uid: 25950
+ components:
+ - type: Transform
+ pos: 76.5,-56.5
+ parent: 8364
- uid: 26554
components:
- type: Transform
pos: -8.5,53.5
parent: 8364
+ - uid: 26608
+ components:
+ - type: Transform
+ pos: 58.5,-62.5
+ parent: 8364
+ - uid: 26627
+ components:
+ - type: Transform
+ pos: 59.5,-49.5
+ parent: 8364
- uid: 26633
components:
- type: Transform
pos: -4.5,-48.5
parent: 8364
+ - uid: 26852
+ components:
+ - type: Transform
+ pos: 58.5,-51.5
+ parent: 8364
+ - uid: 26875
+ components:
+ - type: Transform
+ pos: 66.5,-64.5
+ parent: 8364
+ - uid: 26926
+ components:
+ - type: Transform
+ pos: -57.5,17.5
+ parent: 8364
+ - uid: 26929
+ components:
+ - type: Transform
+ pos: -58.5,13.5
+ parent: 8364
+ - uid: 26993
+ components:
+ - type: Transform
+ pos: -54.5,11.5
+ parent: 8364
+ - uid: 27233
+ components:
+ - type: Transform
+ pos: 70.5,-66.5
+ parent: 8364
+ - uid: 27928
+ components:
+ - type: Transform
+ pos: 67.5,-59.5
+ parent: 8364
+- proto: MaintenanceInsulsSpawner
+ entities:
+ - uid: 6312
+ components:
+ - type: Transform
+ pos: 46.5,13.5
+ parent: 8364
+ - uid: 13852
+ components:
+ - type: Transform
+ pos: -42.5,1.5
+ parent: 8364
+ - uid: 14433
+ components:
+ - type: Transform
+ pos: 43.5,-73.5
+ parent: 8364
+ - uid: 14437
+ components:
+ - type: Transform
+ pos: 70.5,12.5
+ parent: 8364
+ - uid: 14565
+ components:
+ - type: Transform
+ pos: -48.5,1.5
+ parent: 8364
+ - uid: 16208
+ components:
+ - type: Transform
+ pos: -19.5,-6.5
+ parent: 8364
+ - uid: 16209
+ components:
+ - type: Transform
+ pos: 47.5,-66.5
+ parent: 8364
- proto: MaintenancePlantSpawner
entities:
- uid: 27525
@@ -126237,11 +129757,36 @@ entities:
parent: 8364
- proto: MaintenanceToolSpawner
entities:
+ - uid: 101
+ components:
+ - type: Transform
+ pos: 49.5,11.5
+ parent: 8364
+ - uid: 4504
+ components:
+ - type: Transform
+ pos: 66.5,-65.5
+ parent: 8364
+ - uid: 4539
+ components:
+ - type: Transform
+ pos: -33.5,-63.5
+ parent: 8364
- uid: 4727
components:
- type: Transform
pos: -21.5,12.5
parent: 8364
+ - uid: 7038
+ components:
+ - type: Transform
+ pos: -24.5,-43.5
+ parent: 8364
+ - uid: 11574
+ components:
+ - type: Transform
+ pos: -45.5,22.5
+ parent: 8364
- uid: 14239
components:
- type: Transform
@@ -126257,6 +129802,56 @@ entities:
- type: Transform
pos: -36.5,-48.5
parent: 8364
+ - uid: 23407
+ components:
+ - type: Transform
+ pos: 47.5,-67.5
+ parent: 8364
+ - uid: 26567
+ components:
+ - type: Transform
+ pos: 35.5,-63.5
+ parent: 8364
+ - uid: 26922
+ components:
+ - type: Transform
+ pos: -46.5,2.5
+ parent: 8364
+ - uid: 26925
+ components:
+ - type: Transform
+ pos: 47.5,11.5
+ parent: 8364
+ - uid: 27031
+ components:
+ - type: Transform
+ pos: -45.5,21.5
+ parent: 8364
+ - uid: 27034
+ components:
+ - type: Transform
+ pos: -34.5,-63.5
+ parent: 8364
+ - uid: 27929
+ components:
+ - type: Transform
+ pos: 84.5,-55.5
+ parent: 8364
+ - uid: 27984
+ components:
+ - type: Transform
+ pos: -42.5,5.5
+ parent: 8364
+ - uid: 27985
+ components:
+ - type: Transform
+ pos: -40.5,5.5
+ parent: 8364
+ - uid: 27987
+ components:
+ - type: Transform
+ pos: -25.5,-43.5
+ parent: 8364
- proto: MaintenanceWeaponSpawner
entities:
- uid: 13816
@@ -126269,6 +129864,11 @@ entities:
- type: Transform
pos: -30.5,-72.5
parent: 8364
+ - uid: 27986
+ components:
+ - type: Transform
+ pos: -52.5,7.5
+ parent: 8364
- proto: MaterialCloth
entities:
- uid: 5868
@@ -126466,7 +130066,7 @@ entities:
- uid: 21418
components:
- type: Transform
- pos: 80.5,-47.5
+ pos: 79.55894,-47.360077
parent: 8364
- proto: MedkitToxinFilled
entities:
@@ -126503,6 +130103,13 @@ entities:
rot: 0.0004530529258772731 rad
pos: 74.7369,-19.349794
parent: 8364
+- proto: MicrophoneInstrument
+ entities:
+ - uid: 3819
+ components:
+ - type: Transform
+ pos: -21.513838,-9.389294
+ parent: 8364
- proto: Mirror
entities:
- uid: 6260
@@ -127029,6 +130636,36 @@ entities:
- type: Transform
pos: 52.5,7.5
parent: 8364
+ - uid: 4541
+ components:
+ - type: Transform
+ pos: 68.5,9.5
+ parent: 8364
+ - uid: 10603
+ components:
+ - type: Transform
+ pos: -27.5,-52.5
+ parent: 8364
+ - uid: 10852
+ components:
+ - type: Transform
+ pos: 81.5,-40.5
+ parent: 8364
+ - uid: 22764
+ components:
+ - type: Transform
+ pos: 15.5,-35.5
+ parent: 8364
+ - uid: 22770
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 8364
+ - uid: 22921
+ components:
+ - type: Transform
+ pos: -21.5,6.5
+ parent: 8364
- proto: Multitool
entities:
- uid: 5623
@@ -127076,31 +130713,11 @@ entities:
- type: Transform
pos: -5.398419,-57.63227
parent: 8364
- - uid: 19348
- components:
- - type: Transform
- pos: 47.523952,-66.25797
- parent: 8364
- - uid: 20050
- components:
- - type: Transform
- pos: 88.5,-27.5
- parent: 8364
- - uid: 21228
- components:
- - type: Transform
- pos: 61.5,-19.5
- parent: 8364
- uid: 21442
components:
- type: Transform
pos: 78.5,-62.5
parent: 8364
- - uid: 27195
- components:
- - type: Transform
- pos: 33.528397,-88.48169
- parent: 8364
- proto: NitrogenCanister
entities:
- uid: 3026
@@ -127168,6 +130785,13 @@ entities:
- type: Transform
pos: -13.5,9.5
parent: 8364
+- proto: NitrogenTankFilled
+ entities:
+ - uid: 27177
+ components:
+ - type: Transform
+ pos: 26.471306,-83.42229
+ parent: 8364
- proto: NitrousOxideTankFilled
entities:
- uid: 21342
@@ -127187,7 +130811,7 @@ entities:
- uid: 27913
components:
- type: Transform
- pos: -4.5442195,-11.268198
+ pos: 2.3979688,-23.426868
parent: 8364
- proto: NuclearBomb
entities:
@@ -127208,7 +130832,7 @@ entities:
- uid: 27916
components:
- type: Transform
- pos: 3.6621494,-11.814552
+ pos: 2.429234,-24.146116
parent: 8364
- proto: OperatingTable
entities:
@@ -127376,42 +131000,35 @@ entities:
- type: MetaData
name: empty tank
- type: Transform
- pos: 79.5,-43.5
- parent: 8364
- - uid: 21420
- components:
- - type: MetaData
- name: empty tank
- - type: Transform
- pos: 79.5,-43.5
- parent: 8364
- - uid: 21421
- components:
- - type: MetaData
- name: empty tank
- - type: Transform
- pos: 79.5,-43.5
- parent: 8364
- - uid: 21422
- components:
- - type: MetaData
- name: empty tank
- - type: Transform
- pos: 79.5,-43.5
- parent: 8364
- - uid: 21423
- components:
- - type: MetaData
- name: empty tank
- - type: Transform
- pos: 79.5,-43.5
+ pos: 79.485985,-43.45112
parent: 8364
+ - type: GasTank
+ toggleActionEntity: 25167
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 25167
- proto: OxygenTankFilled
entities:
- uid: 20121
components:
- type: Transform
- pos: 76.5,-57.5
+ pos: 78.58031,-56.4234
+ parent: 8364
+ - type: GasTank
+ toggleActionEntity: 25181
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 25181
+ - uid: 27619
+ components:
+ - type: Transform
+ pos: 26.61721,-83.45356
parent: 8364
- proto: PackPaperRollingFilters
entities:
@@ -127488,7 +131105,7 @@ entities:
- uid: 27911
components:
- type: Transform
- pos: -4.443845,-11.67473
+ pos: -3.5,-24.2
parent: 8364
- proto: Paper
entities:
@@ -127522,6 +131139,16 @@ entities:
- type: Transform
pos: 28.395426,-19.487911
parent: 8364
+ - uid: 3826
+ components:
+ - type: Transform
+ pos: -23.660736,-9.733283
+ parent: 8364
+ - uid: 4564
+ components:
+ - type: Transform
+ pos: -23.441877,-9.858369
+ parent: 8364
- uid: 5681
components:
- type: Transform
@@ -127587,106 +131214,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
@@ -127702,7 +131229,7 @@ entities:
- uid: 8806
components:
- type: Transform
- pos: -11.291204,32.308414
+ pos: -11.519596,32.598755
parent: 8364
- uid: 9233
components:
@@ -127802,12 +131329,12 @@ entities:
- uid: 14336
components:
- type: Transform
- pos: -34.361294,-5.4555216
+ pos: -34.544052,-5.335971
parent: 8364
- uid: 14337
components:
- type: Transform
- pos: -34.18942,-5.6742716
+ pos: -34.398148,-5.5236015
parent: 8364
- uid: 14372
components:
@@ -127944,16 +131471,6 @@ entities:
- type: Transform
pos: 69.5,-34.5
parent: 8364
- - uid: 27173
- components:
- - type: Transform
- pos: 26.502972,-105.49065
- parent: 8364
- - uid: 27174
- components:
- - type: Transform
- pos: 26.502972,-105.49065
- parent: 8364
- uid: 27767
components:
- type: Transform
@@ -127979,6 +131496,33 @@ entities:
- type: Transform
pos: 35.5,-6.5
parent: 8364
+- proto: PaperBin10
+ entities:
+ - uid: 7228
+ components:
+ - 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
@@ -127986,6 +131530,12 @@ 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
@@ -128077,7 +131627,7 @@ entities:
- uid: 15961
components:
- type: Transform
- pos: -28.374622,-53.801064
+ pos: -28.49712,-53.537666
parent: 8364
- uid: 16698
components:
@@ -128097,7 +131647,7 @@ entities:
- uid: 19346
components:
- type: Transform
- pos: 47.258327,-66.86735
+ pos: 47.57956,-67.045586
parent: 8364
- uid: 21446
components:
@@ -128152,6 +131702,11 @@ entities:
- type: Transform
pos: 6.7796197,-15.189568
parent: 8364
+ - uid: 5771
+ components:
+ - type: Transform
+ pos: -21.937536,-13.335235
+ parent: 8364
- uid: 8461
components:
- type: Transform
@@ -128165,12 +131720,12 @@ 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:
@@ -128298,11 +131853,6 @@ entities:
- type: Transform
pos: 69.5,-34.5
parent: 8364
- - uid: 27176
- components:
- - type: Transform
- pos: 26.706097,-106.16252
- parent: 8364
- proto: PercentileDie
entities:
- uid: 898
@@ -128310,16 +131860,6 @@ entities:
- type: Transform
pos: 57.5,20.5
parent: 8364
- - uid: 10853
- components:
- - type: Transform
- pos: 56.5,3.5000002
- parent: 8364
- - uid: 10873
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 8364
- proto: PersonalAI
entities:
- uid: 4068
@@ -128366,11 +131906,6 @@ entities:
- type: Transform
pos: -8.522932,-51.390182
parent: 8364
- - uid: 27209
- components:
- - type: Transform
- pos: 27.481524,-83.38469
- parent: 8364
- uid: 27227
components:
- type: Transform
@@ -128561,10 +132096,10 @@ entities:
parent: 8364
- proto: PlayerStationAi
entities:
- - uid: 16590
+ - uid: 27979
components:
- type: Transform
- pos: 28.5,-111.5
+ pos: -0.5,-14.5
parent: 8364
- proto: PlushieBee
entities:
@@ -128587,11 +132122,6 @@ entities:
- type: Transform
pos: 44.578045,-62.22757
parent: 8364
- - uid: 21798
- components:
- - type: Transform
- pos: -22.362862,-11.265691
- parent: 8364
- proto: PlushieRGBee
entities:
- uid: 5880
@@ -128697,6 +132227,11 @@ entities:
- type: Transform
pos: -26.5,-71.5
parent: 8364
+ - uid: 27832
+ components:
+ - type: Transform
+ pos: -0.5,-11.5
+ parent: 8364
- proto: PortableGeneratorSuperPacman
entities:
- uid: 18732
@@ -128704,11 +132239,6 @@ entities:
- type: Transform
pos: -26.5,-70.5
parent: 8364
- - uid: 26962
- components:
- - type: Transform
- pos: 34.5,-92.5
- parent: 8364
- proto: PortableGeneratorSuperPacmanMachineCircuitboard
entities:
- uid: 19880
@@ -128718,11 +132248,6 @@ entities:
parent: 8364
- proto: PortableScrubber
entities:
- - uid: 746
- components:
- - type: Transform
- pos: 23.5,-95.5
- parent: 8364
- uid: 6475
components:
- type: Transform
@@ -128793,11 +132318,6 @@ entities:
- type: Transform
pos: 14.5,-40.5
parent: 8364
- - uid: 27152
- components:
- - type: Transform
- pos: 22.5,-91.5
- parent: 8364
- proto: PosterContrabandAtmosiaDeclarationIndependence
entities:
- uid: 6612
@@ -129052,11 +132572,6 @@ entities:
- type: Transform
pos: -6.5,-3.5
parent: 8364
- - uid: 21764
- components:
- - type: Transform
- pos: -19.5,-9.5
- parent: 8364
- uid: 21972
components:
- type: Transform
@@ -129067,11 +132582,6 @@ entities:
- type: Transform
pos: 5.5,-23.5
parent: 8364
- - uid: 27650
- components:
- - type: Transform
- pos: 9.5,-28.5
- parent: 8364
- proto: PosterLegitNoERP
entities:
- uid: 26559
@@ -129183,13 +132693,6 @@ entities:
- type: Transform
pos: -7.5,40.5
parent: 8364
-- proto: PosterLegitVacation
- entities:
- - uid: 10703
- components:
- - type: Transform
- pos: 5.5,-28.5
- parent: 8364
- proto: PosterLegitWorkForAFuture
entities:
- uid: 2386
@@ -129204,11 +132707,6 @@ entities:
parent: 8364
- proto: PottedPlant0
entities:
- - uid: 9450
- components:
- - type: Transform
- pos: -23.5,-9.5
- parent: 8364
- uid: 26870
components:
- type: Transform
@@ -129386,13 +132884,6 @@ entities:
- type: Transform
pos: 37.493153,-34.77379
parent: 8364
-- proto: PottedPlant6
- entities:
- - uid: 27156
- components:
- - type: Transform
- pos: 27.518597,-87.763794
- parent: 8364
- proto: PottedPlant8
entities:
- uid: 14099
@@ -129513,6 +133004,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
@@ -129558,6 +133054,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
@@ -129775,11 +133281,6 @@ entities:
- type: Transform
pos: -12.5,2.5
parent: 8364
- - uid: 27196
- components:
- - type: Transform
- pos: 32.5,-88.5
- parent: 8364
- uid: 27396
components:
- type: Transform
@@ -129847,12 +133348,30 @@ entities:
rot: 3.141592653589793 rad
pos: 60.5,-37.5
parent: 8364
+ - uid: 2257
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-10.5
+ parent: 8364
- uid: 3215
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 46.5,-28.5
parent: 8364
+ - uid: 3613
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-17.5
+ parent: 8364
+ - uid: 4556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-17.5
+ parent: 8364
- uid: 5244
components:
- type: Transform
@@ -129908,14 +133427,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 5644
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-24.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 5696
components:
- type: Transform
@@ -129924,13 +133435,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 5748
- components:
- - type: Transform
- pos: 0.5,-18.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 5946
components:
- type: Transform
@@ -130008,14 +133512,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
@@ -130032,18 +133528,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 7910
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-12.5
- parent: 8364
- - uid: 7911
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-12.5
- parent: 8364
- uid: 7914
components:
- type: Transform
@@ -130535,14 +134019,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 12428
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,14.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 12438
components:
- type: Transform
@@ -130899,21 +134375,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 13066
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-31.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 13067
- components:
- - type: Transform
- pos: -1.5,-29.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 13068
components:
- type: Transform
@@ -131055,21 +134516,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 14507
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-13.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 14565
- components:
- - type: Transform
- pos: -57.5,-7.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 14771
components:
- type: Transform
@@ -131137,11 +134583,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -35.5,-23.5
parent: 8364
- - uid: 15450
- components:
- - type: Transform
- pos: -30.5,-18.5
- parent: 8364
- uid: 16343
components:
- type: Transform
@@ -131488,12 +134929,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 18395
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-30.5
- parent: 8364
- uid: 18397
components:
- type: Transform
@@ -131658,23 +135093,13 @@ entities:
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -2.5,-22.5
+ pos: -3.5,-12.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 19956
components:
- type: Transform
pos: 2.5,-59.5
parent: 8364
- - uid: 20060
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-26.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 20137
components:
- type: Transform
@@ -131932,13 +135357,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 21766
- components:
- - type: Transform
- pos: 5.5,-29.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 21771
components:
- type: Transform
@@ -132029,13 +135447,34 @@ entities:
- type: Transform
pos: 21.5,-71.5
parent: 8364
- - uid: 25864
+ - uid: 25204
components:
- type: Transform
- pos: 30.5,-27.5
+ pos: -9.5,-21.5
+ parent: 8364
+ - uid: 25211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-31.5
+ parent: 8364
+ - uid: 25219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-21.5
+ parent: 8364
+ - uid: 25790
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-29.5
+ parent: 8364
+ - uid: 25827
+ components:
+ - type: Transform
+ pos: -32.5,-18.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 25867
components:
- type: Transform
@@ -132124,23 +135563,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 12.5,-27.5
parent: 8364
- - uid: 26103
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-81.5
- parent: 8364
- uid: 26105
components:
- type: Transform
pos: 15.5,-70.5
parent: 8364
- - uid: 26106
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-76.5
- parent: 8364
- uid: 26368
components:
- type: Transform
@@ -132277,70 +135704,65 @@ entities:
rot: -1.5707963267948966 rad
pos: 9.5,-67.5
parent: 8364
- - uid: 27163
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-101.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27164
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-97.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27165
+ - uid: 26984
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 30.5,-97.5
+ pos: -19.5,-76.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27166
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-101.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27169
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-109.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27170
+ - uid: 26992
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 25.5,-109.5
+ pos: -26.5,-76.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27171
+ - uid: 26994
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-114.5
+ pos: -24.5,-73.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27172
+ - uid: 27020
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -23.5,-13.5
+ parent: 8364
+ - uid: 27142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-81.5
+ parent: 8364
+ - uid: 27147
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 31.5,-114.5
+ pos: 16.5,-85.5
+ parent: 8364
+ - uid: 27148
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-76.5
+ parent: 8364
+ - uid: 27153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-81.5
+ parent: 8364
+ - uid: 27154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-81.5
+ parent: 8364
+ - uid: 27155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-85.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 27254
components:
- type: Transform
@@ -132367,12 +135789,54 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 11.5,-68.5
+ pos: 2.5,-12.5
parent: 8364
- - uid: 27883
+ - uid: 27922
components:
- type: Transform
- pos: 19.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-5.5
+ parent: 8364
+ - uid: 27923
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,-30.5
+ parent: 8364
+ - uid: 27924
+ components:
+ - type: Transform
+ pos: 32.5,-27.5
+ parent: 8364
+ - uid: 28152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-21.5
+ parent: 8364
+ - uid: 28187
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-24.5
+ parent: 8364
+ - uid: 28188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-24.5
+ parent: 8364
+ - uid: 28204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-24.5
+ parent: 8364
+ - uid: 28207
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-31.5
parent: 8364
- proto: PoweredlightExterior
entities:
@@ -132477,40 +135941,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 16626
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-100.5
- parent: 8364
- - uid: 16627
- components:
- - type: Transform
- pos: 24.5,-119.5
- parent: 8364
- - uid: 16628
- components:
- - type: Transform
- pos: 32.5,-119.5
- parent: 8364
- - uid: 16629
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-100.5
- parent: 8364
- - uid: 16632
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-112.5
- parent: 8364
- - uid: 16633
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-112.5
- parent: 8364
- uid: 17476
components:
- type: Transform
@@ -132583,6 +136013,12 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 27156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-76.5
+ parent: 8364
- proto: PoweredSmallLight
entities:
- uid: 650
@@ -132605,12 +136041,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -46.5,-11.5
parent: 8364
- - uid: 1676
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-85.5
- parent: 8364
- uid: 1875
components:
- type: Transform
@@ -133019,6 +136449,12 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 12641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-12.5
+ parent: 8364
- uid: 13140
components:
- type: Transform
@@ -133473,12 +136909,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 16892
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-75.5
- parent: 8364
- uid: 16893
components:
- type: Transform
@@ -133807,6 +137237,17 @@ entities:
rot: 1.5707963267948966 rad
pos: 3.5,-47.5
parent: 8364
+ - uid: 24906
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,-11.5
+ parent: 8364
+ - uid: 25213
+ components:
+ - type: Transform
+ pos: -2.5,-29.5
+ parent: 8364
- uid: 25883
components:
- type: Transform
@@ -133821,19 +137262,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 26104
- components:
- - type: Transform
- anchored: False
- rot: 3.141592653589793 rad
- pos: 18.5,-86.5
- parent: 8364
- - uid: 26107
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-83.5
- parent: 8364
- uid: 26364
components:
- type: Transform
@@ -133882,67 +137310,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 27157
- components:
- - type: Transform
- pos: 29.5,-83.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27158
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-87.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27159
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-90.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27160
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-90.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27161
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-90.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27162
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-81.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27167
- components:
- - type: Transform
- pos: 26.5,-105.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27168
- components:
- - type: Transform
- pos: 30.5,-105.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 27459
components:
- type: Transform
@@ -133966,6 +137333,18 @@ entities:
rot: 1.5707963267948966 rad
pos: 2.5,-34.5
parent: 8364
+ - uid: 27620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,-84.5
+ parent: 8364
+ - uid: 27622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-85.5
+ parent: 8364
- uid: 27626
components:
- type: Transform
@@ -133988,32 +137367,40 @@ entities:
- type: Transform
pos: 85.5,-5.5
parent: 8364
- - uid: 27867
- components:
- - type: Transform
- pos: 23.5,-95.5
- parent: 8364
- - uid: 27868
- components:
- - type: Transform
- pos: 33.5,-95.5
- parent: 8364
- - uid: 27869
+ - uid: 27859
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 33.5,-106.5
+ pos: -18.5,-82.5
parent: 8364
- - uid: 27870
+ - uid: 27932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,-11.5
+ parent: 8364
+ - uid: 28140
+ components:
+ - type: Transform
+ pos: 1.5,-29.5
+ parent: 8364
+ - uid: 28195
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-15.5
+ parent: 8364
+ - uid: 28197
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-27.5
+ parent: 8364
+ - uid: 28198
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 23.5,-106.5
- parent: 8364
- - uid: 27871
- components:
- - type: Transform
- pos: 32.5,-79.5
+ pos: -1.5,-27.5
parent: 8364
- proto: PoweredSmallLightEmpty
entities:
@@ -134033,20 +137420,34 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
-- proto: Protolathe
+- proto: PoweredWarmSmallLight
entities:
- - uid: 17802
+ - uid: 8460
components:
- type: Transform
- pos: 2.5,-53.5
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-5.5
parent: 8364
- - type: MaterialStorage
- materialWhiteList:
- - Steel
- - Glass
- - Plastic
- - Wood
- - Gold
+ - uid: 18368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-10.5
+ parent: 8364
+ - uid: 27930
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-3.5
+ parent: 8364
+ - uid: 27931
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-0.5
+ parent: 8364
+- proto: Protolathe
+ entities:
- uid: 21191
components:
- type: Transform
@@ -134102,21 +137503,6 @@ entities:
- type: Transform
pos: -5.5,-57.5
parent: 8364
- - uid: 646
- components:
- - type: Transform
- pos: 26.5,-87.5
- parent: 8364
- - uid: 647
- components:
- - type: Transform
- pos: 29.5,-83.5
- parent: 8364
- - uid: 747
- components:
- - type: Transform
- pos: 33.5,-95.5
- parent: 8364
- uid: 1060
components:
- type: Transform
@@ -134143,6 +137529,28 @@ entities:
- type: Transform
pos: 55.5,-51.5
parent: 8364
+ - uid: 3869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-27.5
+ parent: 8364
+ - uid: 4233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-77.5
+ parent: 8364
+ - uid: 4370
+ components:
+ - type: Transform
+ pos: -33.5,-63.5
+ parent: 8364
+ - uid: 4576
+ components:
+ - type: Transform
+ pos: -21.5,-9.5
+ parent: 8364
- uid: 4579
components:
- type: Transform
@@ -134158,6 +137566,11 @@ entities:
- type: Transform
pos: 44.5,-40.5
parent: 8364
+ - uid: 6218
+ components:
+ - type: Transform
+ pos: 78.5,-56.5
+ parent: 8364
- uid: 6265
components:
- type: Transform
@@ -134168,6 +137581,11 @@ entities:
- type: Transform
pos: 20.5,19.5
parent: 8364
+ - uid: 6392
+ components:
+ - type: Transform
+ pos: 66.5,-64.5
+ parent: 8364
- uid: 8570
components:
- type: Transform
@@ -134528,11 +137946,6 @@ entities:
- type: Transform
pos: 88.5,-27.5
parent: 8364
- - uid: 20119
- components:
- - type: Transform
- pos: 76.5,-57.5
- parent: 8364
- uid: 20123
components:
- type: Transform
@@ -134598,6 +138011,12 @@ entities:
- type: Transform
pos: 10.5,-49.5
parent: 8364
+ - uid: 24198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,-42.5
+ parent: 8364
- uid: 25993
components:
- type: Transform
@@ -134608,11 +138027,21 @@ entities:
- type: Transform
pos: -17.5,51.5
parent: 8364
+ - uid: 26576
+ components:
+ - type: Transform
+ pos: 35.5,-63.5
+ parent: 8364
- uid: 26632
components:
- type: Transform
pos: -4.5,-48.5
parent: 8364
+ - uid: 26675
+ components:
+ - type: Transform
+ pos: 58.5,-62.5
+ parent: 8364
- uid: 26770
components:
- type: Transform
@@ -134623,15 +138052,38 @@ entities:
- type: Transform
pos: -10.5,7.5
parent: 8364
- - uid: 27153
+ - uid: 26876
components:
- type: Transform
- pos: 23.5,-88.5
+ pos: 66.5,-65.5
parent: 8364
- - uid: 27154
+ - uid: 26980
components:
- type: Transform
- pos: 34.5,-90.5
+ pos: 80.5,-56.5
+ parent: 8364
+ - uid: 27059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,-40.5
+ parent: 8364
+ - uid: 27176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-83.5
+ parent: 8364
+ - uid: 27553
+ components:
+ - type: Transform
+ pos: 11.5,-78.5
+ parent: 8364
+ - uid: 27819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-27.5
parent: 8364
- uid: 28132
components:
@@ -134697,11 +138149,6 @@ entities:
- type: Transform
pos: 3.5,23.5
parent: 8364
- - uid: 12354
- components:
- - type: Transform
- pos: -56.5,3.5000002
- parent: 8364
- uid: 15394
components:
- type: Transform
@@ -134727,11 +138174,6 @@ entities:
- type: Transform
pos: 5.934936,-62.500313
parent: 8364
- - uid: 27211
- components:
- - type: Transform
- pos: 29.481524,-83.494064
- parent: 8364
- proto: Railing
entities:
- uid: 425
@@ -134860,18 +138302,18 @@ entities:
parent: 8364
- proto: RandomArtifactSpawner
entities:
- - uid: 13419
+ - uid: 25983
components:
- type: Transform
pos: 78.5,-29.5
parent: 8364
- - uid: 25988
- components:
- - type: Transform
- pos: 80.5,-29.5
- parent: 8364
- proto: RandomArtifactSpawner20
entities:
+ - uid: 16825
+ components:
+ - type: Transform
+ pos: 82.5,-30.5
+ parent: 8364
- uid: 20637
components:
- type: Transform
@@ -134887,6 +138329,16 @@ entities:
- type: Transform
pos: -39.5,-22.5
parent: 8364
+ - uid: 25984
+ components:
+ - type: Transform
+ pos: 80.5,-29.5
+ parent: 8364
+ - uid: 27418
+ components:
+ - type: Transform
+ pos: 71.5,-39.5
+ parent: 8364
- proto: RandomBoard
entities:
- uid: 5724
@@ -134929,6 +138381,11 @@ entities:
- type: Transform
pos: -10.5,-33.5
parent: 8364
+ - uid: 28185
+ components:
+ - type: Transform
+ pos: -1.5,-27.5
+ parent: 8364
- proto: RandomDrinkGlass
entities:
- uid: 5207
@@ -134953,6 +138410,16 @@ entities:
parent: 8364
- proto: RandomDrinkSoda
entities:
+ - uid: 7092
+ components:
+ - type: Transform
+ pos: 55.5,1.5
+ parent: 8364
+ - uid: 7114
+ components:
+ - type: Transform
+ pos: 56.5,1.5
+ parent: 8364
- uid: 20690
components:
- type: Transform
@@ -135009,6 +138476,11 @@ entities:
- type: Transform
pos: 61.5,-44.5
parent: 8364
+ - uid: 4261
+ components:
+ - type: Transform
+ pos: 84.5,-51.5
+ parent: 8364
- uid: 6613
components:
- type: Transform
@@ -135019,6 +138491,21 @@ entities:
- type: Transform
pos: 16.5,16.5
parent: 8364
+ - uid: 7062
+ components:
+ - type: Transform
+ pos: 53.5,3.5
+ parent: 8364
+ - uid: 7073
+ components:
+ - type: Transform
+ pos: 59.5,0.5
+ parent: 8364
+ - uid: 7153
+ components:
+ - type: Transform
+ pos: 52.5,0.5
+ parent: 8364
- uid: 9618
components:
- type: Transform
@@ -135194,11 +138681,6 @@ entities:
- type: Transform
pos: 83.5,-56.5
parent: 8364
- - uid: 22313
- components:
- - type: Transform
- pos: 83.5,-53.5
- parent: 8364
- uid: 22314
components:
- type: Transform
@@ -135269,6 +138751,17 @@ entities:
- type: Transform
pos: 44.5,9.5
parent: 8364
+ - uid: 25186
+ components:
+ - type: Transform
+ pos: 59.5,3.5
+ parent: 8364
+ - uid: 25200
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-28.5
+ parent: 8364
- uid: 26565
components:
- type: Transform
@@ -135328,6 +138821,11 @@ entities:
- type: Transform
pos: 58.5,-42.5
parent: 8364
+ - uid: 4567
+ components:
+ - type: Transform
+ pos: -19.5,-13.5
+ parent: 8364
- uid: 8469
components:
- type: Transform
@@ -135483,6 +138981,18 @@ entities:
- type: Transform
pos: -6.5,-28.5
parent: 8364
+ - uid: 25199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-28.5
+ parent: 8364
+ - uid: 25220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-22.5
+ parent: 8364
- uid: 25844
components:
- type: Transform
@@ -135578,6 +139088,29 @@ entities:
- type: Transform
pos: 17.5,-8.5
parent: 8364
+ - uid: 28149
+ components:
+ - type: Transform
+ pos: -25.5,-10.5
+ parent: 8364
+ - uid: 28208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-19.5
+ parent: 8364
+- proto: RandomSmokables
+ entities:
+ - uid: 14111
+ components:
+ - type: Transform
+ pos: 86.44438,-40.36994
+ parent: 8364
+ - uid: 25242
+ components:
+ - type: Transform
+ pos: 86.65282,-42.37133
+ parent: 8364
- proto: RandomSnacks
entities:
- uid: 20688
@@ -135844,6 +139377,11 @@ entities:
- type: Transform
pos: -46.5,17.5
parent: 8364
+ - uid: 14147
+ components:
+ - type: Transform
+ pos: -61.5,-15.5
+ parent: 8364
- uid: 14603
components:
- type: Transform
@@ -135862,7 +139400,7 @@ entities:
- uid: 14606
components:
- type: Transform
- pos: -19.5,-0.5
+ pos: -30.5,-12.5
parent: 8364
- uid: 14607
components:
@@ -135904,6 +139442,11 @@ entities:
- type: Transform
pos: -58.5,-20.5
parent: 8364
+ - uid: 15106
+ components:
+ - type: Transform
+ pos: -59.5,-16.5
+ parent: 8364
- uid: 15611
components:
- type: Transform
@@ -136044,6 +139587,21 @@ entities:
- type: Transform
pos: -12.5,47.5
parent: 8364
+ - uid: 28237
+ components:
+ - type: Transform
+ pos: -21.5,-0.5
+ parent: 8364
+ - uid: 28238
+ components:
+ - type: Transform
+ pos: -59.5,-15.5
+ parent: 8364
+ - uid: 28239
+ components:
+ - type: Transform
+ pos: -61.5,-16.5
+ parent: 8364
- proto: RandomSpawner100
entities:
- uid: 2249
@@ -136073,6 +139631,18 @@ entities:
- type: Transform
pos: -55.5,-1.5
parent: 8364
+- proto: RandomVendingClothing
+ entities:
+ - uid: 25864
+ components:
+ - type: Transform
+ pos: -39.5,-4.5
+ parent: 8364
+ - uid: 27038
+ components:
+ - type: Transform
+ pos: 22.5,15.5
+ parent: 8364
- proto: RandomVendingDrinks
entities:
- uid: 1604
@@ -136115,6 +139685,11 @@ entities:
- type: Transform
pos: -44.5,-4.5
parent: 8364
+ - uid: 27037
+ components:
+ - type: Transform
+ pos: -18.5,-10.5
+ parent: 8364
- proto: RandomVendingSnacks
entities:
- uid: 2939
@@ -136730,6 +140305,11 @@ entities:
- type: Transform
pos: -68.5,18.5
parent: 8364
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 27.5,-81.5
+ parent: 8364
- uid: 596
components:
- type: Transform
@@ -136748,6 +140328,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -68.5,7.5
parent: 8364
+ - uid: 646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-82.5
+ parent: 8364
- uid: 658
components:
- type: Transform
@@ -137191,16 +140777,6 @@ entities:
- type: Transform
pos: -33.5,-32.5
parent: 8364
- - uid: 1627
- components:
- - type: Transform
- pos: 27.5,-74.5
- parent: 8364
- - uid: 1644
- components:
- - type: Transform
- pos: 26.5,-75.5
- parent: 8364
- uid: 1653
components:
- type: Transform
@@ -137409,7 +140985,7 @@ entities:
- uid: 2528
components:
- type: Transform
- pos: 38.5,-49.5
+ pos: 62.5,-71.5
parent: 8364
- uid: 2550
components:
@@ -137956,11 +141532,6 @@ entities:
- type: Transform
pos: 60.5,-70.5
parent: 8364
- - uid: 3087
- components:
- - type: Transform
- pos: 62.5,-70.5
- parent: 8364
- uid: 3088
components:
- type: Transform
@@ -138436,31 +142007,6 @@ entities:
- type: Transform
pos: -32.5,-70.5
parent: 8364
- - uid: 3630
- components:
- - type: Transform
- pos: -27.5,-74.5
- parent: 8364
- - uid: 3631
- components:
- - type: Transform
- pos: -26.5,-74.5
- parent: 8364
- - uid: 3632
- components:
- - type: Transform
- pos: -25.5,-74.5
- parent: 8364
- - uid: 3633
- components:
- - type: Transform
- pos: -24.5,-74.5
- parent: 8364
- - uid: 3634
- components:
- - type: Transform
- pos: -23.5,-74.5
- parent: 8364
- uid: 3674
components:
- type: Transform
@@ -138746,175 +142292,43 @@ entities:
- type: Transform
pos: 86.5,-14.5
parent: 8364
+ - uid: 4107
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-82.5
+ parent: 8364
+ - uid: 4136
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-24.5
+ parent: 8364
- uid: 4137
components:
- type: Transform
pos: -34.5,-29.5
parent: 8364
- - uid: 4177
+ - uid: 4201
components:
- type: Transform
- pos: 0.5,-23.5
+ pos: -21.5,-77.5
parent: 8364
- - uid: 4455
+ - uid: 4202
components:
- type: Transform
- pos: 29.5,-103.5
+ pos: -21.5,-74.5
parent: 8364
- - uid: 4456
+ - uid: 4300
components:
- type: Transform
- pos: 29.5,-102.5
+ pos: -21.5,-75.5
parent: 8364
- - uid: 4457
+ - uid: 4426
components:
- type: Transform
- pos: 29.5,-101.5
- parent: 8364
- - uid: 4458
- components:
- - type: Transform
- pos: 29.5,-100.5
- parent: 8364
- - uid: 4459
- components:
- - type: Transform
- pos: 29.5,-99.5
- parent: 8364
- - uid: 4460
- components:
- - type: Transform
- pos: 29.5,-98.5
- parent: 8364
- - uid: 4461
- components:
- - type: Transform
- pos: 29.5,-97.5
- parent: 8364
- - uid: 4463
- components:
- - type: Transform
- pos: 29.5,-96.5
- parent: 8364
- - uid: 4464
- components:
- - type: Transform
- pos: 29.5,-95.5
- parent: 8364
- - uid: 4465
- components:
- - type: Transform
- pos: 27.5,-95.5
- parent: 8364
- - uid: 4466
- components:
- - type: Transform
- pos: 27.5,-96.5
- parent: 8364
- - uid: 4467
- components:
- - type: Transform
- pos: 27.5,-97.5
- parent: 8364
- - uid: 4468
- components:
- - type: Transform
- pos: 27.5,-98.5
- parent: 8364
- - uid: 4469
- components:
- - type: Transform
- pos: 27.5,-99.5
- parent: 8364
- - uid: 4470
- components:
- - type: Transform
- pos: 27.5,-100.5
- parent: 8364
- - uid: 4471
- components:
- - type: Transform
- pos: 27.5,-101.5
- parent: 8364
- - uid: 4472
- components:
- - type: Transform
- pos: 27.5,-102.5
- parent: 8364
- - uid: 4473
- components:
- - type: Transform
- pos: 27.5,-103.5
- parent: 8364
- - uid: 4474
- components:
- - type: Transform
- pos: 30.5,-107.5
- parent: 8364
- - uid: 4475
- components:
- - type: Transform
- pos: 29.5,-107.5
- parent: 8364
- - uid: 4476
- components:
- - type: Transform
- pos: 27.5,-107.5
- parent: 8364
- - uid: 4477
- components:
- - type: Transform
- pos: 26.5,-107.5
- parent: 8364
- - uid: 4483
- components:
- - type: Transform
- pos: 30.5,-81.5
- parent: 8364
- - uid: 4484
- components:
- - type: Transform
- pos: 30.5,-80.5
- parent: 8364
- - uid: 4486
- components:
- - type: Transform
- pos: 30.5,-78.5
- parent: 8364
- - uid: 4487
- components:
- - type: Transform
- pos: 30.5,-77.5
- parent: 8364
- - uid: 4488
- components:
- - type: Transform
- pos: 29.5,-77.5
- parent: 8364
- - uid: 4489
- components:
- - type: Transform
- pos: 28.5,-77.5
- parent: 8364
- - uid: 4490
- components:
- - type: Transform
- pos: 27.5,-77.5
- parent: 8364
- - uid: 4491
- components:
- - type: Transform
- pos: 26.5,-77.5
- parent: 8364
- - uid: 4492
- components:
- - type: Transform
- pos: 26.5,-78.5
- parent: 8364
- - uid: 4493
- components:
- - type: Transform
- pos: 26.5,-79.5
+ rot: 3.141592653589793 rad
+ pos: 20.5,-82.5
parent: 8364
- uid: 4523
components:
@@ -138991,16 +142405,6 @@ entities:
- type: Transform
pos: -16.5,34.5
parent: 8364
- - uid: 5200
- components:
- - type: Transform
- pos: 1.5,-23.5
- parent: 8364
- - uid: 5201
- components:
- - type: Transform
- pos: 26.5,-81.5
- parent: 8364
- uid: 5233
components:
- type: Transform
@@ -139016,21 +142420,6 @@ entities:
- type: Transform
pos: 23.5,-34.5
parent: 8364
- - uid: 5268
- components:
- - type: Transform
- pos: -1.5,-23.5
- parent: 8364
- - uid: 5732
- components:
- - type: Transform
- pos: -3.5,-25.5
- parent: 8364
- - uid: 5768
- components:
- - type: Transform
- pos: -2.5,-23.5
- parent: 8364
- uid: 5826
components:
- type: Transform
@@ -139041,21 +142430,11 @@ entities:
- type: Transform
pos: -5.5,40.5
parent: 8364
- - uid: 6529
- components:
- - type: Transform
- pos: 26.5,-80.5
- parent: 8364
- uid: 6533
components:
- type: Transform
pos: 25.5,16.5
parent: 8364
- - uid: 6908
- components:
- - type: Transform
- pos: 2.5,-25.5
- parent: 8364
- uid: 6949
components:
- type: Transform
@@ -139666,6 +143045,12 @@ entities:
- type: Transform
pos: -18.5,-19.5
parent: 8364
+ - uid: 8079
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-72.5
+ parent: 8364
- uid: 8088
components:
- type: Transform
@@ -139686,6 +143071,12 @@ entities:
- type: Transform
pos: -14.5,-13.5
parent: 8364
+ - uid: 8111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-74.5
+ parent: 8364
- uid: 8131
components:
- type: Transform
@@ -140231,6 +143622,12 @@ entities:
- type: Transform
pos: -10.5,5.5
parent: 8364
+ - uid: 12258
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-82.5
+ parent: 8364
- uid: 12260
components:
- type: Transform
@@ -140241,6 +143638,12 @@ entities:
- type: Transform
pos: -68.5,17.5
parent: 8364
+ - uid: 12459
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-82.5
+ parent: 8364
- uid: 12485
components:
- type: Transform
@@ -140258,11 +143661,6 @@ entities:
- type: Transform
pos: 27.5,-67.5
parent: 8364
- - uid: 12678
- components:
- - type: Transform
- pos: 27.5,-68.5
- parent: 8364
- uid: 12681
components:
- type: Transform
@@ -140323,31 +143721,11 @@ entities:
- type: Transform
pos: -38.5,13.5
parent: 8364
- - uid: 13407
- components:
- - type: Transform
- pos: 27.5,-69.5
- parent: 8364
- uid: 13433
components:
- type: Transform
pos: -51.5,15.5
parent: 8364
- - uid: 13661
- components:
- - type: Transform
- pos: 27.5,-71.5
- parent: 8364
- - uid: 13662
- components:
- - type: Transform
- pos: 27.5,-72.5
- parent: 8364
- - uid: 13663
- components:
- - type: Transform
- pos: 27.5,-73.5
- parent: 8364
- uid: 14137
components:
- type: Transform
@@ -140413,6 +143791,18 @@ entities:
- type: Transform
pos: 6.5,-28.5
parent: 8364
+ - uid: 15882
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-68.5
+ parent: 8364
+ - uid: 15969
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-24.5
+ parent: 8364
- uid: 16354
components:
- type: Transform
@@ -140433,6 +143823,24 @@ entities:
- type: Transform
pos: 2.5,-77.5
parent: 8364
+ - uid: 16731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-82.5
+ parent: 8364
+ - uid: 16735
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-82.5
+ parent: 8364
+ - uid: 16777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,-82.5
+ parent: 8364
- uid: 16837
components:
- type: Transform
@@ -140468,11 +143876,6 @@ entities:
- type: Transform
pos: 2.5,-41.5
parent: 8364
- - uid: 17088
- components:
- - type: Transform
- pos: 14.5,-82.5
- parent: 8364
- uid: 17093
components:
- type: Transform
@@ -140483,16 +143886,6 @@ entities:
- type: Transform
pos: 7.5,-45.5
parent: 8364
- - uid: 17156
- components:
- - type: Transform
- pos: 15.5,-82.5
- parent: 8364
- - uid: 17159
- components:
- - type: Transform
- pos: 16.5,-82.5
- parent: 8364
- uid: 17205
components:
- type: Transform
@@ -140505,21 +143898,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 8.5,-43.5
parent: 8364
- - uid: 17207
- components:
- - type: Transform
- pos: 13.5,-82.5
- parent: 8364
- - uid: 17208
- components:
- - type: Transform
- pos: 17.5,-82.5
- parent: 8364
- - uid: 17365
- components:
- - type: Transform
- pos: 18.5,-82.5
- parent: 8364
- uid: 17455
components:
- type: Transform
@@ -140530,16 +143908,6 @@ entities:
- type: Transform
pos: 4.5,-46.5
parent: 8364
- - uid: 17661
- components:
- - type: Transform
- pos: 23.5,-75.5
- parent: 8364
- - uid: 17662
- components:
- - type: Transform
- pos: 25.5,-75.5
- parent: 8364
- uid: 17787
components:
- type: Transform
@@ -140560,11 +143928,6 @@ entities:
- type: Transform
pos: -2.5,-65.5
parent: 8364
- - uid: 19148
- components:
- - type: Transform
- pos: -5.5,-18.5
- parent: 8364
- uid: 19163
components:
- type: Transform
@@ -140645,11 +144008,6 @@ entities:
- type: Transform
pos: 61.5,-56.5
parent: 8364
- - uid: 20003
- components:
- - type: Transform
- pos: -5.5,-19.5
- parent: 8364
- uid: 20055
components:
- type: Transform
@@ -140732,16 +144090,6 @@ entities:
- type: Transform
pos: 13.5,-26.5
parent: 8364
- - uid: 21995
- components:
- - type: Transform
- pos: -4.5,-17.5
- parent: 8364
- - uid: 21996
- components:
- - type: Transform
- pos: 3.5,-17.5
- parent: 8364
- uid: 22013
components:
- type: Transform
@@ -140792,16 +144140,29 @@ entities:
- type: Transform
pos: 86.5,-10.5
parent: 8364
- - uid: 22573
- components:
- - type: Transform
- pos: 21.5,-75.5
- parent: 8364
- uid: 22574
components:
- type: Transform
pos: 25.5,-65.5
parent: 8364
+ - uid: 22696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-71.5
+ parent: 8364
+ - uid: 22697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-73.5
+ parent: 8364
+ - uid: 22700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-69.5
+ parent: 8364
- uid: 22745
components:
- type: Transform
@@ -140878,10 +144239,11 @@ entities:
- type: Transform
pos: -18.5,-68.5
parent: 8364
- - uid: 23171
+ - uid: 23159
components:
- type: Transform
- pos: 24.5,-75.5
+ rot: 3.141592653589793 rad
+ pos: 18.5,-86.5
parent: 8364
- uid: 23172
components:
@@ -140893,11 +144255,6 @@ entities:
- type: Transform
pos: -7.5,-66.5
parent: 8364
- - uid: 23209
- components:
- - type: Transform
- pos: 22.5,-75.5
- parent: 8364
- uid: 23220
components:
- type: Transform
@@ -140928,6 +144285,22 @@ entities:
- type: Transform
pos: 9.5,-64.5
parent: 8364
+ - uid: 23917
+ components:
+ - type: Transform
+ pos: -21.5,-82.5
+ parent: 8364
+ - uid: 24774
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-49.5
+ parent: 8364
+ - uid: 25183
+ components:
+ - type: Transform
+ pos: -21.5,-73.5
+ parent: 8364
- uid: 25735
components:
- type: Transform
@@ -140943,6 +144316,11 @@ entities:
- type: Transform
pos: -14.5,37.5
parent: 8364
+ - uid: 26008
+ components:
+ - type: Transform
+ pos: -19.5,-84.5
+ parent: 8364
- uid: 26064
components:
- type: Transform
@@ -140993,35 +144371,25 @@ entities:
- type: Transform
pos: -8.5,-64.5
parent: 8364
- - uid: 27849
+ - uid: 26997
components:
- type: Transform
- pos: 33.5,-78.5
+ pos: 27.5,-78.5
parent: 8364
- - uid: 27850
+ - uid: 27066
components:
- type: Transform
- pos: 32.5,-78.5
+ pos: 27.5,-79.5
parent: 8364
- - uid: 27851
+ - uid: 27858
components:
- type: Transform
- pos: 31.5,-78.5
+ pos: 27.5,-80.5
parent: 8364
- - uid: 27852
+ - uid: 27925
components:
- type: Transform
- pos: 31.5,-80.5
- parent: 8364
- - uid: 27853
- components:
- - type: Transform
- pos: 32.5,-80.5
- parent: 8364
- - uid: 27854
- components:
- - type: Transform
- pos: 33.5,-80.5
+ pos: 60.5,-69.5
parent: 8364
- proto: RemoteSignaller
entities:
@@ -141078,7 +144446,7 @@ entities:
- uid: 22443
components:
- type: Transform
- pos: 3.4364183,-14.443886
+ pos: -3.5,-23.2
parent: 8364
- proto: RobustHarvestChemistryBottle
entities:
@@ -141157,6 +144525,16 @@ entities:
parent: 8364
- proto: Screen
entities:
+ - uid: 3657
+ components:
+ - type: Transform
+ pos: -2.5,-18.5
+ parent: 8364
+ - uid: 4368
+ components:
+ - type: Transform
+ pos: 1.5,-18.5
+ parent: 8364
- uid: 27738
components:
- type: Transform
@@ -141252,18 +144630,32 @@ entities:
- type: Transform
pos: -14.5,-11.5
parent: 8364
+ - uid: 28189
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-3.5
+ parent: 8364
+ - uid: 28190
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-3.5
+ parent: 8364
+ - uid: 28191
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-25.5
+ parent: 8364
+ - uid: 28192
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-25.5
+ parent: 8364
- proto: Screwdriver
entities:
- - uid: 2261
- components:
- - type: Transform
- pos: 59.397083,-51.321266
- parent: 8364
- - uid: 12258
- components:
- - type: Transform
- pos: -46.457306,2.9827793
- parent: 8364
- uid: 15395
components:
- type: Transform
@@ -141275,16 +144667,6 @@ entities:
rot: 0.00013372956891544163 rad
pos: -8.435265,-33.26435
parent: 8364
- - uid: 21416
- components:
- - type: Transform
- pos: 79.5,-47.5
- parent: 8364
- - uid: 27210
- components:
- - type: Transform
- pos: 29.559649,-83.400314
- parent: 8364
- uid: 27482
components:
- type: Transform
@@ -141361,6 +144743,11 @@ entities:
parent: 8364
- proto: SheetGlass
entities:
+ - uid: 1152
+ components:
+ - type: Transform
+ pos: -32.98726,-18.506897
+ parent: 8364
- uid: 1194
components:
- type: Transform
@@ -141371,11 +144758,6 @@ entities:
- type: Transform
pos: -51.52255,-5.0715327
parent: 8364
- - uid: 11754
- components:
- - type: Transform
- pos: 47.405727,11.349856
- parent: 8364
- uid: 11755
components:
- type: Transform
@@ -141396,21 +144778,11 @@ entities:
- type: Transform
pos: -65.69919,13.123488
parent: 8364
- - uid: 13850
- components:
- - type: Transform
- pos: -45.29138,21.721916
- parent: 8364
- uid: 14442
components:
- 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
@@ -141421,12 +144793,6 @@ entities:
- type: Transform
pos: 9.439449,-60.01837
parent: 8364
- - uid: 19343
- components:
- - type: Transform
- rot: -0.0007233519572764635 rad
- pos: 47.73502,-67.92985
- parent: 8364
- uid: 21176
components:
- type: Transform
@@ -141449,11 +144815,6 @@ entities:
parent: 8364
- proto: SheetPlasma
entities:
- - uid: 21620
- components:
- - type: Transform
- pos: 43.53589,-62.501984
- parent: 8364
- uid: 26768
components:
- type: Transform
@@ -141520,6 +144881,11 @@ entities:
- type: Transform
pos: -2.4544196,39.606735
parent: 8364
+ - uid: 19207
+ components:
+ - type: Transform
+ pos: -32.507854,-18.48605
+ parent: 8364
- proto: SheetRGlass
entities:
- uid: 12441
@@ -141527,16 +144893,6 @@ entities:
- type: Transform
pos: -65.35544,13.342238
parent: 8364
- - uid: 15959
- components:
- - type: Transform
- pos: -28.390247,-52.707314
- parent: 8364
- - uid: 19344
- components:
- - type: Transform
- pos: 47.289577,-67.7736
- parent: 8364
- uid: 21445
components:
- type: Transform
@@ -141554,6 +144910,11 @@ entities:
- type: Transform
pos: -51.5538,-4.6965327
parent: 8364
+ - uid: 4062
+ components:
+ - type: Transform
+ pos: 11.496125,-77.3825
+ parent: 8364
- uid: 4698
components:
- type: Transform
@@ -141564,11 +144925,6 @@ entities:
- type: Transform
pos: -2.4700446,39.637985
parent: 8364
- - uid: 11752
- components:
- - type: Transform
- pos: 47.796352,11.724856
- parent: 8364
- uid: 11753
components:
- type: Transform
@@ -141600,11 +144956,6 @@ entities:
- type: Transform
pos: -38.48763,24.440645
parent: 8364
- - uid: 13849
- components:
- - type: Transform
- pos: -45.69763,21.378166
- parent: 8364
- uid: 14443
components:
- type: Transform
@@ -141615,11 +144966,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
@@ -141633,7 +144979,7 @@ entities:
- uid: 19345
components:
- type: Transform
- pos: 47.711452,-67.03922
+ pos: 47.4545,-67.76483
parent: 8364
- uid: 21177
components:
@@ -141643,7 +144989,7 @@ entities:
- uid: 21232
components:
- type: Transform
- pos: 60.36629,-23.555044
+ pos: 60.529095,-23.40065
parent: 8364
- uid: 21444
components:
@@ -141675,6 +145021,11 @@ entities:
- type: Transform
pos: 9.423824,-59.471497
parent: 8364
+ - uid: 25317
+ components:
+ - type: Transform
+ pos: -33.45624,-18.48605
+ parent: 8364
- proto: SheetUranium
entities:
- uid: 27557
@@ -141727,10 +145078,15 @@ entities:
parent: 8364
- proto: ShuttersNormal
entities:
- - uid: 741
+ - uid: 8814
components:
- type: Transform
- pos: 31.5,-84.5
+ pos: -31.5,-17.5
+ parent: 8364
+ - uid: 9243
+ components:
+ - type: Transform
+ pos: -30.5,-17.5
parent: 8364
- uid: 11334
components:
@@ -142044,15 +145400,6 @@ entities:
- type: Transform
pos: -1.5,-72.5
parent: 8364
-- proto: ShuttersWindow
- entities:
- - uid: 1416
- components:
- - type: MetaData
- name: Warehouse Shutters
- - type: Transform
- pos: -31.5,-17.5
- parent: 8364
- proto: ShuttersWindowOpen
entities:
- uid: 8644
@@ -142256,13 +145603,34 @@ entities:
parent: 8364
- proto: SignAi
entities:
- - uid: 742
+ - uid: 26944
components:
- type: Transform
- pos: 10.5,-67.5
+ pos: 0.5,-18.5
+ parent: 8364
+- proto: SignAiUpload
+ entities:
+ - uid: 26942
+ components:
+ - type: Transform
+ pos: -1.5,-28.5
parent: 8364
- proto: SignalButton
entities:
+ - uid: 1644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,-86.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4205:
+ - Pressed: Toggle
+ 3542:
+ - Pressed: Toggle
+ 25091:
+ - Pressed: Toggle
- uid: 1910
components:
- type: Transform
@@ -142289,6 +145657,8 @@ entities:
- Pressed: Toggle
- uid: 2468
components:
+ - type: MetaData
+ name: Blast Doors
- type: Transform
pos: 70.5,-38.5
parent: 8364
@@ -142336,6 +145706,34 @@ entities:
linkedPorts:
3535:
- Pressed: Toggle
+ - uid: 4249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-82.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 25091:
+ - Pressed: Toggle
+ 3542:
+ - Pressed: Toggle
+ 4205:
+ - Pressed: Toggle
+ - uid: 4250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-82.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 13849:
+ - Pressed: Toggle
+ 3605:
+ - Pressed: Toggle
+ 15544:
+ - Pressed: Toggle
- uid: 5222
components:
- type: Transform
@@ -142371,15 +145769,6 @@ entities:
linkedPorts:
9923:
- Pressed: Toggle
- - uid: 5370
- components:
- - type: Transform
- pos: 81.5,-26.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 5373:
- - Pressed: Toggle
- uid: 5478
components:
- type: Transform
@@ -142480,18 +145869,29 @@ entities:
- Pressed: Toggle
6099:
- Pressed: Toggle
- - uid: 17472
+ - uid: 11984
components:
- type: Transform
- pos: 6.5,-76.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-17.5
parent: 8364
- type: DeviceLinkSource
linkedPorts:
- 5798:
+ 8814:
- Pressed: Toggle
- 9379:
+ 9243:
- Pressed: Toggle
- 4704:
+ - uid: 16830
+ components:
+ - type: MetaData
+ name: Blast Door
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,-26.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 5373:
- Pressed: Toggle
- uid: 17685
components:
@@ -142526,6 +145926,17 @@ entities:
- Pressed: Toggle
18326:
- Pressed: Toggle
+ - uid: 19172
+ components:
+ - type: Transform
+ pos: -32.5,-17.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8814:
+ - Pressed: Toggle
+ 9243:
+ - Pressed: Toggle
- uid: 19856
components:
- type: Transform
@@ -142583,21 +145994,6 @@ entities:
- Pressed: Toggle
19932:
- Pressed: Toggle
- - uid: 20126
- components:
- - type: Transform
- pos: 19.5,-82.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 20133:
- - Pressed: Toggle
- 20134:
- - Pressed: Toggle
- 26646:
- - Pressed: Toggle
- 17676:
- - Pressed: Toggle
- uid: 20896
components:
- type: Transform
@@ -142611,9 +146007,12 @@ entities:
- Pressed: Toggle
5590:
- Pressed: Toggle
- - uid: 22835
+ - uid: 22220
components:
+ - type: MetaData
+ name: Collector Blast Doors
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -7.5,-76.5
parent: 8364
- type: DeviceLinkSource
@@ -142624,28 +146023,6 @@ entities:
- Pressed: Toggle
10835:
- Pressed: Toggle
- - uid: 26670
- components:
- - type: Transform
- pos: 2.5,-75.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 26668:
- - Pressed: Toggle
- 26669:
- - Pressed: Toggle
- - uid: 26671
- components:
- - type: Transform
- pos: -3.5,-75.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 26666:
- - Pressed: Toggle
- 26667:
- - Pressed: Toggle
- uid: 26795
components:
- type: Transform
@@ -142671,9 +146048,12 @@ entities:
- Pressed: Toggle
26793:
- Pressed: Toggle
- - uid: 27389
+ - uid: 26932
components:
+ - type: MetaData
+ name: Radiation Shutters
- type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,-71.5
parent: 8364
- type: DeviceLinkSource
@@ -142686,6 +146066,82 @@ entities:
- Pressed: Toggle
3868:
- Pressed: Toggle
+ - uid: 26934
+ components:
+ - type: MetaData
+ name: PA Blast Doors
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-75.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26666:
+ - Pressed: Toggle
+ 26667:
+ - Pressed: Toggle
+ - uid: 26935
+ components:
+ - type: MetaData
+ name: Collector Blast Doors
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-76.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 5798:
+ - Pressed: Toggle
+ 9379:
+ - Pressed: Toggle
+ 4704:
+ - Pressed: Toggle
+ - uid: 26936
+ components:
+ - type: MetaData
+ name: PA Blast Doors
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-75.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26668:
+ - Pressed: Toggle
+ 26669:
+ - Pressed: Toggle
+ - uid: 26937
+ components:
+ - type: MetaData
+ name: Radiation Shutters
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-71.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3868:
+ - Pressed: Toggle
+ 3875:
+ - Pressed: Toggle
+ 3788:
+ - Pressed: Toggle
+ 3789:
+ - Pressed: Toggle
+ - uid: 27744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,-86.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15544:
+ - Pressed: Toggle
+ 3605:
+ - Pressed: Toggle
+ 13849:
+ - Pressed: Toggle
- proto: SignalButtonDirectional
entities:
- uid: 4213
@@ -142716,6 +146172,8 @@ entities:
- Pressed: Toggle
- uid: 10732
components:
+ - type: MetaData
+ name: Shutters
- type: Transform
pos: 8.5,-19.5
parent: 8364
@@ -142935,21 +146393,16 @@ entities:
parent: 8364
- proto: SignCryogenicsMed
entities:
+ - uid: 14702
+ components:
+ - type: Transform
+ pos: 27.5,-76.5
+ parent: 8364
- uid: 24722
components:
- type: Transform
pos: 38.5,-33.5
parent: 8364
- - uid: 27383
- components:
- - type: Transform
- pos: 27.5,-75.5
- parent: 8364
- - uid: 27384
- components:
- - type: Transform
- pos: 27.5,-70.5
- parent: 8364
- proto: SignDangerMed
entities:
- uid: 27385
@@ -143259,6 +146712,11 @@ entities:
- type: Transform
pos: 43.5,4.5
parent: 8364
+ - uid: 3655
+ components:
+ - type: Transform
+ pos: 1.5,-10.5
+ parent: 8364
- uid: 7264
components:
- type: Transform
@@ -143279,10 +146737,10 @@ entities:
- type: Transform
pos: -19.5,-36.5
parent: 8364
- - uid: 17048
+ - uid: 15971
components:
- type: Transform
- pos: -3.5,-23.5
+ pos: -2.5,-10.5
parent: 8364
- uid: 18691
components:
@@ -143381,11 +146839,6 @@ entities:
- type: Transform
pos: 68.5,-38.5
parent: 8364
- - uid: 27382
- components:
- - type: Transform
- pos: 12.5,-82.5
- parent: 8364
- proto: SignFlammableMed
entities:
- uid: 27386
@@ -143395,10 +146848,10 @@ entities:
parent: 8364
- proto: SignGravity
entities:
- - uid: 5871
+ - uid: 4299
components:
- type: Transform
- pos: -1.5,-28.5
+ pos: -20.5,-71.5
parent: 8364
- proto: SignHead
entities:
@@ -143520,6 +146973,14 @@ entities:
- type: Transform
pos: 42.5,-21.5
parent: 8364
+- proto: SignNews
+ entities:
+ - uid: 3821
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-10.5
+ parent: 8364
- proto: SignNosmoking
entities:
- uid: 5229
@@ -143565,21 +147026,6 @@ entities:
parent: 8364
- proto: SignRadiationMed
entities:
- - uid: 17041
- components:
- - type: Transform
- pos: 2.5,-23.5
- parent: 8364
- - uid: 17043
- components:
- - type: Transform
- pos: 1.5,-27.5
- parent: 8364
- - uid: 17045
- components:
- - type: Transform
- pos: -2.5,-27.5
- parent: 8364
- uid: 19068
components:
- type: Transform
@@ -143789,25 +147235,17 @@ entities:
- type: Transform
pos: -9.5,5.5
parent: 8364
- - uid: 27185
+ - uid: 28215
components:
- type: Transform
- pos: 30.5,-82.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-25.5
parent: 8364
- - uid: 27186
+ - uid: 28216
components:
- type: Transform
- pos: 26.5,-82.5
- parent: 8364
- - uid: 27187
- components:
- - type: Transform
- pos: 26.5,-93.5
- parent: 8364
- - uid: 27188
- components:
- - type: Transform
- pos: 30.5,-93.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-25.5
parent: 8364
- proto: SignSecureSmall
entities:
@@ -143878,6 +147316,11 @@ entities:
parent: 8364
- proto: SignSpace
entities:
+ - uid: 12261
+ components:
+ - type: Transform
+ pos: 63.5,-69.5
+ parent: 8364
- uid: 17810
components:
- type: Transform
@@ -143943,11 +147386,6 @@ entities:
- type: Transform
pos: 48.5,-66.5
parent: 8364
- - uid: 21525
- components:
- - type: Transform
- pos: 62.5,-69.5
- parent: 8364
- uid: 21530
components:
- type: Transform
@@ -144048,8 +147486,11 @@ entities:
- uid: 18597
components:
- type: Transform
+ anchored: False
pos: -13.5,-65.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- proto: Sink
entities:
- uid: 1878
@@ -144306,11 +147747,6 @@ entities:
parent: 8364
- proto: SMESBasic
entities:
- - uid: 865
- components:
- - type: Transform
- pos: 28.5,-113.5
- parent: 8364
- uid: 9461
components:
- type: MetaData
@@ -144354,28 +147790,39 @@ entities:
- uid: 17835
components:
- type: Transform
+ anchored: False
pos: -9.5,-66.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- uid: 18565
components:
- type: Transform
+ anchored: False
pos: -9.5,-65.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- uid: 22090
components:
- type: Transform
pos: -22.5,-71.5
parent: 8364
- - uid: 26964
+ - uid: 25206
components:
+ - type: MetaData
+ name: AI Core SMES
- type: Transform
- pos: 34.5,-91.5
+ pos: -1.5,-11.5
parent: 8364
- uid: 27765
components:
- type: Transform
+ anchored: False
pos: -9.5,-64.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- proto: SMESMachineCircuitboard
entities:
- uid: 12457
@@ -145999,6 +149446,16 @@ entities:
parent: 8364
- proto: SpawnPointBorg
entities:
+ - uid: 25093
+ components:
+ - type: Transform
+ pos: 59.5,-21.5
+ parent: 8364
+ - uid: 27149
+ components:
+ - type: Transform
+ pos: 62.5,-21.5
+ parent: 8364
- uid: 27671
components:
- type: Transform
@@ -146130,6 +149587,11 @@ entities:
parent: 8364
- proto: SpawnPointJanitor
entities:
+ - uid: 5858
+ components:
+ - type: Transform
+ pos: 5.5,-34.5
+ parent: 8364
- uid: 27566
components:
- type: Transform
@@ -146309,6 +149771,13 @@ entities:
- type: Transform
pos: -32.5,-26.5
parent: 8364
+- proto: SpawnPointReporter
+ entities:
+ - uid: 28070
+ components:
+ - type: Transform
+ pos: -22.5,-11.5
+ parent: 8364
- proto: SpawnPointResearchAssistant
entities:
- uid: 18629
@@ -146460,12 +149929,12 @@ entities:
- type: Transform
pos: 5.5,-55.5
parent: 8364
- - uid: 21469
+ - uid: 26952
components:
- type: Transform
pos: 5.5,-57.5
parent: 8364
- - uid: 22817
+ - uid: 26953
components:
- type: Transform
pos: 5.5,-56.5
@@ -146581,6 +150050,13 @@ entities:
- type: Transform
pos: 24.48325,-36.395668
parent: 8364
+- proto: SprayPainter
+ entities:
+ - uid: 27555
+ components:
+ - type: Transform
+ pos: 11.456799,-78.42873
+ parent: 8364
- proto: StasisBed
entities:
- uid: 1881
@@ -146600,31 +150076,29 @@ entities:
parent: 8364
- proto: StationAiUploadComputer
entities:
- - uid: 3539
+ - uid: 6144
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-14.5
+ pos: 0.5,-20.5
parent: 8364
- - uid: 6123
+ - uid: 27013
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-14.5
+ pos: -1.5,-20.5
parent: 8364
- proto: StationAnchor
entities:
- - uid: 15979
+ - uid: 26382
components:
- type: Transform
- pos: -20.5,-74.5
+ pos: -19.5,-82.5
parent: 8364
- proto: StationEfficiencyCircuitBoard
entities:
- uid: 27536
components:
- type: Transform
- pos: -4.631007,-12.460042
+ pos: 2.5469437,-23.688269
parent: 8364
- proto: StationMap
entities:
@@ -146849,16 +150323,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 16.5,7.5
parent: 8364
- - uid: 11158
- components:
- - type: Transform
- pos: 64.5,7.5
- parent: 8364
- - uid: 11159
- components:
- - type: Transform
- pos: 64.5,6.5
- parent: 8364
- uid: 13512
components:
- type: Transform
@@ -146959,6 +150423,12 @@ entities:
rot: 3.141592653589793 rad
pos: 65.5,-4.5
parent: 8364
+ - uid: 24977
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.522638,-77.22648
+ parent: 8364
- uid: 26417
components:
- type: Transform
@@ -147109,6 +150579,16 @@ entities:
- type: Transform
pos: 9.5,-42.5
parent: 8364
+ - uid: 4385
+ components:
+ - type: Transform
+ pos: 26.5,-78.5
+ parent: 8364
+ - uid: 4624
+ components:
+ - type: Transform
+ pos: 26.5,-77.5
+ parent: 8364
- uid: 21424
components:
- type: Transform
@@ -147183,6 +150663,13 @@ entities:
loadingNetworkDemand: 260.0401
currentSupply: 260.0401
supplyRampPosition: 260.0401
+ - uid: 4458
+ components:
+ - type: MetaData
+ name: Gravity & Anchor Substation
+ - type: Transform
+ pos: -20.5,-72.5
+ parent: 8364
- uid: 5893
components:
- type: MetaData
@@ -147190,13 +150677,6 @@ entities:
- type: Transform
pos: -10.5,-19.5
parent: 8364
- - uid: 6246
- components:
- - type: MetaData
- name: Gravity Substation
- - type: Transform
- pos: 1.5,-24.5
- parent: 8364
- uid: 6715
components:
- type: MetaData
@@ -147260,10 +150740,12 @@ entities:
loadingNetworkDemand: 225.0009
currentSupply: 225.0009
supplyRampPosition: 225.0009
- - uid: 21385
+ - uid: 24940
components:
+ - type: MetaData
+ name: AI Core Substation
- type: Transform
- pos: 24.5,-112.5
+ pos: 0.5,-11.5
parent: 8364
- uid: 25700
components:
@@ -147284,11 +150766,6 @@ entities:
- type: Transform
pos: 8.5,-78.5
parent: 8364
- - uid: 26963
- components:
- - type: Transform
- pos: 34.5,-89.5
- parent: 8364
- proto: SubstationMachineCircuitboard
entities:
- uid: 12456
@@ -147472,17 +150949,6 @@ entities:
- SurveillanceCameraCommand
nameSet: True
id: Vault
- - uid: 298
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-23.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: HoP Office
- uid: 299
components:
- type: Transform
@@ -147559,28 +151025,6 @@ entities:
- SurveillanceCameraCommand
nameSet: True
id: Drone Storage
- - uid: 16635
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-10.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Upload
- - uid: 16712
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-16.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: Bridge Tunnel
- uid: 17153
components:
- type: Transform
@@ -147614,212 +151058,6 @@ entities:
- SurveillanceCameraCommand
nameSet: True
id: EVA Supply
- - uid: 21763
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-21.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: Grav Gen
- - uid: 26849
- components:
- - type: Transform
- pos: 29.5,-81.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Airlock
- - uid: 26852
- components:
- - type: Transform
- pos: 29.5,-87.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Monitor Station
- - uid: 26875
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-90.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Entrance
- - uid: 26876
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-92.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Closet
- - uid: 26877
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-92.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Power
- - uid: 26878
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-99.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Ext NW
- - uid: 27197
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-99.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Ext NE
- - uid: 27198
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-112.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Core E
- - uid: 27199
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-112.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Core W
- - uid: 27200
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-105.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Core Door
- - uid: 27202
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-100.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Walkup
- - uid: 27203
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,-119.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Ext SE
- - uid: 27204
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-119.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Ext SW
- - uid: 27205
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-112.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Ext W
- - uid: 27206
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-112.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Ext E
- - uid: 27207
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,-84.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Closet
- - uid: 27208
- components:
- - type: Transform
- pos: 24.5,-86.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Ext N
- - uid: 27236
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-85.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Ext
- uid: 27657
components:
- type: Transform
@@ -147831,62 +151069,39 @@ entities:
- SurveillanceCameraCommand
nameSet: True
id: Show Room
- - uid: 27879
+ - uid: 28199
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-68.5
+ pos: -1.5,-17.5
parent: 8364
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Chube
- - uid: 27880
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-68.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Chube
- - uid: 27881
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-68.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Chube
- - uid: 27884
- components:
- - type: Transform
- pos: 28.5,-115.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Core S
-- proto: SurveillanceCameraEngineering
- entities:
- - uid: 101
+ id: AI Core - South
+ - uid: 28200
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -22.5,-68.5
+ pos: 1.5,-22.5
parent: 8364
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: SMES Bank
+ id: AI Upload
+ - uid: 28201
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-26.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: AI Entrance Airlock
+ - uid: 28202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-11.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: AI Core - North
+- proto: SurveillanceCameraEngineering
+ entities:
- uid: 122
components:
- type: Transform
@@ -147920,6 +151135,38 @@ 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
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-81.5
+ 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
@@ -147952,6 +151199,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
@@ -147973,17 +151236,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: 'Solars SW '
- - uid: 16625
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,-60.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Solars SW Airlock
- uid: 16802
components:
- type: Transform
@@ -148016,28 +151268,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Lobby
- - uid: 16983
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-75.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: TEG East
- - uid: 17072
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-76.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: TEG West
- uid: 17382
components:
- type: Transform
@@ -148049,17 +151279,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Telecomms
- - uid: 17426
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-72.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Anchor Room
- uid: 17692
components:
- type: Transform
@@ -148082,6 +151301,14 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: AME Room
+ - uid: 19205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,-62.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Solars SW Door
- uid: 21346
components:
- type: Transform
@@ -148200,78 +151427,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Atmo Tank 4
- - uid: 21364
- components:
- - type: Transform
- pos: 21.5,-66.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Atmo Tank Air
- - uid: 21365
- components:
- - type: Transform
- pos: 17.5,-66.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Atmo Tank Oxy
- - uid: 21366
- components:
- - type: Transform
- pos: 13.5,-66.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Atmo Tank Nitro
- - uid: 21367
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-78.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Singulo Cage Airlock
- - uid: 21368
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-80.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Singulo Cage North
- - uid: 21370
- components:
- - type: Transform
- pos: 13.5,-81.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Teg Burn Chamber
- - uid: 21371
- components:
- - type: Transform
- pos: 25.5,-74.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Teg cooling loop
- uid: 22987
components:
- type: Transform
@@ -148294,6 +151449,14 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Front Desk
+ - uid: 26589
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,-69.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Solars SE Door
- uid: 26613
components:
- type: Transform
@@ -148305,6 +151468,13 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Break Room
+ - uid: 27289
+ components:
+ - type: MetaData
+ name: Gravity Generator
+ - type: Transform
+ pos: -24.5,-77.5
+ parent: 8364
- uid: 27420
components:
- type: Transform
@@ -148459,17 +151629,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Bar
- - uid: 291
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,1.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Bathroom
- uid: 292
components:
- type: Transform
@@ -148502,17 +151661,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Gameroom
- - uid: 16777
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-29.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Main Hall Grav
- uid: 16778
components:
- type: Transform
@@ -148655,17 +151803,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Main Hall Closet
- - uid: 16973
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-10.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Main Hall Office
- uid: 16974
components:
- type: Transform
@@ -148999,6 +152136,14 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Main Hall Library
+ - uid: 28203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-29.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Hall Outside AI
- proto: SurveillanceCameraMedical
entities:
- uid: 234
@@ -149043,17 +152188,6 @@ entities:
- SurveillanceCameraMedical
nameSet: True
id: Medbay Storage
- - uid: 279
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,-27.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Emergency Room
- uid: 280
components:
- type: Transform
@@ -149174,6 +152308,14 @@ entities:
- SurveillanceCameraMedical
nameSet: True
id: Dissection
+ - uid: 24909
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,-27.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Emergency Room
- uid: 27201
components:
- type: Transform
@@ -149327,17 +152469,6 @@ entities:
- SurveillanceCameraScience
nameSet: True
id: Toxins
- - uid: 226
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 71.5,-33.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: RD's Room
- uid: 227
components:
- type: Transform
@@ -149391,6 +152522,21 @@ entities:
- SurveillanceCameraScience
nameSet: True
id: Sci Inside
+ - uid: 27001
+ components:
+ - type: Transform
+ pos: 72.5,-37.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: RD's Room
+ - uid: 27002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,-20.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Robotics
- uid: 27219
components:
- type: Transform
@@ -149555,17 +152701,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Armory Exterior
- - uid: 233
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 63.5,-20.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Robotics
- uid: 293
components:
- type: Transform
@@ -149926,6 +153061,13 @@ entities:
- SurveillanceCameraService
nameSet: True
id: Botany Backroom
+ - uid: 27000
+ components:
+ - type: Transform
+ pos: -21.5,-13.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Newsroom
- uid: 27582
components:
- type: Transform
@@ -150016,12 +153158,10 @@ entities:
- uid: 16786
components:
- type: Transform
- pos: -30.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-13.5
parent: 8364
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSupply
- nameSet: True
id: Cargo Bay Closet
- uid: 16787
components:
@@ -150052,6 +153192,26 @@ entities:
- type: Transform
pos: -15.5,-55.5
parent: 8364
+- proto: SurveillanceWirelessCameraAnchoredEntertainment
+ entities:
+ - uid: 27860
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-9.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Newsroom
+- proto: SurveillanceWirelessCameraMovableEntertainment
+ entities:
+ - uid: 10703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-10.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Field Camera
- proto: Syringe
entities:
- uid: 4594
@@ -150070,26 +153230,6 @@ entities:
tags: []
- proto: Table
entities:
- - uid: 151
- components:
- - type: Transform
- pos: 3.5,-11.5
- parent: 8364
- - uid: 662
- components:
- - type: Transform
- pos: 27.5,-83.5
- parent: 8364
- - uid: 688
- components:
- - type: Transform
- pos: 26.5,-86.5
- parent: 8364
- - uid: 701
- components:
- - type: Transform
- pos: 30.5,-87.5
- parent: 8364
- uid: 1499
components:
- type: Transform
@@ -150165,11 +153305,6 @@ entities:
- type: Transform
pos: 18.5,-17.5
parent: 8364
- - uid: 3281
- components:
- - type: Transform
- pos: -4.5,-14.5
- parent: 8364
- uid: 3687
components:
- type: Transform
@@ -150246,16 +153381,6 @@ entities:
- type: Transform
pos: 4.5,11.5
parent: 8364
- - uid: 5729
- components:
- - type: Transform
- pos: -0.5,-11.5
- parent: 8364
- - uid: 5730
- components:
- - type: Transform
- pos: 3.5,-14.5
- parent: 8364
- uid: 5741
components:
- type: Transform
@@ -150366,11 +153491,6 @@ entities:
- type: Transform
pos: 37.5,-16.5
parent: 8364
- - uid: 8160
- components:
- - type: Transform
- pos: 3.5,-12.5
- parent: 8364
- uid: 8443
components:
- type: Transform
@@ -150857,11 +153977,6 @@ entities:
- type: Transform
pos: -35.5,-31.5
parent: 8364
- - uid: 14920
- components:
- - type: Transform
- pos: -4.5,-11.5
- parent: 8364
- uid: 14946
components:
- type: Transform
@@ -150932,11 +154047,6 @@ entities:
- type: Transform
pos: -31.5,-31.5
parent: 8364
- - uid: 15338
- components:
- - type: Transform
- pos: -4.5,-12.5
- parent: 8364
- uid: 15420
components:
- type: Transform
@@ -151139,11 +154249,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 6.5,-54.5
parent: 8364
- - uid: 17061
- components:
- - type: Transform
- pos: -2.5,-25.5
- parent: 8364
- uid: 17146
components:
- type: Transform
@@ -151550,11 +154655,6 @@ entities:
- type: Transform
pos: 6.5,32.5
parent: 8364
- - uid: 22553
- components:
- - type: Transform
- pos: -30.5,-18.5
- parent: 8364
- uid: 22585
components:
- type: Transform
@@ -151591,6 +154691,16 @@ entities:
- type: Transform
pos: 6.5,-61.5
parent: 8364
+ - uid: 23415
+ components:
+ - type: Transform
+ pos: -33.5,-18.5
+ parent: 8364
+ - uid: 25826
+ components:
+ - type: Transform
+ pos: -32.5,-18.5
+ parent: 8364
- uid: 25874
components:
- type: Transform
@@ -151651,16 +154761,6 @@ entities:
- type: Transform
pos: 59.5,-39.5
parent: 8364
- - uid: 27191
- components:
- - type: Transform
- pos: 32.5,-88.5
- parent: 8364
- - uid: 27192
- components:
- - type: Transform
- pos: 33.5,-88.5
- parent: 8364
- uid: 27376
components:
- type: Transform
@@ -152052,16 +155152,6 @@ entities:
parent: 8364
- proto: TableReinforced
entities:
- - uid: 828
- components:
- - type: Transform
- pos: 26.5,-105.5
- parent: 8364
- - uid: 834
- components:
- - type: Transform
- pos: 26.5,-106.5
- parent: 8364
- uid: 1610
components:
- type: Transform
@@ -152449,6 +155539,11 @@ entities:
- type: Transform
pos: 2.5,-43.5
parent: 8364
+ - uid: 25217
+ components:
+ - type: Transform
+ pos: -3.5,-24.5
+ parent: 8364
- uid: 26827
components:
- type: Transform
@@ -152469,6 +155564,21 @@ entities:
- type: Transform
pos: -10.5,3.5
parent: 8364
+ - uid: 26962
+ components:
+ - type: Transform
+ pos: 2.5,-24.5
+ parent: 8364
+ - uid: 27825
+ components:
+ - type: Transform
+ pos: 2.5,-23.5
+ parent: 8364
+ - uid: 27828
+ components:
+ - type: Transform
+ pos: -3.5,-23.5
+ parent: 8364
- proto: TableReinforcedGlass
entities:
- uid: 3167
@@ -152523,11 +155633,21 @@ entities:
- type: Transform
pos: 18.5,-6.5
parent: 8364
+ - uid: 3818
+ components:
+ - type: Transform
+ pos: -23.5,-10.5
+ parent: 8364
- uid: 4077
components:
- type: Transform
pos: -9.5,-15.5
parent: 8364
+ - uid: 4566
+ components:
+ - type: Transform
+ pos: -23.5,-9.5
+ parent: 8364
- uid: 5333
components:
- type: Transform
@@ -152608,11 +155728,29 @@ entities:
- type: Transform
pos: -11.5,-21.5
parent: 8364
+ - uid: 5789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-13.5
+ parent: 8364
+ - uid: 5827
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-12.5
+ parent: 8364
- uid: 5867
components:
- type: Transform
pos: -9.5,-27.5
parent: 8364
+ - uid: 6123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-13.5
+ parent: 8364
- uid: 6389
components:
- type: Transform
@@ -152703,6 +155841,11 @@ entities:
- type: Transform
pos: 12.5,-27.5
parent: 8364
+ - uid: 7087
+ components:
+ - type: Transform
+ pos: 57.5,-7.5
+ parent: 8364
- uid: 8392
components:
- type: Transform
@@ -152723,11 +155866,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
@@ -152738,6 +155876,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
@@ -152823,11 +155967,6 @@ entities:
- type: Transform
pos: 19.5,-6.5
parent: 8364
- - uid: 10548
- components:
- - type: Transform
- pos: 57.5,-7.5
- parent: 8364
- uid: 10661
components:
- type: Transform
@@ -153038,26 +156177,6 @@ entities:
- type: Transform
pos: -9.5,-14.5
parent: 8364
- - uid: 14090
- components:
- - type: Transform
- pos: -22.5,-13.5
- parent: 8364
- - uid: 14109
- components:
- - type: Transform
- pos: -22.5,-12.5
- parent: 8364
- - uid: 14112
- components:
- - type: Transform
- pos: -21.5,-11.5
- parent: 8364
- - uid: 14124
- components:
- - type: Transform
- pos: -22.5,-11.5
- parent: 8364
- uid: 14347
components:
- type: Transform
@@ -153173,6 +156292,12 @@ entities:
- type: Transform
pos: -10.5,-13.5
parent: 8364
+ - uid: 23219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-13.5
+ parent: 8364
- uid: 25679
components:
- type: Transform
@@ -153234,26 +156359,26 @@ entities:
parent: 8364
- proto: TegCenter
entities:
- - uid: 5009
+ - uid: 4052
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-75.5
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-76.5
parent: 8364
- proto: TegCirculator
entities:
- - uid: 5010
- components:
- - type: Transform
- pos: 16.5,-75.5
- parent: 8364
- - type: PointLight
- color: '#FF3300FF'
- - uid: 27658
+ - uid: 27023
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 14.5,-75.5
+ pos: 17.5,-76.5
+ parent: 8364
+ - type: PointLight
+ color: '#FF3300FF'
+ - uid: 27025
+ components:
+ - type: Transform
+ pos: 19.5,-76.5
parent: 8364
- type: PointLight
color: '#FF3300FF'
@@ -153264,11 +156389,6 @@ entities:
- type: Transform
pos: 53.5,-31.5
parent: 8364
- - uid: 16619
- components:
- - type: Transform
- pos: 32.5,-112.5
- parent: 8364
- uid: 27333
components:
- type: Transform
@@ -153490,19 +156610,19 @@ entities:
- type: Transform
pos: 5.5,-79.5
parent: 8364
-- proto: Thruster
+- proto: ThrusterUnanchored
entities:
- - uid: 12429
+ - uid: 27027
components:
- type: Transform
pos: -67.5,15.5
parent: 8364
- - uid: 12458
+ - uid: 27028
components:
- type: Transform
pos: -67.5,13.5
parent: 8364
- - uid: 12459
+ - uid: 27029
components:
- type: Transform
pos: -67.5,14.5
@@ -153659,21 +156779,11 @@ entities:
- type: Transform
pos: 49.5,16.5
parent: 8364
- - uid: 11751
- components:
- - type: Transform
- pos: 48.5,11.5
- parent: 8364
- uid: 12254
components:
- type: Transform
pos: -46.5,2.5
parent: 8364
- - uid: 13847
- components:
- - type: Transform
- pos: -45.5,22.5
- parent: 8364
- uid: 15977
components:
- type: Transform
@@ -153693,7 +156803,7 @@ entities:
- uid: 21227
components:
- type: Transform
- pos: 61.5,-19.5
+ pos: 61.706764,-19.34575
parent: 8364
- uid: 21234
components:
@@ -153710,11 +156820,6 @@ entities:
- type: Transform
pos: -3.614934,9.66169
parent: 8364
- - uid: 27194
- components:
- - type: Transform
- pos: 34.60652,-90.48169
- parent: 8364
- proto: ToolboxEmergency
entities:
- uid: 14294
@@ -153775,11 +156880,6 @@ entities:
- type: Transform
pos: 46.5,13.5
parent: 8364
- - uid: 11750
- components:
- - type: Transform
- pos: 49.5,11.5
- parent: 8364
- uid: 12252
components:
- type: Transform
@@ -153800,11 +156900,6 @@ entities:
- type: Transform
pos: -28.5,-34.5
parent: 8364
- - uid: 15975
- components:
- - type: Transform
- pos: -34.5,-63.5
- parent: 8364
- uid: 15976
components:
- type: Transform
@@ -153840,11 +156935,6 @@ entities:
- type: Transform
pos: -12.5005455,3.5448246
parent: 8364
- - uid: 27193
- components:
- - type: Transform
- pos: 34.48152,-90.32544
- parent: 8364
- uid: 27401
components:
- type: Transform
@@ -153855,6 +156945,13 @@ entities:
- type: Transform
pos: 7.435697,-65.321434
parent: 8364
+- proto: ToyAi
+ entities:
+ - uid: 5871
+ components:
+ - type: Transform
+ pos: 11.47881,-68.392944
+ parent: 8364
- proto: ToyAmongPequeno
entities:
- uid: 27450
@@ -153976,11 +157073,6 @@ entities:
parent: 8364
- proto: trayScanner
entities:
- - uid: 2389
- components:
- - type: Transform
- pos: 51.56124,-43.44272
- parent: 8364
- uid: 12266
components:
- type: Transform
@@ -154215,6 +157307,18 @@ entities:
rot: -1.5707963267948966 rad
pos: 20.5,2.5
parent: 8364
+- proto: Urn
+ entities:
+ - uid: 10873
+ components:
+ - type: Transform
+ pos: 74.51828,2.7055633
+ parent: 8364
+ - uid: 10874
+ components:
+ - type: Transform
+ pos: 74.51828,1.7257164
+ parent: 8364
- proto: Vaccinator
entities:
- uid: 18702
@@ -154380,7 +157484,7 @@ entities:
- type: Transform
pos: 21.5,15.5
parent: 8364
- - uid: 16208
+ - uid: 25880
components:
- type: Transform
pos: -38.5,-4.5
@@ -154429,11 +157533,6 @@ entities:
- type: Transform
pos: 7.5,0.5
parent: 8364
- - uid: 14564
- components:
- - type: Transform
- pos: -18.5,-10.5
- parent: 8364
- proto: VendingMachineCondiments
entities:
- uid: 6958
@@ -154737,18 +157836,6 @@ entities:
- type: Transform
pos: 34.5,-33.5
parent: 8364
-- proto: VendingMachineWinter
- entities:
- - uid: 2826
- components:
- - type: Transform
- pos: -39.5,-4.5
- parent: 8364
- - uid: 27533
- components:
- - type: Transform
- pos: 22.5,15.5
- parent: 8364
- proto: VendingMachineYouTool
entities:
- uid: 12245
@@ -155007,6 +158094,12 @@ entities:
- type: Transform
pos: -4.5,4.5
parent: 8364
+ - uid: 144
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-11.5
+ parent: 8364
- uid: 178
components:
- type: Transform
@@ -155288,11 +158381,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -76.5,-2.5
parent: 8364
- - uid: 570
- components:
- - type: Transform
- pos: 30.5,-83.5
- parent: 8364
- uid: 585
components:
- type: Transform
@@ -155319,11 +158407,6 @@ entities:
- type: Transform
pos: -65.5,7.5
parent: 8364
- - uid: 591
- components:
- - type: Transform
- pos: 34.5,-84.5
- parent: 8364
- uid: 597
components:
- type: Transform
@@ -155478,16 +158561,6 @@ entities:
- type: Transform
pos: 45.5,16.5
parent: 8364
- - uid: 738
- components:
- - type: Transform
- pos: 30.5,-92.5
- parent: 8364
- - uid: 739
- components:
- - type: Transform
- pos: 26.5,-92.5
- parent: 8364
- uid: 740
components:
- type: Transform
@@ -155523,6 +158596,12 @@ entities:
- type: Transform
pos: -26.5,11.5
parent: 8364
+ - uid: 854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-73.5
+ parent: 8364
- uid: 875
components:
- type: Transform
@@ -155593,6 +158672,12 @@ entities:
- type: Transform
pos: 50.5,18.5
parent: 8364
+ - uid: 901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-16.5
+ parent: 8364
- uid: 925
components:
- type: Transform
@@ -157719,6 +160804,11 @@ entities:
- type: Transform
pos: 75.5,-26.5
parent: 8364
+ - uid: 2389
+ components:
+ - type: Transform
+ pos: 27.5,-82.5
+ parent: 8364
- uid: 2408
components:
- type: Transform
@@ -157927,7 +161017,7 @@ entities:
- uid: 2832
components:
- type: Transform
- pos: -1.5,-17.5
+ pos: 24.5,-84.5
parent: 8364
- uid: 2862
components:
@@ -159086,45 +162176,17 @@ entities:
- type: Transform
pos: -22.5,-72.5
parent: 8364
- - uid: 3601
- components:
- - type: Transform
- pos: -21.5,-72.5
- parent: 8364
- - uid: 3602
- components:
- - type: Transform
- pos: -21.5,-71.5
- parent: 8364
- - uid: 3604
- components:
- - type: Transform
- pos: -20.5,-71.5
- parent: 8364
- - uid: 3605
- components:
- - type: Transform
- pos: -19.5,-76.5
- parent: 8364
- - uid: 3606
- components:
- - type: Transform
- pos: -18.5,-71.5
- parent: 8364
- uid: 3610
components:
- type: Transform
- pos: -21.5,-67.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-15.5
parent: 8364
- uid: 3612
components:
- type: Transform
- pos: -21.5,-66.5
- parent: 8364
- - uid: 3613
- components:
- - type: Transform
- pos: -21.5,-65.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-17.5
parent: 8364
- uid: 3614
components:
@@ -159169,12 +162231,14 @@ entities:
- uid: 3659
components:
- type: Transform
- pos: -22.5,-74.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-17.5
parent: 8364
- uid: 3660
components:
- type: Transform
- pos: -22.5,-76.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-16.5
parent: 8364
- uid: 3664
components:
@@ -159199,38 +162263,25 @@ entities:
- uid: 3670
components:
- type: Transform
- pos: -22.5,-73.5
- parent: 8364
- - uid: 3671
- components:
- - type: Transform
- pos: -18.5,-72.5
- parent: 8364
- - uid: 3672
- components:
- - type: Transform
- pos: -18.5,-73.5
- parent: 8364
- - uid: 3673
- components:
- - type: Transform
- pos: -22.5,-75.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-16.5
parent: 8364
- uid: 3688
components:
- type: Transform
pos: 84.5,-60.5
parent: 8364
+ - uid: 3695
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-15.5
+ parent: 8364
- uid: 3698
components:
- type: Transform
pos: 0.5,-65.5
parent: 8364
- - uid: 3701
- components:
- - type: Transform
- pos: 12.5,-82.5
- parent: 8364
- uid: 3706
components:
- type: Transform
@@ -159381,18 +162432,6 @@ entities:
- type: Transform
pos: -9.5,-77.5
parent: 8364
- - uid: 3824
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-82.5
- parent: 8364
- - uid: 3825
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-85.5
- parent: 8364
- uid: 3830
components:
- type: Transform
@@ -159441,28 +162480,29 @@ entities:
- uid: 3854
components:
- type: Transform
- pos: 20.5,-79.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-12.5
parent: 8364
- uid: 3859
components:
- type: Transform
pos: 7.5,-79.5
parent: 8364
+ - uid: 3865
+ components:
+ - type: Transform
+ pos: -1.5,-25.5
+ parent: 8364
- uid: 3867
components:
- type: Transform
- pos: -16.5,-71.5
+ pos: -4.5,-25.5
parent: 8364
- uid: 3870
components:
- type: Transform
pos: 20.5,-70.5
parent: 8364
- - uid: 3873
- components:
- - type: Transform
- pos: 20.5,-80.5
- parent: 8364
- uid: 3895
components:
- type: Transform
@@ -159650,11 +162690,21 @@ entities:
- type: Transform
pos: 67.5,-70.5
parent: 8364
+ - uid: 4005
+ components:
+ - type: Transform
+ pos: 24.5,-83.5
+ parent: 8364
- uid: 4028
components:
- type: Transform
pos: 23.5,-59.5
parent: 8364
+ - uid: 4031
+ components:
+ - type: Transform
+ pos: 17.5,-82.5
+ parent: 8364
- uid: 4033
components:
- type: Transform
@@ -159678,7 +162728,7 @@ entities:
- uid: 4041
components:
- type: Transform
- pos: -17.5,-71.5
+ pos: 19.5,-83.5
parent: 8364
- uid: 4043
components:
@@ -159690,11 +162740,6 @@ entities:
- type: Transform
pos: 10.5,-50.5
parent: 8364
- - uid: 4045
- components:
- - type: Transform
- pos: 20.5,-81.5
- parent: 8364
- uid: 4053
components:
- type: Transform
@@ -159713,14 +162758,7 @@ entities:
- uid: 4105
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-87.5
- parent: 8364
- - uid: 4110
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-87.5
+ pos: 26.5,-82.5
parent: 8364
- uid: 4114
components:
@@ -159832,12 +162870,6 @@ entities:
- type: Transform
pos: 15.5,-67.5
parent: 8364
- - uid: 4139
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-87.5
- parent: 8364
- uid: 4142
components:
- type: Transform
@@ -160048,6 +163080,24 @@ entities:
- type: Transform
pos: 26.5,-45.5
parent: 8364
+ - uid: 4206
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-13.5
+ parent: 8364
+ - uid: 4208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-13.5
+ parent: 8364
+ - uid: 4209
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-16.5
+ parent: 8364
- uid: 4216
components:
- type: Transform
@@ -160088,6 +163138,11 @@ entities:
- type: Transform
pos: 73.5,-65.5
parent: 8364
+ - uid: 4224
+ components:
+ - type: Transform
+ pos: -2.5,-25.5
+ parent: 8364
- uid: 4225
components:
- type: Transform
@@ -160103,67 +163158,6 @@ entities:
- type: Transform
pos: 78.5,-65.5
parent: 8364
- - uid: 4229
- components:
- - type: Transform
- pos: 25.5,-87.5
- parent: 8364
- - uid: 4230
- components:
- - type: Transform
- pos: 25.5,-88.5
- parent: 8364
- - uid: 4231
- components:
- - type: Transform
- pos: 26.5,-88.5
- parent: 8364
- - uid: 4232
- components:
- - type: Transform
- pos: 27.5,-88.5
- parent: 8364
- - uid: 4233
- components:
- - type: Transform
- pos: 29.5,-88.5
- parent: 8364
- - uid: 4234
- components:
- - type: Transform
- pos: 30.5,-88.5
- parent: 8364
- - uid: 4235
- components:
- - type: Transform
- pos: 31.5,-88.5
- parent: 8364
- - uid: 4236
- components:
- - type: Transform
- pos: 31.5,-87.5
- parent: 8364
- - uid: 4237
- components:
- - type: Transform
- pos: 32.5,-87.5
- parent: 8364
- - uid: 4238
- components:
- - type: Transform
- pos: 33.5,-87.5
- parent: 8364
- - uid: 4239
- components:
- - type: Transform
- pos: 34.5,-87.5
- parent: 8364
- - uid: 4241
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-87.5
- parent: 8364
- uid: 4243
components:
- type: Transform
@@ -160174,936 +163168,49 @@ entities:
- type: Transform
pos: 64.5,-58.5
parent: 8364
- - uid: 4247
+ - uid: 4276
components:
- type: Transform
- pos: 22.5,-88.5
- parent: 8364
- - uid: 4248
- components:
- - type: Transform
- pos: 22.5,-87.5
- parent: 8364
- - uid: 4249
- components:
- - type: Transform
- pos: 23.5,-87.5
- parent: 8364
- - uid: 4250
- components:
- - type: Transform
- pos: 24.5,-87.5
- parent: 8364
- - uid: 4251
- components:
- - type: Transform
- pos: 21.5,-89.5
- parent: 8364
- - uid: 4252
- components:
- - type: Transform
- pos: 21.5,-90.5
- parent: 8364
- - uid: 4253
- components:
- - type: Transform
- pos: 21.5,-91.5
- parent: 8364
- - uid: 4255
- components:
- - type: Transform
- pos: 26.5,-94.5
- parent: 8364
- - uid: 4256
- components:
- - type: Transform
- pos: 22.5,-93.5
- parent: 8364
- - uid: 4258
- components:
- - type: Transform
- pos: 22.5,-94.5
- parent: 8364
- - uid: 4259
- components:
- - type: Transform
- pos: 21.5,-92.5
- parent: 8364
- - uid: 4260
- components:
- - type: Transform
- pos: 21.5,-93.5
- parent: 8364
- - uid: 4261
- components:
- - type: Transform
- pos: 26.5,-90.5
- parent: 8364
- - uid: 4262
- components:
- - type: Transform
- pos: 26.5,-89.5
- parent: 8364
- - uid: 4263
- components:
- - type: Transform
- pos: 26.5,-93.5
- parent: 8364
- - uid: 4264
- components:
- - type: Transform
- pos: 21.5,-88.5
- parent: 8364
- - uid: 4265
- components:
- - type: Transform
- pos: 34.5,-88.5
- parent: 8364
- - uid: 4266
- components:
- - type: Transform
- pos: 35.5,-88.5
- parent: 8364
- - uid: 4267
- components:
- - type: Transform
- pos: 35.5,-89.5
- parent: 8364
- - uid: 4268
- components:
- - type: Transform
- pos: 35.5,-90.5
- parent: 8364
- - uid: 4270
- components:
- - type: Transform
- pos: 35.5,-91.5
- parent: 8364
- - uid: 4271
- components:
- - type: Transform
- pos: 35.5,-92.5
- parent: 8364
- - uid: 4272
- components:
- - type: Transform
- pos: 35.5,-93.5
- parent: 8364
- - uid: 4273
- components:
- - type: Transform
- pos: 34.5,-93.5
- parent: 8364
- - uid: 4274
- components:
- - type: Transform
- pos: 34.5,-94.5
- parent: 8364
- - uid: 4277
- components:
- - type: Transform
- pos: 30.5,-89.5
- parent: 8364
- - uid: 4278
- components:
- - type: Transform
- pos: 30.5,-90.5
- parent: 8364
- - uid: 4279
- components:
- - type: Transform
- pos: 30.5,-94.5
- parent: 8364
- - uid: 4280
- components:
- - type: Transform
- pos: 30.5,-93.5
- parent: 8364
- - uid: 4281
- components:
- - type: Transform
- pos: 29.5,-94.5
- parent: 8364
- - uid: 4282
- components:
- - type: Transform
- pos: 27.5,-94.5
- parent: 8364
- - uid: 4283
- components:
- - type: Transform
- pos: 32.5,-118.5
- parent: 8364
- - uid: 4284
- components:
- - type: Transform
- pos: 32.5,-117.5
- parent: 8364
- - uid: 4285
- components:
- - type: Transform
- pos: 32.5,-116.5
- parent: 8364
- - uid: 4286
- components:
- - type: Transform
- pos: 31.5,-118.5
- parent: 8364
- - uid: 4287
- components:
- - type: Transform
- pos: 31.5,-117.5
- parent: 8364
- - uid: 4288
- components:
- - type: Transform
- pos: 31.5,-116.5
- parent: 8364
- - uid: 4289
- components:
- - type: Transform
- pos: 30.5,-118.5
- parent: 8364
- - uid: 4290
- components:
- - type: Transform
- pos: 30.5,-117.5
- parent: 8364
- - uid: 4291
- components:
- - type: Transform
- pos: 30.5,-116.5
- parent: 8364
- - uid: 4292
- components:
- - type: Transform
- pos: 29.5,-118.5
- parent: 8364
- - uid: 4293
- components:
- - type: Transform
- pos: 29.5,-117.5
- parent: 8364
- - uid: 4294
- components:
- - type: Transform
- pos: 29.5,-116.5
- parent: 8364
- - uid: 4295
- components:
- - type: Transform
- pos: 28.5,-118.5
- parent: 8364
- - uid: 4296
- components:
- - type: Transform
- pos: 28.5,-117.5
- parent: 8364
- - uid: 4297
- components:
- - type: Transform
- pos: 28.5,-116.5
- parent: 8364
- - uid: 4298
- components:
- - type: Transform
- pos: 27.5,-118.5
- parent: 8364
- - uid: 4299
- components:
- - type: Transform
- pos: 27.5,-117.5
- parent: 8364
- - uid: 4300
- components:
- - type: Transform
- pos: 27.5,-116.5
- parent: 8364
- - uid: 4301
- components:
- - type: Transform
- pos: 26.5,-118.5
- parent: 8364
- - uid: 4302
- components:
- - type: Transform
- pos: 26.5,-117.5
- parent: 8364
- - uid: 4303
- components:
- - type: Transform
- pos: 26.5,-116.5
- parent: 8364
- - uid: 4304
- components:
- - type: Transform
- pos: 25.5,-118.5
- parent: 8364
- - uid: 4305
- components:
- - type: Transform
- pos: 25.5,-117.5
- parent: 8364
- - uid: 4306
- components:
- - type: Transform
- pos: 25.5,-116.5
- parent: 8364
- - uid: 4307
- components:
- - type: Transform
- pos: 24.5,-118.5
- parent: 8364
- - uid: 4308
- components:
- - type: Transform
- pos: 24.5,-117.5
- parent: 8364
- - uid: 4309
- components:
- - type: Transform
- pos: 24.5,-116.5
- parent: 8364
- - uid: 4310
- components:
- - type: Transform
- pos: 33.5,-117.5
- parent: 8364
- - uid: 4311
- components:
- - type: Transform
- pos: 33.5,-116.5
- parent: 8364
- - uid: 4312
- components:
- - type: Transform
- pos: 33.5,-115.5
- parent: 8364
- - uid: 4313
- components:
- - type: Transform
- pos: 33.5,-114.5
- parent: 8364
- - uid: 4314
- components:
- - type: Transform
- pos: 33.5,-113.5
- parent: 8364
- - uid: 4315
- components:
- - type: Transform
- pos: 33.5,-112.5
- parent: 8364
- - uid: 4316
- components:
- - type: Transform
- pos: 33.5,-111.5
- parent: 8364
- - uid: 4317
- components:
- - type: Transform
- pos: 33.5,-110.5
- parent: 8364
- - uid: 4318
- components:
- - type: Transform
- pos: 33.5,-109.5
- parent: 8364
- - uid: 4319
- components:
- - type: Transform
- pos: 34.5,-116.5
- parent: 8364
- - uid: 4320
- components:
- - type: Transform
- pos: 34.5,-115.5
- parent: 8364
- - uid: 4321
- components:
- - type: Transform
- pos: 34.5,-114.5
- parent: 8364
- - uid: 4322
- components:
- - type: Transform
- pos: 34.5,-113.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,-78.5
parent: 8364
- uid: 4323
components:
- type: Transform
- pos: 34.5,-112.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-74.5
parent: 8364
- uid: 4324
components:
- type: Transform
- pos: 34.5,-111.5
- parent: 8364
- - uid: 4325
- components:
- - type: Transform
- pos: 34.5,-110.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-77.5
parent: 8364
- uid: 4326
components:
- type: Transform
- pos: 34.5,-109.5
- parent: 8364
- - uid: 4327
- components:
- - type: Transform
- pos: 34.5,-108.5
- parent: 8364
- - uid: 4328
- components:
- - type: Transform
- pos: 34.5,-107.5
- parent: 8364
- - uid: 4329
- components:
- - type: Transform
- pos: 34.5,-106.5
- parent: 8364
- - uid: 4330
- components:
- - type: Transform
- pos: 34.5,-105.5
- parent: 8364
- - uid: 4331
- components:
- - type: Transform
- pos: 34.5,-104.5
- parent: 8364
- - uid: 4332
- components:
- - type: Transform
- pos: 34.5,-103.5
- parent: 8364
- - uid: 4333
- components:
- - type: Transform
- pos: 34.5,-102.5
- parent: 8364
- - uid: 4334
- components:
- - type: Transform
- pos: 33.5,-102.5
- parent: 8364
- - uid: 4335
- components:
- - type: Transform
- pos: 33.5,-101.5
- parent: 8364
- - uid: 4336
- components:
- - type: Transform
- pos: 33.5,-100.5
- parent: 8364
- - uid: 4337
- components:
- - type: Transform
- pos: 33.5,-99.5
- parent: 8364
- - uid: 4338
- components:
- - type: Transform
- pos: 33.5,-98.5
- parent: 8364
- - uid: 4339
- components:
- - type: Transform
- pos: 33.5,-97.5
- parent: 8364
- - uid: 4340
- components:
- - type: Transform
- pos: 34.5,-97.5
- parent: 8364
- - uid: 4341
- components:
- - type: Transform
- pos: 34.5,-96.5
- parent: 8364
- - uid: 4342
- components:
- - type: Transform
- pos: 34.5,-95.5
- parent: 8364
- - uid: 4343
- components:
- - type: Transform
- pos: 32.5,-115.5
- parent: 8364
- - uid: 4344
- components:
- - type: Transform
- pos: 32.5,-114.5
- parent: 8364
- - uid: 4345
- components:
- - type: Transform
- pos: 32.5,-113.5
- parent: 8364
- - uid: 4346
- components:
- - type: Transform
- pos: 24.5,-115.5
- parent: 8364
- - uid: 4347
- components:
- - type: Transform
- pos: 24.5,-114.5
- parent: 8364
- - uid: 4348
- components:
- - type: Transform
- pos: 24.5,-113.5
- parent: 8364
- - uid: 4349
- components:
- - type: Transform
- pos: 23.5,-117.5
- parent: 8364
- - uid: 4350
- components:
- - type: Transform
- pos: 23.5,-116.5
- parent: 8364
- - uid: 4351
- components:
- - type: Transform
- pos: 23.5,-115.5
- parent: 8364
- - uid: 4352
- components:
- - type: Transform
- pos: 23.5,-114.5
- parent: 8364
- - uid: 4353
- components:
- - type: Transform
- pos: 23.5,-113.5
- parent: 8364
- - uid: 4354
- components:
- - type: Transform
- pos: 23.5,-112.5
- parent: 8364
- - uid: 4355
- components:
- - type: Transform
- pos: 23.5,-111.5
- parent: 8364
- - uid: 4356
- components:
- - type: Transform
- pos: 23.5,-110.5
- parent: 8364
- - uid: 4357
- components:
- - type: Transform
- pos: 23.5,-109.5
- parent: 8364
- - uid: 4358
- components:
- - type: Transform
- pos: 22.5,-116.5
- parent: 8364
- - uid: 4359
- components:
- - type: Transform
- pos: 22.5,-115.5
- parent: 8364
- - uid: 4360
- components:
- - type: Transform
- pos: 22.5,-114.5
- parent: 8364
- - uid: 4361
- components:
- - type: Transform
- pos: 22.5,-113.5
- parent: 8364
- - uid: 4362
- components:
- - type: Transform
- pos: 22.5,-112.5
- parent: 8364
- - uid: 4363
- components:
- - type: Transform
- pos: 22.5,-111.5
- parent: 8364
- - uid: 4364
- components:
- - type: Transform
- pos: 22.5,-110.5
- parent: 8364
- - uid: 4365
- components:
- - type: Transform
- pos: 22.5,-109.5
- parent: 8364
- - uid: 4366
- components:
- - type: Transform
- pos: 22.5,-108.5
- parent: 8364
- - uid: 4367
- components:
- - type: Transform
- pos: 22.5,-107.5
- parent: 8364
- - uid: 4368
- components:
- - type: Transform
- pos: 22.5,-106.5
- parent: 8364
- - uid: 4369
- components:
- - type: Transform
- pos: 22.5,-105.5
- parent: 8364
- - uid: 4370
- components:
- - type: Transform
- pos: 22.5,-104.5
- parent: 8364
- - uid: 4371
- components:
- - type: Transform
- pos: 22.5,-103.5
- parent: 8364
- - uid: 4372
- components:
- - type: Transform
- pos: 22.5,-102.5
- parent: 8364
- - uid: 4373
- components:
- - type: Transform
- pos: 23.5,-102.5
- parent: 8364
- - uid: 4374
- components:
- - type: Transform
- pos: 23.5,-101.5
- parent: 8364
- - uid: 4375
- components:
- - type: Transform
- pos: 23.5,-100.5
- parent: 8364
- - uid: 4376
- components:
- - type: Transform
- pos: 23.5,-99.5
- parent: 8364
- - uid: 4377
- components:
- - type: Transform
- pos: 23.5,-98.5
- parent: 8364
- - uid: 4378
- components:
- - type: Transform
- pos: 23.5,-97.5
- parent: 8364
- - uid: 4379
- components:
- - type: Transform
- pos: 22.5,-97.5
- parent: 8364
- - uid: 4380
- components:
- - type: Transform
- pos: 22.5,-96.5
- parent: 8364
- - uid: 4381
- components:
- - type: Transform
- pos: 22.5,-95.5
- parent: 8364
- - uid: 4382
- components:
- - type: Transform
- pos: 31.5,-95.5
- parent: 8364
- - uid: 4383
- components:
- - type: Transform
- pos: 31.5,-96.5
- parent: 8364
- - uid: 4384
- components:
- - type: Transform
- pos: 31.5,-97.5
- parent: 8364
- - uid: 4385
- components:
- - type: Transform
- pos: 31.5,-98.5
+ pos: -21.5,-72.5
parent: 8364
- uid: 4386
components:
- type: Transform
pos: 64.5,-59.5
parent: 8364
- - uid: 4387
- components:
- - type: Transform
- pos: 31.5,-100.5
- parent: 8364
- - uid: 4388
- components:
- - type: Transform
- pos: 31.5,-101.5
- parent: 8364
- - uid: 4389
- components:
- - type: Transform
- pos: 31.5,-102.5
- parent: 8364
- - uid: 4390
- components:
- - type: Transform
- pos: 31.5,-103.5
- parent: 8364
- - uid: 4391
- components:
- - type: Transform
- pos: 31.5,-104.5
- parent: 8364
- - uid: 4392
- components:
- - type: Transform
- pos: 31.5,-105.5
- parent: 8364
- - uid: 4393
- components:
- - type: Transform
- pos: 31.5,-106.5
- parent: 8364
- - uid: 4394
- components:
- - type: Transform
- pos: 31.5,-107.5
- parent: 8364
- - uid: 4395
- components:
- - type: Transform
- pos: 32.5,-104.5
- parent: 8364
- - uid: 4396
- components:
- - type: Transform
- pos: 32.5,-105.5
- parent: 8364
- - uid: 4397
- components:
- - type: Transform
- pos: 32.5,-106.5
- parent: 8364
- - uid: 4398
- components:
- - type: Transform
- pos: 32.5,-107.5
- parent: 8364
- - uid: 4399
- components:
- - type: Transform
- pos: 32.5,-108.5
- parent: 8364
- - uid: 4400
- components:
- - type: Transform
- pos: 24.5,-104.5
- parent: 8364
- - uid: 4401
- components:
- - type: Transform
- pos: 24.5,-105.5
- parent: 8364
- - uid: 4402
- components:
- - type: Transform
- pos: 24.5,-106.5
- parent: 8364
- - uid: 4403
- components:
- - type: Transform
- pos: 24.5,-107.5
- parent: 8364
- - uid: 4404
- components:
- - type: Transform
- pos: 24.5,-108.5
- parent: 8364
- - uid: 4405
- components:
- - type: Transform
- pos: 25.5,-107.5
- parent: 8364
- - uid: 4406
- components:
- - type: Transform
- pos: 25.5,-106.5
- parent: 8364
- - uid: 4407
- components:
- - type: Transform
- pos: 25.5,-105.5
- parent: 8364
- - uid: 4408
- components:
- - type: Transform
- pos: 25.5,-104.5
- parent: 8364
- - uid: 4409
- components:
- - type: Transform
- pos: 25.5,-103.5
- parent: 8364
- - uid: 4410
- components:
- - type: Transform
- pos: 25.5,-102.5
- parent: 8364
- - uid: 4411
- components:
- - type: Transform
- pos: 25.5,-101.5
- parent: 8364
- - uid: 4412
- components:
- - type: Transform
- pos: 25.5,-100.5
- parent: 8364
- uid: 4413
components:
- type: Transform
pos: 59.5,-63.5
parent: 8364
- - uid: 4414
- components:
- - type: Transform
- pos: 25.5,-98.5
- parent: 8364
- - uid: 4415
- components:
- - type: Transform
- pos: 25.5,-97.5
- parent: 8364
- - uid: 4416
- components:
- - type: Transform
- pos: 25.5,-96.5
- parent: 8364
- - uid: 4417
- components:
- - type: Transform
- pos: 25.5,-95.5
- parent: 8364
- - uid: 4427
- components:
- - type: Transform
- pos: 30.5,-104.5
- parent: 8364
- - uid: 4428
- components:
- - type: Transform
- pos: 29.5,-104.5
- parent: 8364
- uid: 4429
components:
- type: Transform
- pos: 27.5,-104.5
+ pos: 16.5,-86.5
parent: 8364
- - uid: 4432
+ - uid: 4457
components:
- type: Transform
- pos: 26.5,-104.5
- parent: 8364
- - uid: 4448
- components:
- - type: Transform
- pos: 29.5,-111.5
- parent: 8364
- - uid: 4449
- components:
- - type: Transform
- pos: 29.5,-112.5
- parent: 8364
- - uid: 4450
- components:
- - type: Transform
- pos: 29.5,-113.5
- parent: 8364
- - uid: 4451
- components:
- - type: Transform
- pos: 27.5,-111.5
- parent: 8364
- - uid: 4452
- components:
- - type: Transform
- pos: 27.5,-112.5
- parent: 8364
- - uid: 4453
- components:
- - type: Transform
- pos: 27.5,-113.5
- parent: 8364
- - uid: 4454
- components:
- - type: Transform
- pos: 28.5,-112.5
- parent: 8364
- - uid: 4462
- components:
- - type: Transform
- pos: 32.5,-111.5
- parent: 8364
- - uid: 4478
- components:
- - type: Transform
- pos: 32.5,-110.5
- parent: 8364
- - uid: 4479
- components:
- - type: Transform
- pos: 32.5,-109.5
- parent: 8364
- - uid: 4480
- components:
- - type: Transform
- pos: 24.5,-111.5
- parent: 8364
- - uid: 4481
- components:
- - type: Transform
- pos: 24.5,-110.5
- parent: 8364
- - uid: 4482
- components:
- - type: Transform
- pos: 24.5,-109.5
- parent: 8364
- - uid: 4500
- components:
- - type: Transform
- pos: 20.5,-82.5
- parent: 8364
- - uid: 4503
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-87.5
- parent: 8364
- - uid: 4504
- components:
- - type: Transform
- pos: 1.5,-64.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,-84.5
parent: 8364
- uid: 4505
components:
@@ -161140,20 +163247,23 @@ entities:
- type: Transform
pos: 7.5,-76.5
parent: 8364
- - uid: 4549
- components:
- - type: Transform
- pos: 20.5,-78.5
- parent: 8364
- - uid: 4550
- components:
- - type: Transform
- pos: 20.5,-76.5
- parent: 8364
- uid: 4551
components:
- type: Transform
- pos: 20.5,-77.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-11.5
+ parent: 8364
+ - uid: 4559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-10.5
+ parent: 8364
+ - uid: 4560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-10.5
parent: 8364
- uid: 4580
components:
@@ -161205,46 +163315,6 @@ entities:
- type: Transform
pos: -20.5,-88.5
parent: 8364
- - uid: 4621
- components:
- - type: Transform
- pos: -20.5,-77.5
- parent: 8364
- - uid: 4622
- components:
- - type: Transform
- pos: -20.5,-78.5
- parent: 8364
- - uid: 4623
- components:
- - type: Transform
- pos: -20.5,-79.5
- parent: 8364
- - uid: 4624
- components:
- - type: Transform
- pos: -20.5,-80.5
- parent: 8364
- - uid: 4625
- components:
- - type: Transform
- pos: -20.5,-81.5
- parent: 8364
- - uid: 4626
- components:
- - type: Transform
- pos: -20.5,-82.5
- parent: 8364
- - uid: 4627
- components:
- - type: Transform
- pos: -20.5,-83.5
- parent: 8364
- - uid: 4628
- components:
- - type: Transform
- pos: -20.5,-76.5
- parent: 8364
- uid: 4647
components:
- type: Transform
@@ -161530,11 +163600,6 @@ entities:
- type: Transform
pos: -29.5,-75.5
parent: 8364
- - uid: 4834
- components:
- - type: Transform
- pos: -28.5,-74.5
- parent: 8364
- uid: 4835
components:
- type: Transform
@@ -161640,55 +163705,11 @@ entities:
- type: Transform
pos: -39.5,-42.5
parent: 8364
- - uid: 4935
- components:
- - type: Transform
- pos: 33.5,-83.5
- parent: 8364
- - uid: 4936
- components:
- - type: Transform
- pos: 32.5,-83.5
- parent: 8364
- - uid: 4937
- components:
- - type: Transform
- pos: 31.5,-83.5
- parent: 8364
- - uid: 4939
- components:
- - type: Transform
- pos: 30.5,-82.5
- parent: 8364
- - uid: 4940
- components:
- - type: Transform
- pos: 29.5,-82.5
- parent: 8364
- - uid: 4941
- components:
- - type: Transform
- pos: 27.5,-82.5
- parent: 8364
- - uid: 4942
- components:
- - type: Transform
- pos: 26.5,-82.5
- parent: 8364
- - uid: 4943
- components:
- - type: Transform
- pos: 34.5,-86.5
- parent: 8364
- uid: 4944
components:
- type: Transform
- pos: 34.5,-83.5
- parent: 8364
- - uid: 4953
- components:
- - type: Transform
- pos: 34.5,-86.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,-83.5
parent: 8364
- uid: 4954
components:
@@ -161700,40 +163721,11 @@ entities:
- type: Transform
pos: 26.5,34.5
parent: 8364
- - uid: 4959
- components:
- - type: Transform
- pos: 34.5,-85.5
- parent: 8364
- uid: 4960
components:
- type: Transform
- pos: 25.5,-86.5
- parent: 8364
- - uid: 4961
- components:
- - type: Transform
- pos: 25.5,-85.5
- parent: 8364
- - uid: 4962
- components:
- - type: Transform
- pos: 25.5,-84.5
- parent: 8364
- - uid: 4963
- components:
- - type: Transform
- pos: 25.5,-83.5
- parent: 8364
- - uid: 4964
- components:
- - type: Transform
- pos: 25.5,-82.5
- parent: 8364
- - uid: 4965
- components:
- - type: Transform
- pos: 24.5,-82.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,-83.5
parent: 8364
- uid: 4974
components:
@@ -161795,25 +163787,15 @@ entities:
- type: Transform
pos: 36.5,-70.5
parent: 8364
- - uid: 5015
- components:
- - type: Transform
- pos: -21.5,-76.5
- parent: 8364
- uid: 5110
components:
- type: Transform
pos: 18.5,31.5
parent: 8364
- - uid: 5197
+ - uid: 5240
components:
- type: Transform
- pos: 2.5,-23.5
- parent: 8364
- - uid: 5198
- components:
- - type: Transform
- pos: 2.5,-24.5
+ pos: 37.5,-85.5
parent: 8364
- uid: 5245
components:
@@ -161835,16 +163817,6 @@ entities:
- type: Transform
pos: 2.5,-22.5
parent: 8364
- - uid: 5273
- components:
- - type: Transform
- pos: 2.5,-18.5
- parent: 8364
- - uid: 5274
- components:
- - type: Transform
- pos: 2.5,-26.5
- parent: 8364
- uid: 5501
components:
- type: Transform
@@ -161885,36 +163857,11 @@ entities:
- type: Transform
pos: -15.5,1.5
parent: 8364
- - uid: 5701
- components:
- - type: Transform
- pos: 1.5,-17.5
- parent: 8364
- uid: 5705
components:
- type: Transform
pos: -2.5,-28.5
parent: 8364
- - uid: 5735
- components:
- - type: Transform
- pos: -3.5,-15.5
- parent: 8364
- - uid: 5756
- components:
- - type: Transform
- pos: -3.5,-26.5
- parent: 8364
- - uid: 5764
- components:
- - type: Transform
- pos: 0.5,-17.5
- parent: 8364
- - uid: 5770
- components:
- - type: Transform
- pos: -3.5,-17.5
- parent: 8364
- uid: 5785
components:
- type: Transform
@@ -161925,10 +163872,10 @@ entities:
- type: Transform
pos: -2.5,-26.5
parent: 8364
- - uid: 5864
+ - uid: 5874
components:
- type: Transform
- pos: -4.5,-15.5
+ pos: 12.5,-68.5
parent: 8364
- uid: 5881
components:
@@ -161950,41 +163897,28 @@ entities:
- type: Transform
pos: 4.5,-14.5
parent: 8364
- - uid: 6026
- components:
- - type: Transform
- pos: -2.5,-15.5
- parent: 8364
- uid: 6085
components:
- type: Transform
pos: 4.5,-19.5
parent: 8364
+ - uid: 6095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-78.5
+ parent: 8364
+ - uid: 6097
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-75.5
+ parent: 8364
- uid: 6100
components:
- type: Transform
pos: -5.5,-20.5
parent: 8364
- - uid: 6222
- components:
- - type: Transform
- pos: -3.5,-24.5
- parent: 8364
- - uid: 6247
- components:
- - type: Transform
- pos: -3.5,-23.5
- parent: 8364
- - uid: 6311
- components:
- - type: Transform
- pos: -10.5,-81.5
- parent: 8364
- - uid: 6312
- components:
- - type: Transform
- pos: -10.5,-82.5
- parent: 8364
- uid: 6313
components:
- type: Transform
@@ -162005,16 +163939,6 @@ entities:
- type: Transform
pos: -10.5,-89.5
parent: 8364
- - uid: 6393
- components:
- - type: Transform
- pos: -3.5,-22.5
- parent: 8364
- - uid: 6394
- components:
- - type: Transform
- pos: -3.5,-18.5
- parent: 8364
- uid: 6453
components:
- type: Transform
@@ -162100,6 +164024,11 @@ entities:
- type: Transform
pos: 81.5,-55.5
parent: 8364
+ - uid: 7217
+ components:
+ - type: Transform
+ pos: 24.5,-86.5
+ parent: 8364
- uid: 7275
components:
- type: Transform
@@ -162831,11 +164760,6 @@ entities:
- type: Transform
pos: -3.5,10.5
parent: 8364
- - uid: 8045
- components:
- - type: Transform
- pos: -1.5,-15.5
- parent: 8364
- uid: 8046
components:
- type: Transform
@@ -162876,11 +164800,6 @@ entities:
- type: Transform
pos: 23.5,-20.5
parent: 8364
- - uid: 8076
- components:
- - type: Transform
- pos: -0.5,-15.5
- parent: 8364
- uid: 8081
components:
- type: Transform
@@ -162956,11 +164875,6 @@ entities:
- type: Transform
pos: -14.5,-16.5
parent: 8364
- - uid: 8111
- components:
- - type: Transform
- pos: 0.5,-15.5
- parent: 8364
- uid: 8112
components:
- type: Transform
@@ -163051,21 +164965,6 @@ entities:
- type: Transform
pos: -5.5,-14.5
parent: 8364
- - uid: 8147
- components:
- - type: Transform
- pos: 1.5,-15.5
- parent: 8364
- - uid: 8148
- components:
- - type: Transform
- pos: 2.5,-15.5
- parent: 8364
- - uid: 8149
- components:
- - type: Transform
- pos: 3.5,-15.5
- parent: 8364
- uid: 8151
components:
- type: Transform
@@ -163081,11 +164980,6 @@ entities:
- type: Transform
pos: -5.5,-17.5
parent: 8364
- - uid: 8159
- components:
- - type: Transform
- pos: -2.5,-17.5
- parent: 8364
- uid: 8166
components:
- type: Transform
@@ -163311,16 +165205,6 @@ entities:
- type: Transform
pos: 1.5,-9.5
parent: 8364
- - uid: 8247
- components:
- - type: Transform
- pos: 0.5,-9.5
- parent: 8364
- - uid: 8249
- components:
- - type: Transform
- pos: -1.5,-9.5
- parent: 8364
- uid: 8250
components:
- type: Transform
@@ -163849,11 +165733,6 @@ entities:
- type: Transform
pos: 5.5,-27.5
parent: 8364
- - uid: 9457
- components:
- - type: Transform
- pos: 61.5,-70.5
- parent: 8364
- uid: 9535
components:
- type: Transform
@@ -164159,6 +166038,16 @@ entities:
- type: Transform
pos: 25.5,-70.5
parent: 8364
+ - uid: 13776
+ components:
+ - type: Transform
+ pos: 3.5,-22.5
+ parent: 8364
+ - uid: 13780
+ components:
+ - type: Transform
+ pos: -4.5,-23.5
+ parent: 8364
- uid: 14095
components:
- type: Transform
@@ -164179,16 +166068,17 @@ entities:
- type: Transform
pos: -42.5,-21.5
parent: 8364
- - uid: 14209
- components:
- - type: Transform
- pos: 2.5,-17.5
- parent: 8364
- uid: 14447
components:
- type: Transform
pos: -17.5,-67.5
parent: 8364
+ - uid: 14512
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,-75.5
+ parent: 8364
- uid: 14648
components:
- type: Transform
@@ -164229,6 +166119,16 @@ entities:
- type: Transform
pos: -33.5,-23.5
parent: 8364
+ - uid: 15489
+ components:
+ - type: Transform
+ pos: 27.5,-85.5
+ parent: 8364
+ - uid: 15491
+ components:
+ - type: Transform
+ pos: 27.5,-76.5
+ parent: 8364
- uid: 15545
components:
- type: Transform
@@ -164264,51 +166164,37 @@ entities:
- type: Transform
pos: -20.5,-64.5
parent: 8364
- - uid: 15885
+ - uid: 15881
components:
- type: Transform
- pos: -8.5,-75.5
+ pos: 27.5,-77.5
parent: 8364
- uid: 15886
components:
- type: Transform
- pos: -8.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-9.5
parent: 8364
- - uid: 15887
+ - uid: 15975
components:
- type: Transform
- pos: -8.5,-72.5
+ pos: -4.5,-22.5
parent: 8364
- - uid: 15888
+ - uid: 16623
components:
- type: Transform
- pos: -8.5,-71.5
+ pos: 26.5,-85.5
parent: 8364
- - uid: 15899
+ - uid: 16632
components:
- type: Transform
- pos: 13.5,-87.5
- parent: 8364
- - uid: 16207
- components:
- - type: Transform
- pos: -9.5,-71.5
- parent: 8364
- - uid: 16697
- components:
- - type: Transform
- pos: 27.5,-75.5
+ pos: 27.5,-83.5
parent: 8364
- uid: 16709
components:
- type: Transform
pos: 28.5,-61.5
parent: 8364
- - uid: 16710
- components:
- - type: Transform
- pos: 27.5,-70.5
- parent: 8364
- uid: 16782
components:
- type: Transform
@@ -164414,6 +166300,11 @@ entities:
- type: Transform
pos: -17.5,-77.5
parent: 8364
+ - uid: 17174
+ components:
+ - type: Transform
+ pos: -20.5,-80.5
+ parent: 8364
- uid: 17297
components:
- type: Transform
@@ -164615,6 +166506,11 @@ entities:
- type: Transform
pos: -29.5,-23.5
parent: 8364
+ - uid: 19942
+ components:
+ - type: Transform
+ pos: 1.5,-25.5
+ parent: 8364
- uid: 19944
components:
- type: Transform
@@ -164640,16 +166536,6 @@ entities:
- type: Transform
pos: -16.5,-77.5
parent: 8364
- - uid: 19951
- components:
- - type: Transform
- pos: -10.5,-71.5
- parent: 8364
- - uid: 19952
- components:
- - type: Transform
- pos: 20.5,-75.5
- parent: 8364
- uid: 19983
components:
- type: Transform
@@ -164660,6 +166546,36 @@ entities:
- type: Transform
pos: -4.5,42.5
parent: 8364
+ - uid: 20006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-9.5
+ parent: 8364
+ - uid: 20015
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-10.5
+ parent: 8364
+ - uid: 20016
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-9.5
+ parent: 8364
+ - uid: 20017
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-10.5
+ parent: 8364
+ - uid: 20024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-10.5
+ parent: 8364
- uid: 20143
components:
- type: Transform
@@ -164825,24 +166741,6 @@ entities:
- type: Transform
pos: 17.5,-21.5
parent: 8364
- - uid: 22738
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-87.5
- parent: 8364
- - uid: 22746
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-87.5
- parent: 8364
- - uid: 22748
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-87.5
- parent: 8364
- uid: 22751
components:
- type: Transform
@@ -164868,11 +166766,6 @@ entities:
- type: Transform
pos: -3.5,-76.5
parent: 8364
- - uid: 22851
- components:
- - type: Transform
- pos: -18.5,-75.5
- parent: 8364
- uid: 22852
components:
- type: Transform
@@ -164889,26 +166782,37 @@ entities:
- type: Transform
pos: -3.5,-65.5
parent: 8364
+ - uid: 23148
+ components:
+ - type: Transform
+ pos: 20.5,-86.5
+ parent: 8364
+ - uid: 23149
+ components:
+ - type: Transform
+ pos: 19.5,-86.5
+ parent: 8364
+ - uid: 23165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-93.5
+ parent: 8364
+ - uid: 23170
+ components:
+ - type: Transform
+ pos: 17.5,-83.5
+ parent: 8364
- uid: 23201
components:
- type: Transform
pos: -18.5,-77.5
parent: 8364
- - uid: 23202
- components:
- - type: Transform
- pos: -18.5,-76.5
- parent: 8364
- uid: 23207
components:
- type: Transform
pos: 27.5,-59.5
parent: 8364
- - uid: 23219
- components:
- - type: Transform
- pos: 12.5,-84.5
- parent: 8364
- uid: 23237
components:
- type: Transform
@@ -164919,6 +166823,56 @@ entities:
- type: Transform
pos: 23.5,-70.5
parent: 8364
+ - uid: 23558
+ components:
+ - type: Transform
+ pos: 3.5,-23.5
+ parent: 8364
+ - uid: 23771
+ components:
+ - type: Transform
+ pos: -18.5,-79.5
+ parent: 8364
+ - uid: 23911
+ components:
+ - type: Transform
+ pos: 11.5,-82.5
+ parent: 8364
+ - uid: 23915
+ components:
+ - type: Transform
+ pos: -21.5,-81.5
+ parent: 8364
+ - uid: 23916
+ components:
+ - type: Transform
+ pos: -10.5,-82.5
+ parent: 8364
+ - uid: 23918
+ components:
+ - type: Transform
+ pos: -18.5,-84.5
+ parent: 8364
+ - uid: 23919
+ components:
+ - type: Transform
+ pos: -21.5,-84.5
+ parent: 8364
+ - uid: 24395
+ components:
+ - type: Transform
+ pos: -25.5,-78.5
+ parent: 8364
+ - uid: 24586
+ components:
+ - type: Transform
+ pos: -17.5,-81.5
+ parent: 8364
+ - uid: 24687
+ components:
+ - type: Transform
+ pos: -17.5,-80.5
+ parent: 8364
- uid: 24689
components:
- type: Transform
@@ -164934,6 +166888,91 @@ entities:
- type: Transform
pos: 35.5,-37.5
parent: 8364
+ - uid: 24908
+ components:
+ - type: Transform
+ pos: 61.5,-69.5
+ parent: 8364
+ - uid: 24925
+ components:
+ - type: Transform
+ pos: -11.5,-82.5
+ parent: 8364
+ - uid: 24945
+ components:
+ - type: Transform
+ pos: -5.5,-18.5
+ parent: 8364
+ - uid: 24948
+ components:
+ - type: Transform
+ pos: -3.5,-18.5
+ parent: 8364
+ - uid: 24975
+ components:
+ - type: Transform
+ pos: -10.5,-83.5
+ parent: 8364
+ - uid: 25045
+ components:
+ - type: Transform
+ pos: 12.5,-84.5
+ parent: 8364
+ - uid: 25076
+ components:
+ - type: Transform
+ pos: 37.5,-86.5
+ parent: 8364
+ - uid: 25147
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-12.5
+ parent: 8364
+ - uid: 25185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-76.5
+ parent: 8364
+ - uid: 25189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-93.5
+ parent: 8364
+ - uid: 25221
+ components:
+ - type: Transform
+ pos: 17.5,-86.5
+ parent: 8364
+ - uid: 25228
+ components:
+ - type: Transform
+ pos: -18.5,-80.5
+ parent: 8364
+ - uid: 25229
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-93.5
+ parent: 8364
+ - uid: 25248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-93.5
+ parent: 8364
+ - uid: 25250
+ components:
+ - type: Transform
+ pos: 24.5,-82.5
+ parent: 8364
+ - uid: 25260
+ components:
+ - type: Transform
+ pos: 17.5,-85.5
+ parent: 8364
- uid: 25667
components:
- type: Transform
@@ -165019,11 +167058,25 @@ entities:
- type: Transform
pos: 33.5,-44.5
parent: 8364
- - uid: 26051
+ - uid: 26000
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-86.5
+ pos: -21.5,-80.5
+ parent: 8364
+ - uid: 26003
+ components:
+ - type: Transform
+ pos: -12.5,-82.5
+ parent: 8364
+ - uid: 26007
+ components:
+ - type: Transform
+ pos: -20.5,-84.5
+ parent: 8364
+ - uid: 26017
+ components:
+ - type: Transform
+ pos: -21.5,-83.5
parent: 8364
- uid: 26059
components:
@@ -165040,11 +167093,6 @@ entities:
- type: Transform
pos: 33.5,-42.5
parent: 8364
- - uid: 26065
- components:
- - type: Transform
- pos: 11.5,-84.5
- parent: 8364
- uid: 26067
components:
- type: Transform
@@ -165055,6 +167103,11 @@ entities:
- type: Transform
pos: 1.5,-50.5
parent: 8364
+ - uid: 26385
+ components:
+ - type: Transform
+ pos: 38.5,-85.5
+ parent: 8364
- uid: 26583
components:
- type: Transform
@@ -165220,6 +167273,28 @@ entities:
- type: Transform
pos: 1.5,-93.5
parent: 8364
+ - uid: 26798
+ components:
+ - type: Transform
+ pos: -5.5,-19.5
+ parent: 8364
+ - uid: 26799
+ components:
+ - type: Transform
+ pos: -4.5,-18.5
+ parent: 8364
+ - uid: 26800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-13.5
+ parent: 8364
+ - uid: 26801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-13.5
+ parent: 8364
- uid: 26821
components:
- type: Transform
@@ -165275,10 +167350,273 @@ entities:
- type: Transform
pos: 9.5,-84.5
parent: 8364
- - uid: 27805
+ - uid: 26938
components:
- type: Transform
- pos: 12.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-70.5
+ parent: 8364
+ - uid: 26940
+ components:
+ - type: Transform
+ pos: -3.5,-25.5
+ parent: 8364
+ - uid: 26960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,-93.5
+ parent: 8364
+ - uid: 26985
+ components:
+ - type: Transform
+ pos: 10.5,-68.5
+ parent: 8364
+ - uid: 26990
+ components:
+ - type: Transform
+ pos: 12.5,-82.5
+ parent: 8364
+ - uid: 26991
+ components:
+ - type: Transform
+ pos: -10.5,-81.5
+ parent: 8364
+ - uid: 27026
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,-93.5
+ parent: 8364
+ - uid: 27043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-14.5
+ parent: 8364
+ - uid: 27047
+ components:
+ - type: Transform
+ pos: -23.5,-78.5
+ parent: 8364
+ - uid: 27053
+ components:
+ - type: Transform
+ pos: -21.5,-78.5
+ parent: 8364
+ - uid: 27057
+ components:
+ - type: Transform
+ pos: -22.5,-78.5
+ parent: 8364
+ - uid: 27067
+ components:
+ - type: Transform
+ pos: 19.5,-85.5
+ parent: 8364
+ - uid: 27068
+ components:
+ - type: Transform
+ pos: 12.5,-85.5
+ parent: 8364
+ - uid: 27080
+ components:
+ - type: Transform
+ pos: 12.5,-83.5
+ parent: 8364
+ - uid: 27146
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-93.5
+ parent: 8364
+ - uid: 27165
+ components:
+ - type: Transform
+ pos: -20.5,-78.5
+ parent: 8364
+ - uid: 27166
+ components:
+ - type: Transform
+ pos: -20.5,-79.5
+ parent: 8364
+ - uid: 27180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,-93.5
+ parent: 8364
+ - uid: 27290
+ components:
+ - type: Transform
+ pos: -18.5,-78.5
+ parent: 8364
+ - uid: 27618
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-93.5
+ parent: 8364
+ - uid: 27621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-93.5
+ parent: 8364
+ - uid: 27623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-93.5
+ parent: 8364
+ - uid: 27624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-93.5
+ parent: 8364
+ - uid: 27625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-93.5
+ parent: 8364
+ - uid: 27702
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-93.5
+ parent: 8364
+ - uid: 27706
+ components:
+ - type: Transform
+ pos: 25.5,-85.5
+ parent: 8364
+ - uid: 27788
+ components:
+ - type: Transform
+ pos: -24.5,-78.5
+ parent: 8364
+ - uid: 27789
+ components:
+ - type: Transform
+ pos: -16.5,-82.5
+ parent: 8364
+ - uid: 27790
+ components:
+ - type: Transform
+ pos: -17.5,-82.5
+ parent: 8364
+ - uid: 27813
+ components:
+ - type: Transform
+ pos: -3.5,-22.5
+ parent: 8364
+ - uid: 27815
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-14.5
+ parent: 8364
+ - uid: 27817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-15.5
+ parent: 8364
+ - uid: 27820
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-15.5
+ parent: 8364
+ - uid: 27821
+ components:
+ - type: Transform
+ pos: 2.5,-18.5
+ parent: 8364
+ - uid: 27822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-13.5
+ parent: 8364
+ - uid: 27826
+ components:
+ - type: Transform
+ pos: -17.5,-83.5
+ parent: 8364
+ - uid: 27827
+ components:
+ - type: Transform
+ pos: -17.5,-84.5
+ parent: 8364
+ - uid: 27829
+ components:
+ - type: Transform
+ pos: 1.5,-18.5
+ parent: 8364
+ - uid: 27831
+ components:
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 8364
+ - uid: 27834
+ components:
+ - type: Transform
+ pos: -2.5,-18.5
+ parent: 8364
+ - uid: 27837
+ components:
+ - type: Transform
+ pos: 3.5,-18.5
+ parent: 8364
+ - uid: 27838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-10.5
+ parent: 8364
+ - uid: 27839
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-10.5
+ parent: 8364
+ - uid: 27851
+ components:
+ - type: Transform
+ pos: 12.5,-86.5
+ parent: 8364
+ - uid: 27853
+ components:
+ - type: Transform
+ pos: 24.5,-85.5
+ parent: 8364
+ - uid: 27857
+ components:
+ - type: Transform
+ pos: 19.5,-82.5
+ parent: 8364
+ - uid: 27983
+ components:
+ - type: Transform
+ pos: 0.5,-18.5
+ parent: 8364
+ - uid: 28150
+ components:
+ - type: Transform
+ pos: 3.5,-25.5
+ parent: 8364
+ - uid: 28151
+ components:
+ - type: Transform
+ pos: 2.5,-25.5
+ parent: 8364
+ - uid: 28182
+ components:
+ - type: Transform
+ pos: 0.5,-25.5
parent: 8364
- proto: WallShuttle
entities:
@@ -167566,11 +169904,6 @@ entities:
- type: Transform
pos: -25.5,-14.5
parent: 8364
- - uid: 1382
- components:
- - type: Transform
- pos: -19.5,-10.5
- parent: 8364
- uid: 1383
components:
- type: Transform
@@ -167701,21 +170034,11 @@ entities:
- type: Transform
pos: -33.5,-17.5
parent: 8364
- - uid: 1409
- components:
- - type: Transform
- pos: -32.5,-17.5
- parent: 8364
- uid: 1410
components:
- type: Transform
pos: -29.5,-17.5
parent: 8364
- - uid: 1411
- components:
- - type: Transform
- pos: -30.5,-17.5
- parent: 8364
- uid: 1412
components:
- type: Transform
@@ -169566,11 +171889,6 @@ entities:
- type: Transform
pos: 83.5,-55.5
parent: 8364
- - uid: 2905
- components:
- - type: Transform
- pos: 83.5,-53.5
- parent: 8364
- uid: 2907
components:
- type: Transform
@@ -169616,11 +171934,6 @@ entities:
- type: Transform
pos: 77.5,-58.5
parent: 8364
- - uid: 2928
- components:
- - type: Transform
- pos: 77.5,-56.5
- parent: 8364
- uid: 2929
components:
- type: Transform
@@ -170321,6 +172634,12 @@ entities:
- type: Transform
pos: -2.5,-50.5
parent: 8364
+ - uid: 3783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-10.5
+ parent: 8364
- uid: 3912
components:
- type: Transform
@@ -170386,35 +172705,10 @@ entities:
- type: Transform
pos: -19.5,-38.5
parent: 8364
- - uid: 4224
+ - uid: 4390
components:
- type: Transform
- pos: 26.5,-83.5
- parent: 8364
- - uid: 4240
- components:
- - type: Transform
- pos: 31.5,-86.5
- parent: 8364
- - uid: 4254
- components:
- - type: Transform
- pos: 25.5,-94.5
- parent: 8364
- - uid: 4257
- components:
- - type: Transform
- pos: 23.5,-94.5
- parent: 8364
- - uid: 4275
- components:
- - type: Transform
- pos: 33.5,-94.5
- parent: 8364
- - uid: 4276
- components:
- - type: Transform
- pos: 31.5,-94.5
+ pos: 84.5,-50.5
parent: 8364
- uid: 4656
components:
@@ -171796,6 +174090,11 @@ entities:
- type: Transform
pos: -18.5,-32.5
parent: 8364
+ - uid: 8078
+ components:
+ - type: Transform
+ pos: 84.5,-53.5
+ parent: 8364
- uid: 8082
components:
- type: Transform
@@ -172302,6 +174601,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -41.5,-13.5
parent: 8364
+ - uid: 14109
+ components:
+ - type: Transform
+ pos: 84.5,-51.5
+ parent: 8364
- uid: 14194
components:
- type: Transform
@@ -173158,6 +175462,62 @@ entities:
- type: Transform
pos: 17.5,-5.5
parent: 8364
+ - uid: 26783
+ components:
+ - type: Transform
+ pos: -32.5,-17.5
+ parent: 8364
+ - uid: 27045
+ components:
+ - type: Transform
+ pos: -21.5,-71.5
+ parent: 8364
+ - uid: 27046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-71.5
+ parent: 8364
+ - uid: 27048
+ components:
+ - type: Transform
+ pos: -18.5,-71.5
+ parent: 8364
+ - uid: 27049
+ components:
+ - type: Transform
+ pos: -21.5,-67.5
+ parent: 8364
+ - uid: 27050
+ components:
+ - type: Transform
+ pos: -21.5,-66.5
+ parent: 8364
+ - uid: 27051
+ components:
+ - type: Transform
+ pos: -21.5,-65.5
+ parent: 8364
+ - uid: 27055
+ components:
+ - type: Transform
+ pos: -18.5,-72.5
+ parent: 8364
+ - uid: 27056
+ components:
+ - type: Transform
+ pos: -18.5,-73.5
+ parent: 8364
+ - uid: 27062
+ components:
+ - type: Transform
+ pos: -16.5,-71.5
+ parent: 8364
+ - uid: 27064
+ components:
+ - type: Transform
+ pos: -17.5,-71.5
+ parent: 8364
- uid: 27614
components:
- type: Transform
@@ -173178,6 +175538,56 @@ entities:
- type: Transform
pos: 85.5,-12.5
parent: 8364
+ - uid: 27716
+ components:
+ - type: Transform
+ pos: 1.5,-64.5
+ parent: 8364
+ - uid: 27841
+ components:
+ - type: Transform
+ pos: -8.5,-75.5
+ parent: 8364
+ - uid: 27842
+ components:
+ - type: Transform
+ pos: -8.5,-73.5
+ parent: 8364
+ - uid: 27843
+ components:
+ - type: Transform
+ pos: -8.5,-72.5
+ parent: 8364
+ - uid: 27844
+ components:
+ - type: Transform
+ pos: -8.5,-71.5
+ parent: 8364
+ - uid: 27846
+ components:
+ - type: Transform
+ pos: -9.5,-71.5
+ parent: 8364
+ - uid: 27849
+ components:
+ - type: Transform
+ pos: -10.5,-71.5
+ parent: 8364
+ - uid: 27854
+ components:
+ - type: Transform
+ pos: -18.5,-75.5
+ parent: 8364
+ - uid: 27855
+ components:
+ - type: Transform
+ pos: -18.5,-76.5
+ parent: 8364
+ - uid: 27862
+ components:
+ - type: Transform
+ pos: 77.5,-56.5
+ parent: 8364
- proto: WallSolidRust
entities:
- uid: 1703
@@ -173546,6 +175956,13 @@ entities:
showEnts: False
occludes: True
ent: null
+- proto: WardrobeFormal
+ entities:
+ - uid: 3782
+ components:
+ - type: Transform
+ pos: -20.5,-9.5
+ parent: 8364
- proto: WardrobeGreenFilled
entities:
- uid: 13887
@@ -174149,16 +176566,16 @@ entities:
- type: Transform
pos: 20.5,8.5
parent: 8364
+ - uid: 7911
+ components:
+ - type: Transform
+ pos: -23.5,-13.5
+ parent: 8364
- uid: 9428
components:
- type: Transform
pos: -10.5,15.5
parent: 8364
- - uid: 14110
- components:
- - type: Transform
- pos: -20.5,-13.5
- parent: 8364
- uid: 21129
components:
- type: Transform
@@ -174166,11 +176583,6 @@ entities:
parent: 8364
- proto: WaterTankFull
entities:
- - uid: 782
- components:
- - type: Transform
- pos: 23.5,-96.5
- parent: 8364
- uid: 1381
components:
- type: Transform
@@ -174512,7 +176924,7 @@ entities:
- uid: 21236
components:
- type: Transform
- pos: 61.5,-19.5
+ pos: 61.373264,-19.199818
parent: 8364
- proto: WelderIndustrial
entities:
@@ -174523,21 +176935,16 @@ entities:
parent: 8364
- proto: WeldingFuelTankFull
entities:
- - uid: 781
+ - uid: 4387
components:
- type: Transform
- pos: 33.5,-96.5
+ pos: 26.5,-76.5
parent: 8364
- uid: 8487
components:
- type: Transform
pos: 18.5,18.5
parent: 8364
- - uid: 11157
- components:
- - type: Transform
- pos: 65.5,6.5
- parent: 8364
- uid: 11683
components:
- type: Transform
@@ -174648,6 +177055,11 @@ entities:
- type: Transform
pos: -7.5,-77.5
parent: 8364
+ - uid: 27872
+ components:
+ - type: Transform
+ pos: 65.5,6.5
+ parent: 8364
- proto: Windoor
entities:
- uid: 2030
@@ -174655,12 +177067,6 @@ entities:
- type: Transform
pos: 58.5,-49.5
parent: 8364
- - uid: 5755
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-14.5
- parent: 8364
- uid: 6249
components:
- type: MetaData
@@ -174701,12 +177107,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 19.5,-2.5
parent: 8364
- - uid: 8146
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-14.5
- parent: 8364
- uid: 8608
components:
- type: MetaData
@@ -175014,17 +177414,10 @@ entities:
parent: 8364
- proto: WindoorSecureCommandLocked
entities:
- - uid: 844
+ - uid: 6394
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-110.5
- parent: 8364
- - uid: 10706
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-14.5
+ pos: 0.5,-20.5
parent: 8364
- uid: 15490
components:
@@ -175032,11 +177425,15 @@ entities:
rot: 1.5707963267948966 rad
pos: 8.5,-18.5
parent: 8364
- - uid: 31746
+ - uid: 24941
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-14.5
+ pos: -1.5,-20.5
+ parent: 8364
+ - uid: 27823
+ components:
+ - type: Transform
+ pos: -0.5,-15.5
parent: 8364
- proto: WindoorSecureEngineeringLocked
entities:
@@ -176072,30 +178469,6 @@ entities:
rot: 3.141592653589793 rad
pos: -54.5,16.5
parent: 8364
- - uid: 847
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-110.5
- parent: 8364
- - uid: 849
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-110.5
- parent: 8364
- - uid: 852
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-110.5
- parent: 8364
- - uid: 853
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-110.5
- parent: 8364
- uid: 1921
components:
- type: Transform
@@ -176125,28 +178498,17 @@ entities:
- type: Transform
pos: 35.5,-68.5
parent: 8364
- - uid: 3536
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-14.5
- parent: 8364
- - uid: 3540
+ - uid: 4374
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,-14.5
+ pos: 0.5,-20.5
parent: 8364
- - uid: 3541
- components:
- - type: Transform
- pos: -4.5,-14.5
- parent: 8364
- - uid: 3542
+ - uid: 4375
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -4.5,-14.5
+ pos: 0.5,-20.5
parent: 8364
- uid: 4841
components:
@@ -176174,51 +178536,6 @@ entities:
- type: Transform
pos: 6.5,-24.5
parent: 8364
- - uid: 5733
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-14.5
- parent: 8364
- - uid: 5736
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-14.5
- parent: 8364
- - uid: 5740
- components:
- - type: Transform
- pos: 3.5,-14.5
- parent: 8364
- - uid: 6122
- components:
- - type: Transform
- pos: -1.5,-14.5
- parent: 8364
- - uid: 6142
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-14.5
- parent: 8364
- - uid: 6143
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-14.5
- parent: 8364
- - uid: 6144
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-14.5
- parent: 8364
- - uid: 6224
- components:
- - type: Transform
- pos: 0.5,-14.5
- parent: 8364
- uid: 7034
components:
- type: Transform
@@ -176564,6 +178881,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 27.5,-19.5
parent: 8364
+ - uid: 23913
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-20.5
+ parent: 8364
- uid: 24434
components:
- type: Transform
@@ -176669,6 +178992,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -33.5,-18.5
parent: 8364
+ - uid: 28122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-20.5
+ parent: 8364
+ - uid: 28123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-20.5
+ parent: 8364
+ - uid: 28124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-20.5
+ parent: 8364
- proto: Wirecutter
entities:
- uid: 11686
@@ -176676,11 +179017,6 @@ entities:
- type: Transform
pos: 70.5,12.5
parent: 8364
- - uid: 12268
- components:
- - type: Transform
- pos: -42.44495,5.5643377
- parent: 8364
- uid: 16303
components:
- type: Transform
@@ -176724,6 +179060,11 @@ entities:
- type: Transform
pos: 44.39694,-40.48777
parent: 8364
+ - uid: 5856
+ components:
+ - type: Transform
+ pos: -21.510796,-9.406136
+ parent: 8364
- uid: 6882
components:
- type: Transform
@@ -176744,16 +179085,6 @@ entities:
- type: Transform
pos: -44.5,14.5
parent: 8364
- - uid: 12262
- components:
- - type: Transform
- pos: -40.403015,5.626782
- parent: 8364
- - uid: 13780
- components:
- - type: Transform
- pos: -52.5,7.5
- parent: 8364
- uid: 14178
components:
- type: Transform
@@ -176764,11 +179095,6 @@ entities:
- type: Transform
pos: -21.530937,-40.42064
parent: 8364
- - uid: 15971
- components:
- - type: Transform
- pos: -25.576,-43.60518
- parent: 8364
- uid: 19199
components:
- type: Transform
@@ -176784,16 +179110,6 @@ entities:
- type: Transform
pos: 65.5,-53.5
parent: 8364
- - uid: 21417
- components:
- - type: Transform
- pos: 79.5,-47.5
- parent: 8364
- - uid: 27177
- components:
- - type: Transform
- pos: 33.549847,-95.50195
- parent: 8364
- uid: 27483
components:
- type: Transform
diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml
index c2c8087bf8..88df424d9a 100644
--- a/Resources/Maps/centcomm.yml
+++ b/Resources/Maps/centcomm.yml
@@ -2330,7 +2330,8 @@ entities:
0,-2:
0: 65535
1,-4:
- 0: 65535
+ 0: 65023
+ 1: 512
1,-3:
0: 65535
1,-2:
@@ -2781,17 +2782,17 @@ entities:
0: 65535
4,-8:
0: 30719
- 1: 34816
+ 2: 34816
4,-7:
0: 65535
5,-8:
0: 61183
- 1: 4352
+ 2: 4352
5,-7:
0: 65535
6,-8:
0: 52479
- 2: 13056
+ 3: 13056
6,-7:
0: 65535
7,-8:
@@ -2872,6 +2873,21 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.14975
+ moles:
+ - 20.078888
+ - 75.53487
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
temperature: 293.15
moles:
@@ -2930,8 +2946,6 @@ entities:
- type: Transform
pos: -16.5,4.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: Airlock
entities:
- uid: 5314
@@ -2974,6 +2988,30 @@ entities:
parent: 1668
- proto: AirlockBrigGlassLocked
entities:
+ - uid: 736
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,20.5
+ parent: 1668
+ - uid: 816
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,20.5
+ parent: 1668
+ - uid: 856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,16.5
+ parent: 1668
+ - uid: 898
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,16.5
+ parent: 1668
- uid: 2299
components:
- type: Transform
@@ -2996,26 +3034,11 @@ entities:
parent: 1668
- proto: AirlockBrigLocked
entities:
- - uid: 2300
- components:
- - type: Transform
- pos: 21.5,22.5
- parent: 1668
- - uid: 2317
- components:
- - type: Transform
- pos: 19.5,17.5
- parent: 1668
- uid: 2343
components:
- type: Transform
pos: 33.5,20.5
parent: 1668
- - uid: 2344
- components:
- - type: Transform
- pos: 21.5,18.5
- parent: 1668
- proto: AirlockCargoGlassLocked
entities:
- uid: 1191
@@ -3291,6 +3314,28 @@ entities:
- type: Transform
pos: -19.5,7.5
parent: 1668
+- proto: AirlockChemistryGlassLocked
+ entities:
+ - uid: 731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-8.5
+ parent: 1668
+- proto: AirlockChemistryLocked
+ entities:
+ - uid: 732
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-6.5
+ parent: 1668
+ - uid: 734
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-11.5
+ parent: 1668
- proto: AirlockEngineeringGlassLocked
entities:
- uid: 5175
@@ -3372,16 +3417,6 @@ entities:
- type: Transform
pos: 33.5,-5.5
parent: 1668
- - uid: 1615
- components:
- - type: Transform
- pos: -14.5,25.5
- parent: 1668
- - uid: 1616
- components:
- - type: Transform
- pos: -14.5,27.5
- parent: 1668
- uid: 3970
components:
- type: Transform
@@ -3402,18 +3437,42 @@ entities:
- type: Transform
pos: 0.5,-44.5
parent: 1668
-- proto: AirlockExternalGlassLocked
+- proto: AirlockExternalGlassCargoLocked
entities:
- - uid: 1673
+ - uid: 620
components:
- type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,27.5
+ parent: 1668
+ - uid: 688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,25.5
+ parent: 1668
+ - uid: 729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -9.5,32.5
parent: 1668
- - uid: 2010
+- proto: AirlockExternalGlassEngineeringLocked
+ entities:
+ - uid: 730
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,22.5
parent: 1668
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2011:
+ - DoorStatus: DoorBolt
+- proto: AirlockExternalGlassLocked
+ entities:
- uid: 4243
components:
- type: Transform
@@ -3521,6 +3580,12 @@ entities:
- type: Transform
pos: -2.5,25.5
parent: 1668
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 730:
+ - DoorStatus: DoorBolt
- uid: 4242
components:
- type: Transform
@@ -3576,11 +3641,6 @@ entities:
- type: Transform
pos: 14.5,-3.5
parent: 1668
- - uid: 730
- components:
- - type: Transform
- pos: 4.5,-8.5
- parent: 1668
- proto: AirlockMedicalLocked
entities:
- uid: 574
@@ -3588,16 +3648,6 @@ entities:
- type: Transform
pos: 16.5,-6.5
parent: 1668
- - uid: 729
- components:
- - type: Transform
- pos: 4.5,-6.5
- parent: 1668
- - uid: 731
- components:
- - type: Transform
- pos: 8.5,-11.5
- parent: 1668
- uid: 852
components:
- type: Transform
@@ -3625,25 +3675,22 @@ entities:
- type: Transform
pos: 23.5,-11.5
parent: 1668
- - uid: 2497
+- proto: AirlockSecurityLawyerLocked
+ entities:
+ - uid: 349
components:
- type: Transform
- pos: 12.5,16.5
+ pos: 19.5,17.5
parent: 1668
- - uid: 2498
+ - uid: 354
components:
- type: Transform
- pos: 11.5,16.5
+ pos: 21.5,22.5
parent: 1668
- - uid: 2499
+ - uid: 356
components:
- type: Transform
- pos: 12.5,19.5
- parent: 1668
- - uid: 2500
- components:
- - type: Transform
- pos: 11.5,19.5
+ pos: 21.5,18.5
parent: 1668
- proto: AirlockSecurityLocked
entities:
@@ -3682,46 +3729,46 @@ entities:
- type: Transform
pos: 5.5,23.5
parent: 1668
-- proto: APCBasic
+- proto: APCHyperCapacity
entities:
- - uid: 688
+ - uid: 905
components:
- type: Transform
pos: -3.5,5.5
parent: 1668
- - uid: 856
+ - uid: 963
components:
- type: Transform
pos: 20.5,6.5
parent: 1668
- - uid: 905
+ - uid: 977
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 20.5,-7.5
parent: 1668
- - uid: 963
+ - uid: 978
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 23.5,-10.5
parent: 1668
- - uid: 977
- components:
- - type: Transform
- pos: 10.5,-3.5
- parent: 1668
- - uid: 978
- components:
- - type: Transform
- pos: 12.5,7.5
- parent: 1668
- uid: 979
components:
- type: Transform
pos: 9.5,2.5
parent: 1668
- uid: 1088
+ components:
+ - type: Transform
+ pos: 12.5,7.5
+ parent: 1668
+ - uid: 1185
+ components:
+ - type: Transform
+ pos: 10.5,-3.5
+ parent: 1668
+ - uid: 1188
components:
- type: Transform
pos: -2.5,2.5
@@ -3742,239 +3789,239 @@ entities:
rot: 1.5707963267948966 rad
pos: -3.5,-9.5
parent: 1668
- - uid: 1674
+ - uid: 1615
components:
- type: Transform
pos: -14.5,18.5
parent: 1668
- - uid: 1675
+ - uid: 1616
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -4.5,17.5
parent: 1668
- - uid: 1676
+ - uid: 1673
components:
- type: Transform
pos: -8.5,13.5
parent: 1668
- - uid: 1677
+ - uid: 1674
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -4.5,19.5
parent: 1668
- - uid: 1955
+ - uid: 1675
components:
- type: Transform
pos: 1.5,17.5
parent: 1668
- - uid: 2013
+ - uid: 1676
components:
- type: Transform
pos: -1.5,22.5
parent: 1668
- - uid: 2562
- components:
- - type: Transform
- pos: 7.5,16.5
- parent: 1668
- - uid: 2563
- components:
- - type: Transform
- pos: 17.5,17.5
- parent: 1668
- - uid: 2564
- components:
- - type: Transform
- pos: 24.5,14.5
- parent: 1668
- - uid: 2565
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,19.5
- parent: 1668
- - uid: 2566
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,21.5
- parent: 1668
- - uid: 2944
- components:
- - type: Transform
- pos: 9.5,26.5
- parent: 1668
- - uid: 2945
+ - uid: 1677
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 7.5,18.5
parent: 1668
- - uid: 2946
+ - uid: 1955
+ components:
+ - type: Transform
+ pos: 17.5,17.5
+ parent: 1668
+ - uid: 2010
+ components:
+ - type: Transform
+ pos: 24.5,14.5
+ parent: 1668
+ - uid: 2235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,21.5
+ parent: 1668
+ - uid: 2300
+ components:
+ - type: Transform
+ pos: 9.5,26.5
+ parent: 1668
+ - uid: 2317
+ components:
+ - type: Transform
+ pos: 7.5,16.5
+ parent: 1668
+ - uid: 2344
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 7.5,30.5
parent: 1668
- - uid: 3463
+ - uid: 2497
components:
- type: Transform
pos: -22.5,7.5
parent: 1668
- - uid: 3464
+ - uid: 2498
components:
- type: Transform
pos: -16.5,13.5
parent: 1668
- - uid: 3465
+ - uid: 2499
components:
- type: Transform
pos: -22.5,13.5
parent: 1668
- - uid: 3466
+ - uid: 2500
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -13.5,6.5
parent: 1668
- - uid: 3986
+ - uid: 2556
components:
- type: Transform
pos: -31.5,2.5
parent: 1668
- - uid: 3987
+ - uid: 2558
components:
- type: Transform
pos: -31.5,7.5
parent: 1668
- - uid: 3988
+ - uid: 2562
components:
- type: Transform
pos: -21.5,-2.5
parent: 1668
- - uid: 3989
+ - uid: 2563
components:
- type: Transform
pos: -13.5,-2.5
parent: 1668
- - uid: 3990
+ - uid: 2564
components:
- type: Transform
pos: -17.5,1.5
parent: 1668
- - uid: 4361
+ - uid: 2565
components:
- type: Transform
pos: 34.5,-9.5
parent: 1668
- - uid: 4475
+ - uid: 2566
components:
- type: Transform
pos: -2.5,-24.5
parent: 1668
- - uid: 4476
+ - uid: 2755
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 7.5,-24.5
parent: 1668
- - uid: 4477
+ - uid: 2771
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -8.5,-24.5
parent: 1668
- - uid: 4478
+ - uid: 2776
components:
- type: Transform
pos: -9.5,-17.5
parent: 1668
- - uid: 4479
+ - uid: 2790
components:
- type: Transform
pos: 8.5,-17.5
parent: 1668
- - uid: 4480
+ - uid: 2823
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 1.5,-20.5
parent: 1668
- - uid: 4977
+ - uid: 2832
components:
- type: Transform
pos: 20.5,-12.5
parent: 1668
- - uid: 4992
+ - uid: 2858
components:
- type: Transform
pos: 18.5,-19.5
parent: 1668
- - uid: 5133
+ - uid: 2859
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 22.5,-23.5
parent: 1668
- - uid: 5146
+ - uid: 2862
components:
- type: Transform
pos: 29.5,-19.5
parent: 1668
- - uid: 5257
+ - uid: 2863
components:
- type: Transform
pos: 30.5,-14.5
parent: 1668
- - uid: 5321
+ - uid: 2876
components:
- type: Transform
pos: 32.5,-27.5
parent: 1668
- - uid: 5423
+ - uid: 2886
components:
- type: Transform
pos: 16.5,-28.5
parent: 1668
- - uid: 5934
+ - uid: 2920
components:
- type: Transform
pos: -16.5,-30.5
parent: 1668
- - uid: 6004
+ - uid: 2925
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -17.5,-22.5
parent: 1668
- - uid: 6103
+ - uid: 2926
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -15.5,-28.5
parent: 1668
- - uid: 6180
+ - uid: 2927
components:
- type: Transform
pos: 7.5,-30.5
parent: 1668
- - uid: 6181
+ - uid: 2928
components:
- type: Transform
pos: -8.5,-30.5
parent: 1668
- - uid: 6277
+ - uid: 2944
components:
- type: Transform
pos: -2.5,-34.5
parent: 1668
- - uid: 6397
+ - uid: 2945
components:
- type: Transform
pos: -2.5,-40.5
parent: 1668
+ - uid: 6977
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,19.5
+ parent: 1668
- proto: Ash
entities:
- uid: 3828
@@ -4180,8 +4227,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 19.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: Bed
entities:
- uid: 2718
@@ -4296,102 +4341,68 @@ entities:
- type: Transform
pos: -4.5,21.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1804
- uid: 1607
components:
- type: Transform
pos: -16.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1611
- uid: 1608
components:
- type: Transform
pos: -16.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1612
- uid: 1609
components:
- type: Transform
pos: -14.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1612
- uid: 1610
components:
- type: Transform
pos: -14.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1611
- - uid: 2790
- components:
- - type: Transform
- pos: 11.5,31.5
- parent: 1668
- - type: DeviceLinkSink
- links:
- - 2928
- - uid: 2886
- components:
- - type: Transform
- pos: 14.5,31.5
- parent: 1668
- - type: DeviceLinkSink
- links:
- - 2928
- - uid: 2925
- components:
- - type: Transform
- pos: 7.5,31.5
- parent: 1668
- - type: DeviceLinkSink
- links:
- - 2927
- - uid: 2926
- components:
- - type: Transform
- pos: 4.5,31.5
- parent: 1668
- - type: DeviceLinkSink
- links:
- - 2927
- uid: 3787
components:
- type: Transform
pos: -16.5,-7.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2920
- uid: 3788
components:
- type: Transform
pos: -16.5,-6.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2920
- uid: 3789
components:
- type: Transform
pos: -16.5,-5.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2920
- uid: 4762
components:
- type: Transform
pos: 18.5,-17.5
parent: 1668
+- proto: BlastDoorCentralCommand
+ entities:
+ - uid: 2946
+ components:
+ - type: Transform
+ pos: 4.5,31.5
+ parent: 1668
+ - uid: 3420
+ components:
+ - type: Transform
+ pos: 7.5,31.5
+ parent: 1668
+ - uid: 3431
+ components:
+ - type: Transform
+ pos: 11.5,31.5
+ parent: 1668
+ - uid: 4476
+ components:
+ - type: Transform
+ pos: 14.5,31.5
+ parent: 1668
- proto: BlastDoorExterior1Open
entities:
- uid: 710
@@ -4453,25 +4464,16 @@ entities:
- type: Transform
pos: -1.5,-7.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 789
- uid: 787
components:
- type: Transform
pos: -0.5,-7.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 789
- uid: 788
components:
- type: Transform
pos: 0.5,-7.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 789
- uid: 1430
components:
- type: Transform
@@ -4517,41 +4519,26 @@ entities:
- type: Transform
pos: 4.5,10.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2712
- uid: 2147
components:
- type: Transform
pos: 4.5,11.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2712
- uid: 2148
components:
- type: Transform
pos: 4.5,12.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2712
- uid: 2149
components:
- type: Transform
pos: 4.5,13.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2712
- uid: 2150
components:
- type: Transform
pos: 4.5,14.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2712
- uid: 3865
components:
- type: Transform
@@ -4567,65 +4554,41 @@ entities:
- type: Transform
pos: 28.5,-25.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5235
components:
- type: Transform
pos: 28.5,-24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5236
components:
- type: Transform
pos: 28.5,-23.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5237
components:
- type: Transform
pos: 28.5,-22.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5238
components:
- type: Transform
pos: 28.5,-21.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5239
components:
- type: Transform
pos: 31.5,-19.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5240
components:
- type: Transform
pos: 33.5,-19.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5241
components:
- type: Transform
pos: 32.5,-19.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5951
components:
- type: Transform
@@ -4661,41 +4624,26 @@ entities:
- type: Transform
pos: -2.5,-39.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 6442
- uid: 6522
components:
- type: Transform
pos: -1.5,-39.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 6442
- uid: 6523
components:
- type: Transform
pos: -0.5,-39.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 6442
- uid: 6524
components:
- type: Transform
pos: 0.5,-39.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 6442
- uid: 6525
components:
- type: Transform
pos: 1.5,-39.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 6442
- proto: Bookshelf
entities:
- uid: 2370
@@ -4913,6 +4861,13 @@ entities:
- type: Transform
pos: -20.46677,5.55778
parent: 1668
+- proto: BoxFolderNuclearCodes
+ entities:
+ - uid: 6994
+ components:
+ - type: Transform
+ pos: -10.309893,6.5837517
+ parent: 1668
- proto: BoxFolderRed
entities:
- uid: 1398
@@ -5048,56 +5003,38 @@ entities:
- type: Transform
pos: 4.5,26.5
parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 2832:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- uid: 3870
components:
- type: Transform
pos: 14.5,29.5
parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 2863:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- uid: 3906
components:
- type: Transform
pos: 14.5,26.5
parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 2776:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- uid: 6602
components:
- type: Transform
pos: 4.5,29.5
parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 2862:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- uid: 6649
components:
- type: Transform
pos: 14.5,23.5
parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 2558:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
+- proto: ButtonFrameCautionSecurity
+ entities:
+ - uid: 6578
+ components:
+ - type: Transform
+ pos: 4.5,32.5
+ parent: 1668
+ - uid: 6592
+ components:
+ - type: Transform
+ pos: 14.5,32.5
+ parent: 1668
- proto: CableApcExtension
entities:
- uid: 857
@@ -16404,6 +16341,81 @@ entities:
- type: Transform
pos: -2.5,-40.5
parent: 1668
+ - uid: 6515
+ components:
+ - type: Transform
+ pos: 5.5,30.5
+ parent: 1668
+ - uid: 6516
+ components:
+ - type: Transform
+ pos: 6.5,30.5
+ parent: 1668
+ - uid: 6517
+ components:
+ - type: Transform
+ pos: 7.5,29.5
+ parent: 1668
+ - uid: 6518
+ components:
+ - type: Transform
+ pos: 7.5,28.5
+ parent: 1668
+ - uid: 6519
+ components:
+ - type: Transform
+ pos: 7.5,27.5
+ parent: 1668
+ - uid: 6520
+ components:
+ - type: Transform
+ pos: 7.5,26.5
+ parent: 1668
+ - uid: 6547
+ components:
+ - type: Transform
+ pos: 8.5,26.5
+ parent: 1668
+ - uid: 6548
+ components:
+ - type: Transform
+ pos: 10.5,26.5
+ parent: 1668
+ - uid: 6549
+ components:
+ - type: Transform
+ pos: 11.5,26.5
+ parent: 1668
+ - uid: 6550
+ components:
+ - type: Transform
+ pos: 11.5,27.5
+ parent: 1668
+ - uid: 6551
+ components:
+ - type: Transform
+ pos: 11.5,28.5
+ parent: 1668
+ - uid: 6552
+ components:
+ - type: Transform
+ pos: 11.5,29.5
+ parent: 1668
+ - uid: 6553
+ components:
+ - type: Transform
+ pos: 11.5,30.5
+ parent: 1668
+ - uid: 6554
+ components:
+ - type: Transform
+ pos: 12.5,30.5
+ parent: 1668
+ - uid: 6577
+ components:
+ - type: Transform
+ pos: 13.5,30.5
+ parent: 1668
- uid: 6849
components:
- type: Transform
@@ -17729,24 +17741,12 @@ entities:
- type: Transform
pos: -19.5,-4.5
parent: 1668
- - uid: 3883
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-5.5
- parent: 1668
- uid: 3884
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -18.5,-6.5
parent: 1668
- - uid: 3885
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-7.5
- parent: 1668
- uid: 3886
components:
- type: Transform
@@ -17806,18 +17806,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -0.5,-29.5
parent: 1668
-- proto: chem_master
- entities:
- - uid: 825
- components:
- - type: Transform
- pos: 4.5,-13.5
- parent: 1668
- - uid: 4425
- components:
- - type: Transform
- pos: 10.5,-23.5
- parent: 1668
- proto: ChemDispenser
entities:
- uid: 824
@@ -17832,6 +17820,18 @@ entities:
- type: Transform
pos: 3.5,-10.5
parent: 1668
+- proto: ChemMaster
+ entities:
+ - uid: 825
+ components:
+ - type: Transform
+ pos: 4.5,-13.5
+ parent: 1668
+ - uid: 4425
+ components:
+ - type: Transform
+ pos: 10.5,-23.5
+ parent: 1668
- proto: ChessBoard
entities:
- uid: 3762
@@ -17878,9 +17878,6 @@ entities:
- type: Transform
pos: 11.5,-13.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 575
- type: Construction
containers:
- machine_parts
@@ -18197,13 +18194,6 @@ entities:
- type: Transform
pos: -16.552616,8.708888
parent: 1668
-- proto: ClothingHeadHatHairflower
- entities:
- - uid: 6605
- components:
- - type: Transform
- pos: -11.182456,6.7149878
- parent: 1668
- proto: ClothingHeadHatWelding
entities:
- uid: 2197
@@ -19062,132 +19052,87 @@ entities:
rot: -1.5707963267948966 rad
pos: -16.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1588
- uid: 1577
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -15.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1588
- uid: 1578
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -14.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1588
- uid: 1579
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -13.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1588
- uid: 1580
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -12.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1588
- uid: 1581
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -11.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1588
- uid: 1582
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -16.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1589
- uid: 1583
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -15.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1589
- uid: 1584
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -14.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1589
- uid: 1585
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -13.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1589
- uid: 1586
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -12.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1589
- uid: 1587
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -11.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1589
- uid: 5902
components:
- type: Transform
pos: -19.5,-33.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5906
- uid: 5903
components:
- type: Transform
pos: -19.5,-32.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5906
- uid: 5904
components:
- type: Transform
pos: -19.5,-31.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5906
- proto: CrateArmoryLaser
entities:
- uid: 6533
@@ -19286,6 +19231,13 @@ entities:
- type: Transform
pos: -7.5,26.5
parent: 1668
+- proto: CrateParticleDecelerators
+ entities:
+ - uid: 6995
+ components:
+ - type: Transform
+ pos: -7.5,28.5
+ parent: 1668
- proto: CrowbarRed
entities:
- uid: 515
@@ -19342,8 +19294,6 @@ entities:
- type: Transform
pos: 11.5,-4.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: DeathsquadPDA
entities:
- uid: 298
@@ -20869,11 +20819,6 @@ entities:
- type: Transform
pos: 1.5,1.5
parent: 1668
- - uid: 816
- components:
- - type: Transform
- pos: -6.5,-9.5
- parent: 1668
- uid: 3840
components:
- type: Transform
@@ -21402,6 +21347,13 @@ entities:
- type: Transform
pos: 0.5503339,-25.316061
parent: 1668
+- proto: FoodPoppy
+ entities:
+ - uid: 6605
+ components:
+ - type: Transform
+ pos: -11.182456,6.7149878
+ parent: 1668
- proto: FoodSaladColeslaw
entities:
- uid: 6937
@@ -21441,30 +21393,24 @@ entities:
rot: -1.5707963267948966 rad
pos: 12.5,-5.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#990000FF'
-- proto: GasMinerNitrogenStation
+- proto: GasMinerNitrogenStationLarge
entities:
- - uid: 4715
+ - uid: 3466
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 25.5,-29.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
-- proto: GasMinerOxygenStation
+- proto: GasMinerOxygenStationLarge
entities:
- - uid: 4703
+ - uid: 3797
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 19.5,-29.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: GasMixer
entities:
- uid: 5070
@@ -21473,8 +21419,10 @@ entities:
rot: -1.5707963267948966 rad
pos: 21.5,-30.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
+ - type: GasMixer
+ inletTwoConcentration: 0.22000003
+ inletOneConcentration: 0.78
+ targetPressure: 4500
- proto: GasPassiveVent
entities:
- uid: 3430
@@ -21483,32 +21431,24 @@ entities:
rot: -1.5707963267948966 rad
pos: 25.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 5399
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 24.5,-28.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 6141
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -21.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 6312
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 20.5,-28.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: GasPipeBend
entities:
- uid: 3660
@@ -21882,6 +21822,26 @@ entities:
parent: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
+- proto: GasPipeSensorDistribution
+ entities:
+ - uid: 3883
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-30.5
+ parent: 1668
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeSensorWaste
+ entities:
+ - uid: 3860
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-31.5
+ parent: 1668
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeStraight
entities:
- uid: 3664
@@ -22024,14 +21984,6 @@ entities:
parent: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5391
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-31.5
- parent: 1668
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 5394
components:
- type: Transform
@@ -22040,14 +21992,6 @@ entities:
parent: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5401
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-30.5
- parent: 1668
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 5402
components:
- type: Transform
@@ -24864,46 +24808,34 @@ entities:
rot: -1.5707963267948966 rad
pos: 20.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 3577
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -14.5,4.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 3659
components:
- type: Transform
pos: -14.5,6.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 3662
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -16.5,4.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 6655
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 12.5,-7.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 6705
components:
- type: Transform
pos: 16.5,-31.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#990000FF'
- uid: 6706
@@ -24911,8 +24843,6 @@ entities:
- type: Transform
pos: 17.5,-31.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#990000FF'
- proto: GasPressurePump
@@ -24923,16 +24853,14 @@ entities:
rot: 3.141592653589793 rad
pos: -14.5,5.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 5395
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 20.5,-30.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
+ - type: GasPressurePump
+ targetPressure: 385
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5400
@@ -24941,8 +24869,8 @@ entities:
rot: 1.5707963267948966 rad
pos: 20.5,-31.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosPipeColor
color: '#990000FF'
- proto: GasThermoMachineFreezer
@@ -24952,8 +24880,6 @@ entities:
- type: Transform
pos: 13.5,-4.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: GasVentPump
entities:
- uid: 3687
@@ -24962,39 +24888,29 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,9.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 3688
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -21.5,8.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 3689
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -24.5,6.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 3694
components:
- type: Transform
pos: -21.5,14.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 5474
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 16.5,-26.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5475
@@ -25002,8 +24918,6 @@ entities:
- type: Transform
pos: 20.5,-24.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5476
@@ -25012,8 +24926,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 26.5,-25.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5505
@@ -25022,8 +24934,6 @@ entities:
rot: 3.141592653589793 rad
pos: 20.5,-20.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5506
@@ -25031,8 +24941,6 @@ entities:
- type: Transform
pos: 25.5,-17.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5507
@@ -25041,8 +24949,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 32.5,-18.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5521
@@ -25050,8 +24956,6 @@ entities:
- type: Transform
pos: 7.5,-17.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5538
@@ -25059,8 +24963,6 @@ entities:
- type: Transform
pos: -8.5,-17.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5551
@@ -25069,8 +24971,6 @@ entities:
rot: 3.141592653589793 rad
pos: -0.5,-26.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5554
@@ -25079,8 +24979,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 10.5,-22.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5565
@@ -25089,8 +24987,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -11.5,-22.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5566
@@ -25099,8 +24995,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 0.5,-16.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5573
@@ -25109,8 +25003,6 @@ entities:
rot: 3.141592653589793 rad
pos: -1.5,-12.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5581
@@ -25119,8 +25011,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 4.5,-11.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5583
@@ -25129,8 +25019,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -5.5,-11.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5658
@@ -25138,8 +25026,6 @@ entities:
- type: Transform
pos: -30.5,4.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5659
@@ -25148,8 +25034,6 @@ entities:
rot: 3.141592653589793 rad
pos: -30.5,-2.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5663
@@ -25158,8 +25042,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -22.5,-1.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5664
@@ -25168,8 +25050,6 @@ entities:
rot: 3.141592653589793 rad
pos: -20.5,-3.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5666
@@ -25177,8 +25057,6 @@ entities:
- type: Transform
pos: -6.5,0.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5667
@@ -25186,8 +25064,6 @@ entities:
- type: Transform
pos: 5.5,0.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5669
@@ -25196,8 +25072,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -3.5,0.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5670
@@ -25206,8 +25080,6 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,-5.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5671
@@ -25215,8 +25087,6 @@ entities:
- type: Transform
pos: -1.5,4.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5696
@@ -25225,8 +25095,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,12.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5697
@@ -25235,8 +25103,6 @@ entities:
rot: 3.141592653589793 rad
pos: -6.5,9.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5712
@@ -25245,8 +25111,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -9.5,27.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5713
@@ -25255,8 +25119,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -9.5,23.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5714
@@ -25265,8 +25127,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -9.5,16.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5742
@@ -25274,8 +25134,6 @@ entities:
- type: Transform
pos: 10.5,13.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5743
@@ -25284,8 +25142,6 @@ entities:
rot: 3.141592653589793 rad
pos: 28.5,11.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5744
@@ -25293,8 +25149,6 @@ entities:
- type: Transform
pos: 18.5,13.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5756
@@ -25302,8 +25156,6 @@ entities:
- type: Transform
pos: 11.5,24.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5763
@@ -25311,8 +25163,6 @@ entities:
- type: Transform
pos: 28.5,19.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5779
@@ -25321,8 +25171,6 @@ entities:
rot: 3.141592653589793 rad
pos: 12.5,-1.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5780
@@ -25331,8 +25179,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 19.5,-0.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5806
@@ -25341,8 +25187,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -4.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5814
@@ -25351,8 +25195,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 3.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5824
@@ -25361,8 +25203,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -12.5,-31.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5825
@@ -25371,8 +25211,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 12.5,-31.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5887
@@ -25381,8 +25219,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -14.5,-23.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6003
@@ -25391,8 +25227,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -19.5,-25.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6227
@@ -25401,8 +25235,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -16.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6334
@@ -25410,8 +25242,6 @@ entities:
- type: Transform
pos: -0.5,-36.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6335
@@ -25420,8 +25250,6 @@ entities:
rot: 3.141592653589793 rad
pos: -0.5,-41.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- proto: GasVentScrubber
@@ -25432,8 +25260,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -17.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: GeneratorBasic15kW
entities:
- uid: 5176
@@ -26895,6 +26721,11 @@ entities:
- type: Transform
pos: 21.5,-23.5
parent: 1668
+ - uid: 5079
+ components:
+ - type: Transform
+ pos: 20.5,6.5
+ parent: 1668
- uid: 5114
components:
- type: Transform
@@ -27154,6 +26985,21 @@ entities:
- type: Transform
pos: 5.5,6.5
parent: 1668
+ - uid: 6986
+ components:
+ - type: Transform
+ pos: 22.5,6.5
+ parent: 1668
+ - uid: 6992
+ components:
+ - type: Transform
+ pos: 30.5,6.5
+ parent: 1668
+ - uid: 6993
+ components:
+ - type: Transform
+ pos: 32.5,6.5
+ parent: 1668
- proto: GroundTobacco
entities:
- uid: 3755
@@ -27238,16 +27084,6 @@ entities:
- type: Transform
pos: 3.5,0.5
parent: 1668
- - uid: 3797
- components:
- - type: Transform
- pos: -20.5,-2.5
- parent: 1668
- - uid: 3860
- components:
- - type: Transform
- pos: -22.5,-2.5
- parent: 1668
- uid: 3863
components:
- type: Transform
@@ -27265,6 +27101,16 @@ entities:
- type: Transform
pos: 32.5,-14.5
parent: 1668
+ - uid: 3885
+ components:
+ - type: Transform
+ pos: -22.5,-2.5
+ parent: 1668
+ - uid: 3902
+ components:
+ - type: Transform
+ pos: -20.5,-2.5
+ parent: 1668
- proto: HighSecDoor
entities:
- uid: 565
@@ -27400,6 +27246,53 @@ entities:
- type: Transform
pos: -18.379215,8.381029
parent: 1668
+- proto: LockableButtonCentcomm
+ entities:
+ - uid: 3149
+ components:
+ - type: Transform
+ pos: 14.5,32.5
+ parent: 1668
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4476:
+ - Pressed: Toggle
+ 6492:
+ - Pressed: Toggle
+ 6397:
+ - Pressed: Toggle
+ 3431:
+ - Pressed: Toggle
+ - uid: 4477
+ components:
+ - type: Transform
+ pos: 4.5,32.5
+ parent: 1668
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2946:
+ - Pressed: Toggle
+ 5058:
+ - Pressed: Toggle
+ 6314:
+ - Pressed: Toggle
+ 3420:
+ - Pressed: Toggle
+- proto: LockableButtonCommand
+ entities:
+ - uid: 4475
+ components:
+ - type: Transform
+ pos: -16.5,-4.5
+ parent: 1668
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3789:
+ - Pressed: Toggle
+ 3788:
+ - Pressed: Toggle
+ 3787:
+ - Pressed: Toggle
- proto: LockerAtmosphericsFilledHardsuit
entities:
- uid: 3790
@@ -27416,7 +27309,7 @@ entities:
parent: 1668
- proto: LockerChemistryFilled
entities:
- - uid: 2876
+ - uid: 3986
components:
- type: Transform
pos: 5.5,-13.5
@@ -27511,6 +27404,13 @@ entities:
showEnts: False
occludes: True
ent: null
+- proto: LockerHeadOfPersonnelFilled
+ entities:
+ - uid: 327
+ components:
+ - type: Transform
+ pos: -10.5,-5.5
+ parent: 1668
- proto: LockerHeadOfSecurityFilled
entities:
- uid: 3153
@@ -27520,10 +27420,10 @@ entities:
parent: 1668
- proto: LockerQuarterMasterFilled
entities:
- - uid: 2235
+ - uid: 5080
components:
- type: Transform
- pos: -8.5,19.5
+ pos: -10.5,-7.5
parent: 1668
- proto: LockerResearchDirectorFilled
entities:
@@ -27532,6 +27432,13 @@ entities:
- type: Transform
pos: -11.5,-3.5
parent: 1668
+- proto: LockerSalvageSpecialistFilledHardsuit
+ entities:
+ - uid: 3987
+ components:
+ - type: Transform
+ pos: -8.5,19.5
+ parent: 1668
- proto: LockerSecurityFilled
entities:
- uid: 511
@@ -27549,6 +27456,22 @@ entities:
- type: Transform
pos: -6.5,-10.5
parent: 1668
+- proto: LockerWallMedicalDoctorFilled
+ entities:
+ - uid: 6775
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-15.5
+ parent: 1668
+- proto: LockerWallMedicalFilled
+ entities:
+ - uid: 2013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-7.5
+ parent: 1668
- proto: LockerWardenFilled
entities:
- uid: 2713
@@ -27639,6 +27562,13 @@ entities:
- type: Transform
pos: 9.5,-7.5
parent: 1668
+- proto: MedkitAdvancedFilled
+ entities:
+ - uid: 6610
+ components:
+ - type: Transform
+ pos: 14.536912,-7.5898757
+ parent: 1668
- proto: MedkitBruteFilled
entities:
- uid: 622
@@ -27655,11 +27585,6 @@ entities:
parent: 1668
- proto: MedkitFilled
entities:
- - uid: 620
- components:
- - type: Transform
- pos: 14.516341,-7.5759134
- parent: 1668
- uid: 1454
components:
- type: Transform
@@ -27724,8 +27649,6 @@ entities:
- type: Transform
pos: 25.5,-28.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: NTFlag
entities:
- uid: 1190
@@ -27764,6 +27687,13 @@ entities:
- type: Transform
pos: 9.5,-5.5
parent: 1668
+- proto: OreProcessorIndustrial
+ entities:
+ - uid: 6978
+ components:
+ - type: Transform
+ pos: -5.5,29.5
+ parent: 1668
- proto: OxygenCanister
entities:
- uid: 5415
@@ -27771,15 +27701,18 @@ entities:
- type: Transform
pos: 19.5,-28.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 6719
components:
- type: Transform
pos: 12.5,-7.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
+- proto: OxygenTankFilled
+ entities:
+ - uid: 3901
+ components:
+ - type: Transform
+ pos: -12.625682,-7.0710163
+ parent: 1668
- proto: PaintingAmogusTriptych
entities:
- uid: 3766
@@ -27926,6 +27859,84 @@ entities:
- type: Transform
pos: 17.5,-28.5
parent: 1668
+- proto: PlasmaReinforcedWindowDirectional
+ entities:
+ - uid: 5934
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-28.5
+ parent: 1668
+ - uid: 6004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-29.5
+ parent: 1668
+ - uid: 6103
+ components:
+ - type: Transform
+ pos: 24.5,-29.5
+ parent: 1668
+ - uid: 6180
+ components:
+ - type: Transform
+ pos: 25.5,-29.5
+ parent: 1668
+ - uid: 6181
+ components:
+ - type: Transform
+ pos: 19.5,-29.5
+ parent: 1668
+ - uid: 6231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-29.5
+ parent: 1668
+ - uid: 6232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-28.5
+ parent: 1668
+ - uid: 6277
+ components:
+ - type: Transform
+ pos: 20.5,-29.5
+ parent: 1668
+- proto: PlasmaWindoorSecureSecurityLocked
+ entities:
+ - uid: 5410
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,22.5
+ parent: 1668
+ - uid: 5411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,25.5
+ parent: 1668
+ - uid: 5416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,28.5
+ parent: 1668
+ - uid: 5417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,25.5
+ parent: 1668
+ - uid: 5423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,28.5
+ parent: 1668
- proto: PlasticFlapsAirtightClear
entities:
- uid: 1590
@@ -30431,13 +30442,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -22.5,-28.5
parent: 1668
-- proto: Protolathe
- entities:
- - uid: 5311
- components:
- - type: Transform
- pos: 24.5,-26.5
- parent: 1668
- proto: Rack
entities:
- uid: 1662
@@ -30840,9 +30844,6 @@ entities:
rot: 3.141592653589793 rad
pos: -19.5,-31.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5907
- proto: ReinforcedPlasmaWindow
entities:
- uid: 2791
@@ -30865,6 +30866,36 @@ entities:
- type: Transform
pos: 13.5,30.5
parent: 1668
+ - uid: 3990
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,21.5
+ parent: 1668
+ - uid: 4179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,24.5
+ parent: 1668
+ - uid: 4180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,24.5
+ parent: 1668
+ - uid: 4251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,27.5
+ parent: 1668
+ - uid: 4361
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,27.5
+ parent: 1668
- uid: 5108
components:
- type: Transform
@@ -31885,21 +31916,6 @@ entities:
- type: Transform
pos: 8.5,16.5
parent: 1668
- - uid: 2556
- components:
- - type: Transform
- pos: 14.5,21.5
- parent: 1668
- - uid: 2755
- components:
- - type: Transform
- pos: 4.5,24.5
- parent: 1668
- - uid: 2771
- components:
- - type: Transform
- pos: 14.5,24.5
- parent: 1668
- uid: 2777
components:
- type: Transform
@@ -31940,16 +31956,6 @@ entities:
- type: Transform
pos: 11.5,29.5
parent: 1668
- - uid: 2858
- components:
- - type: Transform
- pos: 14.5,27.5
- parent: 1668
- - uid: 2859
- components:
- - type: Transform
- pos: 4.5,27.5
- parent: 1668
- uid: 2906
components:
- type: Transform
@@ -32273,6 +32279,11 @@ entities:
- type: Transform
pos: 15.5,-22.5
parent: 1668
+ - uid: 5321
+ components:
+ - type: Transform
+ pos: 30.5,6.5
+ parent: 1668
- uid: 5333
components:
- type: Transform
@@ -32288,6 +32299,21 @@ entities:
- type: Transform
pos: 19.5,-23.5
parent: 1668
+ - uid: 5386
+ components:
+ - type: Transform
+ pos: 22.5,6.5
+ parent: 1668
+ - uid: 5391
+ components:
+ - type: Transform
+ pos: 20.5,6.5
+ parent: 1668
+ - uid: 5397
+ components:
+ - type: Transform
+ pos: 32.5,6.5
+ parent: 1668
- uid: 5880
components:
- type: Transform
@@ -32521,6 +32547,24 @@ entities:
parent: 1668
- proto: Screen
entities:
+ - uid: 4479
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-0.5
+ parent: 1668
+ - uid: 4480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-25.5
+ parent: 1668
+ - uid: 5311
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-30.5
+ parent: 1668
- uid: 6988
components:
- type: Transform
@@ -32531,6 +32575,47 @@ entities:
- type: Transform
pos: 33.5,-4.5
parent: 1668
+ - uid: 6996
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,26.5
+ parent: 1668
+ - uid: 6997
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-15.5
+ parent: 1668
+ - uid: 6998
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-15.5
+ parent: 1668
+ - uid: 6999
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-44.5
+ parent: 1668
+ - uid: 7000
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-30.5
+ parent: 1668
+ - uid: 7001
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-9.5
+ parent: 1668
+ - uid: 7002
+ components:
+ - type: Transform
+ pos: -11.5,13.5
+ parent: 1668
- proto: SecurityTechFab
entities:
- uid: 2874
@@ -32574,6 +32659,28 @@ entities:
- type: Transform
pos: 19.5,-23.5
parent: 1668
+- proto: ShuttersWindowCentralCommand
+ entities:
+ - uid: 5058
+ components:
+ - type: Transform
+ pos: 5.5,30.5
+ parent: 1668
+ - uid: 6314
+ components:
+ - type: Transform
+ pos: 6.5,30.5
+ parent: 1668
+ - uid: 6397
+ components:
+ - type: Transform
+ pos: 12.5,30.5
+ parent: 1668
+ - uid: 6492
+ components:
+ - type: Transform
+ pos: 13.5,30.5
+ parent: 1668
- proto: SignalButton
entities:
- uid: 789
@@ -32637,45 +32744,6 @@ entities:
- Pressed: Toggle
2146:
- Pressed: Toggle
- - uid: 2920
- components:
- - type: Transform
- pos: -16.5,-4.5
- parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 3789:
- - Pressed: Toggle
- 3788:
- - Pressed: Toggle
- 3787:
- - Pressed: Toggle
- - uid: 2927
- components:
- - type: MetaData
- name: le funny admin button
- - type: Transform
- pos: 4.5,32.5
- parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 2926:
- - Pressed: Toggle
- 2925:
- - Pressed: Toggle
- - uid: 2928
- components:
- - type: MetaData
- name: le funny admin button
- - type: Transform
- pos: 14.5,32.5
- parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 2886:
- - Pressed: Toggle
- 2790:
- - Pressed: Toggle
- uid: 5242
components:
- type: Transform
@@ -32734,7 +32802,7 @@ entities:
- type: Transform
pos: 8.5,4.5
parent: 1668
-- proto: SignAtmosMinsky
+- proto: SignAtmos
entities:
- uid: 6888
components:
@@ -32748,8 +32816,14 @@ entities:
- type: Transform
pos: -4.5,13.5
parent: 1668
-- proto: SignChemistry1
+- proto: SignChem
entities:
+ - uid: 4478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-6.5
+ parent: 1668
- uid: 6764
components:
- type: Transform
@@ -32910,11 +32984,6 @@ entities:
parent: 1668
- proto: SignMedical
entities:
- - uid: 736
- components:
- - type: Transform
- pos: 5.5,-6.5
- parent: 1668
- uid: 6762
components:
- type: Transform
@@ -33016,6 +33085,18 @@ entities:
- type: Transform
pos: -2.5,-38.5
parent: 1668
+- proto: SignSecureMedRed
+ entities:
+ - uid: 3988
+ components:
+ - type: Transform
+ pos: 7.5,32.5
+ parent: 1668
+ - uid: 6615
+ components:
+ - type: Transform
+ pos: 11.5,32.5
+ parent: 1668
- proto: SignSecureSmall
entities:
- uid: 3868
@@ -33055,16 +33136,6 @@ entities:
- type: Transform
pos: -17.5,-25.5
parent: 1668
- - uid: 6231
- components:
- - type: Transform
- pos: -32.5,-0.5
- parent: 1668
- - uid: 6232
- components:
- - type: Transform
- pos: -21.5,-25.5
- parent: 1668
- proto: Sink
entities:
- uid: 3425
@@ -33099,24 +33170,24 @@ entities:
rot: 1.5707963267948966 rad
pos: 19.5,-24.5
parent: 1668
-- proto: SMESBasic
+- proto: SMESAdvanced
entities:
- - uid: 327
+ - uid: 4703
components:
- type: Transform
pos: 27.5,-30.5
parent: 1668
- - uid: 5078
+ - uid: 4715
components:
- type: Transform
pos: 22.5,-17.5
parent: 1668
- - uid: 5079
+ - uid: 4977
components:
- type: Transform
pos: 22.5,-15.5
parent: 1668
- - uid: 5080
+ - uid: 4992
components:
- type: Transform
pos: 22.5,-16.5
@@ -33135,7 +33206,7 @@ entities:
- type: Transform
pos: -20.47715,15.560694
parent: 1668
-- proto: soda_dispenser
+- proto: SodaDispenser
entities:
- uid: 4427
components:
@@ -33148,13 +33219,6 @@ entities:
- type: Transform
pos: 7.5,-21.5
parent: 1668
-- proto: SpawnVehicleSecway
- entities:
- - uid: 2823
- components:
- - type: Transform
- pos: 11.5,25.5
- parent: 1668
- proto: SS13Memorial
entities:
- uid: 486
@@ -33171,17 +33235,17 @@ entities:
parent: 1668
- proto: StatueVenusBlue
entities:
- - uid: 4180
+ - uid: 3463
components:
- type: Transform
- pos: -20.5,-6.5
+ pos: 31.5,7.5
parent: 1668
- proto: StatueVenusRed
entities:
- - uid: 4179
+ - uid: 5078
components:
- type: Transform
- pos: -21.5,-6.5
+ pos: 21.5,7.5
parent: 1668
- proto: Stool
entities:
@@ -33218,8 +33282,6 @@ entities:
- type: Transform
pos: -14.5,6.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: Stunbaton
entities:
- uid: 2746
@@ -33279,23 +33341,6 @@ entities:
- type: Transform
pos: -16.5,-29.5
parent: 1668
-- proto: SuitStorageBasic
- entities:
- - uid: 1185
- components:
- - type: Transform
- pos: -10.5,-7.5
- parent: 1668
- - uid: 1188
- components:
- - type: Transform
- pos: -10.5,-5.5
- parent: 1668
- - uid: 3431
- components:
- - type: Transform
- pos: -10.5,-6.5
- parent: 1668
- proto: SuitStorageCaptain
entities:
- uid: 3768
@@ -33303,6 +33348,11 @@ entities:
- type: Transform
pos: -11.5,4.5
parent: 1668
+ - uid: 5146
+ components:
+ - type: Transform
+ pos: -10.5,-6.5
+ parent: 1668
- proto: SuitStorageCE
entities:
- uid: 6490
@@ -33331,6 +33381,13 @@ entities:
- type: Transform
pos: -10.5,-3.5
parent: 1668
+- proto: SuitStorageSec
+ entities:
+ - uid: 3465
+ components:
+ - type: Transform
+ pos: -6.5,-9.5
+ parent: 1668
- proto: SurveillanceCameraCommand
entities:
- uid: 6817
@@ -35390,9 +35447,9 @@ entities:
- type: Transform
pos: 7.5,21.5
parent: 1668
-- proto: ToiletEmpty
+- proto: ToiletGoldenEmpty
entities:
- - uid: 3420
+ - uid: 5257
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -35433,6 +35490,11 @@ entities:
- type: Transform
pos: -12.035681,6.6117244
parent: 1668
+ - uid: 6985
+ components:
+ - type: Transform
+ pos: -19.5,-6.5
+ parent: 1668
- proto: ToyFigurineCargoTech
entities:
- uid: 6897
@@ -35468,6 +35530,11 @@ entities:
- type: Transform
pos: 27.221512,-23.216656
parent: 1668
+ - uid: 6982
+ components:
+ - type: Transform
+ pos: -21.5,-7.5
+ parent: 1668
- proto: ToyFigurineChiefMedicalOfficer
entities:
- uid: 6900
@@ -35475,6 +35542,11 @@ entities:
- type: Transform
pos: 13.343676,-12.106804
parent: 1668
+ - uid: 6980
+ components:
+ - type: Transform
+ pos: -20.5,-7.5
+ parent: 1668
- proto: ToyFigurineClown
entities:
- uid: 6907
@@ -35484,10 +35556,10 @@ entities:
parent: 1668
- proto: ToyFigurineDetective
entities:
- - uid: 2145
+ - uid: 6508
components:
- type: Transform
- pos: 8.249651,23.679073
+ pos: 4.5357866,22.481915
parent: 1668
- proto: ToyFigurineEngineer
entities:
@@ -35496,6 +35568,13 @@ entities:
- type: Transform
pos: 26.955887,-23.01353
parent: 1668
+- proto: ToyFigurineFootsoldier
+ entities:
+ - uid: 6510
+ components:
+ - type: Transform
+ pos: 3.5129395,25.168112
+ parent: 1668
- proto: ToyFigurineGreytider
entities:
- uid: 2142
@@ -35503,6 +35582,11 @@ entities:
- type: Transform
pos: -1.5147417,19.684673
parent: 1668
+ - uid: 6509
+ components:
+ - type: Transform
+ pos: 16.351696,22.083393
+ parent: 1668
- proto: ToyFigurineHamlet
entities:
- uid: 6503
@@ -35517,6 +35601,11 @@ entities:
- type: Transform
pos: 2.714695,-2.0789247
parent: 1668
+ - uid: 6981
+ components:
+ - type: Transform
+ pos: -19.5,-5.5
+ parent: 1668
- proto: ToyFigurineHeadOfSecurity
entities:
- uid: 592
@@ -35524,6 +35613,11 @@ entities:
- type: Transform
pos: 8.675076,17.818161
parent: 1668
+ - uid: 6983
+ components:
+ - type: Transform
+ pos: -19.5,-7.5
+ parent: 1668
- proto: ToyFigurineJanitor
entities:
- uid: 6905
@@ -35566,6 +35660,27 @@ entities:
- type: Transform
pos: 0.78786826,-28.113647
parent: 1668
+- proto: ToyFigurineNukie
+ entities:
+ - uid: 6512
+ components:
+ - type: Transform
+ pos: 3.1101613,28.112556
+ parent: 1668
+- proto: ToyFigurineNukieCommander
+ entities:
+ - uid: 6511
+ components:
+ - type: Transform
+ pos: 2.8740501,28.668112
+ parent: 1668
+- proto: ToyFigurineNukieElite
+ entities:
+ - uid: 6507
+ components:
+ - type: Transform
+ pos: 2.3733406,28.503387
+ parent: 1668
- proto: ToyFigurineParamedic
entities:
- uid: 3427
@@ -35587,6 +35702,11 @@ entities:
- type: Transform
pos: -15.016072,14.885906
parent: 1668
+ - uid: 6979
+ components:
+ - type: Transform
+ pos: -20.5,-5.5
+ parent: 1668
- proto: ToyFigurineRatKing
entities:
- uid: 6906
@@ -35601,6 +35721,11 @@ entities:
- type: Transform
pos: -32.494865,6.5819006
parent: 1668
+ - uid: 6984
+ components:
+ - type: Transform
+ pos: -21.5,-5.5
+ parent: 1668
- proto: ToyFigurineSalvage
entities:
- uid: 6895
@@ -35620,6 +35745,13 @@ entities:
- type: Transform
pos: 27.445951,-11.38564
parent: 1668
+- proto: ToyFigurineThief
+ entities:
+ - uid: 6513
+ components:
+ - type: Transform
+ pos: 15.358348,28.515333
+ parent: 1668
- proto: ToyFigurineWarden
entities:
- uid: 6894
@@ -35627,6 +35759,20 @@ entities:
- type: Transform
pos: 4.3459373,19.764877
parent: 1668
+- proto: ToyFigurineWizard
+ entities:
+ - uid: 6514
+ components:
+ - type: Transform
+ pos: 16.312458,25.32646
+ parent: 1668
+- proto: ToyOwlman
+ entities:
+ - uid: 3464
+ components:
+ - type: Transform
+ pos: -24.5,-6.5
+ parent: 1668
- proto: ToyRubberDuck
entities:
- uid: 3423
@@ -35732,13 +35878,6 @@ entities:
- Left: Forward
- Right: Reverse
- Middle: Off
-- proto: VehicleKeySecway
- entities:
- - uid: 3149
- components:
- - type: Transform
- pos: 10.387553,25.600338
- parent: 1668
- proto: VendingMachineAmmo
entities:
- uid: 2821
@@ -36661,11 +36800,6 @@ entities:
- type: Transform
pos: 19.5,6.5
parent: 1668
- - uid: 349
- components:
- - type: Transform
- pos: 22.5,6.5
- parent: 1668
- uid: 350
components:
- type: Transform
@@ -36686,16 +36820,6 @@ entities:
- type: Transform
pos: 29.5,6.5
parent: 1668
- - uid: 354
- components:
- - type: Transform
- pos: 30.5,6.5
- parent: 1668
- - uid: 356
- components:
- - type: Transform
- pos: 32.5,6.5
- parent: 1668
- uid: 357
components:
- type: Transform
@@ -37374,11 +37498,6 @@ entities:
- type: Transform
pos: -13.5,10.5
parent: 1668
- - uid: 898
- components:
- - type: Transform
- pos: 20.5,6.5
- parent: 1668
- uid: 1080
components:
- type: Transform
@@ -41651,6 +41770,20 @@ entities:
rot: 1.5707963267948966 rad
pos: -4.5,10.5
parent: 1668
+- proto: WindoorSecureChemistryLocked
+ entities:
+ - uid: 5398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-12.5
+ parent: 1668
+ - uid: 5401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-11.5
+ parent: 1668
- proto: WindoorSecureCommandLocked
entities:
- uid: 4230
@@ -41685,18 +41818,6 @@ entities:
parent: 1668
- proto: WindoorSecureMedicalLocked
entities:
- - uid: 732
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-11.5
- parent: 1668
- - uid: 734
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-12.5
- parent: 1668
- uid: 1198
components:
- type: Transform
@@ -41735,51 +41856,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -3.5,-12.5
parent: 1668
- - uid: 2558
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,22.5
- parent: 1668
- - type: DeviceLinkSink
- links:
- - 6649
- - uid: 2776
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,25.5
- parent: 1668
- - type: DeviceLinkSink
- links:
- - 3906
- - uid: 2832
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,25.5
- parent: 1668
- - type: DeviceLinkSink
- links:
- - 3723
- - uid: 2862
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,28.5
- parent: 1668
- - type: DeviceLinkSink
- links:
- - 6602
- - uid: 2863
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,28.5
- parent: 1668
- - type: DeviceLinkSink
- links:
- - 3870
- proto: WindowReinforcedDirectional
entities:
- uid: 485
@@ -41972,44 +42048,6 @@ entities:
- type: Transform
pos: 4.5,-17.5
parent: 1668
- - uid: 5386
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-28.5
- parent: 1668
- - uid: 5397
- components:
- - type: Transform
- pos: 19.5,-29.5
- parent: 1668
- - uid: 5398
- components:
- - type: Transform
- pos: 20.5,-29.5
- parent: 1668
- - uid: 5410
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-29.5
- parent: 1668
- - uid: 5411
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-28.5
- parent: 1668
- - uid: 5416
- components:
- - type: Transform
- pos: 24.5,-29.5
- parent: 1668
- - uid: 5417
- components:
- - type: Transform
- pos: 25.5,-29.5
- parent: 1668
- uid: 5453
components:
- type: Transform
@@ -42034,12 +42072,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -18.5,-32.5
parent: 1668
- - uid: 6314
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-29.5
- parent: 1668
- uid: 6787
components:
- type: Transform
@@ -42053,11 +42085,4 @@ entities:
- type: Transform
pos: 9.506623,-4.4162817
parent: 1668
-- proto: YellowOxygenTankFilled
- entities:
- - uid: 3901
- components:
- - type: Transform
- pos: -12.625682,-7.0710163
- parent: 1668
...
diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml
index b072209126..35da27fb5a 100644
--- a/Resources/Maps/cog.yml
+++ b/Resources/Maps/cog.yml
@@ -2,49 +2,49 @@ meta:
format: 6
postmapinit: false
tilemap:
- 5: Space
- 35: FloorArcadeBlue2
- 22: FloorAsteroidSandDug
- 21: FloorAsteroidSandUnvariantized
- 25: FloorAstroGrass
- 8: FloorAstroIce
- 7: FloorAstroSnow
- 28: FloorBar
- 0: FloorBlueCircuit
- 37: FloorBoxing
- 19: FloorBrokenWood
- 57: FloorCarpetClown
- 18: FloorClown
- 66: FloorConcreteSmooth
- 4: FloorDark
- 17: FloorDarkMono
- 33: FloorDesert
- 13: FloorFreezer
- 31: FloorGlass
- 34: FloorGold
- 9: FloorGreenCircuit
- 38: FloorHydro
- 23: FloorKitchen
- 24: FloorLino
- 40: FloorMime
- 14: FloorMowedAstroGrass
- 32: FloorPlanetDirt
- 10: FloorRGlass
- 20: FloorReinforced
- 3: FloorSteel
- 39: FloorSteelCheckerLight
- 27: FloorSteelDamaged
- 12: FloorSteelDirty
- 29: FloorSteelMono
- 6: FloorTechMaint
- 11: FloorTechMaint2
- 30: FloorTechMaint3
- 16: FloorWhite
- 26: FloorWhiteMini
- 36: FloorWhiteMono
- 15: FloorWood
- 2: Lattice
- 1: Plating
+ 46: Space
+ 79: FloorArcadeBlue2
+ 64: FloorAsteroidSandDug
+ 63: FloorAsteroidSandUnvariantized
+ 68: FloorAstroGrass
+ 49: FloorAstroIce
+ 48: FloorAstroSnow
+ 71: FloorBar
+ 41: FloorBlueCircuit
+ 83: FloorBoxing
+ 61: FloorBrokenWood
+ 87: FloorCarpetClown
+ 60: FloorClown
+ 88: FloorConcreteSmooth
+ 45: FloorDark
+ 59: FloorDarkMono
+ 77: FloorDesert
+ 54: FloorFreezer
+ 75: FloorGlass
+ 78: FloorGold
+ 50: FloorGreenCircuit
+ 84: FloorHydro
+ 65: FloorKitchen
+ 67: FloorLino
+ 86: FloorMime
+ 55: FloorMowedAstroGrass
+ 76: FloorPlanetDirt
+ 51: FloorRGlass
+ 62: FloorReinforced
+ 44: FloorSteel
+ 85: FloorSteelCheckerLight
+ 70: FloorSteelDamaged
+ 53: FloorSteelDirty
+ 72: FloorSteelMono
+ 47: FloorTechMaint
+ 52: FloorTechMaint2
+ 73: FloorTechMaint3
+ 58: FloorWhite
+ 69: FloorWhiteMini
+ 80: FloorWhiteMono
+ 56: FloorWood
+ 43: Lattice
+ 42: Plating
entities:
- proto: ""
entities:
@@ -72,391 +72,391 @@ entities:
chunks:
0,0:
ind: 0,0
- tiles: AAAAAAAAAAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: KQAAAAAAKQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAAKQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AwAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAAAAAAAAAQAAAAAABAAAAAADAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAAAAAAAAAQAAAAAABAAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LAAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKQAAAAAAKQAAAAAAKQAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKQAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKQAAAAAAKgAAAAAALQAAAAACLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKQAAAAAAKgAAAAAALQAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AwAAAAAAAwAAAAABAQAAAAAABwAAAAAACAAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAACQAAAAAACQAAAAAAAwAAAAADAwAAAAAAAQAAAAAABwAAAAAABwAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAACCQAAAAAACQAAAAAAAwAAAAAAAwAAAAACAQAAAAAACAAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAABAAAAAABBAAAAAABAwAAAAAAAwAAAAABAQAAAAAACAAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAACAwAAAAABAwAAAAACAQAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAABAwAAAAADAwAAAAADAQAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABBAAAAAADCgAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAAACgAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAAACgAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAA
+ tiles: LAAAAAABLAAAAAAAKgAAAAAAMAAAAAAAMQAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAMgAAAAAAMgAAAAAALAAAAAADLAAAAAABKgAAAAAAMAAAAAAAMAAAAAAIMQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAAMgAAAAAAMgAAAAAALAAAAAADLAAAAAACKgAAAAAAMQAAAAAAMAAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAACLQAAAAACLAAAAAABLAAAAAACKgAAAAAAMQAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAACLQAAAAABLAAAAAADLAAAAAABKgAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAADLQAAAAADLAAAAAABLAAAAAABKgAAAAAAMQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAADKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALQAAAAADMwAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAACMwAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAABMwAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: CQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: MgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMgAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLQAAAAABLQAAAAABLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAADLQAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: AwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACDAAAAAAABgAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAQAAAAAADAAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAADKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAABNQAAAAAALwAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADKgAAAAAANQAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAQAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABBQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACBQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAACAwAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABBQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAADAwAAAAACBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAABAwAAAAADBQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAACBQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAAADwAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAB
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAACKgAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAABLAAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAABKgAAAAAALAAAAAADLAAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAADLgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAADLgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAABOAAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAAAKgAAAAAALAAAAAACLAAAAAAA
version: 6
-2,-2:
ind: -2,-2
- tiles: AQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAQAAAAAAEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAEAAAAAABEAAAAAAAEAAAAAABAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADEAAAAAABEAAAAAABEAAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAEAAAAAACEAAAAAADEAAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAABAQAAAAAABgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADEAAAAAABEAAAAAABEAAAAAADEAAAAAADEAAAAAABAwAAAAACAwAAAAACCgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAQAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAABEAAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAD
+ tiles: KgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAADKgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAOgAAAAABOgAAAAAAOgAAAAACKgAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAADOgAAAAAAOgAAAAABOgAAAAABKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAACKgAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAADKgAAAAAAOgAAAAABOgAAAAABOgAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAADKgAAAAAAOgAAAAABOgAAAAACOgAAAAACKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAACKgAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAAAOgAAAAABOgAAAAABOgAAAAACOgAAAAACOgAAAAACKgAAAAAALwAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACOgAAAAABOgAAAAABOgAAAAABOgAAAAACOgAAAAACLAAAAAACLAAAAAAAMwAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAACKgAAAAAAOgAAAAADOgAAAAACOgAAAAAAOgAAAAADOgAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADKgAAAAAAOgAAAAADOgAAAAACOgAAAAAAOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAC
version: 6
-2,0:
ind: -2,0
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAAADwAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAABAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAACAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABCQAAAAAACQAAAAAACQAAAAAABAAAAAABAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACCQAAAAAABAAAAAABCQAAAAAAEQAAAAAAEQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADCQAAAAAACQAAAAAACQAAAAAABAAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAC
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAAAOAAAAAADLQAAAAABLQAAAAACLQAAAAADLQAAAAAALQAAAAABLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADLQAAAAABLQAAAAAALQAAAAACLQAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAADLQAAAAACLQAAAAACKgAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAADLAAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAADKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACMgAAAAAAMgAAAAAAMgAAAAAALQAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABMgAAAAAALQAAAAABMgAAAAAAOwAAAAADOwAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAACMgAAAAAAMgAAAAAAMgAAAAAALQAAAAACKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAACLQAAAAABLQAAAAAALQAAAAAALQAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAADLAAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAADKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAB
version: 6
-3,0:
ind: -3,0
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-3,-1:
ind: -3,-1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAADwAAAAACDwAAAAACDwAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAAADwAAAAACEwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAOAAAAAACOAAAAAABOAAAAAAAOAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAAAOAAAAAADPQAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAACEAAAAAACAQAAAAAAEAAAAAAAEAAAAAADAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAABAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADEAAAAAACEAAAAAABEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADEAAAAAADEAAAAAADEAAAAAADEAAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAQAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAACAQAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAADDwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAACEwAAAAABDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOgAAAAACOgAAAAABOgAAAAAAOgAAAAADOgAAAAACKgAAAAAAOgAAAAADOgAAAAACKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAABOgAAAAADOgAAAAAAOgAAAAAAOgAAAAABLAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAACOgAAAAAAKgAAAAAAOgAAAAADOgAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAAAOgAAAAACOgAAAAAAOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACOgAAAAADOgAAAAACOgAAAAACOgAAAAADKgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAADOgAAAAABOgAAAAAAOgAAAAABOgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAADLQAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAAALQAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAADKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABKgAAAAAALAAAAAACLAAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAABLQAAAAACKgAAAAAALAAAAAABLAAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAAAPQAAAAADOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: EAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACCgAAAAACEAAAAAAACgAAAAABEAAAAAACEAAAAAACEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAABEAAAAAACEAAAAAADEAAAAAADEAAAAAACEAAAAAADAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAAAAQAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAADEAAAAAACEAAAAAACAQAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAACAQAAAAAAEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAADEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAABEAAAAAABAQAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAADEAAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAACEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAADAQAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAADEAAAAAAAAQAAAAAAEAAAAAABEAAAAAAD
+ tiles: OgAAAAABOgAAAAADOgAAAAADOgAAAAABOgAAAAACMwAAAAACOgAAAAADMwAAAAACOgAAAAAAOgAAAAACOgAAAAABKgAAAAAAOgAAAAACOgAAAAAAOgAAAAADOgAAAAACOgAAAAACOgAAAAADOgAAAAACOgAAAAABOgAAAAACOgAAAAADOgAAAAAAOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAOgAAAAACOgAAAAADKgAAAAAAOgAAAAABOgAAAAACOgAAAAADOgAAAAACOgAAAAACOgAAAAABOgAAAAADOgAAAAAAOgAAAAADOgAAAAADOgAAAAABOgAAAAABOgAAAAADOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAADOgAAAAAAOgAAAAADOgAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAACOgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAOgAAAAAAOgAAAAADOgAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAOgAAAAADOgAAAAACOgAAAAACOgAAAAACOgAAAAACOgAAAAABOgAAAAADOgAAAAAAOgAAAAADOgAAAAAAOgAAAAABOgAAAAACOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAADKgAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAACOgAAAAADOgAAAAADKgAAAAAAOgAAAAABOgAAAAADOgAAAAADKgAAAAAAOgAAAAABOgAAAAADOgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAABOgAAAAADOgAAAAACKgAAAAAAOgAAAAACOgAAAAADOgAAAAABOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAADKgAAAAAAOgAAAAABOgAAAAABOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACOgAAAAABOgAAAAACKgAAAAAAOgAAAAAAOgAAAAADOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAADOgAAAAADOgAAAAACOgAAAAABOgAAAAADOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAACOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAACKgAAAAAAOgAAAAACOgAAAAABOgAAAAABOgAAAAACOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAA
version: 6
-2,-3:
ind: -2,-3
- tiles: AwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAABEAAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAADAQAAAAAAEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAABAQAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAAABgAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACAQAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAACAQAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACAQAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAACAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAADwAAAAABDwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAADEAAAAAAAEAAAAAACAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAAADwAAAAAAEAAAAAAAEAAAAAACAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAADwAAAAABDwAAAAACDwAAAAACDwAAAAAADwAAAAAADwAAAAAAEAAAAAACEAAAAAACAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAAADwAAAAACDwAAAAADEAAAAAAAEAAAAAABAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACAQAAAAAADwAAAAABDwAAAAAAEAAAAAABEAAAAAAA
+ tiles: LAAAAAABLAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAACKgAAAAAAOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACOgAAAAAAKgAAAAAAOgAAAAABOgAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAABOgAAAAABKgAAAAAAOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAACOgAAAAADOgAAAAAAKgAAAAAAOgAAAAACOgAAAAADOgAAAAABOgAAAAACLwAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAABKgAAAAAAOgAAAAADOgAAAAABOgAAAAABOgAAAAAAOgAAAAABKgAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAAAOgAAAAABOgAAAAADOgAAAAAAOgAAAAACOgAAAAAAOgAAAAADOgAAAAABOgAAAAABOgAAAAACOgAAAAADOgAAAAADKgAAAAAAOgAAAAACOgAAAAADOgAAAAABOgAAAAAAOgAAAAADOgAAAAAAOgAAAAACOgAAAAACOgAAAAABOgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAACOgAAAAABOgAAAAABOgAAAAACOgAAAAABOgAAAAACOgAAAAABKgAAAAAAOgAAAAACOgAAAAAAOgAAAAACOgAAAAACOgAAAAADOgAAAAACOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABKgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAOgAAAAACOgAAAAAAOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAADOgAAAAADLAAAAAAALAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACLAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOAAAAAACOAAAAAACOAAAAAABOAAAAAADOAAAAAABOAAAAAABOgAAAAABOgAAAAAALAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOAAAAAAAOAAAAAADOAAAAAABOAAAAAADOAAAAAADOAAAAAACOgAAAAACOgAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAADOgAAAAAAOgAAAAADKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAADOAAAAAAAOAAAAAACOAAAAAADOgAAAAACOgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADKgAAAAAAOAAAAAABOAAAAAADOgAAAAAAOgAAAAAA
version: 6
-3,-3:
ind: -3,-3
- tiles: AQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAADAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABEAAAAAABEAAAAAADEAAAAAACEAAAAAAAEAAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAADEAAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: KgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAADOgAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAADOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAADOgAAAAADLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADOgAAAAABOgAAAAABOgAAAAABOgAAAAAAOgAAAAACKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACOgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAALAAAAAAALAAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAACOgAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAABKgAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA
version: 6
-4,-2:
ind: -4,-2
- tiles: BQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAACwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAQAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAACwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAABEwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEwAAAAAGAQAAAAAAAQAAAAAAEwAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAANAAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAACKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAALAAAAAACKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAANAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAADPQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAPQAAAAAEKgAAAAAAKgAAAAAAPQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-4,-3:
ind: -4,-3
- tiles: BQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAABLgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-4,-4:
ind: -4,-4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABQAAAAAABQAAAAAABQAAAAAAFgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAFgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAFgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-3,-4:
ind: -3,-4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFgAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAFwAAAAAAAQAAAAAAFwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAFwAAAAAAAwAAAAABAQAAAAAAFQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABQAAAAAABQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAAKgAAAAAANgAAAAAAKgAAAAAANgAAAAAANgAAAAAAQQAAAAAAKgAAAAAAQQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAAKgAAAAAAQQAAAAAALAAAAAADKgAAAAAAPwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAKgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAALgAAAAAALgAAAAAAPwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAA
version: 6
-2,-4:
ind: -2,-4
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADBQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAFwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACFwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAFwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAABDwAAAAABAQAAAAAAEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAAADwAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAAAAQAAAAAAEAAAAAACEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAAAAQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAEAAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAADEAAAAAABBQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACBgAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACEAAAAAACAQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAD
+ tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAQQAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAKgAAAAAALAAAAAABQQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAOgAAAAAAOgAAAAADOgAAAAACQQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAACKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAADOAAAAAACKgAAAAAAOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAABOAAAAAADOAAAAAABKgAAAAAAOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAABOAAAAAACKgAAAAAAOgAAAAADOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAAAOAAAAAACOAAAAAADKgAAAAAAOgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAACKgAAAAAAKgAAAAAAOgAAAAACLgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAOgAAAAACOgAAAAADOgAAAAACOgAAAAABOgAAAAADKgAAAAAAOgAAAAABOgAAAAADLgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAACLwAAAAAAKgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAADOgAAAAAAOgAAAAABOgAAAAADOgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAACKgAAAAAAOgAAAAABOgAAAAACOgAAAAAAOgAAAAACOgAAAAADKgAAAAAAOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACOgAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAABEAAAAAABAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADDgAAAAAADgAAAAAAAQAAAAAAGQAAAAAAGQAAAAADGQAAAAAAGQAAAAABEAAAAAACEAAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAAGQAAAAACAQAAAAAAGQAAAAADGQAAAAACGQAAAAACGQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAGQAAAAADDgAAAAAAAQAAAAAAGQAAAAADGQAAAAABGQAAAAABGQAAAAACEAAAAAABAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAGQAAAAAADgAAAAAAGQAAAAABGQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAABGQAAAAABEAAAAAACEAAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAGQAAAAADGQAAAAABGQAAAAACGQAAAAADEAAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAQAAAAAADgAAAAAAGQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAACAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAABAQAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAADEAAAAAADAQAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAADEAAAAAABAQAAAAAAEAAAAAABEAAAAAABEAAAAAADCgAAAAAAEAAAAAADCgAAAAADEAAAAAAAEAAAAAACEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAADAQAAAAAAEAAAAAADEAAAAAADEAAAAAAACgAAAAADEAAAAAACCgAAAAADEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAEAAAAAABEAAAAAACCgAAAAADEAAAAAABCgAAAAADEAAAAAACEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADOgAAAAADOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAACLAAAAAADOgAAAAABOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACOgAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAACNwAAAAAANwAAAAAAKgAAAAAARAAAAAABRAAAAAACRAAAAAADRAAAAAABOgAAAAACOgAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAARAAAAAACKgAAAAAARAAAAAACRAAAAAADRAAAAAADRAAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAARAAAAAADNwAAAAAAKgAAAAAARAAAAAACRAAAAAABRAAAAAACRAAAAAAAOgAAAAACKgAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABKgAAAAAARAAAAAAANwAAAAAARAAAAAADRAAAAAADKgAAAAAARAAAAAACRAAAAAADRAAAAAACRAAAAAADOgAAAAAAOgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAARAAAAAADRAAAAAABRAAAAAAARAAAAAAAOgAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAANwAAAAAARAAAAAABNwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAACOgAAAAACOgAAAAABOgAAAAACKgAAAAAAOgAAAAADOgAAAAACOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAACKgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACKgAAAAAAOgAAAAADOgAAAAABOgAAAAABMwAAAAADOgAAAAABMwAAAAADOgAAAAAAOgAAAAADOgAAAAACKgAAAAAAOgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAABMwAAAAACOgAAAAABMwAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAACOgAAAAABOgAAAAADOgAAAAADOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAOgAAAAADOgAAAAADMwAAAAADOgAAAAABMwAAAAADOgAAAAABOgAAAAABOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
0,-4:
ind: 0,-4
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAADGQAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAADAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAGQAAAAAAGQAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACGQAAAAACAwAAAAADGQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAABQAAAAAAEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABQAAAAAAEAAAAAAAEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAAARAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADRAAAAAAARAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACRAAAAAAALAAAAAAARAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALgAAAAAAOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAAOgAAAAACOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAAOgAAAAADOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAALgAAAAAA
version: 6
0,-3:
ind: 0,-3
- tiles: EAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAABQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABQAAAAAAEAAAAAADEAAAAAADEAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAABQAAAAAAEAAAAAADEAAAAAADAQAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAABQAAAAAAEAAAAAAAEAAAAAACAQAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAADEAAAAAADEAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAABQAAAAAAEAAAAAACEAAAAAABAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAABEAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACEAAAAAADEAAAAAACAQAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAABDwAAAAACAQAAAAAADgAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAACDwAAAAADAQAAAAAADgAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAACDwAAAAAAAQAAAAAADgAAAAAAEAAAAAAAAQAAAAAAEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAADgAAAAAA
+ tiles: OgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAALgAAAAAAOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAAOgAAAAADOgAAAAAAOgAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALgAAAAAAOgAAAAACOgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAACLQAAAAADLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAAOgAAAAABOgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAACLQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAAOgAAAAABOgAAAAABOgAAAAAALQAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALgAAAAAAOgAAAAABOgAAAAABKgAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAACLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALgAAAAAAOgAAAAADKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACOgAAAAACOgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAABOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAABOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAADKgAAAAAANwAAAAAAOgAAAAACKgAAAAAAOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAADOAAAAAAAOAAAAAABKgAAAAAANwAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAABOAAAAAADKgAAAAAANwAAAAAAOgAAAAACKgAAAAAAOgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAANwAAAAAA
version: 6
1,-2:
ind: 1,-2
- tiles: DgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAB
+ tiles: NwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAABMAAAAAAAMAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAD
version: 6
1,-1:
ind: 1,-1
- tiles: AwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAAA
+ tiles: LAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAADKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAAC
version: 6
1,0:
ind: 1,0
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAAAQAAAAAABgAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACwAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAACwAAAAAACwAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAACwAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAABgAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAALAAAAAABKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALQAAAAAALQAAAAABLQAAAAAALQAAAAAAKgAAAAAALwAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAANAAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAANAAAAAAANAAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAANAAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAANAAAAAAALwAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: AwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAGwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAwAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACAQAAAAAAAwAAAAAAAwAAAAABDAAAAAAADAAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAABAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAADAAAAAAAAQAAAAAAGwAAAAAAGwAAAAAADAAAAAAAAQAAAAAADwAAAAABDwAAAAACGgAAAAAAGgAAAAAAAQAAAAAABAAAAAADBgAAAAAAAAAAAAAABgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAADDAAAAAAAAwAAAAACAQAAAAAADwAAAAADDwAAAAAAAQAAAAAAGgAAAAABAQAAAAAABAAAAAABBgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAGAAAAAAAGAAAAAAADwAAAAABAwAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAGAAAAAAAGAAAAAAADwAAAAADAQAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADAQAAAAAABAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAAAAwAAAAABBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAAAQAAAAAABAAAAAADBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADGwAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAADAAAAAAADAAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAADKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAARgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAADKgAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAAKgAAAAAALAAAAAABLAAAAAABNQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLwAAAAAALwAAAAAALwAAAAAAKgAAAAAANQAAAAAAKgAAAAAARgAAAAAERgAAAAAANQAAAAAAKgAAAAAAOAAAAAABOAAAAAACRQAAAAAARQAAAAABKgAAAAAALQAAAAACLwAAAAAAKQAAAAAALwAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAABNQAAAAAALAAAAAAAKgAAAAAAOAAAAAACOAAAAAABKgAAAAAARQAAAAABKgAAAAAALQAAAAADLwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAQwAAAAAAQwAAAAAAOAAAAAAALAAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAQwAAAAAAQwAAAAAAOAAAAAACKgAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACKgAAAAAALQAAAAADLQAAAAADKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAABLQAAAAABLAAAAAACLQAAAAACLQAAAAACKgAAAAAAKgAAAAAALAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAADKgAAAAAALQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAARgAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABNQAAAAAANQAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAGwAAAAAEDAAAAAAADAAAAAAAGwAAAAACDAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAGwAAAAADAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAABAAAAAABBAAAAAACBgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBgAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAGwAAAAAADAAAAAAAAwAAAAABAQAAAAAAAwAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAGwAAAAAAGwAAAAABAQAAAAAAGwAAAAABDAAAAAAAGwAAAAADDAAAAAAADAAAAAAAAwAAAAADAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAADAAAAAAAGwAAAAACAQAAAAAADAAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAGwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAACDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAAEAwAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAGwAAAAAEAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAGwAAAAADDAAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAwAAAAACGwAAAAABAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAARgAAAAAENQAAAAAANQAAAAAARgAAAAAENQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAACKgAAAAAAKgAAAAAARgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALQAAAAAALQAAAAACLwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLwAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAARgAAAAABNQAAAAAALAAAAAADKgAAAAAALAAAAAACNQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAARgAAAAAARgAAAAAAKgAAAAAARgAAAAAANQAAAAAARgAAAAAANQAAAAAANQAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADNQAAAAAAKgAAAAAANQAAAAAARgAAAAAEKgAAAAAANQAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAADKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAADNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAELAAAAAABNQAAAAAANQAAAAAANQAAAAAAKgAAAAAARgAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAAANQAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALAAAAAADRgAAAAACKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAHAAAAAAAHAAAAAABHAAAAAACAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAADHAAAAAADHAAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAADHQAAAAAAHQAAAAADHQAAAAACAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAABHAAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABHQAAAAACCgAAAAADHQAAAAADAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAwAAAAAAHQAAAAADHQAAAAAAHQAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADGwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAGwAAAAABDAAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAGwAAAAAEAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAACDAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAAwAAAAABAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAABAQAAAAAADAAAAAAAAQAAAAAAGwAAAAAAAQAAAAAABgAAAAAABgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAQAAAAAADAAAAAAAAwAAAAACAwAAAAAAGwAAAAADAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAQAAAAAADAAAAAAADAAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAGwAAAAABDAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAQAAAAAADAAAAAAAAwAAAAADGwAAAAAADAAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAD
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAARwAAAAAARwAAAAADRwAAAAACLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAACRwAAAAAARwAAAAABLAAAAAADKgAAAAAALAAAAAACLAAAAAADSAAAAAACSAAAAAADSAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAABRwAAAAACKgAAAAAAKgAAAAAALAAAAAADLAAAAAABSAAAAAADMwAAAAADSAAAAAACLAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABKgAAAAAALAAAAAAALAAAAAACSAAAAAACSAAAAAADSAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABRgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAABNQAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABKgAAAAAARgAAAAAEKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAAANQAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALAAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAABKgAAAAAANQAAAAAAKgAAAAAARgAAAAAAKgAAAAAALwAAAAAALwAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAABKgAAAAAANQAAAAAALAAAAAABLAAAAAADRgAAAAACKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAARgAAAAADNQAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAANQAAAAAALAAAAAACRgAAAAAANQAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAALwAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAALAAAAAABLAAAAAAD
version: 6
1,-3:
ind: 1,-3
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAACKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACKgAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAA
version: 6
1,-4:
ind: 1,-4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAD
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAAB
version: 6
2,-3:
ind: 2,-3
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAABAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAADAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAACBgAAAAAAAwAAAAAAAwAAAAACAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAACHAAAAAACHAAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAALAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASQAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAACLwAAAAAALAAAAAABLAAAAAADKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAADRwAAAAACRwAAAAADLAAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAA
version: 6
2,-4:
ind: 2,-4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAGwAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAARgAAAAACKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA
version: 6
3,-3:
ind: 3,-3
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAABAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAADKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAA
version: 6
3,-4:
ind: 3,-4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
4,-4:
ind: 4,-4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: AQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAQAAAAAABQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAQAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAADAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAQAAAAAABAAAAAAAHwAAAAAAHwAAAAACBAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAABAAAAAACHwAAAAAAHwAAAAAABAAAAAABAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADKgAAAAAAKgAAAAAALgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAACKgAAAAAALgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAAAKgAAAAAALgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAAKgAAAAAALgAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAACKgAAAAAALAAAAAACKgAAAAAALAAAAAADKgAAAAAALQAAAAABSwAAAAABSwAAAAACLQAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAALQAAAAAASwAAAAAASwAAAAAALQAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAACLQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAADKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: AwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAABgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAABgAAAAAAAwAAAAAAAwAAAAACAwAAAAACDwAAAAACDwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADwAAAAAADwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAADAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAADwAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAABDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACAwAAAAAAAwAAAAABAQAAAAAABAAAAAACBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADBAAAAAADBAAAAAABCgAAAAABBAAAAAABAwAAAAACAwAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAABAwAAAAABBAAAAAABCgAAAAADBAAAAAACBAAAAAACAwAAAAABAwAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABDAAAAAAAAQAAAAAADAAAAAAADAAAAAAAAwAAAAACAwAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAALwAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAALwAAAAAALAAAAAADLAAAAAADLAAAAAABOAAAAAABOAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAOAAAAAADOAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAACKgAAAAAALAAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAOAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAOAAAAAADOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAOAAAAAACOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAACLAAAAAACLAAAAAAAKgAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLQAAAAACLQAAAAABMwAAAAACLQAAAAADLAAAAAADLAAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAADNQAAAAAANQAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAADLQAAAAACMwAAAAADLQAAAAADLQAAAAADLAAAAAACLAAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAABNQAAAAAAKgAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
4,-2:
ind: 4,-2
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
4,-3:
ind: 4,-3
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAD
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAAD
version: 6
5,-3:
ind: 5,-3
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
5,-2:
ind: 5,-2
- tiles: AwAAAAAAAwAAAAACAQAAAAAABQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LAAAAAADLAAAAAACKgAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
4,-1:
ind: 4,-1
- tiles: AQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: AQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAAEDwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAEwAAAAABDwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAABDwAAAAACEwAAAAAFAwAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAADwAAAAAAAQAAAAAADwAAAAACAQAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAGAAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAACAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAADOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAPQAAAAAGOAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAAALAAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAAGOAAAAAADPQAAAAAGLAAAAAADKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAAALQAAAAADKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAQwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAABLQAAAAACLQAAAAACLQAAAAACQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKwAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKwAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAACLQAAAAADKgAAAAAAKwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAACKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: AQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAACGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAABGQAAAAAAGQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAAAGQAAAAACGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAACIAAAAAAAIAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAABIAAAAAABIAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAABGQAAAAADGQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAGQAAAAACGQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAACDwAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAA
+ tiles: KgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAADRAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARAAAAAACRAAAAAACRAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAACRAAAAAABRAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAADTAAAAAABTAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAAATAAAAAADTAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAACRAAAAAABRAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARAAAAAACRAAAAAABRAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARAAAAAADRAAAAAABRAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: AgAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABBQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBQAAAAAABQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACAwAAAAADAwAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAABCgAAAAACCgAAAAACCgAAAAACCgAAAAABCgAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADCgAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: KwAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAABLgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAACLgAAAAAALgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAADLQAAAAAALQAAAAACKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAABLQAAAAADLQAAAAABKgAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAABLAAAAAABLAAAAAACLQAAAAACLQAAAAABLQAAAAAALQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAALAAAAAACLAAAAAACLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAADKgAAAAAALAAAAAACLAAAAAADLAAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAABMwAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAAAMwAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: AwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAADIQAAAAAFAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAAFIQAAAAADAQAAAAAAAwAAAAAAAwAAAAADBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAACIQAAAAACAQAAAAAAAwAAAAADAwAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAAEIQAAAAAEAQAAAAAAAwAAAAADAwAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADIQAAAAAFIQAAAAADAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAEAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABCgAAAAAACgAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACCgAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAACAwAAAAADAQAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAA
+ tiles: LAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAALAAAAAACKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAFTQAAAAABKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAATQAAAAAFKgAAAAAALAAAAAADLAAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAABTQAAAAAFKgAAAAAALAAAAAABLAAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAATQAAAAADKgAAAAAALAAAAAAALAAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADTQAAAAABTQAAAAACKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAFTQAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAAAMwAAAAABMwAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAACMwAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALQAAAAADLQAAAAAALQAAAAADLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAB
version: 6
-1,1:
ind: -1,1
- tiles: AwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAQAAAAAAFAAAAAAAAwAAAAAAAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAACGQAAAAAAGQAAAAADGQAAAAAAGQAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAACGQAAAAABGQAAAAAAGQAAAAAAGQAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAIAAAAAABIAAAAAACIAAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAAIAAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAIAAAAAACIAAAAAACIAAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAADGQAAAAACGQAAAAABGQAAAAACGQAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAABGQAAAAABGQAAAAAAGQAAAAACGQAAAAAD
+ tiles: LAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAADKgAAAAAAPgAAAAAALAAAAAACLAAAAAABKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAACKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACRAAAAAACRAAAAAABRAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAABRAAAAAADRAAAAAAARAAAAAAARAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAADRAAAAAACTAAAAAACTAAAAAAATAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABTAAAAAADTAAAAAAATAAAAAABTAAAAAADTAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAABTAAAAAABTAAAAAACTAAAAAABTAAAAAAATAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACTAAAAAABTAAAAAACTAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAABRAAAAAABRAAAAAAARAAAAAADRAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAAARAAAAAACRAAAAAAARAAAAAAARAAAAAAA
version: 6
-4,1:
ind: -4,1
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAIgAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAEAAAAAABIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAABAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAACAQAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAABAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABAwAAAAABAwAAAAADAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAADAQAAAAAAAwAAAAAAAwAAAAABBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAABAwAAAAAAAwAAAAAB
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAATgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAOgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAADLQAAAAABLAAAAAABLAAAAAACLgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAALQAAAAAALQAAAAABLQAAAAABLAAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAADLQAAAAAALQAAAAACLAAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAACKgAAAAAALAAAAAACLAAAAAADLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAADLQAAAAADLQAAAAABLAAAAAADLAAAAAADLAAAAAACLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAADLQAAAAACLQAAAAAALAAAAAADLAAAAAABLAAAAAABLgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAACKgAAAAAALAAAAAABLAAAAAABLgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAAALQAAAAAALQAAAAABLQAAAAAALAAAAAACLAAAAAAB
version: 6
-3,2:
ind: -3,2
- tiles: AwAAAAAAAwAAAAABAQAAAAAAAQAAAAAADwAAAAAADwAAAAADDwAAAAABAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAQAAAAAADwAAAAADDwAAAAADDwAAAAABDwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABGAAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAAAGAAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAACOAAAAAABKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAABKgAAAAAAOAAAAAACOAAAAAADOAAAAAABOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAACLAAAAAADQwAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAACQwAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAADLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAADKgAAAAAALAAAAAADLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAACLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAA
version: 6
-2,2:
ind: -2,2
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAADHAAAAAACAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAABHAAAAAADAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAQAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACAQAAAAAAAQAAAAAADwAAAAAC
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAADLAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAACKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAABKgAAAAAAKgAAAAAAOAAAAAAD
version: 6
-1,2:
ind: -1,2
- tiles: AwAAAAADAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAABAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LAAAAAACLAAAAAABKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAADOAAAAAACOAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
0,2:
ind: 0,2
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAADwAAAAACDwAAAAAADwAAAAABAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAEAAAAAABEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAADAQAAAAAADwAAAAADDwAAAAAADwAAAAACDwAAAAACAQAAAAAAEAAAAAACEAAAAAADJAAAAAABJAAAAAABJAAAAAACJAAAAAADJAAAAAAAJAAAAAACEAAAAAACEAAAAAACAQAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAADAQAAAAAAEAAAAAAAEAAAAAADJAAAAAAAJAAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAACEAAAAAACEAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAEAAAAAABEAAAAAADJAAAAAABJAAAAAACJAAAAAADJAAAAAAAJAAAAAADJAAAAAABEAAAAAAAEAAAAAADAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAEAAAAAACEAAAAAABJAAAAAADJAAAAAAAJAAAAAACJAAAAAABJAAAAAADJAAAAAAAEAAAAAADEAAAAAABAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACEAAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAADJQAAAAADJQAAAAADJQAAAAACJQAAAAABJQAAAAAB
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAOAAAAAACOAAAAAAAOAAAAAABKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAOgAAAAADOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAOgAAAAAAOgAAAAADOgAAAAACOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAACOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAACOgAAAAABOgAAAAADOgAAAAABOgAAAAADOgAAAAAAOgAAAAABOgAAAAAAKgAAAAAAOAAAAAABOAAAAAACOAAAAAABOAAAAAACKgAAAAAAOgAAAAADOgAAAAABUAAAAAACUAAAAAADUAAAAAADUAAAAAACUAAAAAAAUAAAAAADOgAAAAAAOgAAAAACKgAAAAAAOAAAAAACOAAAAAAAOAAAAAABOAAAAAADKgAAAAAAOgAAAAABOgAAAAABUAAAAAABUAAAAAADUAAAAAABUAAAAAACUAAAAAACUAAAAAADOgAAAAAAOgAAAAACKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAOgAAAAAAOgAAAAABUAAAAAADUAAAAAABUAAAAAABUAAAAAABUAAAAAABUAAAAAACOgAAAAAAOgAAAAABKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAOgAAAAABOgAAAAABUAAAAAADUAAAAAACUAAAAAADUAAAAAADUAAAAAACUAAAAAACOgAAAAADOgAAAAADKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACOgAAAAABOgAAAAACOgAAAAAAOgAAAAACOgAAAAABOgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAACOgAAAAAAOgAAAAAAOgAAAAACOgAAAAABOgAAAAADOgAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAACKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAATwAAAAAATwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAACOAAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAB
version: 6
2,1:
ind: 2,1
- tiles: AwAAAAADDAAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAwAAAAACBgAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAADAAAAAAAAQAAAAAABgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAGwAAAAABAwAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABgAAAAAAAQAAAAAAHgAAAAACAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAADAAAAAAAAwAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAADAAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAABGwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAACDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABAQAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADAQAAAAAAAQAAAAAAGAAAAAAAAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACAQAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAADAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAAAQAAAAAABAAAAAABGAAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABAQAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADGAAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABAQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADAQAAAAAAAQAAAAAA
+ tiles: LAAAAAAANQAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAALAAAAAACLwAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAACNQAAAAAAKgAAAAAALwAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACRgAAAAADLAAAAAAAKgAAAAAALwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALwAAAAAAKgAAAAAASQAAAAACKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAANQAAAAAALAAAAAABKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAANQAAAAAARgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAADKgAAAAAAKgAAAAAANQAAAAAALAAAAAACRgAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAADLQAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAQwAAAAAAKgAAAAAALAAAAAADNQAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAABKgAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAABKgAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAACLQAAAAACKgAAAAAALQAAAAABQwAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALQAAAAABLQAAAAABLQAAAAADLQAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAABQwAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADKgAAAAAAKgAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: AQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAQAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABAwAAAAABAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACAwAAAAADAQAAAAAAAAAAAAAABgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAADBAAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAAAwAAAAABAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAADBAAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAANQAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACKgAAAAAALQAAAAADLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAALAAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAADLAAAAAAAKgAAAAAALwAAAAAALwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALQAAAAABLQAAAAADKgAAAAAALAAAAAABLQAAAAABLQAAAAADLQAAAAABLQAAAAABLAAAAAABKgAAAAAAKQAAAAAALwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALQAAAAAALQAAAAADKgAAAAAALAAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAABLAAAAAADKgAAAAAALwAAAAAALwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALQAAAAAALQAAAAADKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,1:
ind: 3,1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGwAAAAAAAwAAAAABAwAAAAABGwAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAADAAAAAAAGwAAAAADDAAAAAAAGwAAAAABGwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAABAQAAAAAABAAAAAABBAAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARgAAAAABLAAAAAACLAAAAAACRgAAAAABNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAANQAAAAAARgAAAAADNQAAAAAARgAAAAAARgAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABKgAAAAAALQAAAAADLQAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,2:
ind: 3,2
- tiles: AQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAD
+ tiles: KgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAADKgAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAAALQAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAACLQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: GAAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAwAAAAABGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAA
+ tiles: QwAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABKgAAAAAAKgAAAAAALAAAAAABQwAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAB
version: 6
1,2:
ind: 1,2
- tiles: BQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAABAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAACAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAABEAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAADAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAADAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACAQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAACAQAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAADEAAAAAACAwAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAACBAAAAAADBAAAAAABBAAAAAACAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAADAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAQAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAB
+ tiles: LgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAABKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAABOgAAAAADOgAAAAADLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAACOgAAAAADOgAAAAACLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAADKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAOgAAAAAAOgAAAAADOgAAAAAAOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAACKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAADLQAAAAACKgAAAAAAOgAAAAABOgAAAAACOgAAAAABOgAAAAABKgAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAAALQAAAAABLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACOgAAAAAALAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADKgAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAALQAAAAABLQAAAAADLQAAAAACKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAADLQAAAAABLQAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABLQAAAAACLQAAAAABLQAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAAA
version: 6
4,2:
ind: 4,2
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAJgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAJgAAAAAAAwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAACAQAAAAAADgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAVAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAVAAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALQAAAAADKgAAAAAANwAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAA
version: 6
4,3:
ind: 4,3
- tiles: AwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADBgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAGQAAAAACAQAAAAAADgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAIAAAAAABAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAIAAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAAKwAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAADKgAAAAAAKwAAAAAALAAAAAACLAAAAAABLAAAAAABLwAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAARAAAAAADKgAAAAAANwAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAATAAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAATAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
5,2:
ind: 5,2
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
5,3:
ind: 5,3
- tiles: BQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,3:
ind: 3,3
- tiles: AwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAGQAAAAADGQAAAAACGQAAAAACDwAAAAABDwAAAAACBgAAAAAAGQAAAAACGQAAAAADGQAAAAADGQAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAGQAAAAABGQAAAAADGQAAAAAADwAAAAACDwAAAAABDwAAAAACGQAAAAADGQAAAAACGQAAAAACIAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABIAAAAAAAIAAAAAACIAAAAAABDwAAAAADDwAAAAAADwAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABIAAAAAACIAAAAAADIAAAAAACDwAAAAADDwAAAAACDwAAAAABIAAAAAACIAAAAAAAIAAAAAACIAAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAGQAAAAAAGQAAAAADGQAAAAACDwAAAAACDwAAAAADDwAAAAACGQAAAAABGQAAAAADGQAAAAADGQAAAAACAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAGQAAAAADGQAAAAAAGQAAAAACDwAAAAABDwAAAAADDwAAAAAAGQAAAAAAGQAAAAABGQAAAAACGQAAAAADAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAQAAAAAAGQAAAAAAGQAAAAADGQAAAAADDwAAAAABDwAAAAABDwAAAAADGQAAAAAAGQAAAAAAGQAAAAABGQAAAAABAwAAAAABAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAA
+ tiles: LAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAACKgAAAAAARAAAAAADRAAAAAABRAAAAAACOAAAAAACOAAAAAACLwAAAAAARAAAAAACRAAAAAAARAAAAAAARAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACRAAAAAAAOAAAAAABOAAAAAAAOAAAAAAARAAAAAADRAAAAAADRAAAAAACTAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAADTAAAAAABTAAAAAAATAAAAAACOAAAAAAAOAAAAAABOAAAAAACTAAAAAACTAAAAAADTAAAAAAATAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAADTAAAAAAATAAAAAABTAAAAAABOAAAAAADOAAAAAAAOAAAAAACTAAAAAADTAAAAAADTAAAAAACTAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAARAAAAAAARAAAAAAARAAAAAADOAAAAAADOAAAAAACOAAAAAACRAAAAAAARAAAAAAARAAAAAAARAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAARAAAAAABRAAAAAABRAAAAAACOAAAAAABOAAAAAACOAAAAAABRAAAAAACRAAAAAAARAAAAAABRAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAARAAAAAAARAAAAAADRAAAAAACOAAAAAABOAAAAAACOAAAAAADRAAAAAAARAAAAAADRAAAAAADRAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAABKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAA
version: 6
2,3:
ind: 2,3
- tiles: AQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACGAAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABGAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADGAAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABJwAAAAACAQAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAAAAQAAAAAABgAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACJwAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADAQAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACJwAAAAACAQAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAJwAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAACAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAwAAAAACJwAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAHgAAAAADHgAAAAABCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAwAAAAADCwAAAAAAAQAAAAAAHgAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAHgAAAAABAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAACAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACQwAAAAAAKgAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAABLAAAAAAAQwAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADQwAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAADLQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABKgAAAAAAKgAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADVQAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAADKgAAAAAALwAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADVQAAAAACLQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAADKgAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAAALQAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAABVQAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAACLQAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACVQAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAACKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAALAAAAAACVQAAAAABKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAASQAAAAADSQAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAALAAAAAADNAAAAAAAKgAAAAAASQAAAAADKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAADKgAAAAAAKgAAAAAASQAAAAACKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAKgAAAAAAOgAAAAADOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAABLAAAAAACKgAAAAAA
version: 6
1,3:
ind: 1,3
- tiles: AQAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAAABAAAAAAABAAAAAABHAAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAAABAAAAAADBAAAAAACBAAAAAABAQAAAAAADwAAAAADDwAAAAABGAAAAAAAAQAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAADHAAAAAADHAAAAAADAQAAAAAABAAAAAABBAAAAAADBAAAAAABAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAACBAAAAAABBAAAAAABBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAADAQAAAAAABAAAAAADBAAAAAAABAAAAAACJwAAAAADJwAAAAAAJwAAAAACJwAAAAADAQAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAJwAAAAADJwAAAAAAJwAAAAADJwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADJwAAAAACJwAAAAADJwAAAAABJwAAAAADJwAAAAADJwAAAAABAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAQAAAAAABgAAAAAAJwAAAAACJwAAAAACJwAAAAADJwAAAAAAJwAAAAACJwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAQAAAAAAJwAAAAABJwAAAAADJwAAAAACJwAAAAADJwAAAAABJwAAAAADJwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAQAAAAAAJwAAAAAAJwAAAAABJwAAAAAAJwAAAAABJwAAAAAAJwAAAAACJwAAAAABAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAJwAAAAADJwAAAAABJwAAAAABJwAAAAADJwAAAAACJwAAAAACJwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAJwAAAAACJwAAAAADJwAAAAAAJwAAAAABJwAAAAADJwAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAABgAAAAAAAQAAAAAACwAAAAAA
+ tiles: KgAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABLQAAAAADLQAAAAACRwAAAAADKgAAAAAALQAAAAAALQAAAAACLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACLQAAAAADLQAAAAACLQAAAAADKgAAAAAAOAAAAAAAOAAAAAABQwAAAAAAKgAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAADLQAAAAACLQAAAAADLQAAAAAALQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACKgAAAAAALQAAAAACLQAAAAADLQAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAACLQAAAAADLQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADKgAAAAAALQAAAAADLQAAAAAALQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAACKgAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAADKgAAAAAALAAAAAACKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAACVQAAAAADVQAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAALwAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAACVQAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABKgAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAADVQAAAAACVQAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAALwAAAAAAKgAAAAAANAAAAAAA
version: 6
0,3:
ind: 0,3
- tiles: IwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAACJQAAAAAAJQAAAAACJQAAAAAAJQAAAAAAJQAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAAADwAAAAABDwAAAAACDwAAAAADJQAAAAACJQAAAAAAJQAAAAADJQAAAAAAJQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAACJQAAAAACJQAAAAADJQAAAAABJQAAAAABJQAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAABJQAAAAADJQAAAAACJQAAAAADJQAAAAACJQAAAAABIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAADCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAAADwAAAAADDwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAKAAAAAAAEgAAAAAAOQAAAAAAAQAAAAAADwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAADwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAADwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAKAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAOQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAACCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAADBgAAAAAAAQAAAAAACwAAAAAAHgAAAAACCwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: TwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAACOAAAAAACOAAAAAADOAAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAABOAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAADOAAAAAACOAAAAAABOAAAAAACOAAAAAADOAAAAAAAOAAAAAABOAAAAAAAOAAAAAADKgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAACOAAAAAABOAAAAAADOAAAAAADOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAAAOAAAAAAAOAAAAAABOAAAAAAAOAAAAAABOAAAAAABNAAAAAAAKgAAAAAAKgAAAAAAVgAAAAAAPAAAAAAAVwAAAAAAKgAAAAAAOAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAABNAAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAOAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAOAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAVgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAOAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAVwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAACOAAAAAABOAAAAAAAOAAAAAAAOAAAAAACOAAAAAABOAAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASQAAAAADLwAAAAAAKgAAAAAANAAAAAAASQAAAAADNAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-1,3:
ind: -1,3
- tiles: DwAAAAACDwAAAAABDwAAAAAADwAAAAACAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAACDwAAAAAADwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAQAAAAAAHgAAAAABAQAAAAAAAQAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAJwAAAAABJwAAAAABJwAAAAACAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAJwAAAAABJwAAAAABJwAAAAABAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAJwAAAAACJwAAAAAAJwAAAAADAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAJwAAAAAAJwAAAAABJwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAA
+ tiles: OAAAAAAAOAAAAAADOAAAAAADOAAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAACOAAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAAAOAAAAAADOAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADKgAAAAAASQAAAAACKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAACKgAAAAAASQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAVQAAAAACVQAAAAAAVQAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAACKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAVQAAAAACVQAAAAABVQAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAVQAAAAACVQAAAAADVQAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAVQAAAAADVQAAAAADVQAAAAADKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAABKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAA
version: 6
3,4:
ind: 3,4
- tiles: AQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KgAAAAAALQAAAAABKgAAAAAAKgAAAAAALAAAAAABKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALQAAAAABLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
2,4:
ind: 2,4
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAA
version: 6
1,4:
ind: 1,4
- tiles: AwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADDAAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAA
+ tiles: LAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACKQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAABNQAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAALAAAAAADNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAA
version: 6
4,4:
ind: 4,4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
0,4:
ind: 0,4
- tiles: AQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAADAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAABQAAAAAABQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAALwAAAAAASQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAANQAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAA
version: 6
-1,4:
ind: -1,4
- tiles: AwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAHgAAAAADHgAAAAAAHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAAAAwAAAAABAQAAAAAACwAAAAAACwAAAAAAHgAAAAADCwAAAAAAHgAAAAACCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAADDwAAAAAAAwAAAAAADwAAAAACDwAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAADDwAAAAACDwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAACAwAAAAACDwAAAAABDwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAADDwAAAAABDwAAAAADAwAAAAABAQAAAAAAAgAAAAAABQAAAAAADwAAAAADDwAAAAACDwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACDwAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAADAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADDwAAAAABDwAAAAACDwAAAAACDwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAABDwAAAAADAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAADDwAAAAADDwAAAAADDwAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAASQAAAAABSQAAAAACSQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAADLAAAAAAAKgAAAAAANAAAAAAANAAAAAAASQAAAAAANAAAAAAASQAAAAABNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAACLAAAAAABOAAAAAAAOAAAAAAAOAAAAAABOAAAAAADOAAAAAACOAAAAAABOAAAAAABOAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAADLAAAAAADOAAAAAAAOAAAAAACOAAAAAABOAAAAAABOAAAAAAAOAAAAAABOAAAAAABOAAAAAAALAAAAAADKgAAAAAAKwAAAAAALgAAAAAAOAAAAAABOAAAAAABOAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABOAAAAAAAOAAAAAADOAAAAAABOAAAAAABOAAAAAACOAAAAAAAOAAAAAACOAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACOAAAAAABOAAAAAAAOAAAAAACOAAAAAACOAAAAAAAOAAAAAADOAAAAAAAOAAAAAABLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAABOAAAAAABOAAAAAABOAAAAAACOAAAAAADOAAAAAADOAAAAAADKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAADOAAAAAAAOAAAAAABOAAAAAADOAAAAAADOAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
0,5:
ind: 0,5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
1,5:
ind: 1,5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-4,2:
ind: -4,2
- tiles: BQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAAAAwAAAAACAwAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADAwAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAABLQAAAAABLAAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAACLAAAAAADLAAAAAADLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACKgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKQAAAAAALQAAAAADLQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKQAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-4,0:
ind: -4,0
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAA
version: 6
-5,2:
ind: -5,2
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA
version: 6
-4,3:
ind: -4,3
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAEwAAAAADDwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAACEwAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAADEwAAAAAEEwAAAAAFDwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAABDwAAAAADEwAAAAAGDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAACDwAAAAABDwAAAAACDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAACEwAAAAAAEwAAAAAGDwAAAAABAQAAAAAAAQAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAEwAAAAACDwAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAC
+ tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAPQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAPQAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAPQAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAPQAAAAAAOAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAB
version: 6
-3,3:
ind: -3,3
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAABAQAAAAAABAAAAAADBAAAAAADBAAAAAADAQAAAAAAAwAAAAADAwAAAAABAwAAAAAABgAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAACAQAAAAAABAAAAAABBAAAAAADBAAAAAABAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAADBAAAAAADAQAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAABgAAAAAAEAAAAAACEAAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAJAAAAAACEAAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAEAAAAAACEAAAAAAAEAAAAAADAwAAAAABCgAAAAAAAwAAAAADAQAAAAAABAAAAAAABAAAAAADBAAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAABAAAAAABAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAADLwAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAACKgAAAAAALQAAAAADLQAAAAACLQAAAAABKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAABLAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAADLQAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALwAAAAAAOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAUAAAAAABOgAAAAABKgAAAAAALAAAAAACLAAAAAAALAAAAAACLQAAAAADLQAAAAABLQAAAAABLQAAAAABKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAAAKgAAAAAAOgAAAAADOgAAAAADOgAAAAADLAAAAAAAMwAAAAAALAAAAAADKgAAAAAALQAAAAACLQAAAAADLQAAAAADKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABKgAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAABKgAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAALQAAAAACKgAAAAAA
version: 6
-5,3:
ind: -5,3
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-2,3:
ind: -2,3
- tiles: BgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAHgAAAAADCwAAAAAAAQAAAAAADwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABDQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAEAAAAAAAEAAAAAADAQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAEAAAAAAAEAAAAAABAQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADAQAAAAAABgAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAHgAAAAACAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAHgAAAAACAQAAAAAAAwAAAAAC
+ tiles: LwAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAARwAAAAADRwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAASQAAAAABNAAAAAAAKgAAAAAAOAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACKgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAABNgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAAOgAAAAAAOgAAAAAAKgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAAOgAAAAAAOgAAAAABKgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAABKgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASQAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADKgAAAAAALwAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAANAAAAAAAKgAAAAAASQAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAASQAAAAABKgAAAAAALAAAAAAD
version: 6
-4,4:
ind: -4,4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADQgAAAAABQgAAAAADQgAAAAACQgAAAAABQgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAADQgAAAAAAQgAAAAAAQgAAAAADQgAAAAADQgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABQgAAAAABQgAAAAACQgAAAAADQgAAAAADQgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADQgAAAAABQgAAAAAAQgAAAAADQgAAAAADQgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABQgAAAAAAQgAAAAABQgAAAAAAQgAAAAAAQgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACQgAAAAAAQgAAAAAAQgAAAAABQgAAAAAAQgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAABWAAAAAABWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAACWAAAAAADWAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-3,4:
ind: -3,4
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAAAwAAAAABQgAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAABAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAQgAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAACAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACIgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAABLQAAAAABLQAAAAAALQAAAAADLQAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAABLQAAAAAALQAAAAABLQAAAAABLQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAACLAAAAAAAWAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAATgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAA
version: 6
-2,4:
ind: -2,4
- tiles: AQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACCwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
4,0:
ind: 4,0
- tiles: AgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAA
version: 6
-4,-1:
ind: -4,-1
- tiles: BQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAAADwAAAAABEwAAAAABAQAAAAAAAQAAAAAAEwAAAAABDwAAAAACAQAAAAAABAAAAAACBAAAAAACAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAABAQAAAAAAAQAAAAAADwAAAAACEwAAAAAGDwAAAAABDwAAAAADDwAAAAADEwAAAAABAQAAAAAABAAAAAADCgAAAAABBAAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAABAQAAAAAAAQAAAAAADwAAAAABEwAAAAAGEwAAAAAEAQAAAAAAEwAAAAABAQAAAAAABAAAAAAABAAAAAABBAAAAAABBQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAABPQAAAAAAKgAAAAAAKgAAAAAAPQAAAAADOAAAAAABKgAAAAAALQAAAAABLQAAAAABKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAAFKgAAAAAAKgAAAAAAOAAAAAABPQAAAAAFOAAAAAABOAAAAAAAOAAAAAAAPQAAAAAEKgAAAAAALQAAAAACMwAAAAABLQAAAAABLgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADKgAAAAAAKgAAAAAAOAAAAAAAPQAAAAAGPQAAAAADKgAAAAAAPQAAAAACKgAAAAAALQAAAAAALQAAAAACLQAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,5:
ind: 3,5
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
2,5:
ind: 2,5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-1,-5:
ind: -1,-5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAABAAAAAACAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAABAAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAABAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAABAAAAAACBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAABKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAALQAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAALQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-2,-5:
ind: -2,-5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
0,-5:
ind: 0,-5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADBAAAAAACBAAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAABBAAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAACLQAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABLQAAAAADLQAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAAALQAAAAABKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-5,-2:
ind: -5,-2
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAADLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-3,-5:
ind: -3,-5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA
version: 6
-3,5:
ind: -3,5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-2,5:
ind: -2,5
- tiles: BQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -5695,8 +5695,6 @@ entities:
9045: 3,-19
9046: 4,-19
9069: 29,-9
- 10292: 21,-26
- 10293: 22,-26
- node:
zIndex: 1
color: '#EFB34196'
@@ -9177,6 +9175,12 @@ entities:
id: grasssnow
decals:
4352: -46.01974,-50.080185
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow
+ decals:
+ 10162: 21.08367,-26.059422
+ 10163: 21.882736,-26.075739
- node:
cleanable: True
color: '#8600003C'
@@ -11032,14 +11036,17 @@ entities:
14,2:
0: 61152
14,3:
- 0: 14
+ 6: 2
+ 7: 4
+ 0: 8
2: 224
15,1:
0: 30583
15,2:
0: 30576
15,3:
- 0: 7
+ 0: 1
+ 8: 6
2: 240
16,1:
0: 9011
@@ -11144,10 +11151,10 @@ entities:
0: 45532
9,12:
0: 29688
- 6: 32768
+ 9: 32768
10,12:
0: 187
- 6: 28672
+ 9: 28672
11,12:
0: 65535
4,9:
@@ -11292,7 +11299,7 @@ entities:
0: 65287
9,13:
0: 62259
- 6: 136
+ 9: 136
9,14:
0: 61695
9,15:
@@ -11300,7 +11307,7 @@ entities:
8,16:
0: 61176
10,13:
- 6: 119
+ 9: 119
0: 61440
10,14:
0: 64669
@@ -11926,6 +11933,51 @@ 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:
+ - 21.813705
+ - 82.06108
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.6852
+ - 81.57766
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
temperature: 235
moles:
@@ -15442,7 +15494,7 @@ entities:
pos: 26.5,17.5
parent: 12
- type: Door
- secondsUntilStateChange: -10061.324
+ secondsUntilStateChange: -19267.662
state: Opening
- type: DeviceLinkSink
invokeCounter: 1
@@ -44839,6 +44891,46 @@ entities:
- type: Transform
pos: 49.5,54.5
parent: 12
+ - uid: 32192
+ components:
+ - type: Transform
+ pos: 77.5,11.5
+ parent: 12
+ - uid: 32193
+ components:
+ - type: Transform
+ pos: 77.5,10.5
+ parent: 12
+ - uid: 32194
+ components:
+ - type: Transform
+ pos: 77.5,9.5
+ parent: 12
+ - uid: 32195
+ components:
+ - type: Transform
+ pos: 77.5,8.5
+ parent: 12
+ - uid: 32196
+ components:
+ - type: Transform
+ pos: 77.5,7.5
+ parent: 12
+ - uid: 32197
+ components:
+ - type: Transform
+ pos: 77.5,6.5
+ parent: 12
+ - uid: 32198
+ components:
+ - type: Transform
+ pos: 77.5,4.5
+ parent: 12
+ - uid: 32199
+ components:
+ - type: Transform
+ pos: 77.5,5.5
+ parent: 12
- uid: 32230
components:
- type: Transform
@@ -56442,6 +56534,11 @@ entities:
- type: Transform
pos: -58.5,-43.5
parent: 12
+ - uid: 31751
+ components:
+ - type: Transform
+ pos: 77.5,-2.5
+ parent: 12
- uid: 31775
components:
- type: Transform
@@ -56597,6 +56694,166 @@ entities:
- type: Transform
pos: 40.5,-10.5
parent: 12
+ - uid: 32130
+ components:
+ - type: Transform
+ pos: 77.5,-1.5
+ parent: 12
+ - uid: 32131
+ components:
+ - type: Transform
+ pos: 77.5,1.5
+ parent: 12
+ - uid: 32144
+ components:
+ - type: Transform
+ pos: 77.5,2.5
+ parent: 12
+ - uid: 32145
+ components:
+ - type: Transform
+ pos: 77.5,-0.5
+ parent: 12
+ - uid: 32146
+ components:
+ - type: Transform
+ pos: 77.5,3.5
+ parent: 12
+ - uid: 32147
+ components:
+ - type: Transform
+ pos: 77.5,4.5
+ parent: 12
+ - uid: 32148
+ components:
+ - type: Transform
+ pos: 77.5,5.5
+ parent: 12
+ - uid: 32149
+ components:
+ - type: Transform
+ pos: 77.5,6.5
+ parent: 12
+ - uid: 32150
+ components:
+ - type: Transform
+ pos: 77.5,0.5
+ parent: 12
+ - uid: 32151
+ components:
+ - type: Transform
+ pos: 77.5,9.5
+ parent: 12
+ - uid: 32152
+ components:
+ - type: Transform
+ pos: 77.5,7.5
+ parent: 12
+ - uid: 32153
+ components:
+ - type: Transform
+ pos: 77.5,10.5
+ parent: 12
+ - uid: 32154
+ components:
+ - type: Transform
+ pos: 77.5,11.5
+ parent: 12
+ - uid: 32155
+ components:
+ - type: Transform
+ pos: 77.5,8.5
+ parent: 12
+ - uid: 32200
+ components:
+ - type: Transform
+ pos: 71.5,-1.5
+ parent: 12
+ - uid: 32201
+ components:
+ - type: Transform
+ pos: 71.5,0.5
+ parent: 12
+ - uid: 32202
+ components:
+ - type: Transform
+ pos: 71.5,1.5
+ parent: 12
+ - uid: 32203
+ components:
+ - type: Transform
+ pos: 71.5,2.5
+ parent: 12
+ - uid: 32204
+ components:
+ - type: Transform
+ pos: 71.5,-0.5
+ parent: 12
+ - uid: 32205
+ components:
+ - type: Transform
+ pos: 66.5,4.5
+ parent: 12
+ - uid: 32206
+ components:
+ - type: Transform
+ pos: 67.5,4.5
+ parent: 12
+ - uid: 32207
+ components:
+ - type: Transform
+ pos: 68.5,4.5
+ parent: 12
+ - uid: 32208
+ components:
+ - type: Transform
+ pos: 69.5,4.5
+ parent: 12
+ - uid: 32209
+ components:
+ - type: Transform
+ pos: 73.5,4.5
+ parent: 12
+ - uid: 32210
+ components:
+ - type: Transform
+ pos: 74.5,4.5
+ parent: 12
+ - uid: 32211
+ components:
+ - type: Transform
+ pos: 75.5,4.5
+ parent: 12
+ - uid: 32212
+ components:
+ - type: Transform
+ pos: 76.5,4.5
+ parent: 12
+ - uid: 32237
+ components:
+ - type: Transform
+ pos: 71.5,6.5
+ parent: 12
+ - uid: 32238
+ components:
+ - type: Transform
+ pos: 71.5,7.5
+ parent: 12
+ - uid: 32239
+ components:
+ - type: Transform
+ pos: 71.5,8.5
+ parent: 12
+ - uid: 32240
+ components:
+ - type: Transform
+ pos: 71.5,9.5
+ parent: 12
+ - uid: 32241
+ components:
+ - type: Transform
+ pos: 71.5,10.5
+ parent: 12
- proto: CableHVStack
entities:
- uid: 353
@@ -67407,6 +67664,306 @@ entities:
- type: Transform
pos: 49.5,54.5
parent: 12
+ - uid: 32156
+ components:
+ - type: Transform
+ pos: 77.5,11.5
+ parent: 12
+ - uid: 32157
+ components:
+ - type: Transform
+ pos: 77.5,10.5
+ parent: 12
+ - uid: 32158
+ components:
+ - type: Transform
+ pos: 77.5,9.5
+ parent: 12
+ - uid: 32159
+ components:
+ - type: Transform
+ pos: 77.5,7.5
+ parent: 12
+ - uid: 32160
+ components:
+ - type: Transform
+ pos: 77.5,6.5
+ parent: 12
+ - uid: 32161
+ components:
+ - type: Transform
+ pos: 77.5,5.5
+ parent: 12
+ - uid: 32162
+ components:
+ - type: Transform
+ pos: 77.5,4.5
+ parent: 12
+ - uid: 32163
+ components:
+ - type: Transform
+ pos: 77.5,3.5
+ parent: 12
+ - uid: 32164
+ components:
+ - type: Transform
+ pos: 77.5,2.5
+ parent: 12
+ - uid: 32165
+ components:
+ - type: Transform
+ pos: 77.5,8.5
+ parent: 12
+ - uid: 32166
+ components:
+ - type: Transform
+ pos: 77.5,1.5
+ parent: 12
+ - uid: 32167
+ components:
+ - type: Transform
+ pos: 77.5,-0.5
+ parent: 12
+ - uid: 32168
+ components:
+ - type: Transform
+ pos: 77.5,-1.5
+ parent: 12
+ - uid: 32169
+ components:
+ - type: Transform
+ pos: 77.5,-2.5
+ parent: 12
+ - uid: 32170
+ components:
+ - type: Transform
+ pos: 77.5,0.5
+ parent: 12
+ - uid: 32213
+ components:
+ - type: Transform
+ pos: 66.5,4.5
+ parent: 12
+ - uid: 32242
+ components:
+ - type: Transform
+ pos: 67.5,4.5
+ parent: 12
+ - uid: 32243
+ components:
+ - type: Transform
+ pos: 68.5,4.5
+ parent: 12
+ - uid: 32244
+ components:
+ - type: Transform
+ pos: 69.5,4.5
+ parent: 12
+ - uid: 32245
+ components:
+ - type: Transform
+ pos: 71.5,6.5
+ parent: 12
+ - uid: 32246
+ components:
+ - type: Transform
+ pos: 71.5,7.5
+ parent: 12
+ - uid: 32247
+ components:
+ - type: Transform
+ pos: 71.5,8.5
+ parent: 12
+ - uid: 32248
+ components:
+ - type: Transform
+ pos: 71.5,9.5
+ parent: 12
+ - uid: 32249
+ components:
+ - type: Transform
+ pos: 71.5,10.5
+ parent: 12
+ - uid: 32250
+ components:
+ - type: Transform
+ pos: 74.5,4.5
+ parent: 12
+ - uid: 32251
+ components:
+ - type: Transform
+ pos: 75.5,4.5
+ parent: 12
+ - uid: 32252
+ components:
+ - type: Transform
+ pos: 76.5,4.5
+ parent: 12
+ - uid: 32253
+ components:
+ - type: Transform
+ pos: 71.5,2.5
+ parent: 12
+ - uid: 32254
+ components:
+ - type: Transform
+ pos: 71.5,1.5
+ parent: 12
+ - uid: 32255
+ components:
+ - type: Transform
+ pos: 71.5,-0.5
+ parent: 12
+ - uid: 32256
+ components:
+ - type: Transform
+ pos: 71.5,0.5
+ parent: 12
+ - uid: 32257
+ components:
+ - type: Transform
+ pos: 71.5,-1.5
+ parent: 12
+ - uid: 32258
+ components:
+ - type: Transform
+ pos: 70.5,8.5
+ parent: 12
+ - uid: 32259
+ components:
+ - type: Transform
+ pos: 69.5,8.5
+ parent: 12
+ - uid: 32260
+ components:
+ - type: Transform
+ pos: 67.5,8.5
+ parent: 12
+ - uid: 32261
+ components:
+ - type: Transform
+ pos: 68.5,8.5
+ parent: 12
+ - uid: 32262
+ components:
+ - type: Transform
+ pos: 67.5,7.5
+ parent: 12
+ - uid: 32263
+ components:
+ - type: Transform
+ pos: 67.5,5.5
+ parent: 12
+ - uid: 32264
+ components:
+ - type: Transform
+ pos: 67.5,6.5
+ parent: 12
+ - uid: 32265
+ components:
+ - type: Transform
+ pos: 75.5,5.5
+ parent: 12
+ - uid: 32266
+ components:
+ - type: Transform
+ pos: 75.5,6.5
+ parent: 12
+ - uid: 32267
+ components:
+ - type: Transform
+ pos: 75.5,7.5
+ parent: 12
+ - uid: 32268
+ components:
+ - type: Transform
+ pos: 75.5,8.5
+ parent: 12
+ - uid: 32269
+ components:
+ - type: Transform
+ pos: 74.5,8.5
+ parent: 12
+ - uid: 32270
+ components:
+ - type: Transform
+ pos: 73.5,8.5
+ parent: 12
+ - uid: 32271
+ components:
+ - type: Transform
+ pos: 72.5,8.5
+ parent: 12
+ - uid: 32272
+ components:
+ - type: Transform
+ pos: 75.5,3.5
+ parent: 12
+ - uid: 32273
+ components:
+ - type: Transform
+ pos: 75.5,1.5
+ parent: 12
+ - uid: 32274
+ components:
+ - type: Transform
+ pos: 75.5,0.5
+ parent: 12
+ - uid: 32275
+ components:
+ - type: Transform
+ pos: 75.5,2.5
+ parent: 12
+ - uid: 32276
+ components:
+ - type: Transform
+ pos: 74.5,0.5
+ parent: 12
+ - uid: 32277
+ components:
+ - type: Transform
+ pos: 73.5,0.5
+ parent: 12
+ - uid: 32278
+ components:
+ - type: Transform
+ pos: 72.5,0.5
+ parent: 12
+ - uid: 32279
+ components:
+ - type: Transform
+ pos: 70.5,0.5
+ parent: 12
+ - uid: 32280
+ components:
+ - type: Transform
+ pos: 69.5,0.5
+ parent: 12
+ - uid: 32281
+ components:
+ - type: Transform
+ pos: 68.5,0.5
+ parent: 12
+ - uid: 32282
+ components:
+ - type: Transform
+ pos: 67.5,0.5
+ parent: 12
+ - uid: 32283
+ components:
+ - type: Transform
+ pos: 67.5,1.5
+ parent: 12
+ - uid: 32284
+ components:
+ - type: Transform
+ pos: 67.5,3.5
+ parent: 12
+ - uid: 32285
+ components:
+ - type: Transform
+ pos: 67.5,2.5
+ parent: 12
- proto: CableMVStack
entities:
- uid: 5999
@@ -76409,6 +76966,81 @@ entities:
rot: 1.5707963267948966 rad
pos: 35.5,-15.5
parent: 12
+ - uid: 32171
+ components:
+ - type: Transform
+ pos: 77.5,-2.5
+ parent: 12
+ - uid: 32172
+ components:
+ - type: Transform
+ pos: 77.5,-0.5
+ parent: 12
+ - uid: 32173
+ components:
+ - type: Transform
+ pos: 77.5,0.5
+ parent: 12
+ - uid: 32174
+ components:
+ - type: Transform
+ pos: 77.5,1.5
+ parent: 12
+ - uid: 32175
+ components:
+ - type: Transform
+ pos: 77.5,2.5
+ parent: 12
+ - uid: 32176
+ components:
+ - type: Transform
+ pos: 77.5,-1.5
+ parent: 12
+ - uid: 32177
+ components:
+ - type: Transform
+ pos: 77.5,5.5
+ parent: 12
+ - uid: 32178
+ components:
+ - type: Transform
+ pos: 77.5,6.5
+ parent: 12
+ - uid: 32179
+ components:
+ - type: Transform
+ pos: 77.5,3.5
+ parent: 12
+ - uid: 32180
+ components:
+ - type: Transform
+ pos: 77.5,7.5
+ parent: 12
+ - uid: 32181
+ components:
+ - type: Transform
+ pos: 77.5,8.5
+ parent: 12
+ - uid: 32182
+ components:
+ - type: Transform
+ pos: 77.5,4.5
+ parent: 12
+ - uid: 32183
+ components:
+ - type: Transform
+ pos: 77.5,10.5
+ parent: 12
+ - uid: 32184
+ components:
+ - type: Transform
+ pos: 77.5,11.5
+ parent: 12
+ - uid: 32185
+ components:
+ - type: Transform
+ pos: 77.5,9.5
+ parent: 12
- proto: Cautery
entities:
- uid: 9752
@@ -78066,6 +78698,18 @@ entities:
- type: Transform
pos: 0.5,-66.5
parent: 12
+ - uid: 31688
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.408453,-26.829342
+ parent: 12
+ - uid: 31689
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.06586,-28.196033
+ parent: 12
- uid: 32101
components:
- type: Transform
@@ -80416,6 +81060,46 @@ entities:
- type: Transform
pos: -15.479212,51.570213
parent: 12
+- proto: ClothingHeadHatSantahat
+ entities:
+ - uid: 31656
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: -22.599323,38.502403
+ parent: 12
+ - uid: 31657
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: -41.818073,40.566353
+ parent: 12
+ - uid: 31669
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: -36.450703,42.555126
+ parent: 12
+ - uid: 31670
+ components:
+ - type: Transform
+ pos: -29.275808,38.740208
+ parent: 12
+ - uid: 31672
+ components:
+ - type: Transform
+ pos: -37.561886,53.522655
+ parent: 12
+ - uid: 31673
+ components:
+ - type: Transform
+ pos: 23.223015,-26.438202
+ parent: 12
+ - uid: 31674
+ components:
+ - type: Transform
+ pos: 21.975492,-27.778383
+ parent: 12
- proto: ClothingHeadHatSurgcapBlue
entities:
- uid: 5726
@@ -80982,6 +81666,37 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: ClothingOuterSanta
+ entities:
+ - uid: 31654
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: -21.505573,38.6744
+ parent: 12
+ - uid: 31655
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: -41.474323,40.472534
+ parent: 12
+ - uid: 31667
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: -31.513205,38.489803
+ parent: 12
+ - uid: 31668
+ components:
+ - type: Transform
+ rot: -6.217248937900877E-15 rad
+ pos: -39.52883,36.55096
+ parent: 12
+ - uid: 31671
+ components:
+ - type: Transform
+ pos: -37.341736,53.412502
+ parent: 12
- proto: ClothingOuterStraightjacket
entities:
- uid: 19275
@@ -81699,6 +82414,12 @@ entities:
- type: Transform
pos: -2.5,-66.5
parent: 12
+ - uid: 31690
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,-28.5
+ parent: 12
- uid: 31793
components:
- type: Transform
@@ -83264,44 +83985,6 @@ entities:
- type: Transform
pos: 58.5,12.5
parent: 12
- - 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:
- - 2929
- - 2923
- - 2920
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: CrateEngineeringSingularityEmitter
- entities:
- - uid: 5883
- components:
- - type: Transform
- pos: 57.5,12.5
- parent: 12
- type: EntityStorage
air:
volume: 200
@@ -83326,13 +84009,51 @@ entities:
showEnts: False
occludes: True
ents:
- - 5886
- - 5885
- - 4887
- - 4851
- - 5888
- - 6298
+ - 2920
+ - 2923
+ - 2929
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: CrateEngineeringSingularityEmitter
+ entities:
+ - uid: 5883
+ components:
+ - type: Transform
+ pos: 57.5,12.5
+ parent: 12
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.8977377
+ - 7.139109
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
- 6299
+ - 6298
+ - 5888
+ - 4851
+ - 4887
+ - 5885
+ - 5886
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -83350,8 +84071,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -83368,11 +84089,11 @@ entities:
showEnts: False
occludes: True
ents:
- - 24193
- - 24218
- - 24223
- - 24224
- 24225
+ - 24224
+ - 24223
+ - 24218
+ - 24193
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -83390,8 +84111,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -83408,11 +84129,11 @@ entities:
showEnts: False
occludes: True
ents:
- - 25027
- - 25038
- - 25101
- - 25104
- 25195
+ - 25104
+ - 25101
+ - 25038
+ - 25027
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -96203,6 +96924,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: DrinkGlassWhite
+ entities:
+ - uid: 31687
+ components:
+ - type: Transform
+ pos: 24.274195,-28.126541
+ parent: 12
- proto: DrinkGoldenCup
entities:
- uid: 10942
@@ -102395,7 +103123,7 @@ entities:
- uid: 26214
components:
- type: Transform
- pos: -31.438684,38.510014
+ pos: -32.480057,41.497932
parent: 12
- proto: FlashlightLantern
entities:
@@ -102907,6 +103635,13 @@ entities:
- type: Transform
pos: -7.8905973,-55.743637
parent: 12
+- proto: FloraTreeChristmas02
+ entities:
+ - uid: 28861
+ components:
+ - type: Transform
+ pos: 22,-26
+ parent: 12
- proto: FloraTreeLarge
entities:
- uid: 10941
@@ -103018,6 +103753,20 @@ entities:
- type: Transform
pos: -53.30888,54.409172
parent: 12
+- proto: FoodBakedCookie
+ entities:
+ - uid: 31677
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 24.602898,-28.325752
+ parent: 12
+ - uid: 31678
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 24.44549,-28.571293
+ parent: 12
- proto: FoodBanana
entities:
- uid: 4201
@@ -103211,6 +103960,13 @@ entities:
- type: Transform
pos: 10.45153,-49.457336
parent: 12
+- proto: FoodCakeChristmas
+ entities:
+ - uid: 22173
+ components:
+ - type: Transform
+ pos: 21.240437,-26.565382
+ parent: 12
- proto: FoodCakeSuppermatterSlice
entities:
- uid: 15371
@@ -103453,6 +104209,11 @@ entities:
- type: Transform
pos: 64.56665,50.71139
parent: 12
+ - uid: 31653
+ components:
+ - type: Transform
+ pos: 21.224129,-26.540905
+ parent: 12
- proto: FoodPlatePlastic
entities:
- uid: 31121
@@ -137676,6 +138437,31 @@ entities:
rot: -1.5707963267948966 rad
pos: -7.5,-64.5
parent: 12
+ - uid: 32190
+ components:
+ - type: Transform
+ pos: 67.5,-5.5
+ parent: 12
+ - uid: 32288
+ components:
+ - type: Transform
+ pos: 79.5,-2.5
+ parent: 12
+ - uid: 32289
+ components:
+ - type: Transform
+ pos: 79.5,3.5
+ parent: 12
+ - uid: 32290
+ components:
+ - type: Transform
+ pos: 79.5,11.5
+ parent: 12
+ - uid: 32291
+ components:
+ - type: Transform
+ pos: 67.5,14.5
+ parent: 12
- proto: GlassBoxLaserFilled
entities:
- uid: 17404
@@ -138334,16 +139120,6 @@ entities:
- type: Transform
pos: -32.5,-33.5
parent: 12
- - uid: 676
- components:
- - type: Transform
- pos: 72.5,-3.5
- parent: 12
- - uid: 677
- components:
- - type: Transform
- pos: 73.5,-3.5
- parent: 12
- uid: 697
components:
- type: Transform
@@ -140342,11 +141118,6 @@ entities:
- type: Transform
pos: 33.5,-24.5
parent: 12
- - uid: 8254
- components:
- - type: Transform
- pos: 69.5,-3.5
- parent: 12
- uid: 8341
components:
- type: Transform
@@ -140389,11 +141160,6 @@ entities:
- type: Transform
pos: 49.5,59.5
parent: 12
- - uid: 8788
- components:
- - type: Transform
- pos: 70.5,-3.5
- parent: 12
- uid: 9057
components:
- type: Transform
@@ -141174,11 +141940,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 13.5,19.5
parent: 12
- - uid: 11225
- components:
- - type: Transform
- pos: 65.5,-3.5
- parent: 12
- uid: 11242
components:
- type: Transform
@@ -141268,11 +142029,6 @@ entities:
- type: Transform
pos: 48.5,10.5
parent: 12
- - uid: 11474
- components:
- - type: Transform
- pos: 64.5,-3.5
- parent: 12
- uid: 11486
components:
- type: Transform
@@ -142121,11 +142877,6 @@ entities:
- type: Transform
pos: -57.5,-56.5
parent: 12
- - uid: 13844
- components:
- - type: Transform
- pos: 66.5,-3.5
- parent: 12
- uid: 13991
components:
- type: Transform
@@ -144111,22 +144862,12 @@ entities:
rot: 3.141592653589793 rad
pos: -22.5,66.5
parent: 12
- - uid: 25537
- components:
- - type: Transform
- pos: 75.5,-3.5
- parent: 12
- uid: 25538
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 61.5,-11.5
parent: 12
- - uid: 25549
- components:
- - type: Transform
- pos: 76.5,-3.5
- parent: 12
- uid: 25559
components:
- type: Transform
@@ -144609,11 +145350,6 @@ entities:
- type: Transform
pos: 29.5,-29.5
parent: 12
- - uid: 26943
- components:
- - type: Transform
- pos: 68.5,-3.5
- parent: 12
- uid: 26945
components:
- type: Transform
@@ -146365,71 +147101,76 @@ entities:
- type: Transform
pos: -62.5,-31.5
parent: 12
- - uid: 31744
- components:
- - type: Transform
- pos: 77.5,12.5
- parent: 12
- - uid: 31745
- components:
- - type: Transform
- pos: 77.5,-3.5
- parent: 12
- - uid: 31746
- components:
- - type: Transform
- pos: 76.5,12.5
- parent: 12
- - uid: 31747
- components:
- - type: Transform
- pos: 75.5,12.5
- parent: 12
- - uid: 31752
- components:
- - type: Transform
- pos: 73.5,12.5
- parent: 12
- - uid: 31753
- components:
- - type: Transform
- pos: 72.5,12.5
- parent: 12
- - uid: 31754
- components:
- - type: Transform
- pos: 71.5,12.5
- parent: 12
- - uid: 31756
- components:
- - type: Transform
- pos: 70.5,12.5
- parent: 12
- - uid: 31757
- components:
- - type: Transform
- pos: 69.5,12.5
- parent: 12
- - uid: 31762
- components:
- - type: Transform
- pos: 68.5,12.5
- parent: 12
- - uid: 31838
- components:
- - type: Transform
- pos: 66.5,12.5
- parent: 12
- - uid: 31839
- components:
- - type: Transform
- pos: 65.5,12.5
- parent: 12
- uid: 32033
components:
- type: Transform
pos: 41.5,-18.5
parent: 12
+ - uid: 32307
+ components:
+ - type: Transform
+ pos: 79.5,2.5
+ parent: 12
+ - uid: 32308
+ components:
+ - type: Transform
+ pos: 69.5,-5.5
+ parent: 12
+ - uid: 32309
+ components:
+ - type: Transform
+ pos: 70.5,-5.5
+ parent: 12
+ - uid: 32310
+ components:
+ - type: Transform
+ pos: 75.5,-5.5
+ parent: 12
+ - uid: 32311
+ components:
+ - type: Transform
+ pos: 79.5,-4.5
+ parent: 12
+ - uid: 32313
+ components:
+ - type: Transform
+ pos: 79.5,7.5
+ parent: 12
+ - uid: 32314
+ components:
+ - type: Transform
+ pos: 79.5,10.5
+ parent: 12
+ - uid: 32315
+ components:
+ - type: Transform
+ pos: 74.5,14.5
+ parent: 12
+ - uid: 32316
+ components:
+ - type: Transform
+ pos: 75.5,14.5
+ parent: 12
+ - uid: 32317
+ components:
+ - type: Transform
+ pos: 68.5,14.5
+ parent: 12
+ - uid: 32318
+ components:
+ - type: Transform
+ pos: 66.5,14.5
+ parent: 12
+ - uid: 32319
+ components:
+ - type: Transform
+ pos: 61.5,14.5
+ parent: 12
+ - uid: 32320
+ components:
+ - type: Transform
+ pos: 78.5,14.5
+ parent: 12
- proto: GrilleBroken
entities:
- uid: 3719
@@ -146547,11 +147288,6 @@ entities:
parent: 12
- proto: GrilleSpawner
entities:
- - uid: 15008
- components:
- - type: Transform
- pos: 74.5,-3.5
- parent: 12
- uid: 19569
components:
- type: Transform
@@ -146747,21 +147483,11 @@ entities:
- type: Transform
pos: 59.5,-61.5
parent: 12
- - uid: 25019
- components:
- - type: Transform
- pos: 67.5,-3.5
- parent: 12
- uid: 25385
components:
- type: Transform
pos: 61.5,68.5
parent: 12
- - uid: 27019
- components:
- - type: Transform
- pos: 71.5,-3.5
- parent: 12
- uid: 27706
components:
- type: Transform
@@ -146807,20 +147533,50 @@ entities:
- type: Transform
pos: -42.5,-65.5
parent: 12
- - uid: 31751
+ - uid: 32143
components:
- type: Transform
- pos: 74.5,12.5
+ pos: 69.5,14.5
parent: 12
- - uid: 31764
+ - uid: 32299
components:
- type: Transform
- pos: 64.5,12.5
+ pos: 68.5,-5.5
parent: 12
- - uid: 31840
+ - uid: 32300
components:
- type: Transform
- pos: 67.5,12.5
+ pos: 74.5,-5.5
+ parent: 12
+ - uid: 32301
+ components:
+ - type: Transform
+ pos: 79.5,-3.5
+ parent: 12
+ - uid: 32302
+ components:
+ - type: Transform
+ pos: 79.5,-0.5
+ parent: 12
+ - uid: 32303
+ components:
+ - type: Transform
+ pos: 79.5,0.5
+ parent: 12
+ - uid: 32304
+ components:
+ - type: Transform
+ pos: 79.5,8.5
+ parent: 12
+ - uid: 32305
+ components:
+ - type: Transform
+ pos: 73.5,14.5
+ parent: 12
+ - uid: 32306
+ components:
+ - type: Transform
+ pos: 62.5,14.5
parent: 12
- proto: GroundCannabis
entities:
@@ -149045,24 +149801,6 @@ entities:
- type: Transform
pos: -41.5,36.5
parent: 12
- - 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: LockerMedicalFilled
entities:
- uid: 2502
@@ -149208,47 +149946,11 @@ entities:
- type: Transform
pos: -44.5,38.5
parent: 12
- - 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: 20846
components:
- type: Transform
pos: -44.5,39.5
parent: 12
- - 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: 20847
components:
- type: Transform
@@ -152390,7 +153092,7 @@ entities:
- uid: 21610
components:
- type: Transform
- pos: -21.469933,38.63325
+ pos: -22.35333,41.503937
parent: 12
- uid: 23585
components:
@@ -156525,15 +157227,30 @@ entities:
- type: Transform
pos: -20.5,76.5
parent: 12
- - uid: 31841
+ - uid: 32186
components:
- type: Transform
- pos: 77.5,-2.5
+ pos: 65.5,-3.5
parent: 12
- - uid: 31842
+ - uid: 32187
components:
- type: Transform
- pos: 77.5,11.5
+ pos: 76.5,-3.5
+ parent: 12
+ - uid: 32189
+ components:
+ - type: Transform
+ pos: 76.5,4.5
+ parent: 12
+ - uid: 32286
+ components:
+ - type: Transform
+ pos: 76.5,12.5
+ parent: 12
+ - uid: 32287
+ components:
+ - type: Transform
+ pos: 65.5,12.5
parent: 12
- proto: PoweredlightRed
entities:
@@ -158196,6 +158913,11 @@ entities:
- type: Transform
pos: -8.5,-66.5
parent: 12
+ - uid: 31660
+ components:
+ - type: Transform
+ pos: -41.5,40.5
+ parent: 12
- uid: 31661
components:
- type: Transform
@@ -160674,6 +161396,43 @@ entities:
rot: -1.5707963267948966 rad
pos: 37.5,14.5
parent: 12
+- proto: ReinforcedGirder
+ entities:
+ - uid: 32292
+ components:
+ - type: Transform
+ pos: 71.5,14.5
+ parent: 12
+ - uid: 32293
+ components:
+ - type: Transform
+ pos: 76.5,14.5
+ parent: 12
+ - uid: 32294
+ components:
+ - type: Transform
+ pos: 79.5,12.5
+ parent: 12
+ - uid: 32295
+ components:
+ - type: Transform
+ pos: 79.5,6.5
+ parent: 12
+ - uid: 32296
+ components:
+ - type: Transform
+ pos: 79.5,-1.5
+ parent: 12
+ - uid: 32297
+ components:
+ - type: Transform
+ pos: 73.5,-5.5
+ parent: 12
+ - uid: 32298
+ components:
+ - type: Transform
+ pos: 66.5,-5.5
+ parent: 12
- proto: ReinforcedPlasmaWindow
entities:
- uid: 501
@@ -168305,6 +169064,23 @@ entities:
- type: Transform
pos: -49.5,-36.5
parent: 12
+- proto: SignDangerMed
+ entities:
+ - uid: 32312
+ components:
+ - type: Transform
+ pos: 71.5,-4.5
+ parent: 12
+ - uid: 32322
+ components:
+ - type: Transform
+ pos: 71.5,13.5
+ parent: 12
+ - uid: 32325
+ components:
+ - type: Transform
+ pos: 78.5,5.5
+ parent: 12
- proto: SignDirectionalAtmos
entities:
- uid: 29965
@@ -168571,6 +169347,31 @@ entities:
rot: 1.5707963267948966 rad
pos: 55.5,13.5
parent: 12
+ - uid: 32321
+ components:
+ - type: Transform
+ pos: 78.5,13.5
+ parent: 12
+ - uid: 32323
+ components:
+ - type: Transform
+ pos: 65.5,-4.5
+ parent: 12
+ - uid: 32324
+ components:
+ - type: Transform
+ pos: 65.5,13.5
+ parent: 12
+ - uid: 32326
+ components:
+ - type: Transform
+ pos: 78.5,-4.5
+ parent: 12
+ - uid: 32327
+ components:
+ - type: Transform
+ pos: 78.5,3.5
+ parent: 12
- proto: SignEngine
entities:
- uid: 27242
@@ -179109,6 +179910,11 @@ entities:
- type: Transform
pos: -14.5,73.5
parent: 12
+ - uid: 31686
+ components:
+ - type: Transform
+ pos: 24.5,-28.5
+ parent: 12
- proto: TargetClown
entities:
- uid: 22647
@@ -182411,6 +183217,11 @@ entities:
- type: Transform
pos: -31.5,-33.5
parent: 12
+ - uid: 677
+ components:
+ - type: Transform
+ pos: 67.5,-4.5
+ parent: 12
- uid: 685
components:
- type: Transform
@@ -183139,6 +183950,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -37.5,-18.5
parent: 12
+ - uid: 4165
+ components:
+ - type: Transform
+ pos: 70.5,-4.5
+ parent: 12
- uid: 4386
components:
- type: Transform
@@ -184645,6 +185461,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 84.5,-38.5
parent: 12
+ - uid: 8788
+ components:
+ - type: Transform
+ pos: 66.5,-4.5
+ parent: 12
- uid: 8817
components:
- type: Transform
@@ -185813,6 +186634,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 11.5,29.5
parent: 12
+ - uid: 11225
+ components:
+ - type: Transform
+ pos: 65.5,-4.5
+ parent: 12
- uid: 11235
components:
- type: Transform
@@ -188972,6 +189798,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 14.5,-57.5
parent: 12
+ - uid: 25019
+ components:
+ - type: Transform
+ pos: 78.5,13.5
+ parent: 12
- uid: 25037
components:
- type: Transform
@@ -189147,6 +189978,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 54.5,-6.5
parent: 12
+ - uid: 25549
+ components:
+ - type: Transform
+ pos: 74.5,-4.5
+ parent: 12
- uid: 25551
components:
- type: Transform
@@ -189422,6 +190258,11 @@ entities:
rot: 3.141592653589793 rad
pos: -13.5,77.5
parent: 12
+ - uid: 26943
+ components:
+ - type: Transform
+ pos: 78.5,-3.5
+ parent: 12
- uid: 26956
components:
- type: Transform
@@ -190044,12 +190885,97 @@ entities:
- type: Transform
pos: -64.5,-30.5
parent: 12
+ - uid: 31745
+ components:
+ - type: Transform
+ pos: 78.5,0.5
+ parent: 12
+ - uid: 31747
+ components:
+ - type: Transform
+ pos: 78.5,2.5
+ parent: 12
+ - uid: 31752
+ components:
+ - type: Transform
+ pos: 78.5,5.5
+ parent: 12
+ - uid: 31753
+ components:
+ - type: Transform
+ pos: 78.5,6.5
+ parent: 12
+ - uid: 31754
+ components:
+ - type: Transform
+ pos: 78.5,8.5
+ parent: 12
+ - uid: 31756
+ components:
+ - type: Transform
+ pos: 76.5,-4.5
+ parent: 12
+ - uid: 31757
+ components:
+ - type: Transform
+ pos: 69.5,-4.5
+ parent: 12
+ - uid: 31762
+ components:
+ - type: Transform
+ pos: 72.5,-4.5
+ parent: 12
+ - uid: 31840
+ components:
+ - type: Transform
+ pos: 78.5,-4.5
+ parent: 12
+ - uid: 31841
+ components:
+ - type: Transform
+ pos: 78.5,12.5
+ parent: 12
+ - uid: 31842
+ components:
+ - type: Transform
+ pos: 78.5,9.5
+ parent: 12
- uid: 31891
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 17.5,22.5
parent: 12
+ - uid: 32132
+ components:
+ - type: Transform
+ pos: 76.5,13.5
+ parent: 12
+ - uid: 32134
+ components:
+ - type: Transform
+ pos: 73.5,13.5
+ parent: 12
+ - uid: 32135
+ components:
+ - type: Transform
+ pos: 72.5,13.5
+ parent: 12
+ - uid: 32137
+ components:
+ - type: Transform
+ pos: 70.5,13.5
+ parent: 12
+ - uid: 32140
+ components:
+ - type: Transform
+ pos: 68.5,13.5
+ parent: 12
+ - uid: 32142
+ components:
+ - type: Transform
+ pos: 66.5,13.5
+ parent: 12
- proto: WallReinforcedRust
entities:
- uid: 191
@@ -190063,6 +190989,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 56.5,-6.5
parent: 12
+ - uid: 676
+ components:
+ - type: Transform
+ pos: 71.5,-4.5
+ parent: 12
- uid: 1061
components:
- type: Transform
@@ -190172,6 +191103,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 31.5,-57.5
parent: 12
+ - uid: 8254
+ components:
+ - type: Transform
+ pos: 71.5,13.5
+ parent: 12
- uid: 8724
components:
- type: Transform
@@ -190355,6 +191291,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 45.5,6.5
parent: 12
+ - uid: 11474
+ components:
+ - type: Transform
+ pos: 68.5,-4.5
+ parent: 12
- uid: 11479
components:
- type: Transform
@@ -190567,6 +191508,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -7.5,-1.5
parent: 12
+ - uid: 13844
+ components:
+ - type: Transform
+ pos: 73.5,-4.5
+ parent: 12
- uid: 13859
components:
- type: Transform
@@ -190597,6 +191543,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -10.5,-31.5
parent: 12
+ - uid: 15008
+ components:
+ - type: Transform
+ pos: 67.5,13.5
+ parent: 12
- uid: 15549
components:
- type: Transform
@@ -190801,6 +191752,11 @@ entities:
- type: Transform
pos: -26.5,73.5
parent: 12
+ - uid: 25537
+ components:
+ - type: Transform
+ pos: 75.5,-4.5
+ parent: 12
- uid: 25555
components:
- type: Transform
@@ -190987,6 +191943,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 40.5,-43.5
parent: 12
+ - uid: 27019
+ components:
+ - type: Transform
+ pos: 78.5,-1.5
+ parent: 12
- uid: 27035
components:
- type: Transform
@@ -191570,6 +192531,61 @@ entities:
rot: 1.5707963267948966 rad
pos: -64.5,-18.5
parent: 12
+ - uid: 31744
+ components:
+ - type: Transform
+ pos: 78.5,1.5
+ parent: 12
+ - uid: 31746
+ components:
+ - type: Transform
+ pos: 78.5,3.5
+ parent: 12
+ - uid: 31764
+ components:
+ - type: Transform
+ pos: 78.5,-0.5
+ parent: 12
+ - uid: 31838
+ components:
+ - type: Transform
+ pos: 78.5,7.5
+ parent: 12
+ - uid: 31839
+ components:
+ - type: Transform
+ pos: 78.5,-2.5
+ parent: 12
+ - uid: 32133
+ components:
+ - type: Transform
+ pos: 78.5,10.5
+ parent: 12
+ - uid: 32136
+ components:
+ - type: Transform
+ pos: 69.5,13.5
+ parent: 12
+ - uid: 32138
+ components:
+ - type: Transform
+ pos: 74.5,13.5
+ parent: 12
+ - uid: 32139
+ components:
+ - type: Transform
+ pos: 78.5,11.5
+ parent: 12
+ - uid: 32141
+ components:
+ - type: Transform
+ pos: 75.5,13.5
+ parent: 12
+ - uid: 32191
+ components:
+ - type: Transform
+ pos: 65.5,13.5
+ parent: 12
- proto: WallSolid
entities:
- uid: 47
diff --git a/Resources/Maps/convex.yml b/Resources/Maps/convex.yml
new file mode 100644
index 0000000000..88c29d31cd
--- /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
+